@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/***** General CSS *****/


/***** General CSS *****/

html {
    font-size: 14px;
}

body {
    word-break: break-word;
    font-family: "Montserrat", sans-serif;
    color: #414141;
    overflow-x: hidden;
    font-size: clamp(1rem, 0.6vw + 0.8rem, 1.2rem);
    line-height: 1.6;
    font-weight: 500;
    position: relative;
}


/***** Font Files *****/


/* ====== Font Files (Optimized Setup) ====== */

@font-face {
    font-family: "BlenderPro";
    src: url("../fonts/BlenderPro-Thin.ttf");
    font-weight: 100;
}

@font-face {
    font-family: "BlenderPro";
    src: url("../fonts/BlenderPro-Book.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "BlenderPro";
    src: url("../fonts/BlenderPro-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "BlenderPro";
    src: url("../fonts/BlenderPro-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: "BlenderPro";
    src: url("../fonts/BlenderPro-Heavy.ttf");
    font-weight: 900;
}


/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "BlenderPro";
    color: #141e2b;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.2rem, 6vw + 1.2rem, 4.7rem);
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: clamp(2rem, 3vw + 1rem, 2.7rem);
}

h4 {
    font-size: clamp(1.6rem, 1.5vw + 1rem, 2.4rem);
    line-height: 0.9;
}

h5 {
    font-size: clamp(1.2rem, 1vw + 0.8rem, 1.4rem);
}

h6 {
    font-size: clamp(1.1rem, 0.5vw + 0.7rem, 1rem);
}


/***** Paragraphs *****/

p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9rem, 0.6vw + 0.6rem, 1rem);
    font-weight: 500;
    color: #141312;
    margin-bottom: clamp(1rem, 1.2vw, 1.5rem);
    line-height: 1.8;
    opacity: 80%;
}


/***** Gradient Text *****/


/***** Utilities *****/

.padd {
    padding: clamp(60px, 8vw, 80px) 0;
    position: relative;
}

.paddTop {
    padding-top: clamp(60px, 8vw, 80px);
}

.paddBottom {
    padding-bottom: clamp(60px, 8vw, 80px);
}

.margTop {
    margin-top: clamp(40px, 5vw, 60px);
}

.margBottom {
    margin-bottom: clamp(40px, 5vw, 60px);
}

.i-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 28px;
    border-radius: 45px;
    transition: 0.2s;
    position: relative;
}

.flx {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.sitebtn {
    display: inline-block;
}


/* ======================== */

.sitebtn .pbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    background: #0058d4;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 0px 6px 0px 1.2rem;
    border-radius: 5rem;
    transition: 0.2s;
    border: 1px solid #fff;
    position: relative;
}

.pbtn span.btnimg {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 36px;
    border-radius: 3rem;
    transition: 0.3s;
    position: relative;
    background-color: #ffffff;
}

.sitebtn .pbtn:before {
    position: absolute;
    width: 0%;
    height: 100%;
    border-radius: 40px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px auto;
    background: #0058d46b;
    content: "";
    transition: 0.3s;
}

.sitebtn .pbtn:hover:before {
    width: 100%;
}

.pbtn:hover span.btnimg {
    transform: translate(2px, 0px);
}

.sitebtn span.text {
    position: relative;
}

.sitebtn .pbtn:hover {
    color: #fff;
    box-shadow: inset -1px 3px 20px 20px #000204;
}

.pbtn span.btnimg img {
    transition: 0.3s;
}

.sitebtn .pbtn:hover span.btnimg {
    background: #fff;
    box-shadow: inset 1px 0px 20px 0px #0058d46b;
}

.sitebtn .pbtn:hover span.btnimg img {
    filter: brightness(0);
}

header .sitebtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

ul.listing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0px 32px;
}

ul.listing li {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.listing li span {
    display: inline-block;
}

.maxWidth {
    max-width: 1440px;
}


/* general btn css start  */

a {
    text-decoration: none;
    color: #0058d4;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #0058d4;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}


/***** Font Files *****/

::-webkit-input-placeholder {
    color: #414141;
}

::-moz-placeholder {
    color: #414141;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #414141;
}

:-moz-placeholder {
    color: #414141;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0 0;
    position: relative;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    /* position: relative; */
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0px auto;
}

.menuSec ul li {
    /* position: relative; */
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    /* position: relative; */
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0px;
    font-size: 1.2rem;
    font-family: "BlenderPro";
    text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #fff;
    text-decoration: underline !important;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 108px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    /* background-color: #ffffff; */
    color: #fff !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 12;
}

.menuSec li>ul>li>a i {
    position: absolute;
    right: 20px;
}


/*banner css start */

img.banner-bg-img {
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: fill;
}

.banner {
    position: relative;
    padding: 130px 0 100px;
    z-index: 1;
}

.banner-images {
    position: relative;
    padding: 20px 0px 0px;
}

.main-baner-img {
    position: relative;
    padding-right: 30px;
    padding-top: 30px;
}

.main-baner-img img {
    width: 100%;
    /* transform: scaleX(1.09); */
    transform-origin: right;
    filter: drop-shadow(2px 4px 16px #000);
    height: 590px;
    object-fit: cover;
}

.banner-images img.banner-box.bt {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 150px;
    height: 160px;
    box-shadow: 0px 0px 18px 0px #262626b0;
    border-radius: 9px;
}

img.banner-box.tp {
    position: absolute;
    left: 0;
    top: -20px;
    width: 160px;
    height: 140px;
    box-shadow: 0px 0px 18px 0px #262626b0;
    border-radius: 9px;
}

.banner-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.banner-title:before {
    position: absolute;
    content: "";
    width: 82%;
    height: 1px;
    background: #ffffff2b;
    left: 0;
    bottom: 0;
}

section.main-banner {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}


/*banner css end*/


/* About Us Start  */

section.aboutsec {
    position: relative;
    padding: 14px;
    background: #fff;
    border-radius: 40px;
    z-index: 1;
}

section.aboutsec .abt-img {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: rebeccapurple;
}

section.aboutsec .abt-img img {
    height: 420px;
    width: 100%;
    display: inline-block;
    transition: 0.2s;
}

section.aboutsec .abt-img img:hover {
    filter: brightness(0.6);
    transform: scale(1.1);
}

.ab-right {
    position: relative;
    padding-left: 18px;
}

section.main-banner:before {
    position: absolute;
    content: "";
    background: #0058d4;
    width: 40%;
    height: 53%;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-radius: 0px 60px 0px 0px;
}


/* About Us end */


/* Payment Sec  st */

.pay-way {
    width: 80%;
    margin: 0px auto;
}

.pay-way .heading {
    border-bottom: 1px solid #00000021;
}

.pay-way {
    width: 80%;
    margin: 0px auto;
}

.pay-logo {
    position: relative;
    transition: 0.2s;
}

.pay-logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    display: table;
    margin: 0px auto;
    transition: 0.2s;
}

.pay-logo:hover img {
    /* transform: scale(1.1); */
    /* filter: drop-shadow(2px 4px 6px #0000004a); */
}


/* Payment Sec end  */


/***** Merchant Service Section *****/


/***** Boxes *****/

.service-box {
    background: #ffffff;
    box-shadow: 0 2px 20px 10px #f4f4f4;
    border-radius: 6px;
    padding: 2.6rem 1.6rem;
    transition: all 0.3s ease;
    border: 1px solid #e0dede;
    margin: 0 0.6rem;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background: #0d6efd;
}

.service-box .box-number {
    width: 75px;
    height: 55px;
    margin: 0 0 2.8rem;
    background: #0058d4;
    color: #fff;
    font-weight: 500;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-family: "BlenderPro", sans-serif;
}

.service-box .box-title {
    color: #00275a;
    position: relative;
    padding-bottom: 22px;
    margin: 40px 0 24px;
}

.service-box p {
    margin: 0;
    font-size: 0.9rem;
    font-family: "poppins";
    line-height: 23px;
}

.service-box .box-title:before {
    position: absolute;
    content: "";
    width: 30%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #d3d3d3;
}

.heading {
    margin-bottom: 40px;
}


/*---------------------- Why Choose Us Section CSS Start  ---------------------------*/

.download-img {
    position: absolute;
    top: 160px;
    right: 40px;
}

.why-img {
    position: relative;
    margin-right: 10px;
}

.why-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
}

.download-img img {
    height: 320px;
    width: 260px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 10.725px 8.999px 57px 0px rgba(38, 38, 38, 0.24);
}

.ab-right h3 {
    line-height: 1.15;
}

section.why-sec .row {
    margin-bottom: 80px;
}

.download-img.botom {
    top: 35px;
    right: unset;
    left: -58px;
}

.download-img.botom img {
    width: 280px;
    height: 110px !important;
}

.why-bottm .why-img img {
    height: 550px;
}


/*---------------------- Why Choose Us Section CSS End  ---------------------------*/


/*---------------------- EffortLess Section CSS Start  ---------------------------*/

section.effort-sec {
    text-align: center;
    position: relative;
    padding: 133px 0;
    margin-bottom: 100px;
}

section.effort-sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 92%;
    background-image: url(../images/effortless.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    border-radius: 17px;
}

.card-txt p {
    width: 69%;
    margin: 0px auto 19px;
}


/*---------------------- EffortLess Section CSS End  ---------------------------*/


/*---------------------- Testimonial Section CSS Start  ---------------------------*/

section.testimonials {
    position: relative;
    padding: 40px 0px 100px;
    overflow: hidden;
}

section.testimonials .box-card {
    box-sizing: border-box;
    position: relative;
    margin: 30px 10px;
    border-radius: 10px;
}

section.testimonials .mainSlider {
    position: relative;
}

section.testimonials .mainSlider .item {
    margin: 0px;
}

section.testimonials .slick-list.draggable {
    padding: 0px !important;
}

section.testimonials .item {
    opacity: 1;
}

section.testimonials .box-card .quote {
    display: inline-block;
    position: absolute;
    top: -20px;
}

section.testimonials .box-card .quote i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0px 0px 18px 7px #2222221c;
    transition: 0.9s;
    font-size: 18px;
}

section.testimonials .box-card ul.rating {
    justify-content: flex-start;
    align-items: center;
    margin: 35px 0;
    display: flex;
    gap: 5px;
}

section.testimonials .box-card ul.rating li a i {
    color: #fd8f00;
    font-size: 14px;
}

section.testimonials .box-card .descrp {
    margin-bottom: 20px;
}

section.testimonials .box-card .descrp p {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    line-height: 23px;
}

section.testimonials .box-card .authr-det {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.testimonials .box-card .authr-det h5 {
    margin: 0px;
    font-size: 19px;
    color: #000;
    line-height: 21px;
    font-weight: 600;
}

section.testimonials .box-card .authr-det p {
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    opacity: 80%;
}

section.testimonials .mainSlider .box-card {
    padding: 20px 40px 30px 50px;
    background: #0058d4;
    margin: 30px 0px 0px 0px;
}

section.testimonials .simSlidDs .item {
    margin: 0px;
}

section.testimonials .simSlidDs .item .box-card {
    box-shadow: unset;
    padding: 20px 10px 20px 20px;
    margin-top: 30px;
    background: transparent;
}

section.testimonials .simSlidDs .item .box-card ul.rating {
    margin: 50px 0 24px;
}

section.testimonials .simSlidDs .item .box-card ul.rating li a i {
    font-size: 13px;
}

section.testimonials .simSlidDs .item .box-card .quote i {
    background: #fff;
    box-shadow: unset;
}

section.testimonials .coright {
    position: relative;
}

section.testimonials .simSlidDs .slider-nav {
    margin: 0px;
}

section.testimonials .simSlidDs .slider-nav {
    margin: 0px;
}

section.testimonials .simSlidDs .item .box-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: "Rajdhani";
    text-transform: capitalize;
}

section.testimonials .mainSlider .box-card h5 {
    color: #fff;
}

section.testimonials .item .box-card ul.rating li:last-child a i {
    opacity: 50%;
}

section.testimonials .mainSlider .box-card .quote i {
    background: #fff;
    border: 1px solid #fff;
    color: #4445e0;
}

section.testimonials .mainSlider .item p {
    width: 93%;
}

section.testimonials .container-fluid {
    padding: 0 3%;
}

section.testimonials .heading p {
    width: 60%;
    margin: 0 auto;
}

section.testimonials .simSlidDs .item .box-card p {
    color: #000;
}

section.testimonials .simSlidDs .item .box-card .authr-det h5 {
    color: #000;
}

section.testimonials .simSlidDs .item .box-card ul.rating {
    margin: 40px 0 30px;
}

.simSlidDs {
    position: relative;
}

.simSlidDs:before {
    content: "";
    position: absolute;
    top: 32px;
    left: 50%;
    background: #e7e7e7;
    width: 1px;
    height: 85%;
    margin: 0 auto;
    z-index: -1;
}


/*---------------------- Testimonial Section CSS End  ---------------------------*/


/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

section.footer-sec {
    background: #131d2b;
    padding: 70px 0 0px;
    position: relative;
}

.footer-end p {
    font-size: 14px;
    text-align: center;
    color: #fff;
    opacity: 50%;
    text-transform: uppercase;
    margin: unset;
}

section.footer-sec .container-fluid {
    padding: 0 4%;
}

.footer-end {
    padding: 12px 0;
    border-top: 1px solid #45495b;
}

section.footer-sec .row {
    padding-bottom: 30px;
}

.footer-info p {
    margin: 25px 0 35px;
    color: #fff;
    opacity: 75%;
    width: 85%;
}

section.footer-sec h3 {
    margin-bottom: 25px;
    font-size: 25px;
    color: #fff;
}

.quick-licks ul li {
    margin-bottom: 18px;
}

.quick-licks ul li a {
    color: #ffffff91;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.useful-links ul li {
    margin-bottom: 20px;
}

.useful-links ul li a {
    font-size: 14px;
    color: #878992;
    text-transform: capitalize;
}

.quick-licks {
    padding-left: 90px;
}

.useful-links {
    padding-left: 20px;
}

.contact-info a {
    color: #ffffffba;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
}

section.footer-sec:before {
    content: "";
    position: absolute;
    top: 125px;
    left: 33%;
    background: #45495b;
    width: 1px;
    height: 220px;
}

section.footer-sec:after {
    content: "";
    position: absolute;
    top: 125px;
    left: 67%;
    background: #45495b;
    width: 1px;
    height: 220px;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-bottom: 20px;
    color: #ffff;
}

.quick-licks ul li:hover a {
    color: #fff;
    padding-left: 5px;
    transition: 0.5s;
}

.useful-links ul li:hover a {
    color: #fff;
    padding-left: 5px;
    transition: 0.5s;
}

.contact-info ul li a:hover {
    color: #fff;
    padding-left: 5px;
    transition: 0.5s;
}

.quick-licks ul {
    column-count: 2;
}

.contact-info {
    margin-left: 90px;
}

.contact-info ul li p {
    color: #fff;
    font-size: 14px;
    margin: unset;
}


/*---------------------------------------------------- Footer Section End --------------------------------------------------- */


/*---------------------------------------------------- Solution Section Start ------------------------------------------------- */

.solution-desgin-sec {
    padding: 80px 0;
    position: relative;
}

.solution-desgin-sec:before {
    content: "";
    position: absolute;
    inset: 0;
    /* background-image: url(../images/solution-design.png); */
    left: 0;
    right: 0;
    width: 92%;
    height: 100%;
    /* background-repeat: no-repeat;
  background-size: cover; */
    margin: 0 auto;
    border-radius: 40px;
    background: linear-gradient(rgb(23 34 50 / 80%), rgb(23 34 50)), url(../images/solution-design-bg-img.png) no-repeat top right / cover;
}

.solution-desgin-sec .container {
    position: relative;
    z-index: 2;
}

.solution-desgin-sec .tabs-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
}

.solution-desgin-sec .nav-tabs {
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 70px;
    padding: 13px 10px;
    display: inline-flex;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.solution-desgin-sec .tab-content {
    position: relative;
    z-index: 1;
}

.solution-desgin-sec .nav-tabs .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    font-family: "BlenderPro";
}

.solution-desgin-sec .nav-tabs .nav-link:hover,
.solution-desgin-sec .nav-tabs .nav-link.active {
    color: #fff;
    background: unset;
    text-decoration: underline;
}

.solution-text ul.listing li span {
    text-transform: uppercase;
    font-size: 14px;
}

.solution-text ul.listing {
    padding-left: 0;
}

.solution-text ul.listing img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(9%) hue-rotate(302deg) brightness(104%) contrast(101%);
}

.solution-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 16px;
}

a,
span {
    text-decoration: unset !important;
}


/*---------------------------------------------------- Solution Section End --------------------------------------------------- */

section.main-banner {
    background: linear-gradient(rgb(23 34 50 / 80%), rgb(23 34 50)), url(../images/banner-img1.jpg) no-repeat bottom right / cover;
}

section.main-banner:before {
    position: absolute;
    content: "";
    width: 620px;
    height: 650px;
    left: 0;
    top: 0;
    border-radius: 0px;
    background: #0b3777;
    background: linear-gradient(135deg, rgb(25 102 215) 0%, #10274700 50%);
}

section.main-banner:after {
    position: absolute;
    content: "";
    width: 620px;
    height: 650px;
    right: 0;
    bottom: 0;
    border-radius: 0px;
    background: #0b3777;
    background: linear-gradient(318deg, rgb(25 102 215) 0%, #10274700 50%);
}


/* ------------------------------ */

.solution-desgin-sec .container::before {
    position: absolute;
    content: "";
    width: 440px;
    height: 470px;
    left: -70px;
    top: -80px;
    background: #0b3777;
    background: linear-gradient(135deg, rgb(25 102 215) 0%, #10274700 50%);
    border-radius: 38px 0px 0px 0px;
}

.solution-desgin-sec .container::after {
    position: absolute;
    content: "";
    width: 440px;
    height: 470px;
    right: -70px;
    bottom: -80px;
    background: #0b3777;
    background: linear-gradient(318deg, rgb(25 102 215) 0%, #10274700 50%);
    border-radius: 0px 0px 40px 0px;
}

section.solution-desgin-sec h2 {
    position: relative;
    z-index: 1;
}

section.solution-desgin-sec h1 {
    position: relative;
    z-index: 1;
}


/* ====================================   MEDIA QUERRIES IS STARTED IN THE BLOW    ======================================================= */


/* ====================================   MEDIA QUERRIES IS STARTED IN THE BLOW    ======================================================= */

@media (max-width: 1430px) {
    .maxWidth {
        max-width: 1300px;
    }
    .solution-desgin-sec {
        overflow: hidden;
    }
    .solution-desgin-sec .container::before {
        width: 260px;
        height: 260px;
        left: 15px;
        top: -80px;
    }
    .solution-desgin-sec .container::after {
        width: 240px;
        height: 240px;
        right: 14px;
        bottom: -80px;
    }
    .solution-desgin-sec .container {
        padding: 0px 60px;
    }
    .solution-desgin-sec .nav-tabs {
        gap: 20px;
    }
    .solution-image img {
        height: 440px;
    }
}

@media (max-width: 1366px) {
    .pay-way {
        width: 90%;
    }
    .pay-logo img {
        width: 140px;
        height: 100px;
    }
    .solution-desgin-sec .container {
        padding: 0px;
    }
    .solution-desgin-sec .container::before {
        left: -58px;
    }
    .solution-desgin-sec .container::after {
        right: -59px;
    }
    .solution-desgin-sec .nav-tabs .nav-link {
        padding: 10px 14px;
    }
    .service-box {
        margin: 0px 0.4rem;
        padding: 2.6rem 1rem;
    }
    .why-img .download-img img {
        height: 270px;
        width: 220px;
        object-fit: fill;
    }
    .why-img img {
        height: 450px;
    }
    .quick-licks {
        padding-left: 40px;
    }
    .banner {
        padding: 170px 0 80px;
    }
}

@media (max-width: 1280px) {
    .maxWidth {
        max-width: 1180px;
    }
    .menuSec ul {
        width: auto;
        justify-content: center;
    }
    .banner-title h2 {
        font-size: 3.9rem;
    }
    .banner-title h1 {
        font-size: 4.4rem;
    }
    .main-baner-img img {
        transform: scaleX(1);
        height: 290px;
    }
    img.banner-box.tp {
        width: 120px;
        height: 120px;
        left: 20px;
    }
    .banner-images img.banner-box.bt {
        width: 120px;
        height: 130px;
    }
    section.aboutsec .abt-img img {
        height: 390px;
    }
    .pay-way {
        width: auto;
    }
    .solution-desgin-sec .container::before {
        left: -19px;
    }
    .solution-desgin-sec .container::after {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .maxWidth {
        max-width: 990px;
    }
    .menuSec ul li a {
        padding: 10px 10px;
        font-size: 1rem;
    }
    .sitebtn .pbtn {
        font-size: 0.7rem;
        height: 44px;
    }
    .pbtn span.btnimg {
        width: 40px;
        height: 28px;
    }
    .banner-title h1 {
        font-size: 3.7rem;
    }
    .banner-title h6 {
        line-height: 1.5;
    }
    .banner-title p br {
        display: none;
    }
    .banner_text p br {
        display: none;
    }
    .banner {
        padding: 110px 0 50px;
    }
    .main-baner-img img {
        height: 250px;
    }
    img.banner-box.tp {
        width: 100px;
        height: 100px;
        top: 0px;
    }
    .banner-images img.banner-box.bt {
        width: 120px;
        height: 140px;
    }
    section.aboutsec .abt-img img {
        object-fit: cover;
        height: 460px;
    }
    .ab-right {
        padding-left: 0px;
    }
    .pay-way .heading p br {
        display: none;
    }
    .solution-desgin-sec .nav-tabs {
        gap: 5px;
    }
    .solution-desgin-sec .nav-tabs .nav-link {
        padding: 10px 10px;
        font-size: 13px;
    }
    .solution-desgin-sec .container {
        padding: 0px 34px;
    }
    .solution-text ul.listing li span {
        font-size: 12px;
    }
    .solution-desgin-sec {
        padding: 50px 0;
    }
    .solution-desgin-sec .container::after {
        display: none;
    }
    .solution-desgin-sec .container::before {
        display: none;
    }
    .service-box {
        margin: 0px;
        padding: 1.6rem 1rem;
    }
    .ab-right h3 {
        font-size: 2.1rem;
    }
    ul.listing li span {
        font-size: 13px;
        line-height: 23px;
    }
    ul.listing {
        gap: 0px;
        margin: 24px 0px 18px;
    }
    .why-img img {
        height: 420px;
    }
    .why-img .download-img img {
        height: 200px;
        width: 170px;
    }
    .download-img.botom img {
        width: 180px;
        height: 80px !important;
        object-fit: fill;
    }
    section.effort-sec {
        padding: 80px 0;
        margin-bottom: 70px;
    }
    section.effort-sec h1 {
        font-size: 3.8rem;
    }
    .card-txt p {
        width: 75%;
    }
    section.testimonials {
        padding-top: 0px;
    }
    section.testimonials .heading p {
        width: 90%;
    }
    section.testimonials .simSlidDs .item .box-card {
        padding: 20px 10px 10px 10px;
    }
    section.testimonials .simSlidDs .item .box-card ul.rating {
        margin: 20px 0 10px;
    }
    section.testimonials .box-card ul.rating {
        margin: 25px 0 20px;
    }
    section.testimonials .mainSlider .box-card {
        padding: 20px 10px 20px 20px;
    }
    .contact-info {
        margin-left: 40px;
    }
    .quick-licks {
        padding-left: 10px;
    }
    section.footer-sec .row {
        padding-bottom: 20px;
    }
    .footer-info p {
        width: 95%;
    }
    .why-bottm .why-img img {
        height: 440px;
    }
}


/* For tablets and smaller devices (e.g., iPads) */

@media (max-width: 999px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    h6 {
        font-size: 1rem;
    }
    p {
        font-size: 0.9rem;
        line-height: 20px;
    }
    .maxWidth {
        max-width: 96%;
    }
    .maxWidth {
        max-width: 96%;
    }
    .menuSec ul li a {
        padding: 10px 7px;
        font-size: 0.85rem;
    }
    .banner-title h2 {
        font-size: 2.8rem;
    }
    .banner-title h1 {
        font-size: 2.9rem;
    }
    .banner-title {
        padding-bottom: 5px;
    }
    .main-baner-img img {
        transform: unset;
        height: auto;
    }
    .banner-images img.banner-box.bt {
        width: 90px;
        height: 100px;
    }
    img.banner-box.tp {
        width: 90px;
        height: 80px;
    }
    section.aboutsec {
        border-radius: 20px;
    }
    section.main-banner {
        padding-bottom: 60px;
    }
    .pay-logo img {
        width: 80px;
        height: 80px;
    }
    .solution-desgin-sec:before {
        width: 98%;
    }
    .solution-desgin-sec .container {
        padding: 0px;
    }
    .solution-desgin-sec .nav-tabs .nav-link {
        padding: 8px 6px;
        font-size: 11px;
    }
    .solution-desgin-sec .nav-tabs {
        padding: 6px 0px;
        margin-bottom: 10px;
    }
    .solution-text {
        margin-bottom: 40px;
    }
    .solution-image img {
        height: 550px;
    }
    .service-box {
        padding: 2.6rem 2rem;
    }
    section.why-sec {
        margin-top: 20px;
    }
    .why-img img {
        height: 360px;
    }
    .why-img .download-img img {
        height: 160px;
        width: 130px;
    }
    ul.listing {
        margin: 14px 0px 14px;
    }
    ul.listing li span {
        font-size: 11px;
        line-height: 20px;
    }
    section.why-sec .row {
        margin-bottom: 40px;
    }
    .ab-right h3 {
        font-size: 1.7rem;
    }
    .download-img.botom {
        left: -28px;
    }
    .why-bottm .why-img img {
        height: 370px;
    }
    .why-bottm .download-img.botom img {
        height: 50px !important;
        width: 120px;
    }
    section.why-sec p {
        font-size: 0.8rem;
    }
    .solution-text ul.listing li span {
        font-size: 11px;
        line-height: 19px;
        display: block;
        margin: 5px 0px 5px;
    }
    section.aboutsec .abt-img img {
        height: 400px;
    }
    section.effort-sec {
        padding: 50px 0;
        margin: 60px 0px;
    }
    section.effort-sec h1 {
        font-size: 2.6rem;
    }
    .card-txt p {
        width: 90%;
    }
    .simSlidDs:before {
        display: none;
    }
    section.testimonials .simSlidDs .item .box-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 32px;
        height: 350px;
    }
    section.footer-sec:before {
        display: none;
    }
    .quick-licks {
        padding: 0px;
        width: 60%;
        text-align: center;
        margin: 60px auto 60px;
    }
    .footer-info p {
        font-size: 1rem;
        line-height: 24px;
        width: 80%;
        margin: 0px auto;
    }
    .contact-info {
        margin: 0px auto 30px;
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    section.footer-sec:after {
        display: none;
    }
    section.footer-sec {
        text-align: center;
    }
    .footer-end {
        padding: 18px 0;
    }
    .footer-end p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .banner-title h1 {
        font-size: 2.6rem;
    }
    .banner-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.4rem;
    }
    h2 {
        font-size: 2.1rem;
    }
    h3 {
        font-size: 2rem;
    }
    h4 {
        font-size: 1.6rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    h6 {
        font-size: 1rem;
    }
    p {
        font-size: 0.85rem;
    }
    header {
        position: unset;
        background: #2358a6;
    }
    header .menuSec .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    header .menuSec {
        padding: 24px 0;
    }
    .banner {
        text-align: center;
        padding: 110px 0 80px;
    }
    .banner_text {
        margin-bottom: 50px;
    }
    section.aboutsec .abt-img img {
        height: 240px;
    }
    section.aboutsec .abt-img {
        border-radius: 20px;
        margin-bottom: 24px;
    }
    section.aboutsec {
        text-align: center;
    }
    .pay-logo img {
        width: 70px;
        height: 50px;
    }
    .solution-desgin-sec {
        padding: 40px 0;
    }
    .solution-desgin-sec .container {
        padding: 0px 20px;
    }
    .maxWidth {
        max-width: 100%;
    }
    .solution-desgin-sec .nav-tabs {
        border-radius: 10px;
    }
    .solution-desgin-sec .nav-tabs .nav-link {
        border: 1px solid #fff;
        margin: 4px;
    }
    .solution-text {
        text-align: center;
    }
    .solution-text ul.listing li {
        justify-content: center;
        align-items: center;
    }
    .solution-image img {
        height: 400px;
    }
    .solution-desgin-sec:before {
        border-radius: 0px;
        width: 100%;
    }
    .why-img .download-img img {
        width: 140px;
    }
    .why-img.wow.slideInRight {
        margin: 0px 0px 30px;
    }
    section.why-sec .why-bottm .row {
        flex-direction: column-reverse;
    }
    .download-img.botom {
        left: 12px;
    }
    section.effort-sec:before {
        width: 100%;
        border-radius: 0px;
        background-position: 87% 100%;
    }
    .card-txt p {
        width: 100%;
    }
    section.effort-sec h1 {
        font-size: 2.3rem;
    }
    section.testimonials .heading p {
        width: auto;
    }
    section.testimonials .simSlidDs {
        display: none !important;
    }
    .footer-info p {
        width: auto;
        font-size: 0.8rem;
        line-height: 22px;
    }
    .quick-licks {
        width: 90%;
        margin: 40px auto 30px;
    }
    .quick-licks ul li a {
        font-size: 0.8rem;
    }
    .quick-licks ul li {
        margin-bottom: 8px;
    }
    .contact-info {
        width: 90%;
        padding-top: 20px;
        margin-bottom: 0;
    }
    .contact-info ul li {
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .contact-info a {
        font-size: 11px;
    }
    .contact-info ul li p {
        font-size: 10px;
    }
    .footer-end p {
        font-size: 0.8rem;
    }
}

@media (max-width: 390px) {
    .heading p br {
        display: none;
    }
    .solution-desgin-sec .container {
        padding: 0px 10px;
    }
}

.slicknav_menu {
    background: #0058d4;
    border-bottom: 1px solid #ffffff4f;
}

.slicknav_nav a:hover {
    background: #000;
}

.slicknav_nav a {
    font-size: 12px;
    line-height: 30px;
}


/*inner Banner Start*/

section.main-banner.innerbanner-sec {
    background-image: url(../images/innerbanner.jpg);
    width: 100%;
    height: 630px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

section.main-banner.innerbanner-sec .banner {
    padding: 140px 0 0px;
}

section.main-banner.innerbanner-sec .banner-title:before {
    display: none;
}

section.main-banner.innerbanner-sec::before {
    background: linear-gradient(147deg, rgb(25 102 215) 0%, #10274700 45%);
    width: 490px;
    height: 360px;
}


/*inner Banner ENd*/


/*About Us Page Start*/

section.aboutsec.inner-about-sec {
    padding: 100px 0px 80px;
}

section.aboutsec.inner-about-sec .row.align-items-center {
    background: #0058d4;
    border-radius: 45px;
    padding: 10px 5px;
}

section.aboutsec.inner-about-sec .ab-right h1 {
    color: #fff;
}

section.aboutsec.inner-about-sec .ab-right p {
    color: #fff;
}

.about-btm-text {
    margin-top: 40px;
}


/*About us Page End*/


/*Soutions Page Start*/

.innersolution-sec {
    padding: 90px 0px;
}

.img-innersolution img {
    width: 100%;
    border-radius: 20px;
}

.img-innersolution {
    padding-left: 60px;
    padding-top: 60px;
    background: #0058d4;
    border-radius: 20px;
}

.text-innersolution {
    padding-left: 18px;
}

.innersolution-sec .row {
    align-items: center;
}

.payroll-main-row {
    padding: 90px 0px;
}

.payroll-main-row .text-innersolution {
    padding-left: 0px;
    padding-right: 20px;
}

.payroll-main-row .img-innersolution {
    padding-left: unset;
    padding-top: unset;
    padding-right: 60px;
    padding-bottom: 60px;
}


/*Solutions Page End*/


/*Solution Detail Page Start*/

.img-simple {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.img-simple span {
    font-family: 'BlenderPro';
    text-transform: uppercase;
    position: absolute;
    bottom: 13px;
    color: #fff;
    z-index: 2;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 23px;
}

.solution-sample-text h4 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 13px;
}

.solution-sample-text {
    text-align: center;
    margin-top: 20px;
}

.solution-sample-text p {
    width: 90%;
    margin: 0 auto;
}

.main-simple-box:hover .img-simple img {
    transform: scale(1.1);
    transition: 0.9s;
}

.img-simple img {
    border-radius: 20px;
}

.solution-detail-sec {
    padding: 100px 0px 0px;
}

.solution-detail-sec .col-md-3.col-lg-3.col-12 {
    width: 30%;
}

.solution-detail-sec .row {
    justify-content: space-between;
}

.heading-solution-detail {
    text-align: center;
}

.heading-solution-detail h3 {
    font-size: 22px;
}

.heading-solution-detail h2 {
    font-size: 49px;
}

.heading-solution-detail {
    margin-bottom: 50px;
}


/*Solution Detail Page ENd*/


/*PAX Page STart*/

.revolutionary-sec .img-innersolution {
    padding-left: unset;
    padding-top: unset;
    padding-bottom: 13px;
    padding-right: 60px;
}

.revolutionary-text h5 {
    font-size: 31px;
    text-align: center;
    color: #fff;
    padding-top: 16px;
}

.revolutionary-text h5 span {
    font-size: 17px;
    display: block;
}

.heading-revolutionary p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}

.heading-revolutionary {
    text-align: center;
    margin-bottom: 40px;
}

.heading-revolutionary h2 {
    font-size: 49px;
}

.revolutionary-sec {
    padding-bottom: 100px;
}

.revolutionary-sec .row {
    justify-content: center;
}


/*PAX Page End*/


/*Flex Page Start*/

section.why-sec.clove-sec.run-sec {
    background: #fafafa;
    padding-bottom: 60px;
}

.run-sec .why-img img {
    height: 100%;
    width: 78%;
}

.devices-sec h2 {
    font-size: 50px;
}

.devices-sec p {
    width: 75%;
}

.devices-sec .why-img img {
    width: 94%;
    height: 100%;
    float: inline-end;
}

.Handheld-sec .why-img img {
    height: 100%;
}

.Handheld-sec h2 {
    font-size: 50px;
}

section.why-sec.clove-sec.speed-sec h2 {
    font-size: 50px;
}

.detail-sec {
    padding: 90px 0px !important;
    background: #fafafa;
}

section.why-sec.clove-sec.speed-sec {
    padding-bottom: 90px;
}

section.why-sec.clove-sec.detail-sec .ab-right {
    padding-left: unset;
}

.detail-sec .ab-right h2 {
    font-size: 50px;
}

.detail-sec ul.creted-list li {
    padding-left: unset;
}

.detail-sec ul.creted-list li:before {
    display: none;
}

.detail-sec ul.creted-list li p b {
    color: #000;
}

.detail-sec .why-img img {
    height: unset;
}

.customer-sec {
    padding: 90px 0px !important;
}

.customer-sec .ab-right h2 {
    font-size: 50px;
}

.power-sec .why-img img {
    height: unset;
}

section.why-sec.clove-sec.power-sec {
    background: #fafafa;
    padding-bottom: 90px;
}

.power-sec h2 {
    font-size: 50px;
}


/*Flex Page End*/


/*Clover Kiosk Page Start*/

.clover-kiosk-banner .main-baner-img img {
    height: unset;
    width: unset;
}

.clover-kiosk-banner .main-baner-img {
    text-align: center;
}

section.why-sec.clove-sec.clover-liosk-sec {
    padding-bottom: 90px;
}

.clover-liosk-sec h2 {
    font-size: 50px;
}

.clover-liosk-sec .ab-right.wow.slideInLeft {
    padding-left: unset;
}

.clover-liosk-sec .why-img img {
    height: unset;
}

.self-ordering-sec .why-img img {
    width: 55%;
    margin: 0 auto;
}

.self-ordering-sec .why-img {
    text-align: center;
}

section.why-sec.clove-sec.run-sec h2 {
    font-size: 50px;
}

.self-ordering-sec ul.creted-list li p {
    width: 92%;
}

.low-touch-sec .row.align-items-center {
    justify-content: space-between;
}

.low-touch-sec ul.creted-list li p {
    width: 100%;
}

.option-img img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    margin-bottom: 20px;
}

.text-option h3 {
    font-size: 18px;
}

.options-heading-text h2 {
    font-size: 50px;
}

.options-sec {
    padding: 90px 0px;
}

.text-user-fridn h2 {
    font-size: 18px;
}

.img-user-frin {
    text-align: center;
    margin-bottom: 10px;
}

.text-user-fridn {
    text-align: center;
}

.text-user-fridn p {
    width: 59%;
    margin: 0 auto;
}

.user-friendly-sec {
    padding-top: 90px;
}


/*Clover Kiosk Page End*/


/*Clover kitchen Page STart*/

section.why-sec.clove-sec.run-sec.order-sec {
    background: unset;
    padding-top: unset;
}

.order-sec ul.creted-list li p {
    width: 98%;
}

.operations-sec .why-img img {
    height: unset;
}

.built-sec h2 {
    font-size: 45px !important;
}

.built-sec .row {
    justify-content: space-between;
}

.built-sec ul.creted-list li p {
    width: 97%;
}

section.why-sec.clove-sec.speed-sec.built-sec {
    padding-top: unset;
}

section.why-sec.clove-sec.speed-sec.operations-sec {
    padding-top: 40px;
}

.sized-sec .why-img img {
    height: 398px;
}

section.why-sec.clove-sec.speed-sec.sized-sec {
    padding-top: unset;
}

.heading-kds h2 {
    font-size: 50px;
}

.heading-kds {
    text-align: center;
}

.kds-sec .user-fri-main {
    margin-top: 60px;
}

.kds-sec .row {
    justify-content: center;
}

.kds-sec {
    padding-bottom: 90px;
}

.text-made h2 {
    font-size: 22px;
}

.made-box {
    background: #f9f9f9;
    padding: 40px 0px;
    border-radius: 10px;
}

.img-made {
    text-align: center;
    padding-bottom: 30px;
}

.text-made {
    padding: 0px 27px;
}

.made-heading h2 {
    font-size: 50px;
}

.made-heading {
    text-align: center;
    margin-bottom: 40px;
}

.made-sec .row {
    justify-content: center;
}

.made-sec {
    padding-bottom: 90px;
}

.text-made p {
    height: 110px;
}

.text-bumbar h2 {
    font-size: 50px;
}

.text-bumbar p {
    width: 84%;
    margin-bottom: 0px;
}

.bumpbar {
    background: #fafafa;
    padding-top: 100px;
}

.img-bumpbar {
    margin-top: 30px;
}


/*Clover kitchen Page End*/


/*Clover Stateion Duo Start */

.clove-sec {
    padding: 90px 0px 0px;
}

.clove-sec .row {
    margin-bottom: 0px !important;
}

ul.creted-list li h4 {
    font-size: 16px;
    font-weight: 600;
}

ul.creted-list li p {
    width: 77%;
    font-weight: 500;
    color: #0000008c;
}

ul.creted-list {
    margin: 20px 0 20px;
}

ul.creted-list li {
    padding-left: 25px;
    position: relative;
}

ul.creted-list li:before {
    position: absolute;
    content: '';
    background: #1e5ad1;
    width: 9px;
    height: 9px;
    left: 0px;
    top: 2px;
}

section.why-sec.clove-sec.manage-sec {
    padding: 90px 0px 80px;
}

.manage-sec .why-img img {
    height: unset;
}

.manage-sec .ab-right h2 {
    font-size: 46px;
}

.manage-sec ul.creted-list li p {
    width: 92%;
}

section.why-sec.clove-sec.build-sec {
    padding-bottom: 90px;
}

.revolutionary-sec.clov-flx-sec {
    padding-top: 90px;
}


/*Clover Stateion Duo End*/


/*Clover Flex Pocket Page STart*/

.clover-flex-ban .main-baner-img img {
    width: 44%;
}

.clover-flex-ban .main-baner-img {
    text-align: center;
}

.sleek-sec ul.creted-list li:before {
    display: none;
}

.sleek-sec ul.creted-list li {
    padding-left: 0px;
    width: 100%;
}

.sleek-sec ul.creted-list li p {
    width: 100%;
}

.heading-post-fea h2 {
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
}

.pos-featu-sec .text-user-fridn p {
    width: 79%;
}

section.why-sec.clove-sec.manage-sec.gain-real-sec {
    padding: 100px 0px 110px;
    background: #1e5ad1;
    margin-top: 60px;
}

.gain-real-sec .why-img img {
    width: 87% !important;
}


/*Clover Flex Pocket Page End*/


/*Pax E600 Page Start*/

.heading-sleek-design h2 {
    font-size: 50px;
}

.heading-sleek-design {
    text-align: center;
    margin-bottom: 40px;
}

.sleek-design-sec {
    padding: 90px 0px;
}

.text-key-features h2 {
    font-size: 50px;
}

.text-key-features ul.creted-list li p {
    width: 100%;
    color: #000;
    margin-bottom: 13px;
    font-family: 'BlenderPro';
    font-size: 16px;
    color: #000;
    opacity: 1;
    text-transform: uppercase;
}

.key-features-sec {
    padding-bottom: 100px;
}

.touch-sec {
    background-image: url(../images/dual-back.jpg);
    width: 100%;
    height: 530px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.text-touch h2 span {
    background: #1e5ad1;
    color: #fff;
    padding: 0px 8px;
    border-radius: 7px;
}

.text-touch h2 {
    line-height: 57px;
    font-size: 50px;
}

.touch-sec .row {
    align-items: center;
}

.seamless-img img {
    width: 100%;
    border-radius: 20px;
}

.seamless-sec {
    padding: 100px 0px;
}

.interested-sec {
    background-image: url(../images/interested-back.jpg);
    width: 100%;
    height: 370px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.text-interested h2 {
    color: #fff;
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-interested {
    display: flex;
    justify-content: center;
    gap: 20px;
}


/*Pax E600 Page End*/


/*Pax E700 Page Start*/

.text-seampless h2 {
    font-size: 28px;
    line-height: 33px;
}

.text-seampless {
    margin-top: 20px;
}

.seamless-sec.multiple-sec {
    padding: 50px 0px 100px;
}

.interested-sec.high-speed-sec {
    background-image: url(../images/high-speed-back.png);
    height: 410px;
}

.high-speed-sec .text-interested h2 {
    text-align: left;
    margin-bottom: 11px;
}

.high-speed-sec .text-interested p {
    color: #fff;
}

.beaturiful-main-sec .payroll-main-row {
    padding-top: 0px;
}

.text-key-features ul.creted-list li:before {
    top: 10px;
}


/*Pac E700 End*/


/*Litchi Pro Page Start*/

.text-litchi-pro h2 {
    font-size: 50px;
}

.text-litchi-pro p {
    width: 86%;
}

.litchi-pro-sec .row {
    align-items: center;
}

.litchi-pro-sec {
    padding: 90px 0px;
}

.text-customize h2 {
    font-size: 50px;
}

.text-customize {
    text-align: center;
    margin-bottom: 50px;
}

.customize-img {
    text-align: center;
}

.customize-sec {
    padding-bottom: 90px;
}

.customize-box h2 {
    font-size: 36px;
}

.customize-box p {
    margin-bottom: 0px;
}

.customize-box {
    text-align: center;
    border: 1px solid #00000087;
    padding: 50px 0px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.increased-btn {
    text-align: center;
}

.customize-sec.increased-sec {
    padding-top: 90px;
    background: #fafafa;
}

.variety-sec {
    padding-top: 80px;
}

.innersolution-sec.elevate-sec {
    padding-top: unset;
}

.elevate-sec .payroll-main-row {
    padding: unset;
}

.text-complete p {
    width: 82%;
}

.img-compelte {
    text-align: center;
}

.complete-sec .row {
    align-items: center;
}

.complete-sec {
    background: #fafafa;
    padding: 90px 0px;
}

.complete-sec .text-customize {
    margin-bottom: 80px;
}

.complete-sec .pbtn span.btnimg img {
    width: 20px;
    object-fit: contain;
}

.complete-slid .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0058d4;
}

.complete-slid .slick-dots li button:before {
    opacity: 1.25;
    color: #0000005e;
    font-size: 6px;
}

.complete-slid .slick-dots li.slick-active button {
    border: 2px solid #0d6efd;
    border-radius: 30px;
}

.complete-slid .slick-dots {
    bottom: -55px;
}

.empowering-sec .img-innersolution {
    padding-left: unset;
    padding-top: unset;
    padding-right: 40px;
    padding-bottom: 2px;
}

.empowering-sec {
    padding: 90px 0px;
}

.empowering-sec .revolutionary-text h5 {
    font-size: 26px;
    padding-bottom: 10px;
}


/*Litchi Pro Page End*/


/*Salido Page Start*/

.text-perfectly h2 {
    font-size: 41px;
    color: #fff;
    margin-bottom: 15px;
}

.text-perfectly h3 {
    font-size: 15px;
    color: #fff;
}

.perfectly-sec .row {
    align-items: center;
    margin: 0px 100px;
    background: #131d2b;
    padding: 30px 30px;
    border-radius: 10px;
}

.perfectly-sec {
    padding: 10px 0px 100px;
}

.latest-sec .row {
    justify-content: center;
    align-items: center;
}

.latest-prioriize {
    padding-top: 60px;
}

.latest-sec {
    padding-bottom: 90px;
}

.stay-sec .row {
    justify-content: center;
    align-items: center;
}

.stay-sec {
    background: #131d2b;
    padding: 90px 0px;
}

.stay-text h2 {
    color: #fff;
}

.stay-text p {
    color: #fff;
}

.stay-box-text h2 {
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 28px;
}

.stay-box-text p {
    text-align: center;
    color: #fff;
    height: 100px;
}

.stay-box-text {
    margin-top: 20px;
}

.text-flexible h2 {
    font-size: 25px;
    margin-bottom: 17px;
}

.text-flexible {
    text-align: center;
    margin-top: 20px;
}

.flexible-sec .row {
    justify-content: space-between;
    margin: 0px 110px;
}

.flexible-sec {
    padding: 90px 0px;
}


/*Salido Page End*/


/*Skytab Page STart*/

.sky-tab-sec .text-perfectly p {
    color: #fff;
}

.sky-tab-sec .row {
    padding: 60px 30px 40px;
}

.text-innersolution ul.creted-list li p {
    width: 100%;
    color: #000;
    margin-bottom: 5px;
    font-family: 'BlenderPro';
    font-size: 16px;
    color: #000;
    opacity: 1;
    text-transform: uppercase;
}

.text-innersolution ul.creted-list li:before {
    top: 10px;
}

.innersolution-sec .payroll-main-row .row {
    justify-content: end;
}

.perfectly-sec.sky-tab-sec {
    padding: 100px 0px 30px;
}

.innersolution-sec.sky-tab-main-sec {
    padding-bottom: 30px;
}


/*Skytab Page End*/


/* contact us page start  */

section.contactSec form {
    position: relative;
}

section.contactSec form input {
    width: 100%;
    margin-bottom: 30px;
    padding: 12px 0px;
    color: #fff;
    font-weight: 500;
    border: 0px;
    border-bottom: 2px solid #67676773;
    border-radius: 0px;
    font-size: 14px;
    background: transparent;
}

section.contactSec form textarea#message {
    transition: 0.6s;
    height: 120px;
    resize: unset;
    position: relative;
    width: 82%;
    margin-bottom: 20px;
    padding: 14px 0px;
    color: #fff;
    font-weight: 500;
    border: 0px;
    border-bottom: 2px solid #67676773;
    border-radius: 0px;
    background: transparent;
}

section.contactSec form textarea#message::placeholder {
    position: absolute;
    bottom: 30px;
}

section.contactSec form .brtns {
    display: block;
    position: absolute;
    right: 43px;
    bottom: 7px;
}

section.contactSec .collefts {
    position: relative;
    padding: 80px 50px;
    height: 100%;
    background: #131d2b;
    box-sizing: border-box;
    box-shadow: 0px 0px 14px 4px #4444441c;
    border-radius: 10px 0px 0px 10px;
}

section.contactSec .quick-links {
    background: #0058d4;
    padding: 80px 30px 80px 50px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
}

section.contactSec .quick-links h3 {
    color: #fff;
    position: relative;
}

section.contactSec .quick-links h3:before {
    position: absolute;
    height: 5px;
    bottom: 0;
    background: #29abe1;
    left: 4px;
}

section.contactSec .quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

section.contactSec .quick-links ul li {
    position: relative;
}

section.contactSec .quick-links ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
}

section.contactSec .quick-links ul li a span {
    color: #fff;
    text-transform: capitalize;
    font-size: 14px;
}

section.contactSec .wraper {
    position: relative;
    width: 84%;
    margin: 0px auto;
}

section.contactSec h3 {
    margin-bottom: 50px;
    color: #fff;
    font-size: 31px;
}

section.contactSec form .brtns button {
    padding: 0px;
    border: 0;
    background-color: transparent;
}

section.contactSec form .brtns button i {
    width: 55px;
    height: 50px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1e5ad1;
    border-radius: 5px;
    transition: 0.3s;
}

section.contactSec form select {
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 0px;
    color: #fff;
    font-weight: 500;
    border: 0px;
    border-bottom: 2px solid #67676773;
    border-radius: 0px;
    font-size: 12px;
    text-transform: capitalize;
    background: transparent;
}

section.contactSec {
    position: relative;
    padding: 100px 0;
}

section.contactSec h1 {
    color: #0b1424;
}

section.contactSec form .brtns button:hover i {
    background: #fff;
    transform: scale(1.1);
    color: #1e5ad1;
}

section.contactSec .svvsDrp {
    position: relative;
}

section.contactSec .svvsDrp img {
    position: absolute;
    right: 0;
    top: 21px;
    z-index: 1;
}

section.contactSec form input::placeholder {
    color: #fff;
}

section.contactSec form textarea#message::placeholder {
    color: #fff;
}

.text {
    font-size: 14px;
}


/* contact us page end */


/*Flip Slider Css Start*/

.flipster--carousel .flipster__item__content {
    transform-origin: center center !important;
    transition: all 400ms ease-in-out !important;
}

.flipster--carousel .flipster__item--past .flipster__item__content,
.flipster--carousel .flipster__item--future .flipster__item__content,
.flipster--carousel .flipster__item--past-1 .flipster__item__content,
.flipster--carousel .flipster__item--future-1 .flipster__item__content,
.flipster--carousel .flipster__item--past-2 .flipster__item__content,
.flipster--carousel .flipster__item--future-2 .flipster__item__content {
    transform: none !important;
}

.flipster--carousel .flipster__item--current .flipster__item__content {
    transform: translate(0px, 0px) scale(0.9);
    opacity: 1 !important;
    z-index: 5;
}

.flipster--carousel .flipster__item--past-1 .flipster__item__content,
.flipster--carousel .flipster__item--future-1 .flipster__item__content {
    transform: translate(-10px, 0px) scale(0.8) !important;
    z-index: 4;
}

.flipster--carousel .flipster__item--past-2 .flipster__item__content,
.flipster--carousel .flipster__item--future-2 .flipster__item__content {
    transform: translate(80px, 0px) scale(0.7) !important;
    z-index: 3;
}

.flipster--carousel .flipster__item--past-3 .flipster__item__content,
.flipster--carousel .flipster__item--future-3 .flipster__item__content {
    opacity: 0 !important;
    transform: scale(0.5) !important;
    z-index: 2;
}

.flipster--carousel .flipster__item--future-2 .flipster__item__content {
    transform: translate(-120px, 0px) scale(0.7) !important;
}


/* Flipster full width + visible overflow */

.flipster {
    /* overflow: visible !important; */
    margin: 0 auto;
    position: relative;
    padding: 30px 0px 110px;
}


/* Make inner wrapper full width */

.flipster__container {
    width: 100% !important;
}


/* Flip items visible */

.flipster__item {
    opacity: 1 !important;
}


/* Central item (active) bigger and more prominent */

.flipster__item--current .card_box {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}


/* Left and right visible items slightly smaller */

.flipster__item--past-1 .card_box,
.flipster__item--future-1 .card_box {
    transform: scale(0.9);
    opacity: 0.9;
}


/* Two items away even smaller */

.flipster__item--past-2 .card_box,
.flipster__item--future-2 .card_box {
    transform: scale(0.8);
    opacity: 0.7;
}

.img-better-customer {
    margin-bottom: 20px;
}

.better-bustomer-text h3 {
    font-size: 30px;
    font-family: 'BlenderPro';
}

.card_box {
    border: 1px solid #00000054;
    padding: 0px 0px 60px;
    background: #fff;
}

.better-bustomer-text {
    padding: 0px 40px;
}

.card_box {
    overflow: hidden;
    color: #fff;
    /* increase card width */
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); */
    margin: auto;
    transition: all 0.4s ease;
    /* padding: 10px; */
    width: 360px;
    position: relative;
}

.heading.better-customer h2 {
    font-size: 50px;
    text-align: center;
}

section.better-customer-Sec {
    padding-top: 100px;
}

.flipster__item {
    opacity: 1 !important;
}


/*Flip Slider Css End*/


/*Pax Workshop Page Start*/

.text-innersolution.pwrk p {
    width: 92%;
}

.why-img.cntrl img {
    height: auto;
    object-fit: scale-down;
}

.ab-right.cnt h3 {
    font-size: 50px;
}

.ab-right.cnt p {
    width: 90%;
}

.featured-head {
    text-align: center;
    margin-bottom: 35px;
}

.features-sec {
    padding: 100px 0;
    background: #fafafa;
}

.featured-head h2 {
    color: #16202e;
    font-size: 50px;
}

.featured-head p {
    color: #16202e;
    opacity: 50%;
}

.feature-img img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    object-fit: cover;
}

.featured-txt {
    margin-top: 30px;
    text-align: center;
}

.featured-txt h5 {
    font-size: 30px;
    color: #16202e;
}

.featured-txt p {
    font-size: 14px;
    color: #16202e;
    opacity: 50%;
}

.marksheet-station-sec {
    background: #fafafa;
    padding-bottom: 100px;
}

.marksht-point {
    border: 1px solid #00000063;
    text-align: center;
    padding: 60px 10px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.marksht-point p {
    margin: unset;
}

.marksht-point h4 {
    color: #16202e;
    font-size: 30px;
}

.ftr-pnt-mrk {
    text-align: center;
    margin-top: 15px;
}

.innersolution-sec.wrksttn {
    margin-bottom: 70px;
}


/*Pax Workshop Page End*/


/*VP550 Page Start*/

.resources-550mpsec {
    padding: 274px 0;
    margin-bottom: 70px;
    position: relative;
}

.resourc-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}

.resource-text-vp550 {
    margin-left: 25px;
}

.resource-text-vp550 h2 {
    color: #16202e;
    font-size: 50px;
}

.resource-text-vp550 ul li {
    padding: 15px 25px;
    background: #0058d4;
    border-radius: 30px;
    font-family: 'Montserrat';
    font-size: 13px;
    color: #fff;
    text-align: center;
}

.resource-text-vp550 ul li {
    margin-bottom: 19px;
}

.resource-text-vp550 ul {
    column-count: 2;
    margin-top: 30px;
    width: 79%;
}

section.explore-mb-550 {
    margin-bottom: 100px;
    text-align: center;
}

section.explore-mb-550 h2 {
    font-size: 50px;
    color: #16202e;
    margin-bottom: 40px;
}

.img-explore-pic img {
    width: 100%;
    height: 100%;
}

section.payment-method-mb5-sec {
    margin-bottom: 100px;
    text-align: center;
}

.payment-method-mb5-sec h2 {
    font-size: 50px;
    color: #16202e;
    margin-bottom: 60px;
}

.payment-main h4 {
    margin-top: 60px;
    font-size: 30px;
    color: #16202e;
}

.payment-img {
    height: 480px;
}

section.touch-scrn-550-inr {
    background-repeat: no-repeat;
    padding: 120px 0 0;
    margin-bottom: 100px;
    background-image: url(../images/my-walt-550.png);
    width: 100%;
    height: 100%;
    background-size: cover;
}

.touch-550-main-side {
    text-align: center;
    background: #fff;
    padding: 19px 20px;
    border-radius: 11px;
    margin-bottom: 20px;
    height: 250px;
    align-content: center;
}

.touch-550-main-side h6,
.touch-550-main-side h5 {
    font-size: 25px;
    margin: unset;
}

.touch-550-main-side img {
    margin: 25px 0;
}

.touch-550-main-side ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    position: relative;
    margin: unset;
}

.touch-550-main-side ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.touch-550-main-side ul:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #a7a7a791;
    width: 1px;
    height: 70%;
    bottom: 0;
    right: 0;
    margin: auto;
}

.touch-550-main-side.cntcy {
    height: 220px;
}

.sid-tch-mchine img {
    height: 670px;
    object-fit: contain;
    width: 100%;
}

section.inventry-mb550-sec .row {
    align-items: center;
}

.invent-mb550-img {
    text-align: center;
}

.inven-mb550-main ul li h3 {
    font-size: 30px;
    margin-bottom: 11px;
}

.inven-mb550-main ul li p {
    font-size: 14px;
    width: 96%;
}

.inven-mb550-main ul li {
    margin-bottom: 40px;
}

.invent-mb550-img img {
    width: 380px;
    height: 810px;
    object-fit: cover;
}

.inven-mb550-main {
    margin-top: 130px;
}

section.business-sec {
    padding: 100px 0;
    text-align: center;
}

section.business-sec .container-fluid {
    padding: 0 3%;
}

section.business-sec h2 {
    font-size: 50px;
    margin-bottom: 35px;
    border-bottom: 1px solid #0000002e;
    padding-bottom: 20px;
}

.business-pg-main h6 {
    font-size: 28px;
    margin-bottom: 12px;
}

.business-pg-main p {
    font-size: 13px;
    width: 90%;
    margin: 0 auto;
}

section.business-sec .business-pg-main:before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0px;
    background: #0000002e;
    width: 1px;
    height: 90%;
}

.business-pg-main {
    position: relative;
}

.image-box img {
    width: 250px;
    height: 250px;
    object-fit: scale-down;
}

.compare-table {
    max-width: 1300px;
    margin: 40px auto;
    background: #fff;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}


/* ===== HEADING ===== */

.compare-table h2 {
    text-align: center;
    padding: 25px 0;
    margin: 0;
    font-weight: 700;
    font-size: 50px;
}


/* ===== DROPDOWN AREA ===== */

.compare-select-row {
    background: #f1f6ff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.select-item {
    flex: 1;
}

.select-item label {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.select-item select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd8e6;
    border-radius: 6px;
    font-size: 15px;
    appearance: auto;
}


/* ===== TABLE ===== */

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 18px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid #e0e0e0;
    vertical-align: top;
}


/* LEFT SIDE HEADING COLUMN */

table th {
    background: #f8fbff;
    width: 200px;
    font-weight: 600;
}


/* ICON STYLE */

table th i {
    margin-right: 8px;
    color: #1a73e8;
}


/* ==== IMAGE BOXES (FIXED SIZE) ==== */

.image-box {
    width: 150px;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    background: #fff;
}

.image-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}


/* Display text only takes natural size (NO forced height) */


/* .display-text {
  display: inline-block;
} */

.vp-550-table-measure-sec {
    margin-bottom: 100px;
}

section.rubost-sec {
    padding: 100px 0 0;
    margin-bottom: 100px;
    position: relative;
}

section.rubost-sec:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/my-walt-550.png);
    width: 100%;
    height: 85%;
    background-size: cover;
    z-index: -1;
}

.robust-main-head h2 {
    color: #fff;
    margin-bottom: 50px;
    font-size: 50px;
}

.payment-img.p800in {
    height: 250px;
}

.sid-tch-mchine.p800in {
    text-align: end;
}

.robotus-box {
    position: relative;
}

.robotus-box h3 {
    font-size: 37px;
    position: absolute;
    bottom: 10px;
    color: #fff;
    left: 30px;
}

.robotus-box img {
    border-radius: 20px;
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.robotus-box:before {
    position: absolute;
    content: '';
    background: #0000004f;
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.robotus-slid .slick-active {
    opacity: 1.5;
}

.robotus-slid .slick-slide {
    opacity: 1.5;
}

.robotus-slider-main {
    /* margin-left: 260px; */
}

table th i {
    font-size: 26px;
    color: #2ab96d;
    margin-right: 20px;
}

.touch-550-main-side.cntcy.thfn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 250px;
}

.display-800 img {
    margin: 22px 0;
}

section.touch-scrn-550-inr.p800in {
    padding: 120px 0 20px;
}

h2.table-heading {
    text-align: center;
}


/*inner Pages CSs End*/

.site-logo a {
    font-family: 'BlenderPro';
    text-transform: uppercase;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

section.merchant-service.padd {
    padding-bottom: 130px;
}

.why-bottm {
    padding-top: 70px;
    padding-bottom: 40px;
}

.innerbanner-sec .banner_text h2 {
    font-size: 63px;
}

.innerbanner-sec .main-baner-img img {
    height: 100%;
}

img.clover-banner-img {
    width: 70%;
    float: inline-end;
}

.your-busines-sec {
    background: #2c5cce;
    margin: 100px;
}

.your-busines-sec p {
    color: #fff !important;
}

.your-busines-sec h2 {
    color: #fff !important;
}

.your-busines-sec h4 {
    color: #fff !important;
}

.your-busines-sec li::before {
    background: #fff !important;
}

section.why-sec.clove-sec:hover .why-img img {
    /* filter: brightness(0.5); */
    /* transition: 0.7s; */
    /* margin-left: -20px !important; */
}

img.clover-flex-pock-ban-img {
    width: 90% !important;
}

.small-features-sec {
    background: #1e5ad1;
}

.small-features-sec .featured-head h2 {
    color: #fff;
}

.small-features-sec .featured-head p {
    color: #fff;
}

.small-features-sec .featured-txt h5 {
    color: #fff;
}

.small-features-sec .featured-txt p {
    color: #fff;
    opacity: 1;
}

.small-features-sec .marksht-point {
    border-color: #fff;
}

.small-features-sec .marksht-point h4 {
    color: #fff;
}

.small-features-sec .marksht-point p {
    color: #fff;
}


/*Skytab Pos Page Start*/

.text-skytab-pos {
    padding-left: 40px;
}

.relaibl-text h5 {
    font-weight: 600;
    color: #0a58ca;
    margin-bottom: 3px;
}

.relaibl-text {
    margin-top: 30px;
}

.sky-tabpos-sec .row {
    align-items: center;
}

.user-friendly-sec.sky-tab-inner-sec .row {
    justify-content: center;
}

.sky-tab-inner-sec .text-user-fridn p {
    width: 100%;
}

.user-friendly-sec.sky-tab-inner-sec {
    padding-bottom: 90px;
    background: #f5f5f5;
}

.sky-tab-inner-sec .img-user-frin img {
    border-radius: 50px;
    width: 70px;
    height: 70px;
    object-fit: contain;
}


/*.sky-tab-inner-sec .img-user-frin {
    border: 1px solid #0a58ca;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
*/

.sky-tab-inner-sec .text-user-fridn {
    margin-top: 20px;
}

.skytab-pos-img img {
    width: 100%;
}

.sky-tabpos-sec.need-more-sec {
    background: #1e5ad1;
    padding: 100px 0px;
}

.sky-tabpos-sec.need-more-sec .row {
    justify-content: center;
    text-align: center;
}

.sky-tabpos-sec.need-more-sec .text-skytab-pos {
    /* padding-left: 220px; */
    width: 100%;
}

.sky-tabpos-sec.need-more-sec h2 {
    color: #fff;
}

.sky-tabpos-sec.need-more-sec p {
    color: #fff;
}

.contact_form {
    padding: 70px 200px 90px;
    position: relative;
    z-index: 2;
}

.contact_form .form_wrp {
    display: flex;
    align-items: center;
    /* border-radius: 35px; */
    background: #fff;
    box-shadow: 0px 11px 68px 0px rgba(33, 33, 33, 0.11);
    justify-content: center;
    margin: 0 70px;
    padding: 60px 0px;
    border-radius: 20px;
}

.contact_form .form_wrp>img {
    width: 50%;
    height: 600px;
    object-fit: cover;
    /* border-top-right-radius: 5px; */
    /* border-bottom-right-radius: 5px; */
    /* border-radius: 30px; */
}

.contact_form .form_wrp>form {
    padding: 10px 45px;
}

.contact_form .form_wrp>form input,
select {
    width: 100%;
    height: 48px;
    border: 1px solid #2f2f2f69;
    background: #fff;
    padding: 15px;
    color: #000;
    border-radius: 6px;
    margin-bottom: 30px;
}

.contact_form .form_wrp>form input::placeholder {
    font-size: 14px;
    color: #2f2f2f69;
}

.contact_form .form_wrp>form textarea::placeholder {
    font-size: 14px;
    color: #2f2f2f69;
}

.contact_form .form_wrp>form textarea {
    width: 100%;
    color: #fff;
    height: 170px;
    margin-bottom: 0px;
    border: 1px solid #2f2f2f69;
    resize: none;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    color: #000;
}

.contact_form .form_wrp>form button {
    border: none;
    width: max-content;
}

.services-heading {
    text-align: center;
}

.services-heading p {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.services-heading.wow.fadeInDown {
    margin-bottom: 30px;
}


/*Skytab Pos Page End*/


/*Sky Tab Air Page STart*/

.air-secone .skytab-pos-img img {
    height: 710px;
    object-fit: cover;
}

.need-sec-sky .text-skytab-pos {
    padding-left: 60px !important;
    width: 60% !important;
    margin: 0 auto;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 4px;
    background: #e6e8ec;
}

.faq-question {
    width: 100%;
    background: #e6e8ec;
    padding: 18px 20px;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
    color: #19202c;
    font-family: 'BlenderPro';
}

.faq-question.active {
    background: #e7e9ed;
    border-bottom: 1px solid #d2d4d8;
    position: relative;
}

.faq-question.active::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    width: 55px;
    height: 2px;
    background: #e97c2c;
    /* orange underline */
}

.faq-answer {
    background: #ffffff;
    padding: 20px 22px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.icon {
    font-size: 26px;
    font-weight: 400;
}

.collapse.show+.faq-question .icon {
    content: "ÃƒÂ¢Ã‹â€ Ã¢â‚¬â„¢";
}

.heading-faq {
    margin-bottom: 29px;
}

.faqs-sec {
    padding: 50px 0px;
}


/*Sky tab Ar Page End*/


/*Sky tab Kiosk Page STart*/

.sky-tabpos-sec.need-more-sec.Upgrade-sec {
    background: unset;
}

.sky-tabpos-sec.need-more-sec.Upgrade-sec h2 {
    color: #000;
}

.sky-tabpos-sec.need-more-sec.Upgrade-sec p {
    color: #000 !important;
}

.sky-kiosk-big-img {
    background: #f5f5f5;
}


/*Sky tab Kiosk Page End*/


/*Get started Page Start*/

.form-control:disabled,
.form-control:read-only {
    background-color: #ffffff;
}

.input-group-text {
    background-color: #ffffff;
    border-left: 0;
}

.order-form .input-group {
    position: relative;
}

.order-form .input-group>.form-control,
.order-form .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-color: #bdbdbd;
    color: #909091;
    font-family: 'Montserrat';
    border-radius: 5px;
    font-weight: 500;
    padding: 17px;
    margin-bottom: 0;
    font-family: 'Poppins';
    font-weight: 400;
    border-radius: 40px !important;
}

.order-form .form-select {
    background-image: url(../images/arrow-icon.png);
    background-size: unset;
}

.input-group-text.plane {
    align-items: start;
}

.order-form textarea.form-control {
    resize: none;
}

.submit-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

form.order-form {
    margin-top: 7%;
}

form.order-form :is(input,
select,
textarea) {
    border: 1px solid #0000001f;
    border-radius: 5px;
    font-family: 'Poppins';
    border-radius: 20px;
    padding: 100px 20px 0px;
}

form.order-form ::placeholder {
    color: #909091;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border: 1px solid #b3b3b3;
    border-radius: 0px 10px 10px 0px;
    padding: 14px;
}

.contact1 input::placeholder {
    color: #909091;
}

section.work-together.bg-effect:before {
    background-position: bottom;
}

.work-together {
    /* margin-bottom: 100px; */
    /* margin-top: 100px; */
}

.order-form .input-group i {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50px;
    display: flex;
    border: none !important;
    align-items: center;
    justify-content: center;
    color: #00000082;
}

.order-form .input-group i::after {
    width: 10px;
    background-size: 10px 50px;
    background-image: url(../images/right-arrow.png);
    background-repeat: no-repeat;
    content: '';
    height: 58px;
    width: 26px;
    position: absolute;
    right: 50px;
    rotate: 180deg;
    top: -2px !important;
    background-size: 10px 54px;
}

.appointment-submit-btn span:nth-child(1) {
    font-family: 'MontBlanc', sans-serif;
    font-size: 11px;
    color: var(--white-color);
    text-transform: uppercase;
    background-color: var(--red-color);
    border-radius: 3px;
    height: 50px;
    display: inline-flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding: 0 22px;
    border: 1px solid transparent;
    transition: background-color 0.9s ease, color 0.9s ease, border-color 0.3s ease;
}

.appointment-submit-btn span:nth-child(1):hover {
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

.appointment-submit-btn span:nth-child(2) {
    font-size: 11px;
    font-weight: bold;
    color: var(--red-color);
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--light-black);
    border-radius: 3px;
    transition: background-color 0.9s ease, color 0.9s ease, border-color 0.3s ease;
}

.appointment-submit-btn span:nth-child(2):hover {
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

.section-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-heading h2 {
    padding: 0 0 15px 0;
}

.section-heading p {
    width: 60%;
    padding: 0 0 16px 0;
}

.text-area {
    width: 100%;
    height: 200px;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-color: #bdbdbd;
    color: #909091;
    font-family: 'Montserrat';
    border-radius: 5px;
    font-weight: 500;
    padding: 17px;
    margin-bottom: 0;
    height: 150px;
}

.appointment-submit-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-together .heading-text {
    margin-bottom: 30px;
    text-align: center;
}

.quick-links ul li a:hover {
    color: #f7c566;
}

ul.ftr-list li a:hover {
    color: #f7c566;
}


/*Get Started Page End*/

.relaibl-text ul li {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9rem, 0.6vw + 0.6rem, 1rem);
    font-weight: 500;
    color: #141312;
    opacity: 80%;
    margin-bottom: 10px;
    list-style: disc;
    margin-left: 16px;
}

.globe-container {
    background: #111;
    height: 600px;
    /* adjust as needed */
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

div#canvas-container {
    transform: scale(1.2);
}

.vlover-sec .row {
    align-items: center;
}

.vlover-text h3 {
    font-size: 60px;
}

.vlover-sec {
    padding-top: 60px;
}

.leading-text {
    padding-left: 150px;
}

.leading-text h2 {
    font-size: 70px;
}

.leading-text p {
    width: 80%;
    font-size: 15px;
}

.leding-sec .row {
    align-items: center;
}

.leding-sec {
    padding: 90px 0px 90px;
}

.img-leading img {
    border-radius: 40px 0px 0px 40px;
}

.img-explore-pic {
    position: relative;
}

.img-explore-pic a {
    background: #0e1f9d;
    color: #fff;
    /* padding: 29px 39px; */
    border-radius: 50%;
    font-size: 34px;
    position: absolute;
    top: 43%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo a img {
    width: 190px;
}

a.ft-logo img {
    width: 220px;
    object-fit: cover;
}

section.footer-sec .row {
    align-items: center;
}

.skytab-logo img {
    width: 180px;
}

.skytab-logo {
    text-align: center;
    margin-top: 100px;
}

.text-centric h2 {
    font-size: 45px;
}

.text-centric p {
    width: 80%;
}

.centric-sec .row {
    align-items: center;
}

.pbmit-card-box-wrapper {
    background: #fff;
}

.about-heading {
    text-align: center;
    margin-bottom: 60px;
}

.about-row.about-main-box .row {
    align-items: center;
}

section.pbit-sec.about_sec.sec {
    padding: 100px 0px;
}

.about-row-2.about-main-box .row {
    align-items: center;
}

.about-main-box .row {
    align-items: center;
}

.service-box:hover .box-number {
    background: #000;
}

.service-box:hover h5.box-title {
    color: #fff;
}

.service-box:hover p {
    color: #fff;
}

.img-innersolution.solution-ineer-img img {
    background: #fff;
    height: 470px;
    object-fit: contain;
}

.img-innersolution.inner-solution-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.revolutionary-text span.btnimg img {
    width: unset;
    height: unset !important;
    background: unset;
}

.revolutionary-text {
    text-align: center;
}

.revolutionary-text .sitebtn {
    margin-top: 10px !important;
    padding-bottom: 10px;
}

.contact_form select {
    font-family: 'Montserrat';
    text-transform: capitalize;
    color: #00000061;
    appearance: auto;
}

section.contact_form.clover-inner-contact .form_wrp>img {
    height: 640px;
}

section.contact_form.clover-inner-contact input {
    margin-bottom: 16px;
}

section.why-sec.clove-sec.manage-sec.gain-real-sec .ab-right h2 {
    color: #fff;
}

section.why-sec.clove-sec.manage-sec.gain-real-sec .ab-right p {
    color: #fff;
}

section.why-sec.clove-sec.manage-sec.gain-real-sec .ab-right ul.creted-list li:before {
    background: #fff;
}

section.why-sec.clove-sec.manage-sec.gain-real-sec .ab-right li h4 {
    color: #fff;
}

.text-flexible span.text {
    font-size: 12px;
}

.clover-inner-contact .form_wrp.wow.fadeInLeft {
    margin: unset;
    padding: unset;
    border-radius: unset;
}

.mega-wrapper {
    display: flex;
    gap: 40px;
    padding: 20px;
}


/* LEFT CATEGORY BOXES */

.left-boxes {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-box {
    padding: 0px 10px;
    background: #f3faff;
    border-radius: 5px;
    /* border: 1px solid #d9e9ff; */
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-box a {
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.left-box.active,
.left-box:hover {
    background: #1e5ad1;
    position: relative;
}

.left-box h3 {
    margin: 0 0 7px 0;
    font-family: 'BlenderPro';
    font-size: 23px;
}


/* RIGHT AREA */

.right-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 80%;
}

.menu-list {
    width: 220px;
    display: none;
    list-style: none;
    padding: 0;
}

.menu-list.active {
    display: block;
}

.menu-list li {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.menu-list li:hover {
    background: #1e5ad1;
}


/* IMAGE AREA */

.menu-image {
    width: 530px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .2s ease;
}

.menuSec li:hover>ul {
    width: 66%;
    left: 340px;
    border-radius: 30px;
    padding: 30px 10px;
}

.menu-list li {
    display: block !important;
    text-align: left;
    margin-bottom: -2px;
    padding: 0px 10px !important;
}

.menu-list h4 {
    text-align: left;
    color: #fff;
    font-size: 28px !important;
    margin-bottom: 20px !important;
}

.menu-list h4 a {
    font-size: 28px !important;
}

.menu-list li:hover a {
    color: #fff;
}

.left-box img {
    width: 130px;
    border-radius: 6px;
    height: 100px;
    object-fit: contain;
    background: #000000;
}

.left-box.active:before {
    position: absolute;
    content: '';
    background: #1e5ad1;
    top: 39px;
    right: -51px;
    width: 52px;
    height: 40px;
    clip-path: polygon(35% 49%, 0 0, 0 100%);
}

.left-box.active h3 {
    color: #fff;
}

img.clover-new-ban-img {
    width: 83%;
}

.litchi-pro-img img {
    width: 100%;
}

.tower-top-sec .text-litchi-pro {
    text-align: center;
}

.tower-top-sec .text-litchi-pro p {
    margin: 0 auto;
}

.tower-slid .slick-next:before {
    content: 'â†’';
    font-family: unset;
    font-size: 30px;
}

.tower-slid .slick-prev:before {
    content: 'â†';
    font-family: unset;
    font-size: 30px;
}

.tower-slid .slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 1;
}

.merchant-text {
    text-align: center;
}

.merchant-text h2 {
    font-size: 30px;
}

.merchant-text h3 {
    font-size: 20px;
}

.enhanced-sec .img-innersolution {
    background: unset;
    padding: unset;
    border-radius: unset;
}

.enhanced-sec .img-innersolution img {
    border-radius: unset;
}

.enhanced-sec .text-innersolution {
    margin-top: -90px;
}

.enchanced-row-second .text-innersolution {
    margin-top: unset !important;
}

.enhanced-sec {
    padding: 0px 0px 0px;
}

.customer-sky-top-sec .skytab-pos-img img {
    height: 100%;
    margin-top: -50px;
}

.heaing-payroll {
    text-align: center;
    margin-bottom: -40px;
}

.heaing-payroll h2 {
    font-size: 70px;
    width: fit-content;
    /* background: #1e5ad1; */
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 0 auto;
}

.innersolution-sec .solution-text ul.listing img {
    filter: brightness(0) saturate(100%) invert(24%) sepia(73%) saturate(2650%) hue-rotate(206deg) brightness(90%) contrast(107%);
}

.img-innersolution.solution-ineer-img.for-cover img {
    object-fit: cover;
}

.innersolution-sec .text-light {
    color: #141e2b !important;
}

.why-img.solo-img-main img {
    height: 100%;
}


/* Resources Start*/

.resources-box:hover {
    background: #1e5ad1;
    transition: 0.5s;
}

.resources-heading {
    text-align: center;
}

.resources-box {
    background: #f3f3f3;
    border-radius: 25px;
    margin-top: 35px;
    transition: 0.5s;
}

.resources-box:hover * {
    color: #fff;
}

.resources-box:hover ul li a {
    border: 1px solid #fff;
}

.resources-box-img img {
    width: 115px;
    height: 37px;
    object-fit: contain;
}

.resources-box-img {
    text-align: center;
    background: #fff;
    border-radius: 20px;
}

.resources--box-img-box {
    padding: 20px 30px;
}

.resources-box-img {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.resources-box-text {
    border-top: 1px solid #dfe1e4;
    padding: 6px 20px;
    margin-top: 4px;
}

.resources-box-text ul li a i {
    color: #324060;
    transform: rotate(-45deg);
    font-size: 15px;
}

.resources-box-text ul li a {
    border: 1px solid #324060;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.resources-box-text ul li h2 {
    font-size: 21px;
    color: #323233;
    font-family: 'BlenderPro';
    text-transform: uppercase;
    font-weight: 600;
    line-height: 25px;
}

.resources-box-text ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resources-sec.mt-8 {
    padding: 100px 0px 40px;
}


/* Resources Ends*/

.flipster__item img {
    max-width: 100%;
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
}

.img-made.img-big img {
    width: 90%;
    height: 260px;
    object-fit: contain;
}

.img-made img {
    width: 75%;
    height: 260px;
    object-fit: contain;
}

.revolutionary-sec .img-innersolution img {
    height: 340px;
    object-fit: contain;
    background: #fff;
}

.select-item {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd8e6;
    border-radius: 6px;
    font-size: 15px;
    appearance: auto;
    color: #000;
}

img.kisok-img {
    object-position: top;
}

.innersolution-sec.wrksttn.eposwork-sec-main {
    margin-bottom: unset;
    background: #1e5ad1;
}

.eposwork-sec-main h2 {
    color: #fff;
}

.eposwork-sec-main p {
    color: #fff;
}

.eposwork-sec-main .img-innersolution {
    background: #000;
}

.career-sec input {
    padding: 12px 15px;
    border-radius: 30px;
}

.career-sec label.form-label {
    font-size: 15px;
    font-family: 'Montserrat';
}

.career-sec .col-md-6 {
    margin-top: 25px;
}

.career-sec form.career-form.bg-white.p-4.rounded.shadow-sm.mx-auto {
    max-width: 70% !important;
}

.career-sec {
    padding: 100px 0px;
}

label.form-check-label {
    font-size: 14px;
}

input#consent {
    padding: unset;
}

.career-sec h3 {
    text-align: center;
}

.heaing-payroll {
    background-image: url(../images/payment-back.jpg);
    width: 100%;
    height: 304px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    margin-top: 70px;
}

.heaing-payroll::before {
    position: absolute;
    content: '';
    background: #1e5ad1b0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    border-radius: 0px;
}

img.kitchen-third-img {
    object-position: top;
}

.menuSec li:hover li.pd-0,
.menuSec li:hover li.pd-0 a {
    padding: 0 !important;
    height: 0 !important;
}