@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap");

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}
  
:root{
      --font-family: "Poppins", sans-serif;
      --primary-color: #8572E5;
      --secondary-color: #5DBDD6;
      --text-color: #4c4f54;
      --transition: .2s ease-in-out;
      --border-radius: 25px;
      --box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.12);
      --gradient-color: linear-gradient(90deg, var(--primary-color) 10.66%, var(--secondary-color) 100%);
}
  
html,body{
    touch-action: none !important;
}

html {
    min-height: calc(100% + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
  
body {
    background: #fff;
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-family);
    padding: 0;
    margin: 0;
}

@-webkit-keyframes shine {
    from {
      opacity: 0;
      left: 0%;
    }
    50% {
      opacity: 1;
    }
    to {
      opacity: 0;
      left: 100%;
    }
}

button{
    position: relative;
    cursor: pointer;
    overflow: hidden;font-family: var(--font-family);
    font-size: 13px;
}


button:hover:before {
    -webkit-animation: shine 0.4s 0s linear;
    -moz-animation: shine 0.4s 0s linear;
    animation: shine 0.4s 0s linear;
}

button:before {
    content: "";
    display: block;
    width: 0px;
    height: 86%;
    position: absolute;
    top: 7%;
    left: 0%;
    opacity: 0;
    background: white;
    box-shadow: 0 0 15px 3px white;
    -webkit-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
}

input{
    font-family: var(--font-family);
}

input::placeholder{
    color: #AEABAB;
}

.v-input, .v-select{
    width: 100%;
    height: 38px;
    background: #fff;
    padding: 0 16px;
    border: none;
    font-family: var(--font-family);
    border-radius: var(--border-radius);
}

.v-btn{
    width: fit-content;
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-family);
}

.a2hs{
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 193px;
    height: 55px;
    padding-left: 70px;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.3;
    background: #fff;
    background: linear-gradient(to right, #fff 15%, #caebf1);
    color: #333;
    padding-top: 10px;
    letter-spacing: .4px;
    border-radius: var(--border-radius);
    box-shadow: 0px 3.544px 35.437px 0px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: none;
}

.a2hs img{
    position: absolute;
    top: 10px;
    left: 15px;
    width: 35px;
    border-radius: 5px;
}

.a2hs i{
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: #fff;
}

.container{
    position: relative;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.navbar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background: #fff;
    z-index: 2;
}

.navbar.active{
    box-shadow: var(--box-shadow);
}

.navbar-logo{
    height: 88px;
    display: flex;
    align-items: center;
}

.navbar-logo img{
    height: 44px;
}

.navbar-menus{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 0;
    height: 88px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    width: 100%;
}

.navbar-menus ul{
    display: flex;
    list-style-type: none;
    gap: 32px;
}

.navbar-menus li{
    position: relative;
    display: flex;
    height: 60px;
    align-items: center;
}

.navbar-menus li div{
    position: absolute;
    width: 200px;
    top: 45px;
    padding: 16px;
    background: #fff;
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 4px 10px 3px rgba(0, 0, 0, 0.1);
    line-height: 1;
    cursor: pointer;
    display: none;
}

.navbar-menus li i{
    cursor: pointer;
}

.navbar-menus ul li a{
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    color: #333
}

.navbar-menus li:hover div{
    display: block;
}

.navbar-menus ul li a:hover{
    color: var(--secondary-color);
}

.navbar-menus ul li.active{
    color: var(--secondary-color);
    font-weight: 500;
}

.navbar-menus ul li.active a{
    color: inherit;
}

.navbar-buttons{
    position: absolute;
    top: 9px;
    right: 0;
    display: flex;
    display: none;
}

.set-meeting--btn, .call-prospect--btn{
    width: fit-content;
    height: 40px;
    background: #fff;
    border: none;
    background: var(--gradient-color);
    padding: 2px;
    margin-left: 16px;
    border-radius: var(--border-radius);
}

.set-meeting--btn button{
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
    padding: 0 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
}

.call-prospect--btn button{
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 16px;
    color: #fff;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
}

.banner{
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0, 0.2)), url('../img/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.banner-big--content{
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
}

.gradient-text{
    background: linear-gradient(45deg, #634FC5, #5CBCD5 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-small--content{
    line-height: 1.5;
    font-size: 24px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 16px;
}

.banner-buttons{
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.banner-buttons button{
    width: fit-content;
    height: 50px;
    border: none;
    border-radius: 25px;
    padding: 0 24px;
    cursor: pointer;
}

.get-started--btn{
    background: var(--primary-color);
    color: #fff;
}

.whatsapp-us--btn{
    position: relative;
    background: #2db742;
    color: #fff;
    padding-left: 44px !important;
}

.whatsapp-us--btn i{
    position: absolute;
    top: 13px;
    left: 16px;
    font-size: 22px;
}

.home-banner--content{
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
}

.home-banner--p{
    position: relative;
    width: 60%;
}

.home-banner--big{
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: bold;
}

.home-banner--big span{
    font-weight: 900;
    font-style: italic;
}

.home-banner--small{
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
    margin-top: 8px;
}

.home-banner--img{
    width: 40%;
    text-align: center;
}

.home-banner--img img{
    max-width: 320px;
}

.segment{
    margin-top: 44px;
}

.home-1--header{
    position: relative;
    text-align: left;
    margin-bottom: 16px;
    padding-top: 16px;
}

.home-1--header img{
    position: relative;
    right: 2px;
    max-width: 128px;
}

.home-1--header span{
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.home-1--segment{
    position: relative;
    /* height: 500px; */
    background: url(../img/home-segment--1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    border-radius: 30px;
    padding: 36px 0;
}

.flex-container{
    width: 50%;
    display: flex;
    align-items: center;
}

.home-1--content{
    position: relative;
    padding: 36px 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 44px 0;
}

.home-1--content span{
    color: #066275;
    font-weight: 500;
}

.home-1--left span{
    font-weight: 500;
}

.home-1--left p{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.home-1--item{
    position: relative;
    width: 33.33%;
    padding-left: 16px;
}

.home-1--item span{
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.home-1--item p{
    line-height: 1.5;
    color: #737373;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.home-1--grad{
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(56deg, var(--primary-color) 10.66%, var(--secondary-color) 100%);
}

.segment-bg--1{
    background: linear-gradient(0deg, rgba(91, 192, 213, 0.34) 0%, rgba(91, 192, 213, 0.00) 100%);
}

.segment.impact{
    background: linear-gradient(90deg, #f3fcff 0%, #fdfdfd 64.14%);
    margin-top: 72px;
    padding: 72px 0;
}

.impact-header{
    position: relative;
    top: 50%;
    opacity: 0;
    text-align: left;
}

.impact-header label{
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.impact-header p{
    color: #737373;
    margin-top: 6px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.impact-flex{
    position: relative;
    top: 50%;
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
}

.impact-item{
    position: relative;
    margin-top: 32px;
    width: 25%;
    padding-right: 16px;
    padding-bottom: 16px;
}

.impact-item--bg{
    width: 50px;
    height: 50px;
    background: linear-gradient(144deg, #8572e5, #434343);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-title{
    position: relative;
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
}

.impact-p{
    position: relative;
    line-height: 1.8;
    font-size: 13px;
    margin-top: 8px;
    color: #737373;
}

.segment.brand{
    background: #fff;
    margin-top: 0 !important;
    padding: 72px 0;
}

.brand-header{
    position: relative;
    top: 50%;
    opacity: 0;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: left;
}

.brand-flex{
    position: relative;
    top: 50%;
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
}

.brand-item{
    width: 14%;
    margin-top: 32px;
    display: flex;
    align-items: center;
    padding: 16px;
}

.brand-item img{
    width: 100%;
}

.regform-flex{
    display: flex;
}

.segment.regform{
    background: var(--primary-color);
    margin-top: 0 !important;
    padding: 72px 0;
    overflow: hidden;
}

.regform-p{
    position: relative;
    left: -100%;
    opacity: 0;
    color: #fff;
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 72px;
}

.regform-p label{
    font-size: 36px;
    font-weight: bold;
}

.regform-p p{
    line-height: 1.8;
    margin-top: 6px;
}

.regform-content{
    position: relative;
    right: -100%;
    opacity: 0;
    width: 56%;
}

.sol-feature--header{
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

.sol-feature--flex{
    position: relative;
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
}

.sol-feature--item{
    position: relative;
    width: 33.33%;
    padding: 16px;
}

.sol-feature--card{
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.1);
}

.sol-feature--icon{
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-feature--icon img{
    width: 24px;
}

.sol-feature--title{
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    height: 54px;
    display: flex;
    align-items: center;
}

.sol-feature--p{
    color: #9A9EA6;
    font-size: 14px;
    line-height: 1.8;
    margin-top: 8px;
}

.segment.integration{
    margin-top: 0;
    padding: 44px 0 72px 0;
}

.integration-header{
    position: relative;
    top: 100%;
    opacity: 0;
}

.integration-header label{
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.integration-header p{
    color: #9A9EA6;
    line-height: 1.8;
    width: 600px;
    margin: 12px auto;
}

.integration-flex{
    position: relative;
    top: 100%;
    opacity: 0;
    display: flex;
    flex-wrap: wrap;
}

.integration-item{
    width: 20%;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment.history{
    position: relative;
    padding: 44px 0;
    margin-top: 0;
    overflow: hidden;
}

.history-header{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}

.history-timeline{
    position: relative;
    width: 100%;
    margin-top: 32px;
}

.history-line{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: #333;
}

.history-item{
    position: relative;
    left: 74%;
    transform: translateX(-50%);
    width: 50%;
    padding-left: 44px;
}

.history-dot{
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    padding: 5px;
    border-radius: 50%;
    background: #333;
}

.history-dot--bg{
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
}

.history-item.even{
    text-align: right;
    padding-left: 0;
    padding-right: 44px;
    left: 26%;
}

.history-item.even .history-dot{
    right: 0;
    left: auto;
}


.history-year{
    font-weight: 900;
    font-size: 32px;
    color: var(--secondary-color);
}

.history-content label{
    font-weight: bold;
    font-size: 18px;
    color: var(--text-color);
}

.history-content p{
    color: #737373;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.8;
}

.flex-segment{
    display: flex;
}

.home-2--content{
    position: relative;
    padding: 36px 72px;
    padding-left: 0;
    margin-bottom: 44px;
}

.home-2--img{
    position: relative;
    height: 100%;
}

.home-2--img img{
    position: absolute;
    bottom: 0;
    height: 85%;
}

.home-3--content{
    position: relative;
    padding: 36px 72px;
    padding-left: 0;
}

.home-3--content span{
    font-weight: 500;
}

.home-3--left span{
    font-weight: bold;
    font-size: 24px;
}

.home-3--left p{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
}

.home-3--flex{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    background: url('../img/home-segment--2.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    border-radius: 35px;
    padding: 24px;
    margin-bottom: 44px;
}

.home-3--stat{
    width: 50%;
    padding: 24px 32px;
}

.home-3--stat--content{
    position: relative;
    padding-left: 16px;
}

.home-3--stat--content label{
    font-weight: bold;
    color: #066275;
    font-size: 24px;
}

.home-3--stat--content span{
    text-transform: uppercase;
    letter-spacing: .1px;
}

.home-3--line{
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gradient-color);
}

.footer{
    padding-top: 24px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.footer-flex{
    display: flex;
    padding: 24px 0 44px 0;
}

.footer-left{
    width: 50%;
    padding-right: 16px;
}

.footer-companylogo{
    width: 50%;
    display: none;
}

.footer-companylogo img{
    width: 210px;
}

.footer-left p{
    line-height: 1.7;
    font-size: 13px;
}

.footer-list{
    width: 20%;
    padding-left: 64px;
}

.footer-list label{
    font-weight: bold;
}

.footer-list ul{
    list-style-type: none;
}

.footer-list ul li{
    margin-top: 16px;
    font-size: 14px;
    cursor: pointer;
}

.footer-list ul li a{
    color: #7a7a7a;
    transition: var(--transition);
    text-decoration: none;
}

.footer-list ul li a:hover{
    color: #333;
}

.banner-about{
    position: relative;
    width: 100%;
    height: 450px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-about--bg{
    position: absolute;
    bottom: 0;
}

.banner-about--bg img{
    width: 100%;
}

.segment-3--wrapper{
    padding: 44px 0;
    background: #fff;
    margin-top: 0;
}

.aboutus-3--content{
    position: relative;
    padding-right: 32px;
}

.aboutus-3--content span{
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.aboutus-3--content p{
    font-size: 16px;
    line-height: 1.8;
    margin-top: 16px;
    color: #737373;
}

.aboutus-3--img img{
    width: 100%;
}

.segment-client{
    margin-top: 0;
    padding: 44px 0;
    background: #fff;
}

.features-header{
    position: relative;
    width: 100%;
    padding: 44px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.features-header--bg{
    position: absolute;
    bottom: 0;
}

.features-header--bg img{
    width: 100%;
}

.feature-header--content{
    position: relative;
    width: 40%;
    padding: 36px;
    padding-left: 0;
    margin-bottom: 44px;
    text-align: left;
}

.feature-header--content span{
    font-weight: bold;
    font-size: 28px;
}

.feature-header--content small{
    font-size: 14px;
    margin-top: 16px;
}

.feature-header--img{
    width: 60%;
    text-align: center;
}

.feature-header--img img{
    width: 75%;
}

.feature--item{
    margin-top: 24px;
}

.feature--item span{
    font-weight: bold;
    font-size: 16px !important;
}

.feature--item p{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
}

.feature-2--header{
    text-align: center;
    max-width: 670px;
    margin: 0 auto;
}

.feature-2--header span{
    font-size: 32px;
    font-weight: bold;
}

.feature-2--header p{
    color: #9A9EA6;
    font-size: 14px;
    line-height: 1.5;
}

.feature-list--container{
    width: 50%;
}

.feature-list--flex{
    gap: 32px;
    padding-bottom: 44px;
}

.feature-list{
    position: relative;
    padding: 44px 32px;
    background: #eee;
    margin-top: 24px;
    padding-left: 180px;
    min-height: 200px;
}

.feature-list span{
    color: var(--primary-color)
}

.feature-list--img{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 100%;
    text-align: center;
}

.feature-list--img img{
    height: 100%;
}

.feature-list--name{
    font-weight: bold;
    font-size: 16px;
}

.feature-list--detail{
    line-height: 1.5;
    font-size: 14px;
}

.faq-header{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.faq-list{
    position: relative;
}

.faq-list--item{
    position: relative;
    padding: 18px 24px;
    background: #E5F8FD;
    margin-bottom: 16px;
    border-radius: 15px;
    cursor: pointer;
}

.faq-list--item i{
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 28px;
}

.faq-list--title{
    font-weight: bold;
    font-size: 15px;
}

.faq-list--content{
    display: none;
    color: #737373;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 12px;
}

.segment-contact{
    background: url('../img/contact-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 0 44px 0;
    background-color: #fff;
}

.contact-header{
    font-size: 22px;
    font-weight: bold;
    max-width: 670px;
    margin: 0 auto;
}

.contact-form{
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4.226px 44.368px 0px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
}

.contact-form--header{
    font-size: 18px;
    line-height: 1.5;
    color: #7e7e7e;
    width: 100%;
    font-size: 14px;
    padding: 0 8px;
    display: none;
}

.contact-form--header strong{
    color: var(--text-color);
    font-size: 16px;
}

.contact-form--input{
    position: relative;
    margin-top: 24px;
    width: 50%;
    padding: 0 8px;
}

.contact-form--input label{
    font-weight: 500;
    font-size: 14px;
    color: #3a3a3a;
}

.contact-form--input input{
    margin-top: 4px;
    width: 100%;
    height: 44px;
    background: #F9F9F9;
    border: 1px solid #ddd;
    padding: 0 16px;
    border-radius: 5px;
}

.contact-form button{
    position: relative;
    width: 144px;
    height: 50px;
    left: 100%;
    transform: translateX(-100%);
    font-size: 14px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    font-weight: bold;
    margin-top: 24px;
    border-radius: 25px;
}

.segment-address{
    background: #fff;
    padding-bottom: 44px;
}

.contact-footer--flex{
    max-width: 670px;
    margin: 0 auto;
    margin-top: 44px;
}

.contact-footer{
    width: 50%;
}

.contact-item{
    position: relative;
    padding-left: 32px;
    padding-right: 16px;
    margin-bottom: 16px;
}

.contact-item i{
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-detail{
    line-height: 1.5;
}

/* .contact-detail p{
    color: #7a7a7a;
} */

.whatsapp-fab{
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: fit-content;
    height: 50px;
    border: none;
    border-radius: 25px;
    padding: 0 24px;   
    padding-left: 44px !important;
    background: #2db742;
    color: #fff;
    padding-left: 44px !important;
    overflow: hidden;
    font-family: var(--font-family);
    font-size: 13px;
    z-index: 1;
}

.whatsapp-fab i{
    position: absolute;
    top: 13px;
    left: 16px;
    font-size: 22px;
}

.header {
    font-size: 42px;
    line-height: 1.5;
    font-weight: bold;
}
.primary-color {
    color: var(--primary-color);
}
.secondary-color {
    color: var(--secondary-color);
}

#challenge{
    padding: 75px 0;
    background: linear-gradient(to top, rgb(222 141 227 / 15%), #fff 75%);
}

.challenge-header{
    margin: 0 auto;
    width: 515px;
    text-align: center;
}

.challenge-flex{
    display: flex;
}

.challenge-left{
    width: 45%;
}

.challenge-right{
    width: 55%;
}

.challenge-info{
    position: relative;
    padding-left: 80px;
    margin-top: 50px;
}

.challenge-img{
    position: absolute;
    top: 12px;
    left: 0;
    width: 44px;
}

.challenge-img img{
    width: 100%;
}

.system-img{
    width: 100%;
}

.system-img img{
    width: 100%;
}

#solution{
    width: 100%;
    min-height: 100vh;
    /* background: url(img/divider-wave.png), linear-gradient(to top, rgb(222 141 227 / 35%), #fff 75%); */
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    padding-top: 72px;
}

.solution-header{
    margin: 0 auto;
    width: 1000px;
    text-align: center;
    padding-top: 300px;
}

.solution-subheader{
    margin: 0 auto;
    width: 1000px;
    margin-top: 15px;
    text-align: center;
    font-size: 20px;
}

.solution-flex{
    display: flex;
    margin-top: 50px;
}

.solution-left--1{
    width: 60%;
}

.solution-left--1 img{
    position: relative;
    width: 100%;
    left: -110px;
}

.solution-right--1{
    position: relative;
    width: 40%;
}

.solution-content--1{
    position: absolute;
    width: 700px;
    left: -300px;
}

.solution-content--header{
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.solution-content--text{
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.8;
    color: #737373;
    margin-top: 8px;
}

.solution-content--2{
    text-align: right;
    padding-right: 50px;
}

.solution-left--2{
    position: relative;
    width: 60%;
}

.solution-right--2{
    position: relative;
    width: 40%;
}

.solution-right--2 img{
    position: relative;
    margin-top: -340px;
    width: 100%;
}

.solution-right--3{
    width: 50%;
    padding-right: 50px;
}

.solution-right--3 img{
    position: relative;
    width: 100%;
}

.solution-left--3{
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
}

.solution-content--3{
    width: 100%;
    padding-right: 24px;
}

.solution-content--4{
    padding-left: 50px;
}

.solution-right--4{
    display: flex;
    align-items: center;
}

.solution-left--4 img{
    position: relative;
    z-index: 1;
}

.courier-img{
    display: flex;
    margin-top: 35px;
    gap: 16px;
}

.courier-img img{
    height: 80px;
}

.payment-img{
    display: flex;
    margin-top: 35px;
}

.payment-img--box{
   margin-right: 25px;
}

.payment-img img{
    height: 65px;
}

.payment-img img.toyyibpay{
    height: 45px;
}

.second-module--container{
    position: relative;
    margin-top: -50px;
    background: #fff;
    padding: 1px 0;
}

.solution-left--5{
    width: 40%;
}

.solution-left--5 img{
    position: relative;
    width: 100%;
}

.solution-right--5{
    position: relative;
    width: 60%;
    display: flex;
    align-items: center;
    padding: 16px;
}

.solution-content--6{
    margin-top: 25px;
}

.solution-left--6{
    position: relative;
    width: 60%;
}

.solution-right--6{
    position: relative;
    width: 40%;
}

.solution-right--6 img{
    position: relative;
    width: 750px;
    margin-left: -260px;
    margin-top: -185px;
}

.third-module--container{
    background: linear-gradient(191deg, rgba(255,255,255,0.5) 15%, rgba(222,141,227,0.35) 50%, rgba(255,255,255,0) 85%);
    padding: 50px 0;
}

.solution-left--7{
    position: relative;
    width: 55%;
}

.solution-right--7{
    position: relative;
    width: 45%;
    margin-top: -140px;
}

.solution-content--7{
    margin-top: 50px;
}

.other-module--container{
    margin-top: 150px;
}

.other-module--header{
    font-size: 30px;
    font-weight: 600;
}

.other-module--flex{
    display: flex;
}

.other-module--img{
    width: 25%;
    margin-top: 35px;
    margin-right: 20px; 
}

.other-module--img img{
    width: 100%;
}

.other-module--img div{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    margin-top: 4px;
    color: var(--primary-color);
}

.navbar-mobile, .mobile-menu{
    display: none;
}

.segment.resources{
    margin-top: 0;
    padding: 44px 0;
}

.segment.resources:nth-child(even){
    background: #f2fcff;
}

.resources-flex{
    position: relative;
    display: flex;
    gap: 16px;
}

.resources-item--left{
    width: 40%;
    text-align: center;
}

.resources-item--right{
    width: 23%;
}

.resources-item--right img{
    width: 100%;
    box-shadow: var(--box-shadow);
}

.resources-item--1 img{
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--box-shadow);
}

.resources-item--2{
    margin-top: 32px;
}

.resources-item--2 img{
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--box-shadow);
}

.resources-header{
    position: relative;
    font-size: 24px;
    font-weight: bold;
}

.resources-content{
    position: relative;
    margin-bottom: 24px;
}

.resources-content p{
    position: relative;
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 18px;
}

.segment.blog{
    margin: 0;
    padding: 44px 0;
}

.blog-header{
    position: relative;
    background: #f0e7f9;
    border-radius: 25px;
    padding: 36px;
    padding-right: 360px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-header label{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.blog-header p{
    color: #7a7a7a;
    font-size: 16px;
}

.blog-header img{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
}

.blog-filter{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.blog-filter--item{
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.blog-filter--item:hover{
    color: var(--primary-color);
}

.blog-filter--item.active{
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.blog-filter select{
    position: absolute;
    right: 0;
    width: 120px;
    height: 49px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding-left: 8px;
    font-family: var(--font-family);
}

.blog-flex{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.blog-item{
    width: 25%;
    padding: 16px;
    margin-top: 16px;
}

.blog-card{
    position: relative;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover{
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.7);
}

.blog-card--img{
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding: 16px;
}

.blog-card--img img{
    width: 100%;
    border-radius: 8px;
}

.blog-card--title{
    padding: 0 16px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-align: left;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-align: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 46px;
    word-break: break-word;
    transition: var(--transition);
}

.blog-card:hover .blog-card--title{
    color: var(--primary-color);
}

.blog-item a{
    color: #333;
    text-decoration: none;
}

.blog-card--summary{
    padding: 0 16px;
    color: #7a7a7a;
    font-size: 14px;
    margin-top: 10px;
    line-height: 1.6;
    min-height: 112px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card--tags{
    padding: 16px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-card--tags span{
    transition: var(--transition);
}

.blog-card--tags span:hover{
    cursor: pointer;
    color: var(--primary-color);
}

.blog-footer{
    position: relative;
    background: #f0e7f9;
    border-radius: 25px;
    padding: 36px;
    padding-right: 360px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 32px;
}

.blog-footer label{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.blog-input{
    position: relative;
    width: 100%;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    margin-top: 32px;
}

.blog-input i{
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 24px;
    color: #7a7a7a;
    z-index: 1;
}

.blog-input input{
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    border-radius: 50px;
    padding-left: 54px;
    padding-right: 144px;
    font-size: 16px;
}

.blog-input input:focus{
    outline: none;
}

.blog-input button{
    position: absolute;
    top: 5px;
    right: 4px;
    height: 40px;
    width: 120px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.4px;
}

.blog-footer img{
    position: absolute;
    right: 0;
    top: -110px;
}

.blog-page--wrapper{
    padding-right: 300px;
    padding-bottom: 32px;
}

.blog-page--breadcrumbs{
    position: relative;
    font-size: 14px;
    color: #aaa;
}

.blog-page--title{
    position: relative;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.3;
    margin-top: 8px;
}

.blog-page--date{
    font-size: 14px;
    color: #7a7a7a;
    margin-top: 6px;
    font-weight: 500;
}

.blog-page--img{
    width: 100%;
    margin-top: 16px;
}

.blog-page--img img{
    width: 100%;
}

.blog-page--content{
    position: relative;
    margin-top: 16px;
}

.blog-page--content p{
    position: relative;
    margin-top: 24px;
    color: #7a7a7a;
    line-height: 1.5;
}

.blog-page--content p label{
    font-weight: bold;
    margin-bottom: 6px;
    color: #333;
}

.blog-page--content p strong{
    color: #333;
}

.blog-page--share{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid #ddd;
    display: none;
}

.blog-page--share button{
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    margin-left: 6px;
    font-size: 18px;
}

.blog-page--more{
    position: relative;
    padding-bottom: 32px;
    margin-top: 24px;
}

.blog-page--more label{
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

.blog-page--more .blog-item{
    margin-top: 0;
}

.number {
    display: block;
    font-size: 24px;
    line-height: 24px;
}

.number * + * {
margin-top: 0;
}
  
.digit-con {
    display: inline-block;
    height: 24px;
    overflow: hidden;
    vertical-align: top;
}
.digit-con span {
    display: block;
    font-size: 24px;
    line-height: 24px;
    position: relative;
    text-align: center;
    top: 0;
}

.history-1{
    position: relative;
    left: 100%;
    opacity: 0;
}

.history-2{
    position: relative;
    left: -100%;
    opacity: 0;
}

.history-3{
    position: relative;
    left: 100%;
    opacity: 0;
}

.history-4{
    position: relative;
    left: -100%;
    opacity: 0;
}

.history-5{
    position: relative;
    left: 100%;
    opacity: 0;
}

.mam{
    margin-top: -60px;
}

.inven-module{
    margin-top: 250px;
    padding-bottom: 60px;
}

@media(max-width: 550px){
    html,body{
        touch-action: auto !important;
    }
    
    .container{
        width: 100%;
    }

    .segment{
        margin-top: 16px;
    }

    .mobile-menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

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

    .mobile-menu--bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0, 0.4);
        backdrop-filter: blur(2px);
    }

    .mobile-menu--container{
        position: relative;
        background: #fff;
        width: calc(100% - 60px);
        height: 100%;
    }

    .mobile-menu--container a{
        color: var(--text-color);
        text-decoration: none;
    }

    .mobile-menu--container a.active{
        color: var(--primary-color);
        font-weight: bold;
    }

    .mobile-menu--item{
        position: relative;
        padding: 16px;
    }

    .mobile-menu--close{
        position: absolute;
        top: 0;
        right: -60px;
        width: 60px;
        height: 60px;
        background: #e16b6b;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .navbar-menus{
        display: none;
    }

    .navbar-mobile{
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .navbar{
        height: 60px;
    }

    .navbar-logo{
        position: absolute;
        top: 0;
        left: 16px;
        height: 60px;
    }

    .banner-about{
        height: auto;
    }

    .home-banner--content{
        flex-direction: column;
    }

    .home-banner--img{
        order: 1;
        width: 100%;
        padding: 16px;
        /* display: none; */
    }

    .home-banner--img img{
        width: 100%;
    }

    .home-banner--p{
        order: 2;
        width: 100%;
        padding: 16px;
    }

    .home-banner--big{
        font-size: 24px;
    }

    .home-banner--small{
        font-size: 14px;
    }

    .banner-buttons{
        margin: 0 auto;
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .get-started--btn{
        font-weight: 600;
    }

    .whatsapp-us--btn{
        display: none;
    }

    .segment.number{
        padding: 24px;
        margin-top: 0;
    }

    .segment.home-number{
        margin-top: 0;
    }

    .home-1--header{
        padding: 0 16px;
        padding-top: 24px;
        padding-bottom: 0;
        background: #e5f8fd;
        margin-bottom: 0;
    }

    .home-1--header img{
        width: 110px;
    }

    .home-1--header span{
        font-size: 14px;
    }

    .home-1--segment{
        padding: 0;
        border-radius: 0;
    }

    .home-1--content{
        padding: 32px;
        gap: 24px 0;
    }

    .home-1--item{
        width: 100%;
    }
    
    .home-1--grad{
        width: 5px;
    }

    .home-1--item span{
        font-size: 22px;
    }

    .home-1--item p{
        font-size: 14px;
    }

    .segment.impact{
        margin-top: 0;
        padding: 16px;
    }

    .impact-item{
        width: 100%;
        padding: 0 8px;
    }

    .impact-title{
        font-size: 14px;
    }

    .impact-header label{
        font-size: 24px;
    }

    .impact-header {
        font-size: 14px;
    }

    .segment.brand{
        padding: 16px;
    }

    .brand-header{
        font-size: 24px;
    }

    .brand-item{
        width: 33.33%;
        margin-top: 0;
    }

    .segment.regform{
        padding: 16px;
    }

    .regform-flex{
        flex-wrap: wrap;
    }

    .regform-p{
        width: 100%;
        padding: 0;
        left: 0 !important;
        opacity: 1 !important;
    }

    .regform-p label{
        font-size: 20px;
    }

    .regform-p p{
        font-size: 14px;
    }

    .regform-content{
        margin-top: 16px;
        width: 100%;
        right: 0 !important;
        opacity: 1 !important;
    }

    .contact-form--input{
        width: 100%;
    }

    .contact-form button{
        width: 100%;
    }

    .footer{
        padding: 16px;
    }

    .footer-flex{
        padding: 0;
        flex-wrap: wrap;
    }

    .footer-left{
        width: 100%;
    }
    
    .footer-companylogo img{
        width: 172px;
    }

    .footer-list{
        width: 50%;
        padding: 0;
        margin-top: 16px;
    }

    #solution{
        padding: 16px;
    }

    #challenge{
        padding: 15px 0;
    }

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

    .system-img img{
        width: 85%;
    }

    .challenge-header{
        width: 100%;
    }

    .challenge-info{
        margin-top: 25px;
        padding-left: 52px;
    }

    .challenge-img{
        width: 36px;
    }

    .challenge-flex{
        flex-wrap: wrap;
    }

    .challenge-left{
        width: 100%;
        order: 1;
    }

    .challenge-right{
        width: 100%;
    }

    .solution-header{
        padding: 0;
    }

    .solution-header, .solution-subheader{
        width: 100%;
    }

    .solution-flex{
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .solution-content--header{
        font-size: 20px;
    }

    .solution-left--1{
        width: 100%;
        text-align: center;
    }

    .solution-right--1{
        text-align: left;
        width: 100%;
    }

    .solution-left--1 img{
        width: 70%;
        left: 0;
    }

    .solution-content--1{
        position: relative;
        width: 100%;
        left: 0;
    }

    .solution-content--text{
        font-size: 14px;
    }

    .solution-left--2, .solution-right--2{
        width: 100%;
    }

    .solution-left--2{
        margin-top: 16px;
        order: 2;
    }

    .solution-right--2{
        order: 1;
        text-align: center;
    }

    .solution-right--2 img{
        margin-top: 0;
        width: 50%;
    }

    .solution-content--2{
        text-align: left;
        padding: 0;
    }

    .solution-left--3, .solution-right--3{
        width: 100%;
    }

    .solution-left--3{
        margin-top: 16px;
        padding: 0;
        text-align: center;
        order: 2;
    }

    .solution-left--3 img{
        width: 60%;
    }

    .solution-right--3{
        text-align: center;
        padding: 0;
        order: 1;
    }

    .courier-img{
        justify-content: center;
        /* flex-wrap: wrap; */
        margin-top: 0;
    }

    .courier-img img{
        height: auto;
        width: 100%;
    }

    .courier-img--box{
        width: 25%;
        margin-right: 0;
        margin-top: 16px;
        display: flex;
        align-items: center;
    }

    .solution-left--4, .solution-right--4{
        width: 100%;
    }

    .solution-content--4{
        padding: 0;
        margin-top: 16px;
        text-align: left;
    }

    .solution-right--4{
        order: 2;
    }

    .solution-left--4{
        order: 1;
        text-align: center;
    }

    .solution-left--4 img{
        width: 80%;
    }

    .payment-img{
        height: 60px;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 16px;
    }

    .payment-img--box{
        margin: 0;
        width: 33.33%;
    }

    .payment-img img.toyyibpay{
        height: 22px;
    }

    .payment-img img{
        height: 60px;
    }

    .solution-left--5, .solution-right--5{
        width: 100%;
    }

    .solution-left--5{
        text-align: center;
    }

    .solution-left--5 img{
        width: 80%;
    }

    .solution-right--5{
        text-align: left;
        padding: 0;
        margin-top: 16px;
    }

    .solution-content--3{
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .solution-right--3 img{
        width: 80%;
    }

    .mobile-margin{
        margin-top: 0;
    }

    .solution-left--6, .solution-right--6{
        width: 100%;
    }

    .solution-left--6{
        order: 2;
        text-align: left;
    }

    .solution-right--6{
        order: 1;
        text-align: center;
    }

    .solution-right--6 img{
        width: 100%;
        margin: 0;
    }

    .solution-left--7, .solution-right--7{
        width: 100%;
    }

    .solution-left--7{
        order: 2;
    }

    .solution-right--7{
        order: 1;
        text-align: center;
    }

    .solution-right--7 img{
        width: 70%;
    }

    .solution-content--7{
        text-align: left;
        margin-top: 16px;
    }

    .second-module--container{
        padding: 16px;
    }

    .third-module--container{
        padding: 16px;
    }

    .other-module--container{
        margin-top: 50px;
    }

    .other-module--flex{
        flex-wrap: wrap;
    }

    .other-module--header{
        text-align: center;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .other-module--img{
        margin-top: 0;
        margin-right: 0;
        width: 50%;
        padding: 16px;
        text-align: center;
    }

    .other-module--img img{
        width: 75%;
    }

    .other-module--img div{
        font-size: 14px;
    }

    .sol-feature--item{
        width: 100%;
    }

    .sol-feature--item .sol-feature--card{
        min-height: fit-content !important;
    }

    .segment.integration{
        padding: 16px;
        padding-bottom: 32px;
    }

    .integration-header label{
        font-size: 24px;
    }

    .integration-header p{
        width: fit-content;
        font-size: 14px;
    }

    .integration-flex{
        gap: 16px;
    }

    .integration-item img{
        width: 100%;
    }

    .flex-segment{
        flex-wrap: wrap;
    }

    .flex-container{
        width: 100%;
    }

    .segment-3--wrapper{
        padding: 16px;
    }

    .aboutus-3--content{
        padding: 0;
    }

    .aboutus-3--content span{
        font-size: 24px;
    }

    .aboutus-3--content p{
        font-size: 14px;
    }

    .aboutus-3--img{
        margin-top: 24px;
    }

    .segment.history{
        padding: 16px;
    }

    .history-header{
        font-size: 24px;
    }

    .history-line{
        left: 0;
        transform: none;
    }

    .history-item{
        left: 0;
        transform: none;
        padding-left: 32px;
        width: 100%;
        margin-top: 32px;
    }

    .history-item.even{
        left: 0;
        transform: none;
        padding-left: 32px;
        width: 100%;
        text-align: left;
    }

    .history-dot, .history-item.even .history-dot{
        left: -10px;
        right: auto;
    }

    .segment-contact{
        padding: 16px;
    }

    .contact-footer--flex{
        margin: 0;
    }

    .contact-footer{
        width: 100%;
        padding: 16px;
    }

    .contact-detail p{
        font-size: 14px;
    }

    .contact-item{
        font-size: 14px;
        margin-bottom: 8px;
    }

    .resources-flex{
        flex-wrap: wrap;
    }

    .resources-item{
        width: 100%;
    }

    .resources-item--2{
        margin-top: 16px;
        padding-bottom: 0;
    }

    .resources-content{
        padding: 8px 16px;
        font-size: 14px;
        text-align: left;
    }

    .resource-mobile--flex{
        display: flex;
        flex-wrap: wrap;
    }

    .resources-wrap{
        order: 1;
    }

    .resources-flex{
        order: 2;
    }

    .whatsapp-fab{
        padding: 0 !important;
        width: 50px;
    }

    .whatsapp-fab span{
        display: none;
    }

    .whatsapp-fab i{
        position: relative;
        top: 0;
        left: 0;
        font-size: 24px;
    }

    .segment.blog{
        padding: 16px;
    }

    .blog-header{
        padding: 16px;
        min-height: auto;
    }

    .blog-header label{
        font-size: 20px;
        order: 2;
        line-height: 1.3;
    }

    .blog-header p{
        order: 3;
        margin-top: 6px;
        font-size: 14px;
    }

    .blog-header img{
        width: 65%;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 0 auto;
        order: 1;
        margin-bottom: 16px;
    }

    .blog-item{
        width: 50%;
    }

    .blog-footer{
        padding: 24px;
        min-height: auto;
    }

    .blog-footer label{    
        font-size: 16px;
        line-height: 1.6;
    }

    .blog-footer img{
        /* width: 75%;
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 0 auto; */
        display: none;
    }

    .blog-filter{
        gap: 0;

    }

    .blog-filter select{
        position: relative;
        width: 100%;
        margin-top: 16px;
    }

    .blog-page--wrapper{
        padding: 16px;
    }

    .blog-page--share{
        padding: 16px;
    }

    .blog-page--more{
        padding: 16px;
        margin-top: 0;
    }

    .blog-filter--item{
        width: auto;
    }
    
    .history-2{
        position: relative;
        left: auto;
        right: 100% !important;
    }

    .mam{
        margin-top: 36px;
    }

    .mobile-margin{
        margin: 0;
    }

    .resources-item--left{
        width: 100%;
    }

    .resources-item--right{
        width: 100%;
        margin-top: 16px;
    }

    .resources-flex{
        display: block;
        padding: 16px;
    }

    .resources-header{
        text-align: left;
        font-size: 20px;
        padding: 0 16px;
    }

    .resources-content p{
        margin-top: 0;
    }

    .segment.resources{
        padding: 16px 0;
    }

    .resources-item--1 img, .resources-item--2 img, .resources-item--right img{
        width: 80%;
    }

    .resources-item--right{
        text-align: center;
    }
}

.sol-1--hide{
    position: relative;
    top: 100%;
    opacity: 0
}

.sol-2--hide{
    position: relative;
    top: 100%;
    opacity: 0
}

.pricing-header{
    position: relative;
    font-size: 36px;
    font-weight: 900;
    padding: 0 16px;
    color: var(--primary-color);
}

.pricing-header small{
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

.pricing-flex{
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 36px 0;
}

.pricing-container{
    position: relative;
    padding: 16px;
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0px 4px 10px -1.75px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.product-header{
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary-color);
}

.product-header small{
    font-weight: normal;
    color: #444;
    font-size: 14px;
}

.pricing-segment{
    position: relative;
    margin-top: 24px;
}

.pricing-point--header{
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #656565;
    text-transform: uppercase;
}

.pricing-point--content{
    position: relative;
}

.pricing-point--list{
    position: relative;
    margin-top: 6px;
    font-size: 14px;
    min-height: 21px;
    padding-left: 24px;
    line-height: 1.8;
}

.pricing-point--list i{
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

.bxs-check-circle{
    color: var(--primary-color);
}

.pricing-point--list.disabled{
    color: #b1b1b1;
}

.bxs-x-circle{
    color: #b1b1b1;
}

.pricing-point--list span{
    font-size: 14px;
    font-weight: bold;
}



.swiper {
    width: 100%;
    height: 224px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.swiper-wrapper{
    max-height: 163px;
}

.mobile-swiper{
    display: none;
} 

.brandlist{
    display:  flex;
}

.swiper-homepage{
    height: 400px !important;
    margin: 30px 0;
}

.swiper-homepage .swiper-slide{
    height: 400px;
    background: none;
}

.homepage-img{
    position: relative;
    height: 100%;
    /* padding-bottom: 4px; */
}

.homepage-img img{
    position: relative;
    z-index: 1;
    height: 100%;
}

.homepage-img--bg{
    position: absolute;
    top: 8px;
    right: -4px;
    width: 100%;
    height: 100%;
    background: #333;
    box-shadow: var(--box-shadow);
    display: none;
}


@media(max-width: 550px){

    #brandlist{
        display: none;
    }

    .mobile-swiper{
        display: flex;
    } 
    
    .swiper{
        height: 163px;
    }

    .swiper-button-next{
        right: 0 !important;
    }

    .swiper-button-prev{
        left: 0 !important;
    }

    .pricing-flex{
        padding: 16px;
        margin-top: 0;
        overflow: auto;
        display: -webkit-inline-box;
        max-width: 100%;
    }

    .pricing-container{
        position: relative;
        width: 300px;
        max-width: 600px;
    }

    .integration-flex, .integration-header, .brand-header, .brand-flex{
        top: 0 !important;
        opacity: 1 !important;
    }

    .about-header--img{
        display: none;
    }
    
    .swiper-homepage{
        position: relative;
    }

    .swiper-homepage{
        height: 540px !important;
    }
    
    .swiper-homepage .swiper-slide{
        height: 540px;
    }
}

.footer-list ul li i{
    font-size: 24px;
}

.footer-copyright{
    position: relative;
    width: 100%;
    padding: 16px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    background: #fff;
}