/*

Theme Name : UniteOwo

//========== INDEX ==========//
1.Common CSS
2.Header CSS
3.Banner CSS
4.Know Us CSS
5.Features CSS
6.Key Benefits CSS
7.Compnay Quote CSS
8.Safe & Secure CSS
9.Our Satisfied Customers CSS
10.What our Investors say about us CSS
11.Frequently Asked Questions CSS
12.Download App CSS
13.Have a Query CSS
14.Footer CSS
15.Scroll To Top CSS
16.Download CTA CSS
17.Popup Form CSS
18.Privacy Page CSS
*/

/*========== Common CSS Start ==========*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary_color: #2196F3;
    --primary_light_color: #E9F4FE;
    --dark_color: #111111;
    --dark_color2: #111111;
    --common_color: #4F4F4F;
    --tagline_color1: #097A85;
    --tagline_color1_bg: #FFD6A5;
    --tagline_color2: #0C3984;
    --tagline_color2_bg: #A0C4FF;
    --tagline_color3: #1B0A84;
    --tagline_color3_bg: #BDB2FF;
    --cream_bg_color: #FCF5EB;
    --cream-color: #FFF1D3;
    --cream-color2: #FFDFB1;
    --cream-color3: #F7FEE9;
    --cream-color4: #FEE9E9;
    --bg_color: #F8FBFE;
    --primary_light_color: #F1F8FF;
    --key_benefits_color1: #A0C4FF;
    --key_benefits_color2: #CAFFBF;
    --key_benefits_color3: #FBF4BB;
    --key_benefits_color4: #FFD6A5;
    --quote_bg_color: #F5FDFF;
    --star_bg_color: #E4EFF9;
    --safe_secure_light_color: #FAFAFA;
    --white_color: #ffffff;
    --gray_color_5: #E0E0E0;
    --review_color: #191D23;
    --footer_color: #10101A;
    --footer_color2: #0B0B0D;
    --footer_link_color: #B5B5C3;
    --footer_bottom_color: #828282;
    --black_color: #000000;
    --red_color: #BA2D2D;
    --gradient_color: linear-gradient(45deg, #009EF7, #D38EF3);
    --common_font: "Inter";
    --stylish_font: "Kalam";
    --stylish_font2: 'Architects Daughter', cursive;
    --gutter: 20px;
}

main {
    position: relative;
    width: 100%;
}

body {
    overflow-x: hidden;
}

body, p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--common_color);
    font-family: var(--common_font);
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

p a,
a {
    color: var(--primary_color);
    text-decoration: none !important;
    transition: 0.3s;
}

p a:hover,
a:hover {
    color: var(--dark_color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark_color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.h1-title {
    font-size: 46px;
    line-height: 1.5;
    color: var(--dark_color);
    font-weight: 600;
}

.h1-title .first {
    position: relative;
    display: inline-block;
}

.h1-title .first::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -15px;
    width: 31px;
    height: 20px;
    background-image: url(../images/title-shape-first.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.stylish {
    font-size: 50px;
    line-height: 1.5;
    font-weight: bold;
    color: var(--primary_color);
    font-family: var(--stylish_font);
    position: relative;
    display: inline-block;
}

.h1-title .stylish:before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    aspect-ratio: 1/0.102;
    background-image: url('../images/title-shape.svg');
    background-size: cover;
    background-position: 100%;
    background-repeat: no-repeat;
}

.title-tagline {
    position: relative;
    width: 420px;
    height: 72px;
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
    vertical-align: middle;
    pointer-events: none;
}

.title-tagline .tagline-slide > span {
    display: flex;
    align-items: center;
    width: 100%;
    height: 72px;
    border-radius: 50px;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 600;
    padding: 5px 22px;
}

.title-tagline .tagline-slide > span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white_color);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.title-tagline .slick-list,
.title-tagline .slick-track {
    position: static;
}

.title-tagline .tagline-slide.slick-current > span:before {
    opacity: 1;
}

.title-tagline span span {
    flex-grow: 1;
    text-align: center;
}

.tagline1 {
    color: var(--tagline_color1);
}

.title-tagline .tagline-slide > span.tagline1:before {
    background: var(--tagline_color1_bg);
}

.title-tagline .tagline-slide > span.tagline1 img {
    position: relative;
    left: -100px;
    top: 100px;
    opacity: 0;
    transition: 0.7s;
}

.title-tagline .tagline-slide.slick-current > span.tagline1 img {
    opacity: 1;
    top: 0;
    left: 0;
    transition-delay: 0.4s;
}

.tagline2 {
    color: var(--tagline_color2);
}

.title-tagline .tagline-slide > span.tagline2:before {
    background: var(--tagline_color2_bg);
}

.title-tagline .tagline-slide > span.tagline2 img {
    position: relative;
    left: -100px;
    opacity: 0;
    transition: 0.7s;
}

.title-tagline .tagline-slide.slick-current > span.tagline2 img {
    opacity: 1;
    left: 0;
    transition-delay: 0.3s;
}

.tagline3 {
    color: var(--tagline_color3);
}

.title-tagline .tagline-slide > span.tagline3:before {
    background: var(--tagline_color3_bg);
}

.title-tagline span img {
    max-width: 39px;
    flex-shrink: 0;
}

.h2-title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--dark_color);
    margin-bottom: 12px;
}

.sub-title {
    font-size: 14px;
    line-height: 21px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--dark_color2);
    padding: 8px;
    display: inline-block;
    background: var(--cream-color);
    border-radius: 6px;
    margin-bottom: 12px;
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    position: relative;
    z-index: 5;
}

.container, 
.container-fluid, 
.container-lg, 
.container-md, 
.container-sm, 
.container-xl, 
.container-xxl {
    --bs-gutter-x : var(--gutter);
    --container-space: calc(var(--gutter) / 2);
    padding-right: var(--container-space);
    padding-left: var(--container-space);
}

.row {
    --bs-gutter-x : var(--gutter);
}

.sec-btn {
    width: auto;
    max-width: 100%;
    height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px 24px;
    background: var(--primary_color);
    border-radius: 40px;
    border: 1.2px solid var(--primary_color);
    outline: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--white_color);
    cursor: pointer;
    transition: 0.3s;
}

.sec-btn:hover,
.sec-btn.outline {
    background: transparent;
    color: var(--primary_color);
}

.sec-btn.outline:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.sec-btn i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    background: transparent;
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--dark_color);
    transition: 0.3s;
}

.slick-arrow:hover {
    color: var(--primary_color);
}

.slick-arrow.next-arrow {
    left: auto;
    right: 0;
}

.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 6px;
}

.slick-dots li {
    width: auto;
    height: auto;
    line-height: 0;
}

.slick-dots li button {
    width: 8px;
    height: 8px;
    border: 1px solid var(--primary_color);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    font-size: 0;
    line-height: 0;
    color: transparent;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.slick-dots li button:hover, 
.slick-dots li.slick-active button {
    background: var(--primary_color);
}

.form-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-box>label {
    display: block;
    width: 100%;
}

.form-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
}

.form-radio input {
    margin-right: 5px;
}

.form-input {
    width: 100%;
    height: 50px;
    background: var(--white_color);
    border-radius: 0;
    border: 1px solid var(--gray_color_5);
    outline: none;
    padding: 5px 15px;
    color: var(--common_color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.form-input::placeholder {
    opacity: 1;
    color: var(--common_color);
}

textarea.form-input {
    resize: none;
    height: 120px;
    padding: 15px;
}

.for-des {
    display: block !important;
}

.for-mob {
    display: none !important;
}

.hashtag {
    color: var(--primary_color);
    font-weight: bold;
}

/* Common CSS Responsive Start */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1330px;
    }
}

@media (min-width: 2100px) {
    .container {
        max-width: 1500px;
    }
}

@media screen and (max-width: 1399px) {
    .h2-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 1199px) {
    .h1-title {
        font-size: 40px;
    }
    .h2-title {
        font-size: 28px;
        line-height: 1.3;
    } 
}

@media screen and (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }
    .for-des {
        display: none !important;
    }    
    .for-mob {
        display: block !important;
    }
}

@media screen and (max-width: 575px) {
    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        --container-space: calc(var(--gutter));
    }
    .sub-title {
        font-size: 12px;
        line-height: 18px;
    }
}

@media screen and (max-width: 400px) {
    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        --container-space: calc(var(--gutter) / 1.25);
    }
}
/* Common CSS Responsive End */
/*========== Common CSS End ==========*/

/*========== Header CSS Start ==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: var(--white_color);
    transition: 0.3s;
    z-index: 100;
}

.site-header.sticky_head {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header-box {
    height: 64px;
    display: flex;
    align-items: center;
    gap: 46px;
}

.site-branding {
    flex: 0 0 auto;
}

.main-navigation {
    flex-grow: 1;
}

.site-branding a {
    display: inline-block;
}

.site-branding a img {
    width: 136px;
}

.toggle-button {
    display: none;
    position: fixed;
    top: 14px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent;
    outline: none;
    border: none;
    border-radius: 0;
    padding: 8px 3px;
    cursor: pointer;
    z-index: 110;
}

.toggle-button span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark_color);
    margin-bottom: 5px;
    border-radius: 10px;
    position: relative;
    top: 0;
    transition: 0.3s;
}

.toggle-button span:last-child {
    width: 14px;
    margin-left: auto;
}

.main-navigation.toggle-menu .toggle-button span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
}

.main-navigation.toggle-menu .toggle-button span:nth-child(2) {
    transform: rotate(-45deg);
    top: -2px;
}

.main-navigation.toggle-menu .toggle-button span:nth-child(3) {
    opacity: 0;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-menu-box {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-menu-box > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px 52px;
}

.header-menu-box > ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark_color);
    text-transform: capitalize;
}

.header-menu-box > ul li a:hover {
    color: var(--primary_color);
}

.header-app {
    padding-right: 28px;
}

.header-app ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-app ul li img {
    width: auto;
    height: 32px;
}

.dropdown-item i {
    margin-right: 5px;
}

.header-menu-dropdown .dropdown-toggle {
    width: auto;
    height: 40px;
    background: var(--primary_color);
    border-radius: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    color: var(--white_color);
    font-size: 14px;
    font-weight: 500;
    padding: 0 20px;
}

.header-menu-dropdown .dropdown-toggle::after {
    content: '';
    margin: 0;
    border: 0;
    display: inline-block;
    width: 12px;
    height: 6px;
    mask-image: url('../images/down-arrow.svg');
    -webkit-mask-image: url('../images/down-arrow.svg');
    mask-size: 100%;
    -webkit-mask-size: 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: var(--white_color);
}

.header-menu-dropdown .dropdown-item:hover,
.header-menu-dropdown .dropdown-item.active, 
.header-menu-dropdown .dropdown-item:active {
    background: var(--primary_color);
    color: var(--white_color);
}

/* Header Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .header-menu-box > ul {
        gap: 20px 40px;
    }
}
@media screen and (max-width: 991px) {
    .site-header {
        border-bottom: 1px solid var(--gray_color_5);
    }
    .site-header .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .toggle-button {
        display: block;
    }
    .header-menu {
        position: fixed;
        top: 0;
        left: 100vw;
        width: 100vw;
        height: 100vh;
        background: #d2d2d2;
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 67px;
        padding: 60px 15px 90px;
        transition: 0.5s;
        z-index: 100;
    }
    .main-navigation.toggle-menu .header-menu {
        left: 0;
        opacity: 1;
    }
    .header-app {
        padding-right: 0;
        text-align: center;
    }
    .menu-logo {
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translate(-50%);
    }    
    .header-menu-box {
        padding-top: 70px;
    }
    .header-menu-box,
    .header-menu-box > ul {
        flex-direction: column;
        gap: 40px;
    }
    .header-menu-box > ul li a {
        font-size: 20px;
    }
    .header-app p {
        color: var(--dark_color);
        font-weight: 600;
        margin-bottom: 17px;
    }
    .header-app ul {
        justify-content: center;
        gap: 32px;
        flex-direction: row-reverse;
    }
    .header-app ul li img {
        height: 51px;
    }
    .header-app ul li p {
        font-size: 12px;
        line-height: 1.3;
        color: var(--dark_color);
    }
    .header-social {
        display: flex;
        justify-content: center;
        gap: 35px;
        align-items: center;
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translate(-50%);
    }    
    .header-social a {
        font-size: 24px;
        color: var(--dark_color);
        transition: 0.3s;
    }    
    .header-social a:hover {
        color: var(--primary_color);
    }
}
@media screen and (max-width: 991px) and (max-height: 699px) {
    .header-menu-box, .header-menu-box > ul {
        gap: 30px;
    }
    .header-menu {
        gap: 50px;
    }
    .header-social {
        bottom: 40px;
    }
}
@media screen and (max-width: 991px) and (max-height: 599px) {
    .header-menu-box, .header-menu-box > ul {
        gap: 20px;
    }
    .header-menu {
        gap: 30px;
    }
    .header-social {
        bottom: 30px;
    }
}
@media screen and (max-width: 400px) {
    .site-header .container {
        padding: 0 16px;
    }
    .toggle-button {
        right: 16px;
    }
}
/* Header Responsive CSS End */
/*========== Header CSS End ==========*/

/*========== Banner CSS Start ==========*/
.main-banner {
    position: relative;
    padding-block: 164px 110px;
    overflow: hidden;
}

.main-banner:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -265px;
    width: 758px;
    aspect-ratio: 1/1;
    background-image: url('../images/banner-shape-img.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-68deg);
    z-index: 0;
}

.main-banner:after {
    content: '';
    position: absolute;
    bottom: -395px;
    left: -115px;
    width: 905px;
    aspect-ratio: 1/1;
    background-image: url('../images/banner-shape-img.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(2deg);
    opacity: 0.5;
    z-index: 0;
}

.banner-content {
    padding-bottom: 55px;
}

.banner-content-text {
    max-width: 436px;
    margin-block: 33px 29px;
}

.banner-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.banner-btn a img {
    max-width: 135px;
}

.banner-scan-code {
    margin-top: 70px;
    display: flex;
    align-items: center;
    position: relative;
    gap: 14px;
}

.banner-scan-code:before {
    content: '';
    position: absolute;
    top: 90%;
    left: 50px;
    width: 111px;
    aspect-ratio: 1/0.541;
    background-image: url(../images/qr-arrow-shape.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-12deg);
}

.banner-scan-code .img {
    flex-grow: 0;
}

.banner-scan-code .text {
    max-width: 150px;
}

.banner-scan-code .text p {
    font-size: 13px;
    line-height: 19.5px;
    font-family: var(--stylish_font2);
    margin-bottom: 0;
}

.banner-image {
    position: relative;
    width: 500px;
    aspect-ratio: 1/1.18;
}

.banner-image:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-11.84deg);
    width: 100%;
    aspect-ratio: 1/1;
    background-image: url(../images/banner-img-bg.svg);
    background-size: 88%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.banner-img, .banner-image-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 51.7%;
    z-index: 1;
}

.banner-img {
    border-radius: 10px;
    box-shadow: 13px 13px 42px rgba(0, 0, 0, 0.25);
}

.banner-img img,
.banner-image-mockup img {
    width: 100%;
    border-radius: 10px;
}

.banner-image-mockup {
    width: 58%;
    z-index: 5;
}

.banner-img-shape img {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 0;
}

.banner-img-shape img.notification {
    top: 1.36%;
    left: 1.4%;
    width: 6%;
    transform: rotate(-11.6deg);
    animation: shake 5s linear infinite forwards;
}

@keyframes shake {
    0% {
      transform: rotate(-11.6deg);
    }
    25% {
      transform: rotate(11.6deg);
    }
    50% {
      transform: rotate(-11.6deg);
    }
    75% {
        transform: rotate(11.6deg);
    }
    100% {
        transform: rotate(-11.6deg);
    }
}

.banner-img-shape img.send {
    top: 39.5%;
    right: 108%;
    width: 8.4%;
    transform: rotate(4.62deg) translate(0, 0);
    animation: rocket 5s linear infinite forwards;
}

@keyframes rocket {
    0% {
        transform: rotate(4.62deg) translate(0, 0);
    }
    25% {
        transform: rotate(4.62deg) translate(-10px, 10px);
    }
    50% {
        transform: rotate(4.62deg) translate(0, 0);
    }
    75% {
        transform: rotate(4.62deg) translate(-10px, 10px);
    }
    100% {
        transform: rotate(4.62deg) translate(0, 0);
    }
}

.banner-img-shape img.user {
    bottom: 5.1%;
    left: 6.6%;
    width: 4.4%;
    transform: rotate(-15deg);
    animation: shake 5s linear 2s infinite forwards;
}

.banner-img-shape img.thum {
    top: 6%;
    right: 7%;
    width: 9%;
    animation: swipe 2s linear infinite alternate;
}

.banner-img-shape img.suitecase {
    top: 35%;
    right: -5%;
    width: 7%;
    transform: rotate(11.35deg);
    animation: shake 7s linear 1s infinite forwards;
}

.banner-img-shape img.thumsup {
    bottom: 19.33%;
    right: 3.4%;
    width: 10%;
    animation: shake 5s linear infinite forwards;
}

.banner-img-shape img.solo {
    bottom: -4%;
    right: 130%;
    width: 8%;
    animation: swipe 4s linear infinite alternate;
}

.banner-img-shape img.plane {
    bottom: 30%;
    right: 130%;
    width: 10%;
    animation: rocket 7s linear 1.5s infinite forwards;
}

.banner-img-shape img.map {
    bottom: -50px;
    right: 45%;
    width: 7%;
    animation: shake 7s linear 1s infinite forwards;
}

.baner-img-order {
    position: absolute;
    bottom: 18.31%;
    left: -4%;
    width: 42.2%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 25px 25px 33px rgba(0, 0, 0, 0.2);
    z-index: 6;
    animation: swipe 2s ease infinite alternate;
}

@keyframes swipe {
    0% {
        transform: translate(0, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.baner-img-order img {
    position: relative;
}

/* Banner Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .title-tagline .tagline-slide > span {
        font-size: 35px;
    }
    .title-tagline {
        width: 340px;
    }
    .title-tagline span img {
        max-width: 35px;
    }
    .main-banner {
        padding-block: 120px 80px;
    }
    .main-banner:before {
        right: -130px;
        width: 630px;
    }
    .banner-image {
        width: 400px;
    }
    .main-banner:after {
        width: 775px;
    }
}
@media screen and (max-width: 1199px) {
    .banner-image {
        width: 350px;
    }
    .main-banner:before {
        width: 520px;
    }
    .banner-scan-code {
        margin-top: 50px;
    }
    .banner-content {
        padding-bottom: 30px;
    }
    .main-banner:after {
        width: 700px;
    }
}
@media screen and (max-width: 991px) {
    .main-banner {
        padding-block: 160px 96px;
    }
    .banner-content {
        padding-bottom: 0;
        text-align: center;
    }
    .title-tagline {
        width: 300px;
        height: 65px;
        vertical-align: bottom;
    }
    .title-tagline .tagline-slide > span {
        font-size: 30px;
        height: 65px;
    }
    .title-tagline span img {
        max-width: 30px;
    }
    .banner-content-text {
        max-width: 100%;
        margin-block: 18px 28px;
    }
    .banner-btn {
        justify-content: center;
    }
    .banner-image {
        width: 360px;
        max-width: 100%;
        margin: 40px auto 0;
    }
    .main-banner:before {
        display: none;
    }
    .main-banner:after {
        width: 1130px;
        height: 860px;
        transform: rotate(0deg);
        bottom: -130px;
        left: auto;
        right: -79px;
    }
    .banner-img-shape img.solo {
        bottom: -14%;
        right: 0;
    }
    .banner-img-shape img.plane {
        bottom: -17%;
        right: 40%;
    }
    .banner-img-shape img.map {
        bottom: -20%;
        right: 95%;
    }
}
@media screen and (max-width: 575px) {
    .main-banner {
        padding-block: 125px 96px;
    }
    .title-tagline {
        margin: auto;
        width: 250px;
        height: 55px;
    }
    .title-tagline .tagline-slide > span {
        font-size: clamp(22px, 5vw, 25px);
        height: 55px;
    }
    .title-tagline span img {
        max-width: 23px;
    }
    .h1-title {
        font-size: clamp(28px, 7vw, 40px);
    }
    .stylish {
        font-size: clamp(30px, 8vw, 45px);
    }
    .banner-img-shape img.notification {
        left: 10%;
    }
    .banner-img-shape img.send {
        top: 27%;
        right: 95%;
    }
    .baner-img-order {
        left: 0;
    }
}
@media screen and (max-width: 400px) {
    .title-tagline,
    .title-tagline .tagline-slide > span {
        height: 45px;
    }
}
/* Banner Responsive CSS End */
/*========== Banner CSS End ==========*/

/*========== Know Us CSS Start ==========*/
.main-know-us {
    position: relative;
    padding-block: 80px;
    background: var(--bg_color);
}

.know-us-row {
    min-height: 625px;
}

.know-us-tabbing {
    margin-top: 64px;
}

.know-us-tabbing ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.know-us-content {
    padding-left: 84px;
}

.know-us-tabbing ul li {
    margin-bottom: 40px;
    position: relative;
    pointer-events: none;
}

.know-us-tabbing ul li:before,
.know-us-tabbing ul li:after {
    content: '';
    position: absolute;
    top: -12px;
    left: -24px;
    width: 4px;
    height: calc(100% + 24px);
    background: var(--black_color);
    opacity: 0.1;
    border-radius: 8px;
    transition: 0.3s;
}

.know-us-tabbing ul li:after {
    background: var(--primary_color);
    height: 0;
    opacity: 1;
}

.know-us-tabbing ul li.slick-current:after {
    height: calc(100% + 24px);
    animation: line 10.5s linear 1;
}

@keyframes line {
    0% {
        height: 0;
    }
    50% {
        height: calc(100% + 24px);
    }
    
}

.know-us-tabbing ul li h5 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    margin: 0;
    pointer-events: auto;
    cursor: pointer;
}

.know-us-tabbing ul li.slick-current h5 {
    color: var(--primary_color);
}

.know-us-tabbing-text {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.5s;
    pointer-events: auto;
}

.know-us-tabbing-text > div {
    overflow: hidden;
}

.know-us-tabbing ul li.slick-current .know-us-tabbing-text {
    grid-template-rows: 1fr;
    margin-top: 10px;
}

.know-us-tabbing-text p {
    font-size: 16px;
    font-weight: 400;
}

.know-us-tabbing-slider .slick-list {
    overflow: visible;
    height: auto !important;
}

.know-us-tabbing-slider .slick-track {
    height: auto !important;
    width: 100% !important;
    transform: none !important;
    transition: none !important;
    display: flex;
    flex-direction: column;
}

.know-us-tabbing-slider .slick-slide {
    float: none;
    width: 100% !important;
}

.know-us-tab-images {
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.know-us-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.our-dna {
    position: relative;
    text-align: center;
    padding: 64px 50px;
    background: var(--primary_light_color);
    border-radius: 24px;
    margin-top: 56px;
}

.our-dna img {
    width: 136px;
    display: block;
    margin-inline: auto;
}

.our-dna .sub-title {
    margin-bottom: 20px;
}

.our-dna .h2-title {
    font-size: 26px;
    max-width: 75%;
    font-weight: 500;
    margin: 0 auto 32px;
}

.our-dna p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-style: italic;
    color: var(--dark_color);
}

/* Know Us Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .know-us-tabbing ul li h5 {
        font-size: 20px;
    }
    .our-dna .h2-title {
        font-size: 22px;
    }
    .know-us-row {
        min-height: 640px;
    }
}
@media screen and (max-width: 1199px) {
    .know-us-content {
        padding-left: 30px;
    }
    .know-us-tabbing ul li h5 {
        font-size: 18px;
    }
    .know-us-tabbing-text p {
        font-size: 14px;
    }
    .know-us-row {
        min-height: 605px;
    }
}
@media screen and (max-width: 991px) {
    .main-know-us {
        padding-block: 80px 16px;
    }
    .know-us-row {
        min-height: unset;
    }
    .know-us-content {
        padding-left: 0;
        text-align: center;
    }
    .know-us-tabbing ul li {
        margin-bottom: 64px;
        pointer-events: unset;
    }
    .know-us-tabbing ul li:last-child {
        margin-bottom: 0;
    }
    .know-us-tabbing ul li:before, 
    .know-us-tabbing ul li:after {
        display: none;
    }
    .know-us-tabbing-text {
        display: block;
        margin-top: 12px;
    }
    .know-us-image {
        width: 360px;
        max-width: 100%;
        margin: 0 auto 24px;
    }
    .know-us-image img {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);   
    }
    .our-dna {
        margin-top: 64px;
        padding: 64px 30px;
    }
}
@media screen and (max-width: 575px) {
    .our-dna img {
        margin-bottom: 20px;
    }
    .our-dna .h2-title {
        font-size: 20px;
    }
    .our-dna {
        padding: 64px 20px;
        border-radius: 24px;
    }
}
@media screen and (max-width: 400px) {
    .our-dna {
        padding: 64px 16px;
    }
}
/* Know Us Responsive CSS End */
/*========== Know Us CSS End ==========*/

/*========== Features CSS Start ==========*/
.main-features {
    position: relative;
    padding-top: 100px;
}

.features-content {
    max-width: 550px;
    margin: 50vh 0;
}

.features-content:last-child {
    margin-bottom: 70vh;
}

.features-content:nth-child(1n+0) .sub-title {
    background: var(--cream-color);
}

.features-content:nth-child(2n+0) .sub-title {
    background: var(--cream-color2);
}

.features-content:nth-child(3n+0) .sub-title {
    background: var(--cream-color3);
}

.features-content:nth-child(4n+0) .sub-title {
    background: var(--cream-color4);
}

.features-img {
    position: sticky;
    top: 70px;
    width: 83.334vw;
    max-width: 1200px;
}

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

.features-mockup {
    position: absolute;
    top: 1.92%;
    left: 10.09%;
    width: 24.4%;
    aspect-ratio: 1/2.137;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--white_color);
    border-radius: 35px;
    opacity: 0;
    transition: 0.3s;
}

.features-mockup.default,
.features-mockup.centered-active {
    opacity: 1;
}

/* Features Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .features-img {
        width: 70vw;
    }
}
@media screen and (max-width: 1399px) {
    .features-mockup {
        border-radius: 30px;
    }
}
@media screen and (max-width: 991px) {
    .main-features {
        padding-top: 80px;
        overflow: hidden;
    }
    .features-content {
        max-width: 100%;
        margin: 0;
        text-align: center;
        padding: 0 10px;
    }
    .features-content:last-child {
        margin-bottom: 0;
    }
    .features-img {
        width: 661px;
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-150px, 0);
        margin-block: 60px -115px;
    }
    .features-mobile-img-slider,
    .features-mobile-img-slider .slick-list,
    .features-mobile-img-slider .slick-track {
        position: unset;
    }
    .features-mobile-img-slider .slick-list {
        position: absolute;
        top: 1.92%;
        left: 10.09%;
        width: 24.4%;
        aspect-ratio: 1/2.14;
        background-size: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: var(--white_color);
        border-radius: 20px;
    }
    .features-mockup {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        aspect-ratio: 1/2.14;
        display: block;
        opacity: 1;
        border-radius: 20px;
    }
    .features-mockup.default {
        display: none;
    }
}
/* Features Responsive CSS End */
/*========== Features CSS End ==========*/

/*========== Key Benefits CSS Start ==========*/
.main-key-benefits {
    position: relative;
    padding: 100px 0;
    background: var(--cream_bg_color);
}

.key-benefits-content {
    position: relative;
}

.key-benefits-content:before {
    content: '';
    position: absolute;
    top: calc(100% + 75px);
    left: 190px;
    width: 297px;
    aspect-ratio: 1/0.529;
    background-image: url(../images/key-arrow-shape.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-138deg);
}

.key-benefits-content .sub-title {
    background: var(--cream-color2);
}

.key-benefits-list {
    column-count: 2;
    column-gap: 18px;
    page-break-inside: avoid;
}

.key-benefits-box {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--white_color);
    border-radius: 24px;
    position: relative;
    margin-bottom: 18px;
    padding: 30px;
    page-break-inside: avoid;
    transition: 0.8s;
}

.key-benefits-box:hover {
    padding-top: 213px;
}

.key-benefits-box:first-child {
    margin-top: 143px;
}

.key-benefits-box {
    background: var(--key_benefits_color1);
}

.key-benefits-box:nth-child(2n + 1) {
    background: var(--key_benefits_color2);
}

.key-benefits-box:nth-child(3n + 1) {
    background: var(--key_benefits_color3);
}

.key-benefits-box:nth-child(4n + 1) {
    background: var(--key_benefits_color4);
}

.key-benefits-img-wp {
    position: absolute;
    bottom: 101%;
    left: 50%;
    transform: translate(-50%);
    transition: 0.8s;
}

.key-benefits-box:hover .key-benefits-img-wp {
    bottom: calc(100% - 186px);
}

.key-benefits-img {
    position: relative;
}

.key-benefits-img img {
    width: 197px;
    position: relative;
    z-index: 1;
}

.key-benefits-img img.create-post {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 20px;
    box-shadow: 17px 0 28px rgba(0, 0, 0, 0.2);
}

.key-benefits-box-content {
    text-align: left;
}

.key-benefits-box:hover .key-benefits-box-content {
    text-align: center;
}

.key-benefits-box-content .sub-title {
    background: var(--white_color);
    font-size: 12px;
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 4px;
    transition: 0.8s;
}

.key-benefits-box:hover .key-benefits-box-content .sub-title {
    display: none;
}

.key-benefits-box-content h5 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.key-benefits-box-text {
    position: relative;
    top: 270px;
    opacity: 0;
    pointer-events: none;
    transition: 0.8s;
    text-align: center;
}

.key-benefits-box:hover .key-benefits-box-text {
    top: 0;
    margin-top: 10px;
    opacity: 1;
}

.key-benefits-box-text p {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.key-benefits-img-bottom {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    padding-inline: 30px;
    opacity: 1;
    transition: 0.8s;
}

.key-benefits-box:hover .key-benefits-img-bottom {
    bottom: -300px;
    opacity: 0;
}

.key-benefits-img-bottom img {
    width: 100%;
    border-radius: 13px;
    box-shadow: 0 2px 35px rgba(0,0,0,0.25);
}

/* Key Benefits Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .key-benefits-content:before {
        width: 200px;
    }
}

@media screen and (max-width: 1199px) {
    .main-key-benefits {
        padding: 80px 0;
    }
    .key-benefits-box {
        padding: 20px;
        aspect-ratio: 1/1.07;
    }
    .key-benefits-box:nth-child(1) {
        margin-top: 80px;
    }
    .key-benefits-box:hover .key-benefits-img-wp {
        bottom: calc(100% - 120px);
    }
    .key-benefits-box:hover {
        padding-top: 140px;
    }
    .key-benefits-content:before {
        width: 150px;
        top: calc(100% + 50px);
    }
}

@media screen and (max-width: 991px) {
    .key-benefits-content {
        text-align: center;
    }
    .key-benefits-content:before {
        display: none;
    }
    .key-benefits-list {
        margin-top: 48px;
        column-count: unset;
    }
    .key-benefits-box {
        width: 310px;
        aspect-ratio: 1/1;
        margin-right: 15px;
    }
    .key-benefits-list .slick-list {
        width: 100vw;
    }    
    .key-benefits-box,
    .key-benefits-box:nth-child(1) {
        margin-top: 0;
        margin-bottom: 0;
    }
    .key-benefits-mobile-slider .slick-dots {
        margin-top: 48px;
    }
}
@media screen and (max-width: 350px) {
    .key-benefits-box {
        width: 295px;
    }
}
/* Key Benefits Responsive CSS End */
/*========== Key Benefits CSS End ==========*/

/*========== Compnay Quote CSS Start ==========*/
.main-company-quote {
    position: relative;
    padding-block: 115px;
    background: var(--quote_bg_color);
}

.company-quote-content-wp {
    position: relative;
    margin-inline: 42px;
}

.company-quote-content {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-quote-img img {
    width: 130px;
}

.company-quote-text p {
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
}

.company-quote-logo img {
    width: 250px;
}

.company-quote {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.company-quote a img {
    width: auto;
    height: 40px;
}

.company-quote-animate [class^="animate-img"] {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.company-quote-animate [class^="animate-img"] .rating {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    gap: 4px;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    letter-spacing: 0.15px;
    background: var(--star_bg_color);
    border-radius: 32px;
}

.company-quote-animate [class^="animate-img"] .rating img {
    width: 12px;
}

.company-quote-animate [class^="animate-img"] img {
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.company-quote-animate .animate-img1 {
    top: -70px;
    left: -10px;
    animation: movedelement 5s linear infinite;
}

.company-quote-animate .animate-img1 img {
    width: 91px;
}

.company-quote-animate .animate-img2 {
    top: 15px;
    left: 186px;
    animation: movedelement2 10s linear infinite;
}

.company-quote-animate .animate-img2 img {
    width: 45px;
}

.company-quote-animate .animate-img3 {
    top: 94px;
    left: -100px;
    animation: movedelement2 8s linear infinite;
}

.company-quote-animate .animate-img3 img {
    width: 41px;
}

.company-quote-animate .animate-img4 {
    top: 180px;
    left: -257px;
    animation: movedelement2 6s linear infinite;
}

.company-quote-animate .animate-img4 img {
    width: 71px;
}

.company-quote-animate .animate-img5 {
    bottom: -17px;
    left: 36px;
    animation: movedelement 12s linear infinite;
}

.company-quote-animate .animate-img5 img {
    width: 46px;
}

.company-quote-animate .animate-img6 {
    top: 53px;
    right: 139px;
    animation: movedelement 10s linear infinite;
}

.company-quote-animate .animate-img6 img {
    width: 41px;
}

.company-quote-animate .animate-img7 {
    top: -48px;
    right: -38px;
    animation: movedelement2 8s linear infinite;
}

.company-quote-animate .animate-img7 img {
    width: 49px;
}

.company-quote-animate .animate-img8 {
    top: 70px;
    right: -185px;
    animation: movedelement 7s linear infinite;
}

.company-quote-animate .animate-img8 img {
    width: 65px;
}

.company-quote-animate .animate-img9 {
    top: 177px;
    right: -79px;
    animation: movedelement2 6s linear infinite;
}

.company-quote-animate .animate-img9 img {
    width: 28px;
}

.company-quote-animate .animate-img10 {
    bottom: 3px;
    right: 0;
    animation: movedelement 12s linear infinite;
}

.company-quote-animate .animate-img10 img {
    width: 83px;
}

.company-quote-animate .animate-img11 {
    bottom: -78px;
    right: 283px;
    animation: movedelement2 9s linear infinite;
}

.company-quote-animate .animate-img11 img {
    width: 41px;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }

    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }

    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* Compnay Quote Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .company-quote-content-wp {
        margin-inline: 30px;
    }
}
@media screen and (max-width: 1199px) {
    .company-quote-img img {
        width: 100px;
    }
    .company-quote-text p {
        font-size: 18px;
    }
}
@media screen and (max-width: 991px) {
    .main-company-quote {
        padding-block: 200px 231px;
    }
    .company-quote-animate .animate-img1 img {
        width: 76px;
    }
    .company-quote-animate .animate-img1 {
        top: -130px;
        left: 0;
    }
    .company-quote-animate .animate-img4 {
        top: auto;
        bottom: -140px;
        left: 0;
    }
    .company-quote-animate .animate-img5 {
        bottom: -100px;
        left: auto;
        right: 0;
    }
    .company-quote-animate .animate-img7 {
        top: -130px;
        right: auto;
        left: 50%;
    }
    .company-quote-animate .animate-img6 {
        top: -80px;
        right: 0;
    }
    .company-quote-animate .animate-img9 {
        top: auto;
        left: 40%;
        bottom: -120px;
        right: auto;
        animation-duration: 5s;
    }
    .company-quote-animate .animate-img2,
    .company-quote-animate .animate-img3,
    .company-quote-animate .animate-img8,
    .company-quote-animate .animate-img11,
    .company-quote-animate .animate-img10 {
        display: none;
    }
    .company-quote-content-wp {
        margin-inline: 0;
    }
}
@media screen and (max-width: 575px) {
    .company-quote-content {
        gap: 32px;
    }
    .company-quote-text p {
        font-size: 16px;
    }
    .company-quote-logo img {
        width: 200px;
    }
}
/* Compnay Quote Responsive CSS End */
/*========== Compnay Quote CSS End ==========*/

/*========== Safe & Secure CSS Start ==========*/
.main-safe-secure {
    position: relative;
    padding-block: 130px;
}

.safe-secure-content {
    position: relative;
    padding-right: 119px;
}

.safe-secure-content .h2-title {
    margin-bottom: 24px;
}

.safe-secure-list {
    margin-top: 24px;
}

.safe-secure-list .row {
    --gutter: 16px;
    row-gap: var(--gutter);
}

.safe-secure-box {
    position: relative;
    background: var(--safe_secure_light_color);
    padding: 32px 24px;
    border-radius: 12px;
    height: 100%;
}

.safe-secure-box h5 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.safe-secure-box p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.safe-secure-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 97px;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    z-index: 0;
    opacity: 0.1;
}

.safe-secure-img img {
    width: 100%;
}

/* Compnay Quote Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .safe-secure-content {
        padding-right: 25px;
    }
}
@media screen and (max-width: 1199px) {
    .main-safe-secure {
        padding-block: 80px;
    }
    .safe-secure-content {
        padding-right: 0;
    }
    .safe-secure-box {
        padding: 20px;
    }    
    .safe-secure-box h5 {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .safe-secure-content {
        text-align: center;
    }
    .safe-secure-img {
        margin-block: 129px;
    }
    .safe-secure-box {
        padding: 32px 24px;
    }
    .safe-secure-box h5 {
        font-size: 16px;
    }
    .safe-secure-mobile-slider .slick-dots {
        margin-top: 30px;
    }
}
/* Compnay Quote Responsive CSS End */
/*========== Safe & Secure CSS End ==========*/

/*========== Our Satisfied Customers CSS Start ==========*/
.main-satisfied-customers {
    position: relative;
    padding-block: 120px;
    background: var(--safe_secure_light_color);
    overflow: hidden;
}

.satisfied-customers-title {
    text-align: center;
}

.satisfied-customers-slider {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.satisfied-customer-box {
    position: relative;
    width: 518px;
    background: var(--white_color);
    border-radius: 16px;
    border: 1px solid var(--white_color);
    padding: 26px;
    display: flex;
    gap: 26px;
    align-items: center;
    transition: 0.3s;
}

.satisfied-customers-slider .slick-slide.slick-current .satisfied-customer-box{
    box-shadow: 9px 9px 90px rgba(0, 0, 0, 0.15);
}

.customer-img {
    flex-shrink: 0;
}

.customer-img img {
    width: 170px;
}

.review-by h6 {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--review_color);
    margin-bottom: 3px;
}

.review-by p {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 3px;
}

.customer-review {
    margin-top: 19px;
}

.customer-review h5 {
    font-size: 13px;
    line-height: 1.2;
    color: var(--review_color);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
}

.customer-review-text p {
    font-size: 11px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.satisfied-customers-slider .slick-list {
    width: 100%;
    overflow: visible;
    padding: 0 !important;
    order: -1;
    margin-top: 32px;
    margin-bottom: 65px;
}

.satisfied-customers-slider .slick-slide {
    position: relative;
    z-index: 0;
    transition: 0.3s;
    transform: scale(1);
    visibility: hidden;
    opacity: 0;
    margin-inline: -60px;
    opacity: 0.2;
    transition: 0.3s;
}

.satisfied-customers-slider .slick-slide.slick-active {
    visibility: visible;
}

.satisfied-customers-slider .slick-slide.slick-current {
    transform: scale(1.2356);
    opacity: 1;
    z-index: 1;
}

.satisfied-customers-slider .slick-arrow {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
}

.satisfied-customers-slider .slick-arrow.prev-arrow {
    order: 0;
}

.satisfied-customers-slider .slick-arrow.next-arrow {
    order: 2;
}

.satisfied-customers-slider .slick-dots {
    order: 1;
    width: auto;
    margin-inline: 53px;
}

/* Our Satisfied Customers Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .main-satisfied-customers {
        padding-block: 80px;
    }
    .satisfied-customers-slider {
        margin-top: 40px;
    }
    .satisfied-customer-box {
        width: 420px;
        padding: 20px;
        gap: 20px;
    }
    .customer-img img {
        width: 120px;
    }
    .customer-review {
        margin-top: 15px;
    }
}
@media screen and (max-width: 991px) {
    .satisfied-customers-slider .slick-list {
        margin-top: 0;
        margin-bottom: 40px;
    }
    .satisfied-customers-slider .slick-slide {
        opacity: 1;
        visibility: visible;
        margin-inline: 10px;
    }
    .satisfied-customers-slider .slick-slide.slick-current {
        transform: scale(1);
    }
    .satisfied-customer-box {
        width: 100%;
        margin: auto;
        border-color: var(--gray_color_5);
        padding: 40px;
    }    
    .satisfied-customers-slider .slick-slide.slick-current .satisfied-customer-box {
        box-shadow: none;
    }
}
@media screen and (max-width: 575px) {
    .satisfied-customer-box {
        flex-direction: column;
        padding: 40px 35px;
        gap: 32px;
    }
    .customer-img img {
        width: 211px;
        max-width: 100%;
    }
    .review-by h6 {
        font-size: 14px;
    }
    .review-by p {
        font-size: 12px;
    }
    .customer-review h5 {
        font-size: 16px;
    }
    .customer-review-text p {
        font-size: 14px;
    }
    .customer-review {
        margin-top: 24px;
    }
    .satisfied-customers-slider .slick-slide {
        margin-inline: 4px;
    }
}
@media screen and (max-width: 350px) {
    .satisfied-customer-box {
        padding: 20px;
        gap: 20px;
    }
    .customer-img img {
        width: 170px;
    }
}
/* Our Satisfied Customers Responsive CSS End */
/*========== Our Satisfied Customers CSS End ==========*/

/*========== What our Investors say about us CSS Start ==========*/
.main-investors-say {
    position: relative;
    padding-block: 100px;
    background: var(--cream_bg_color);
}

.investors-say-content {
    text-align: center;
}

.investors-say-content .h2-title span {
    color: var(--primary_color);
}

.investors-say-content p {
    margin-bottom: 24px;
}

.invest-by h3 {
    display: inline-block;
    font-size: 20px;
    color: var(--primary_color);
    margin-bottom: 20px;
}

.invest-by {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
}

.invest-by:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 200px;
    height: 2px;
    background: var(--black_color);
    opacity: 0.2;
}

.invest-by ul {
    list-style: none;
    margin: 0 0 30px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.invest-by ul li:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(0,0,0,0.3);
}

.invest-by ul li {
    color: var(--dark_color);
    font-weight: 700;
}

.invest-by-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.invest-by-img-box {
    max-width: 100%;
    width: 300px;
    height: auto;
    aspect-ratio: 1/0.5;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white_color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.invest-by-img img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    object-position: center;
}

/* What our Investors say about us Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .main-investors-say {
        padding-block: 80px;
    }
}
/* What our Investors say about us Responsive CSS End */
/*========== What our Investors say about us CSS End ==========*/

/*========== Frequently Asked Questions CSS Start ==========*/
.main-faq {
    position: relative;
    padding-block: 80px;
}

.faq-content {
    text-align: center;
    padding-inline: 40px;
}

.faq-list {
    margin-top: 64px;
}

.faq-box {
    position: relative;
    padding-block: 28px;
    border-top: 1px solid var(--gray_color_5);
    display: flex;
    gap: 32px;
}

.faq-box:first-child {
    border: none;
}

.faq-num {
    flex-shrink: 0;
    width: 63px;
    height: 63px;
    background: var(--primary_light_color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16.55px;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: var(--primary_color);
    text-align: center;
}

.faq-list-content {
    display: inline-block;
    align-self: center;
    padding-right: 72px;
}

.faq-title {
    position: relative;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--dark_color);
    margin-bottom: 0;
    cursor: pointer;
    transition: 0.3s;
}

.faq-title:hover,
.faq-box.active-faq .faq-title {
    color: var(--primary_color);
}

.faq-title:before {
    content: '\f107';
    position: absolute;
    top: -7px;
    left: calc(100% + 32px);
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray_color_5);
    border-radius: 50%;
    font-family: "Font Awesome 5 Free";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--dark_color);
    transition: 0.3s;
}

.faq-box.active-faq .faq-title:before {
    top: 0;
    transform: rotate(-180deg);
}

.faq-list-text {
    display: grid;
    grid-template-rows: 0fr;
    padding-right: 32px;
    transition: 0.5s;
}

.faq-box.active-faq .faq-list-text {
    grid-template-rows: 1fr;
    margin-top: 12px;
}

.faq-list-text > div {
    overflow: hidden;
}

.faq-btn {
    margin-top: 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Frequently Asked Questions Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .faq-content {
        padding-inline: 0;
    }
    .faq-btn {
        margin-top: 30px;
    }
}
@media screen and (max-width: 575px) {
    .faq-list {
        margin-top: 40px;
    }
    .faq-box {
        gap: 16px;
    }
    .faq-num {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 8px;
    }
    .faq-title:before {
        top: -2px;
        left: calc(100% + 16px);
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .faq-list-content {
        padding-right: 46px;
    }
    .faq-list-text {
        padding-right: 0;
    }
    .faq-btn {
        flex-direction: column;
    }
    .faq-btn .sec-btn {
        width: 100%;
        max-width: 361px;
    }
}
/* Frequently Asked Questions Responsive CSS End */
/*========== Frequently Asked Questions CSS End ==========*/

/*========== Download App CSS Start ==========*/
.main-download-app {
    position: relative;
    padding-top: 77px;
}

.main-download-app:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black_color);
    opacity: 0.7;
    z-index: 0;
}

.download-app-img {
    text-align: center;
}

.download-app-img img {
    width: 523px;
    display: inline-block;
    margin-bottom: -1px;
}

.download-app-content {
    padding: 50px 0 50px 20px;
}

.download-app-content .h2-title {
    font-size: 40px;
    color: var(--cream-color3);
    margin-bottom: 5px;
}

.download-app-content .h2-title span {
    font-family: var(--stylish_font);
    font-size: 44px;
    color: var(--primary_color);
}

.download-app-content p {
    max-width: 435px;
    color: var(--gray_color_5);
    opacity: 0.8;
    margin-bottom: 28px;
}

.download-btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.download-btn a img {
    max-width: 135px;
}

/* Download App Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .download-app-content .h2-title {
        font-size: 30px;
    }
}
@media screen and (max-width: 991px) {
    .main-download-app {
        padding-top: 100px;
        background: var(--dark_color) !important;
    }    
    .main-download-app:before {
        display: none;
    }    
    .download-app-content {
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }    
    .download-app-content p {
        display: inline-block;
    }    
    .download-btn {
        justify-content: center;
    }    
    .download-app-img img {
        width: 330px;
    }
}
@media screen and (max-width: 575px) {
    .download-app-content .h2-title {
        font-size: 26px;
    }
    .download-app-content .h2-title span {
        font-size: 28px;
    }
}
/* Download App Responsive CSS End */
/*========== Download App CSS End ==========*/

/*========== Have a Query CSS Start ==========*/
.main-have-query {
    position: relative;
    padding-top: 100px;
}

.have-query-wp {
    margin: 0 70px;
    padding: 0 77px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.have-query-content {
    max-width: 419px;
}

.have-query-content p {
    margin-bottom: 24px;
}

.have-query-img img {
    width: 383px;
    margin-bottom: -1px;
}

/* Have a Query Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .have-query-wp {
        margin: 0 50px;
        padding: 0 50px;
    }
}
@media screen and (max-width: 1199px) {
    .main-have-query {
        padding-top: 100px;
    }
    .have-query-wp {
        margin: 0 30px;
        padding: 0 30px;
    }
}
@media screen and (max-width: 991px) {
    .main-have-query {
        padding: 80px 0;
    }
    .have-query-wp {
        margin: 0;
        padding: 0;
        display: block;
    }    
    .have-query-content {
        max-width: 100%;
        text-align: center;
    }
    .have-query-img {
        display: none;
    }
}
@media screen and (max-width: 575px) {
    .have-query-content .sec-btn {
        width: 361px;
        max-width: 100%;
    }
}
/* Have a Query Responsive CSS End */
/*========== Have a Query CSS End ==========*/

/*========== Footer CSS Start ==========*/
.site-footer {
    position: relative;
}

.footer-wp {
    position: relative;
    background: var(--footer_color);
    padding: 70px;
    border-radius: 25px 25px 0 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 210px;
    margin-bottom: 28px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-btn a img {
    max-width: 135px;
}

.footer-links {
    min-width: 150px;
}

.footer-links h6 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white_color);
    font-weight: 600;
    margin-bottom: 23px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.footer-links ul li {
    line-height: initial;
}

.footer-links ul li a {
    color: var(--footer_link_color);
}

.footer-links ul li a:hover {
    color: var(--primary_color);
}

.footer-bottom {
    position: relative;
    background: var(--footer_color2);
    padding: 16px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-text p {
    font-size: 12px;
    line-height: 1.25;
}

.footer-bottom-text p i {
    color: var(--red_color);
}

.footer-bottom-text p a {
    color: var(--white_color);
    opacity: 0.7;
}

.footer-bottom-text p a:hover {
    color: var(--primary_color);
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 32px;
}

.footer-social a {
    font-size: 18px;
    line-height: 1;
    color: var(--footer_link_color);
}

.footer-social a:hover {
    color: var(--primary_color);
}

.footer-wp-shape {
    display: none;
}

/* Footer Responsive CSS Start */
@media screen and (min-width: 992px) {
    .footer-wp-shape {
        display: block;
    }
    .footer-wp-shape img {
        position: absolute;
        filter: brightness(0) invert(1);
        opacity: 0.5;
    }
    
    .footer-wp-shape .send {
        top: 11%;
        left: 27%;
        width: 30px;
        animation: rocket 5s linear infinite forwards;
    }
    
    .footer-wp-shape .suitecase {
        top: 55%;
        left: 47%;
        width: 30px;
        animation: shake 7s linear 1s infinite forwards;
    }
    
    .footer-wp-shape .thumsup {
        bottom: 15%;
        right: 35%;
        animation: shake 5s linear infinite forwards;
    }
    
    .footer-wp-shape .solo {
        bottom: 8%;
        left: 35%;
        width: 35px;
        animation: swipe 4s linear infinite alternate;
    }
    
    .footer-wp-shape .plane {
        top: 20%;
        right: 6%;
        width: 45px;
        animation: rocket 7s linear 1.5s infinite forwards;
    }
    
    .footer-wp-shape .map {
        bottom: 10%;
        right: 10%;
        animation: shake 7s linear 1s infinite forwards;
    }
}
@media screen and (max-width: 1199px) {
    .footer-wp {
        padding: 70px 50px 37px;
    }
    .footer-logo img {
        width: 200px;
    }
    .footer-btn a img {
        max-width: 95px;
    }
}
@media screen and (max-width: 991px) {
    .site-footer {
        background: var(--footer_color);
    }
    .footer-wp {
        padding: 48px 0;
        border-radius: 0;
        background: transparent;
        display: block;
        text-align: center;
    }
    .footer-info:not(:last-child) {
        margin-bottom: 48px;
    }
    .footer-btn {
        justify-content: center;
    }
    .footer-links {
        position: relative;
        padding: 12px;
        border-bottom: 1px solid #636363;
        margin-bottom: 16px;
    }    
    .footer-links:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }    
    .footer-links h6 {
        display: inline-flex;
        align-items: center;
        position: relative;
        gap: 15px;
        margin-bottom: 0;
    }    
    .footer-links h6:after {
        content: '';
        margin: 0;
        border: 0;
        display: inline-block;
        width: 12px;
        height: 6px;
        mask-image: url(../images/down-arrow.svg);
        -webkit-mask-image: url(../images/down-arrow.svg);
        mask-size: 100%;
        -webkit-mask-size: 100%;
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-position: center;
        background-color: var(--white_color);
        margin-right: -27px;
        transition: 0.3s;
    }   
    .footer-links.active h6:after {
        transform: rotate(-180deg);
    } 
    .footer-links ul {
        display: none;
        margin: 12px 0;
    }
    .footer-links.active ul {
        display: flex;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 25px 0;
        text-align: center;
    }    
    .footer-bottom>* {
        position: relative;
        z-index: 1;
    }    
    .footer-bottom:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        width: 101vw;
        height: 100%;
        background: var(--footer_color2);
        z-index: 0;
    }
}
/* Footer Responsive CSS End */
/*========== Footer CSS End ==========*/

/*========== Scroll To Top CSS Start ==========*/
.scrolltop {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary_color);
    font-size: 18px;
    line-height: 41px;
    color: var(--white_color);
    text-align: center;
    border: 2px solid var(--primary_color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 90;
    transition: 0.3s;
}

.scrolltop:hover {
    background: var(--white_color);
    color: var(--primary_color);
}

@media screen and (max-width: 575px) {
    .scrolltop {
        bottom: 120px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 15px;
        line-height: 35px;
    }
}
/*========== Scroll To Top CSS End ==========*/

/*========== Download CTA CSS Start ==========*/
.download-cta {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 100;
    background: var(--white_color);
    border-radius: 12px;
    border: 1px solid var(--gray_color_5);
    padding: 16px 12px 12px;
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: none;
}

.close-download-cta {
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--dark_color);
    border: 1px solid var(--gray_color_5);
    font-size: 10px;
    line-height: 1;
    color: var(--white_color);
    cursor: pointer;
    transition: 0.3s;
}

.close-download-cta:hover {
    background: var(--primary_color);
}

.download-cta p {
    font-size: 12px;
    line-height: 1.25;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--dark_color);
    margin-bottom: 12px;
}

.download-qr {
    display: inline-block;
    padding: 5px;
    border: 1px solid var(--gray_color_5);
    border-radius: 4px;
    margin-bottom: 12px;
}

.download-with {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.download-with img {
    max-width: 16px;
}

/* Download CTA Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .download-cta {
        bottom: 20px;
        left: 20px;
    }
    .download-cta p {
        font-size: 10px;
        margin-bottom: 8px;
    }
    .download-qr {
        width: 60px;
    }
}
@media screen and (max-width: 991px) {
    .download-cta {
        display: none !important;
    }
}
/* Download CTA Responsive CSS End */
/*========== Download CTA CSS End ==========*/

/*========== Popup Form CSS Start ==========*/
.modal-dialog {
    max-width: 1000px;
    width: calc(100% - 60px);
    margin-inline: auto;
}

.modal-body {
    padding: 30px;
}

.modal-body::-webkit-scrollbar {
    width: 3px;
}

.modal-body::-webkit-scrollbar-track {
    background: #dddddd; 
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary_color); 
    border-radius: 10px;
}

.modal-header {
    padding: 10px 30px;
}

.modal-header .btn-close {
    width: 30px;
    height: 30px;
    outline: none;
    border: none;
    padding: 0;
    box-shadow: none;
}

.popup-form {
    margin-bottom: -20px;
}

.popup-form-img {
    padding-right: 40px;
}

@media screen and (max-width: 991px) {
    .popup-form-img {
        display: none;
    }
    .modal-dialog {
        width: calc(100% - 40px);
    }
    .modal-body {
        padding: 20px;
    }
    .modal-header {
        padding: 10px 20px;
    }
}
/*========== Popup Form CSS End ==========*/

/*========== Privacy Page CSS Start ==========*/
.scrollable-content {
    position: relative;
    padding-top: calc(12vh + 64px);
}

.scrollable-content-overlay {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background: transparent;
    border: solid var(--primary_color);
    border-block-width: 12vh;
    border-inline-width: 10vw;
    z-index: 10;
    pointer-events: none;
}

.main-privacy-banner {
    position: relative;
    width: 100%;
    height: 72vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-banner-content {
    text-align: center;
}

.privacy-banner-content img {
    width: auto;
    max-width: 250px;
    height: 15vh;
    margin-bottom: 3vh;
    object-fit: contain;
    object-position: center;
}

.privacy-banner-content .h1-title {
    font-size: 5vh;
    margin-bottom: 5vh;
}

.learn-more a {
    font-size: 18px;
    line-height: 1.5;
    color: var(--primary_color);
    transition: 0.3s;
    display: inline-block;
}

.learn-more a i {
    display: block;
    width: 10px;
    margin: 10px auto 0;
    position: relative;
    top: 10px;
    animation: arrow 0.8s linear infinite alternate;
}

@keyframes arrow {
    from {
        position: relative;
        top: 0;
    }
    to {
        position: relative;
        top: 10px;
    }
}

.privacy-content {
    position: relative;
    margin-bottom: 80px;
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content h2 {
    font-size: 25px;
    line-height: 1.5;
    color: var(--dark_color);
    margin-block: 50px 10px;
    font-weight: bold;
}

.privacy-content h2:first-child,
.privacy-content h2:last-child {
    margin-block: 0;
}

.privacy-content ul,
.privacy-content ol {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.privacy-content a {
    color: var(--primary_color);
    font-weight: 500;
}

.privacy-content a:hover {
    color: var(--footer_color);
}
/* Privacy Page Responsive CSS Start */
@media screen and (max-width: 991px) {
    .scrollable-content {
        padding-top: 64px;
    }
    .main-privacy-banner {
        padding: 60px 0;
        background: var(--primary_light_color);
        margin-bottom: 80px;
    }
    .scrollable-content-overlay {
        display: none;
    }
    .main-privacy-banner {
        height: auto;
        display: block;
    }
    .learn-more {
        display: none;
    }
    .privacy-banner-content .h1-title {
        font-size: 40px;
        margin-bottom: 0;
    }
    .privacy-banner-content img {
        display: none;
    }
}
@media screen and (max-width: 575px) {
    .privacy-banner-content .h1-title {
        font-size: clamp(28px, 7vw, 40px);
    }
    .privacy-content h2 {
        font-size: 20px;
    }
}
/* Privacy Page Responsive CSS End */
/*========== Privacy Page CSS End ==========*/