:root {
    --primary-blue: rgba(62, 185, 174, 1);
    --dark-green: rgba(23, 69, 65, 1);
    --black: rgba(0, 0, 0, 1);
    --white: #fff;
    --light-grey: #8B9695;
}

body {
    box-sizing: border-box;
    /* overflow-x: hidden; */
    background-color: white;
}

button:hover {
    opacity: 0.7;
}

.btn-arrow {
    height: fit-content !important;
    color: white !important;
    font-size: 18px !important;
}

/* hina styles */
.sticky-bar {
    width: 1062px;
    height: 80px;
    padding: 32px;
    border-radius: 96px;
    background: #141615;
    position: fixed;
    left: 50%;
    /* Add this line to move the bar horizontally to the center */
    transform: translateX(-50%);
    /* Add this line to center it precisely */
    top: 80%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-around;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}


.sticky-bar a {
    text-decoration: none;
}

.sticky-bar img {
    width: 125.553px;
    height: 50px;
}

@media(max-width:1065px) {
    .sticky-bar {
        width: 950px;
    }
}

@media(max-width:960px) {
    .sticky-mob {
        display: none;
    }
}

.sticky-bar span {
    color: #FAFBFB;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

.wrapper {
    overflow-x: hidden;
}

.mobile-nav {
    background-color: var(--primary-blue);
    /* display: flex; */
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vh;
    width: 60%;
    top: 0px;
    left: 0px;
    padding: 25px;
    padding-top: 30px;
    /* display: none; */
    z-index: 10;
    animation: slideInLeft 0.5s ease forwards;

}



.mobile-nav .nav-item {
    color: white;
    font-weight: 700;
    width: 100%;
    text-align: center;
    text-decoration: none;
    position: relative;

}

.mobile-nav .nav-item:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}


/* Initially hide the mobile menu */
/* .mobile-nav.menu-closed {
    display: none;
} */

.mobile-nav {
    opacity: 0;
    /* display: block !important; */
    transform: translateX(-100%);
    transition: transform 0.5s linear, opacity 0.5s linear;
    pointer-events: none;
}

.nav-animate {
    transform: translateX(0px);
}

.nav-animate-reverse {
    transform: translateX(-100%);
    opacity: 0;
}


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

header {
    background-color: transparent;
    position: fixed;
    /* position: absolute;
    z-index: 1; */
}

header .header-links {
    color: #f0f4f3;
    cursor: pointer;
    /* Paragraph/P1/Medium */
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
}


footer .header-links {
    color: #141615;
    cursor: pointer;
    /* Paragraph/P1/Medium */
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    /* 21px */
}

header .header-links:hover,
footer .header-links:hover {
    color: var(--primary-blue);
    transition: 0.2s linear all;
}


.logo-container {
    width: 188.33px;
    height: 75px;
}

.book-demo-btn {
    background-color: var(--primary-blue);
    font-family: 'Lato', sans-serif;
    width: 147px;
    height: 56px;
    padding: 16px 24px 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;

}

@media(max-width:1100px) {

    .new-header header {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .book-demo-btn,
    .login-btn {
        font-size: 10px !important;
        width: fit-content !important;
        height: 40px !important;
    }

    header .header-links {
        font-size: 10px;
    }

    .logo-container {
        width: 145px;
        height: auto;
    }
}


.book-demo-btn:hover,
.login-btn:hover {
    color: white;
    opacity: 0.7;
}

.login-btn {
    background-color: var(--dark-green);
    width: 132px;
    height: 56px;
    padding: 16px 20px 16px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: white !important;
    border: none;
}

.section-1 {
    /* height: fit-content; */
    height: 100vh;
    /* background-color: aquamarine; */
    /* background-image: url('../img/assets/images/gradient.png');
    background-position-x: right;
    background-repeat: no-repeat; */
    position: relative;

}

.header-container {
    /* background-image: url('../img/assets/images/gradient.png'); */
    background-position-x: right;
    background-repeat: no-repeat;
    width: 100%;
    background: white;
    position: relative;
}

.homepage-gradient {
    position: absolute;
    right: 50;
    top: 0;
    animation: breathingGradient 4s infinite;
}

@media(max-width:740px) {
    .homepage-gradient {
        left: 0;
    }
}

.new-heare header {
    position: fixed;
    z-index: 9990;
}

@keyframes breathingGradient {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        transform: scale(2);
    }
}



/* ------ */

.section-1 h1 {
    color: rgba(23, 69, 65, 1);
    font-family: 'Oswald', sans-serif;
    font-size: 67px;
    font-weight: 300;
    line-height: 98px;

}

.section-1 h2 {
    color: rgba(23, 69, 65, 1);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    width: fit-content;
    font-size: 67px;
    text-decoration: underline;
    text-decoration-color: var(--primary-blue);
    text-underline-offset: -4px;
    text-decoration-thickness: 10px;
    text-decoration-skip-ink: none;
    /*   animation:underlineAnimation 2s infinite; */
    animation: blink 2s linear infinite;
    transform-origin: center;
}


@keyframes blink {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/*
.underline {
    width: 100%;
    height: 12px;
    background-color: var(--primary-blue);
    position: relative;
    top: -20px;
    z-index: -1;
    animation: underlineAnimation 3s linear;
} */


.section-1 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Lato', sans-serif;
    color: var(--dark-green);
    width: 545px;
}

.section-1 .about-span {
    color: var(--neutral-800, #3B4140);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
    text-decoration-line: underline;
    text-underline-offset: 5px;
    padding-left: 8px;
}

.payment-methods {
    width: fit-content;
}

.payment-methods span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 20px;
}

.section-1 .main-img {
    width: 100%;
    height: 100%;
    position: relative;
    /* background-image: url('img/assets/images/shape.png'); */
}


.section-1 .vector-container {
    width: 499.154px;
    /* Adjust width to match your SVG's width */
    height: 360px;
    /* Adjust height to match your SVG's height */
    position: absolute;
    top: 12%;
}

.section-1 .vector-container .clipped-image {
    width: 100%;
    height: 100%;
    clip-path: path('M394.229 71.475c-194.327 -149.43 -318.687 -29.908 -356.575 48.531 -69.238 145.028 -29.677 205.184 12.694 233.061 25.716 16.919 100.779 -2.822 134.437 -24.83 83.085 -29.344 176.557 -1.316 212.906 16.365 89.548 31.601 104.626 -35.364 100.972 -72.796 -6.462 -96.61 -72.315 -173.808 -104.434 -200.331Z');
    -webkit-clip-path: path('M394.229 71.475c-194.327 -149.43 -318.687 -29.908 -356.575 48.531 -69.238 145.028 -29.677 205.184 12.694 233.061 25.716 16.919 100.779 -2.822 134.437 -24.83 83.085 -29.344 176.557 -1.316 212.906 16.365 89.548 31.601 104.626 -35.364 100.972 -72.796 -6.462 -96.61 -72.315 -173.808 -104.434 -200.331Z');
    object-fit: cover;
    /* position: absolute;
    top: 30%; */
}

.section-1 .main-img .blue-pattern {
    object-fit: scale-down;
    height: 70% !important;
    width: 80% !important;
    position: absolute;
    top: 3%;
    right: 23%;
}

@media(max-width:1325px) {
    .section-1 .main-img .blue-pattern {
        right: 33%;
    }

    .section-1 .vector-container {
        right: 5%;
    }
}

@media(max-width:1300px) {
    .section-1 .main-img .blue-pattern {
        right: 40%;
    }

    /* .section-1 .vector-container {
        right: 5%;
    } */
}

@media(max-width:1255px) {
    .section-1 .main-img .blue-pattern {
        right: 45%;
    }

    /* .section-1 .vector-container {
        right: 5%;
    } */
}

@media(max-width:1181px) {
    .section-1 .vector-container {
        height: 200px;
        width: 277.31px;
        top: 23%;
        right: 15%;
    }

    .section-1 .vector-container .clipped-image {
        clip-path: path('M219.02 39.71C111.06 -43.31 41.97 23.09 20.92 66.67c-38.47 80.57 -16.49 113.99 7.05 129.48 14.29 9.4 55.99 -1.57 74.69 -13.79 46.16 -16.3 98.09 -0.73 118.28 9.09 49.75 17.56 58.13 -19.65 56.1 -40.44 -3.59 -53.67 -40.18 -96.56 -58.02 -111.3Z');
        -webkit-clip-path: path('M219.02 39.71C111.06 -43.31 41.97 23.09 20.92 66.67c-38.47 80.57 -16.49 113.99 7.05 129.48 14.29 9.4 55.99 -1.57 74.69 -13.79 46.16 -16.3 98.09 -0.73 118.28 9.09 49.75 17.56 58.13 -19.65 56.1 -40.44 -3.59 -53.67 -40.18 -96.56 -58.02 -111.3Z');

    }

    .section-1 .main-img .blue-pattern {
        right: 15%;
    }
}

@media(max-width:1181px) {
    .section-1 .vector-container {
        right: 10%;
    }
}

.section-2 {
    /* height: 800px; */
    height: 90vh;
    width: 100%;
    /* background-color: black; */
    background-size: cover;
    /* background-image: url('../img/assets/images/section-2BG.png'); */
    background-position: center;
}

.section-2 .col-tabs {
    font-size: 24px;
    height: fit-content;
    opacity: 1;

}

.section-2 h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}


.section-2 p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--dark-green);

}

.section-2 button,
.section-4 button {
    width: 175px;
    height: 56px;
    padding: 16px 20px 16px 20px;
    border-radius: 50px;
    border: none;
    background: var(--primary-blue);
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 16px;
    font-family: 'Lato', sans-serif;

}

.tabs {
    gap: 30px;
}

.tabs span {
    width: 135px;
    height: 23px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: rgba(161, 170, 169, 1);
    cursor: pointer;
    height: 100%;
    width: fit-content;
}

/* .tabs span:hover{
   color: rgba(62, 185, 174, 1);
   transition: 0.1s linear all;
   border-bottom: 2px solid var(--primary-blue);
} */

.active-tab {
    color: rgba(62, 185, 174, 1) !important;
    /* border-bottom: 2px solid var(--primary-blue); */
    /* transition: border-bottom 0.2s ease-out;  */
    text-underline-offset: 6px;
    text-decoration-thickness: 10px;
    text-decoration-skip-ink: none;
    text-decoration: underline;
}

.section-3 {
    width: 100%;
    height: 100vh;
    /* padding: 64px 80px 64px 80px; */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.section-3 .section-3-img {
    width: 100%;
    height: 450px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-3 h1,
.section-3 h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: rgba(25, 26, 21, 1);
    opacity: 1;
    transform: translateY(20px);
    /* Start slightly below its original position */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media(max-width:740px) {
    .section-3 h1 {
        font-size: 32px;
        /* padding: 0px 30px; */
    }

    .section-3 h2 {
        font-size: 28px;
    }

    .section-3 .section-3-img {
        height: 340px;
    }
}

@media(max-width:473px) {
    .section-3 h1 {
        font-size: 28px;
        text-align: left;
        /* padding: 0px 30px; */
    }

    .section-3 h2 {
        font-size: 24px;
        text-align: left;

    }

    .section-3 .section-3-img {
        height: 280px;
    }
}

.section-3 h1::after {
    /* color: var(--primary-blue);
    content: 'Cashé' */
}

.section-3 .row {
    row-gap: 20px;
}

.section-3 h2 {
    font-size: 20px;
}

.section-4 {
    /* background: rgba(222, 222, 222, 1); */
}

.section-4 h1 {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-top: 20px;
}

@media(max-width:435px) {

    .section-4 h1,
    .new-section-4-mobile h1,
    .new-section-3 h1 {
        font-size: 30px !important;
    }

    .section-4 h2 {
        font-size: 18px !important;
    }

    .section-5 h1 {
        font-size: 30px !important;
    }

    .section-7 h1 {
        font-size: 30px !important;
    }

    .section-8 h1 {
        font-size: 30px !important;
    }

    .section-8 p {
        font-size: 16px !important;
    }

    .blog-section .row:first-child h2 {
        font-size: 30px !important;
    }

    .blog-section .row:first-child p {
        font-size: 16px;
    }
}

.section-4 h2 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;

}


.section-4 .card {
    width: 80%;
    height: auto;
    background-color: transparent;
    border: none;
    opacity: 1;
}

@media(max-width:660px) {
    .section-4 .card {
        width: 100%;
        height: auto;
    }
}

.section-4 .card h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.section-4 .card p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.section-4 .card-img-container {
    height: 256px;
    width: 100%;
    border-radius: 12px;
    background-color: rgba(222, 222, 222, 1);
}

.section-4 button {
    width: 139px;
    height: 56px;
}

.section-5 {
    /* height: 856px; */
    height: fit-content;
    background-color: rgba(225, 245, 243, 1);
}

.section-5 h1 {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 700;
}

.section-5 h2 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(98, 109, 107, 1);
}

.section5-card {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 1);
    border: none;
    padding: 32px;
    gap: 20px;

}

.section5-card h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 1);
}

.section5-card p {

    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: rgba(60, 60, 67, 1);
}

.icon-container {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 16px;
    padding: 8px;
    background-color: var(--primary-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.section-6 {
    background-color: rgba(62, 185, 174, 1);
    height: 356px;
}

.section-6 .logo-container {
    height: 48px;
    width: 48px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1);
    opacity: 1;
}

.section-6 .logo-container img {
    object-fit: contain;
}

.section-6 h1 {
    color: var(--white);
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.section-6 h2 {
    font-family: 'Lato', sans-serif;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}


.section-7 {
    padding: 80px;
}

.section-7 h1 {
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 150%;
    /* 60px */
    letter-spacing: -1.6px;
}


.section-7 .card {
    height: fit-content;
    border-radius: 12px;
    width: 405px;
    padding: 0px;
    border: none;
    background-color: transparent;

}

.section-7 .img-container {
    width: 100%;
    background: #DEDEDE;
    height: 240px;
    overflow: hidden;
    border-radius: 12px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.section-7 .card-content h3 {

    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.48px;
}

.section-7 .card-content p {
    font-size: 14px;
    font-weight: 400;
    color: #3C3C43;
}

.section-7 .row:last-child {
    row-gap: 20px;
}

.section-8 {
    background: linear-gradient(180deg, rgba(62, 185, 174, 0.25) 0%, #C4EBE9 100%);
    /* padding: 72px 238px 121px 238px; */
    /* position: relative;
    z-index: 10; */
}

.section-8 .plans-container {
    padding: 72px 238px 55px 238px;
}

.section-8 .plans-container .pp {
    display: flex;
    align-items: start;
    justify-content: space-between;

}


#Yearly-tab,
#Monthly-tab {
    position: absolute;
    padding-left: 45px;
    right: 180px;
    z-index: 1;
    padding-left: 40px;
}

#Yearly-tab:hover,
#Monthly-tab:hover {
    opacity: 1;
}

#Monthly-tab {
    right: 252px;
    padding-left: 28px;
}

.tab-button {
    height: 44px;
    padding: 12px 24px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0px 5px 7px 0px rgba(82, 67, 194, 0.23);
    color: var(--black);
    border: none;
    cursor: pointer;
}

.active-button {
    background: var(--primary-500, #3EB9AE);
    box-shadow: 0px 5px 7px 0px rgba(82, 67, 194, 0.23);
    color: var(--white);
}


.section8-content-row {
    border-radius: 40px;
    background: linear-gradient(180deg, #C4EBE8 0%, rgba(204, 236, 233, 0.25) 100%);
    padding: 48px;
    padding-top: 0px;
}

.section-8 .card {
    width: 300px;
    height: 455px;
    border-radius: 32px;
    background: #FAFBFB;
    padding: 24px 16px;
    border: none;

}



/* .section-8 .card:hover {
    transform: scale(1.02);
    transition: 0.05s linear all;
} */

.section-8 h1 {
    color: var(--dark-green);
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -1.6px;
}

.section-8 p {
    color: #626D6B;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.section-8 .card h2 {
    color: #081716;
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.64px;
}

.section-8 .card-middle-content h2 {
    color: var(--dark-green);
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.64px;
}

.card-middle-content p {
    color: #8B9695;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
}

.card-features {
    color: var(--light-grey);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;

}

.card-features img {
    margin-right: 10px;
}

.choose-plan-btn {
    border-radius: 50px;
    background: var(--primary-blue);
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px;
    border: none;
    width: 144px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#monthly-tab-content .popular-card,
#yearly-tab-content .popular-card,
.section-8-mobile .popular-card {
    background-color: var(--dark-green);
    height: 484px;
    width: 300px;
    /* box-shadow: 0px 42px 34px 0px #3EB9AE; */
    padding: 20px 30px;
}

.popular-card .most-popular {
    border-radius: 32px;
    background: #C4EBE8;
    color: var(--primary-blue);
    width: fit-content;
    padding: 12px;
    color: var(--primary-500, #3EB9AE);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.08px;
    text-transform: uppercase;
}


.section-8 .cards-container {
    width: fit-content;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
    border-radius: 40px;
    padding: 35px;
    background: linear-gradient(180deg, #ffffff73 0%, rgba(204, 236, 233) 100%);
}

.section-8 .card:hover {
    box-shadow: 0px 42px 34px 0px #3EB9AE;
    transition: 0.3s linear all;
}



@media(max-width:1060px) {

    .section-8-desktop {
        display: none !important;
    }

    .section-8-mobile {
        display: block !important;
    }
}

.section-8-mobile {
    display: none;
    overflow: hidden;
}

.section-8-mobile .plans-container {
    padding: 20px !important;
    text-align: center;
}

.section-8-mobile .plans-container .pp {
    display: block !important;
}

.section-8-mobile .buttons-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.section-8-mobile .buttons-container #Yearly-tab-mob {
    position: relative;
    right: 30px;
    z-index: 0;
    padding-left: 38px;
}

.section-8-mobile .buttons-container #Monthly-tab-mob {
    position: relative;
}

.section-8-mobile .buttons-container #Monthly-tab-mob {
    z-index: 1;
}

#Yearly-tab-mob,
#Monthly-tab-mob:hover {
    opacity: 1;
}

.section-8-mobile .price-slider {
    width: 100%;
    /* background: red; */
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}

.section-8-mobile .price-card {
    width: 330px !important;
    height: 495px !important;
    border-radius: 32px;
    background: #FAFBFB;
    padding: 24px 16px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.section-8-mobile .popular-card {
    width: 330px !important;
    height: 495px !important;
    border-radius: 32px;
    padding: 24px 16px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background: var(--dark-green);
}

.section-9 {
    background: url('../img/assets/images/linearBg.png');
    /* background-color: #F5FCFB; */
    padding: 72px 238px 72px 238px;
    text-align: center;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iti__country-list {
    height: max-content;
    /* max-height: 160px; */
    border-radius: 12px;

}


.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.00);
}

.iti__country-list::-webkit-scrollbar {
    width: 5px;
}

.section-9 .field {
    width: fit-content;
    margin-bottom: 12px;
}

.section-9 p {
    color: #000;
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 150%;
    /* 60px */
    letter-spacing: -1.6px;
    opacity: 1;
}

@media(max-width:425px) {
    .section-9 p {
        font-size: 30px !important;
    }
}

.cashe {
    color: var(--primary-blue);
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: -0.8px;
}

.section-9 .label {
    color: #141615;
    font-weight: 600;
}

.section-9 input,
.section-9 select {
    height: 48px;
    padding: 0px 12px;
    border-radius: 60px;
    border: 1px solid #D5D9D8;
    background: #FFF;
    cursor: pointer;
}

.section-9 input:hover {
    border: 1px solid var(--primary-blue);
}

.activeInput {
    /* border: 1px solid red !important; */
}

.section-9 .book-demo-btn {
    border-radius: 50px;
    background: var(--primary-blue);
    display: flex;
    height: 56px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;

}

footer {
    height: 80px;
    /* padding: 8px 80px; */

}

footer .copywrite {
    color: #3B4140;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.copywrite-symbol {
    color: #3B4140;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

footer a {
    color: #3B4140;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-blue);
}

footer select {
    border: none;
}


@media(max-width:1230px) {
    footer .row:first-child {
        flex-direction: column;
        row-gap: 15px;
    }


}

@media(max-width:845px) {
    footer .row:first-child {
        row-gap: 15px;
    }

    footer .row:first-child .link-row {
        width: 100% !important;
        justify-content: space-between;
    }

    footer .row:first-child .logo-row {
        width: 100% !important;
        justify-content: center;
    }

    footer .row:first-child .logo-row img {
        width: auto !important;
    }

}

@media(max-width:740px) {
    footer .link-row {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 6px !important;
    }

    footer .row:first-child {
        row-gap: 25px;
    }

    footer .row:first-child .logo-row {
        gap: 24px !important;
    }
}


/* responsive */
/* header */
@media(max-width:768px) {

    .new-header header .mobile-toggle-btn {
        display: block !important;
        z-index: 9999;
        background-color: #fff;
        border-radius: 30px;
        border-radius: 10px;
        padding: 2px;
    }

    .new-header .logo-container {
        width: 100.442px;
        height: 40px;
    }

    .new-header header {
        padding: 20px 10px !important;
    }

    header .header-links {
        display: none;
    }

    header .book-demo-btn,
    header .login-btn {
        display: none !important;
    }
}

@media(max-width:890px) {
    .main-img {
        display: none;
    }

    .main-content {
        width: 100%;
    }

    .payment-methods {
        align-items: start !important;
    }
}

@media(max-width:593px) {
    .section-1 .col-lg-7 {
        padding: 10px !important;
    }

    .main-content {
        padding: 10px !important;
    }

    .payment-methods {
        align-items: start !important;
        padding: 10px !important;
        margin-top: 30px;
    }

    .section-1 p {
        width: 100%;
    }

    .section-1 h1,
    .section-1 h2 {
        font-size: 40px;
        line-height: 58px;
    }

    .section-1 .underline {
        width: 100% !important;
        display: none;
    }
}

/* section-2 */
@media(max-width:1465px) {
    .section-2 .row {
        padding: 20px !important;
    }
}

@media(max-width:1355px) {
    .section-2 {
        background-position: unset;
        height: fit-content;
    }

    .section-2 .content .col-md-2 {
        display: none !important;
    }

    .section-2 .row {
        padding: 20px 0px !important;
    }

    .section-2 .content .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0px !important;
    }

    .section-2 .content .col-md-5:last-child {
        align-items: center;
    }

    .section-2-mobile-bar {
        display: flex !important;
        height: fit-content;
        background: #27746D;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 15px;
        flex-wrap: wrap;
        padding: 15px;
    }

    .section-2-mobile-bar .col-tabs {
        font-size: 16px;
        display: flex;
        align-items: center;
    }

}

/*section-3* done*/

/* section-4 */
@media(max-width:768px) {
    .section-4 .row:nth-child(2) {
        gap: 30px;
        padding: 5px !important;
    }

    .section-4 .row:nth-child(2) .col-md-6,
    .section-4 .row:last-child .col-md-6 {
        justify-content: center !important;
    }

    .section-4 .row:last-child {
        gap: 30px;
        padding: 5px !important;
    }

    .section-4 .card div:nth-child(2) {
        align-items: center !important;
    }
}

/* section-5 */
@media(max-width:768px) {
    .section-5 {
        height: fit-content;
    }

    .section-5 .row:nth-child(2),
    .section-5 .row:nth-child(3) {
        padding: 10px 0px !important;
        gap: 20px;
    }
}

@media(max-width:478px) {
    .section-5 .card {
        height: fit-content;
    }
}

@media(max-width:420px) {
    .section-5 .card {
        flex-direction: row !important;
        padding: 15px;
        align-items: center !important;
    }

    .section-5 .icon-container {
        height: 48px;
        width: 48px;
        min-width: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width:980px) {
    .section5-card {
        flex-direction: column !important;
        height: 300px;
        text-align: center;
        justify-content: center;
    }
}

@media(max-width:768px) {
    .section5-card {
        align-items: start !important;
        text-align: left !important;
        flex-direction: row !important;
        height: fit-content;
    }
}

/* section-6 */
/* section-7 */
@media(max-width:1411px) {
    .section-7 .row:nth-child(2) {
        justify-content: center !important;
        gap: 15px;
    }

    .section-7 .card {
        text-align: center;
    }
}

@media(max-width:990px) {

    .section-7 {
        padding: 20px;
    }

}

@media(max-width:840px) {
    .section-7 .desktop-view {
        display: none !important;
    }

    .section-7 .mobile-view {
        display: block !important;
        width: 100%;
    }

    .mobile-view .mySlides .card {
        width: 100%;
    }

    .mobile-view .mySlides .card .card-content {
        text-align: left;
    }
}


/* section-8 */

@media(max-width:1060px) {
    .section-8 .cards-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-8 .card,
    .section-8 .popular-card {
        /* width: 100% !important; */
    }
}


/* section-9 */
@media(max-width:1300px) {
    .section-9 {
        padding: 20px;
    }
}

@media(max-width:846px) {
    .section-9 {
        background-repeat: no-repeat;
        background-size: cover;
    }

    .section-9 .field {
        width: 100%;
        align-items: center !important;
    }

    .section-9 .row:last-child {
        gap: 24px;
    }

    .section-9 .field input {
        width: 200px;
        height: 32px;
    }

    .section-9 .field .label {
        width: 200px;
        text-align: left;
    }
}

/* footer */
@media(max-width:846px) {
    footer {
        padding: 20px 0px !important;
        font-size: 10px;
    }

    footer img {
        width: 60.265px;
        height: 24px;
    }

    footer a,
    footer .copywrite,
    footer .copywrite-symbol {
        font-size: 10px;
    }

    footer div {
        gap: 8px !important;
    }

}

@media(max-width:430px) {
    footer {
        padding: 5px 10px !important;
    }

    /* footer div {
        flex-direction: column !important;
    } */
}

/* slider css */
.mySlides {
    display: none
}

.w3-badge {
    cursor: pointer;
    height: 13px !important;
    width: 13px !important;
    border-radius: 30px;
    background: lightgray;
    padding: 0
}

/* Style for the selected dot */
.w3-badge.w3-white {
    background-color: var(--primary-blue);
}


/* section 2 new styles */
.section-2-new {
    background-image: url('../img/assets/images/section2gradient.png');

}

.section-2-new .carousel .carousel-item {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background: var(--shades-white, #FFF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

}

.section-2-new .carousel {
    width: 100%;
    height: fit-content;
    position: relative;
}

.section-2-new .carousel .carousel-inner {
    display: flex;
    width: 70%;
    height: 400px;
    margin: auto;
    /* align-items: center; */
    /* justify-content: center; */

}

@media(max-width:545px) {
    .section-2-new .carousel .carousel-inner {
        width: 100%;
    }
}

.section-2-new .carousel .carousel-inner .item-left-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 70%;

}

.section-2-new .carousel .carousel-inner .item-right-section {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-2-new .carousel .carousel-inner .item-right-section .ipad-frame {
    width: 305.882px;
    height: 400px;
    overflow: hidden;
    position: relative;


}


.section-2-new .carousel .carousel-inner .item-right-section .iphone-frame {
    width: 200px;
    height: 300px;
    overflow: hidden;
    position: relative;


}

.ipad-frame .frame-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.iphone-frame .frame-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.ipad-frame .content-image {
    position: absolute;
    top: 4%;
    left: 4%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
}

.iphone-frame .content-image {

    position: absolute;
    top: 2%;
    left: 16%;
    max-width: 68%;
    max-height: 96%;
    object-fit: fill;
    /* object-position: top; */
}

.section-2-new .carousel .carousel-inner .item-left-section .img-container {
    height: 64px;
    width: 64px;
    border-radius: 16px;
    background: var(--primary-blue);
    overflow: hidden;
}

.section-2-new .carousel .carousel-inner .item-left-section h1 {
    color: #000;
    text-align: center;
    /* Heading/H4/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 42px */
    letter-spacing: -0.56px;
}


.section-2-new .carousel .carousel-inner .item-left-section p {
    color: #174541;
    text-align: center;
    /* Paragraph/P2/Regular */
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}


.section-2-new .carousel .carousel-control-prev,
.section-2-new .carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    background-color: #F1F2F2;
    border-radius: 50%;
}

.section-2-new .carousel .carousel-control-prev {
    left: 11%;
    margin-right: 5px;
}

.section-2-new .carousel .carousel-control-next {
    right: 11%;
    margin-left: 5px;
}

.carousel-control-prev-icon {
    background-image: url("../img/assets/icons/chev-left.png");
    background-size: cover;
}

.carousel-control-next-icon {
    background-image: url("../img/assets/icons/chev-right.png");
    background-size: cover;
}

/* slider responsive */
@media(max-width: 740px) {
    .section-2-new .carousel .carousel-item {
        flex-direction: column-reverse;
    }

    .section-2-new .carousel .carousel-inner .item-left-section .img-container {
        display: none;
    }

    .section-2-new .carousel .carousel-inner .item-left-section {
        width: 100%;
        height: 50%;
    }

    .section-2-new .carousel .carousel-inner .item-right-section {
        width: 100%;
        height: 50%;
    }

    .section-2-new .carousel .carousel-inner .item-right-section .ipad-frame {
        height: 100%;
        width: 100%;
    }

    .section-2-new .carousel .carousel-item {
        background-color: transparent;
    }

    .section-2-new .carousel .carousel-control-prev,
    .section-2-new .carousel .carousel-control-next {
        height: 42px;
        width: 42px;
        padding: 0px;
    }

    .section-2-new .carousel .carousel-control-next {
        right: 0%;
    }

    .section-2-new .carousel .carousel-control-prev {
        left: 0%;
    }

    .section-2-new .carousel .carousel-inner .item-right-section .iphone-frame {
        height: 100%;
        width: 100%;
    }

    .iphone-frame .content-image {
        /* left: 42%;
        object-fit: fill;
        max-width: 16%;
        max-height: 89%; */
    }

    .tabs span {
        font-size: 26px;
    }
}

@media(max-width:1220px) {
    .section-2-new .carousel .carousel-control-next {
        right: 0%;
    }

    .section-2-new .carousel .carousel-control-prev {
        left: 0%;
    }
}




/* v1 changes */
@media(max-width:1263px) {
    .section-1 h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .section-1 h2 {
        font-size: 40px;
    }
}


@media(max-width:402px) {
    .main-img-mob {
        padding: 0px !important;
    }
}




/* new sections */
.new-header .carousel-caption {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 60%;

}

.new-header {
    height: 90vh;
    position: relative;
}

.new-header header {
    position: fixed;
    z-index: 9999;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    /* Change the values as needed */

}

.new-header .slider-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0) 100%, rgba(0, 0, 0) 100%), lightgray 50% / cover no-repeat;
}

.new-header .slider-overlay img {
    opacity: 0.6;
}

.new-header .main-slider-heading {
    text-align: center;

    /* Display 1/Thin */
    font-family: 'Oswald';
    font-size: 72px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 108px */
    letter-spacing: -2.88px;
}

.new-header .main-slider-heading-underline {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-blue);
    text-underline-offset: -4px;
    text-decoration-thickness: 15px;
    text-decoration-skip-ink: none;
    transform-origin: center;
}

.new-header #carouselExampleCaptions .carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 50%;

}

/* Active indicator */
.carousel-indicators button.active {
    background-color: var(--primary-blue);
    /* Change to the color you prefer */
}

/* Inactive indicators */
.carousel-indicators button:not(.active) {
    background-color: white;
    /* Change to the color you prefer */
    opacity: 0.5;
    /* Adjust opacity for inactive indicators */
}

@media(max-width:768px) {
    .new-header .carousel-caption {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

@media(max-width:1265px) {
    .new-header .carousel-caption .main-slider-heading {
        font-size: 60px;
    }
}

@media(max-width:780px) {
    .new-header .carousel-caption {
        width: 90%;
    }

    .new-header .carousel-caption .main-slider-heading {
        line-height: 120%;
        text-align: left;
        font-size: 50px;
    }
}



/* new client section */

.client-reviews {
    padding: 100px;
    background-color: #fff;
}


@media(max-width:775px) {
    .client-reviews {
        padding: 70px 20px;
    }
}

@media(max-width:615px) {
    .client-reviews #testimonialslider .carousel-item {
        height: 100% !important;
        padding: 32px 20px !important;
    }

    #testimonialslider .carousel-control-prev {
        height: 40px !important;
        width: 40px !important;
    }

    #testimonialslider .carousel-control-next {
        height: 40px !important;
        width: 40px !important;
    }

}

@media(max-width:425px) {
    #testimonialslider .carousel-control-prev {
        height: 30px !important;
        width: 30px !important;
    }

    #testimonialslider .carousel-control-next {
        height: 30px !important;
        width: 30px !important;
    }

    .client-reviews #testimonialslider .carousel-item p {
        font-size: 18px !important;
        margin: 0;
    }

    .client-reviews #testimonialslider .carousel-item h5 {
        font-size: 16px !important;
    }

    .client-reviews #testimonialslider .carousel-item hr {
        width: 70% !important;
    }
}

.client-reviews #testimonialslider .carousel-item {
    display: flex;
    width: 100%;
    height: 440px;
    padding: 32px 128px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 80px;
    /* border: 3px solid #174541; */
    /* background: var(--primary-50, #F5FCFB); */
    border: 3px solid transparent;
    border-radius: 80px;
    background: linear-gradient(to right, #F5FCFB, #F5FCFB), linear-gradient(to left, var(--primary-blue), var(--dark-green));
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

.client-reviews #testimonialslider .carousel-item p {
    color: var(--neutral-900, #141615);
    text-align: center;
    /* Heading/H5/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.client-reviews #testimonialslider .carousel-item hr {
    background: #DEDEDE;
    width: 100%;
    height: 1px;
}

.client-reviews #testimonialslider .carousel-item h5 {
    color: var(--neutral-900, #141615);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
}

#testimonialslider .carousel-control-prev {
    background: #fff;
    height: 52px;
    width: 52px;
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    border-radius: 30px;
    box-shadow: 0px 7px 12px #888888;
}

#testimonialslider .carousel-control-next {
    background: #fff;
    height: 52px;
    width: 52px;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    border-radius: 30px;
    box-shadow: 0px 7px 12px #888888;
}

/* blog section */
.blog-section {
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width:815px) {
    .blog-section .row:first-child {
        padding: 1rem !important;
    }

    .blog-section .row:first-child .col-md-2 {
        justify-content: flex-start !important;
    }
}

@media(max-width:560px) {
    .blog-section .blog-row {
        gap: 0px !important;
        margin: 0 !important;
    }

    .blog-section .card {
        width: 412px !important;
        height: 500px !important;
    }

    .blog-section .card-body {
        gap: 0px !important;
    }

}

.blog-section .card {
    width: 512px;
    height: 478px;
    background-color: none;
    border: none;
}

.blog-section .card .card-header {
    height: 265px;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
}

.blog-section .card .card-body h1 {
    color: var(--neutrals-900, #131614);
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.blog-section .card .card-body p {
    color: var(--neutrals-600, #87978E);
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
}

.blog-section .card .card-body {
    display: flex;
    flex-direction: column;

}

.blog-section .blog-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    align-items: center;
    justify-content: start;
    cursor: pointer;
    scrollbar-width: none;
    /* padding-bottom: 30px; */
    /* Firefox */

}

.blog-section .blog-row::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background-color: transparent !important;
}

.blog-section .blog-row::-webkit-scrollbar-track {
    width: 0px !important;
    height: 0px !important;
    background-color: transparent !important;
}

.blog-section .row:first-child h2 {
    color: var(--neutrals-900, #131614);
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 60px */
    letter-spacing: -1.6px;
}

.blog-section .row:first-child p {
    color: var(--neutrals-700, #5F6D66);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 42px */
    letter-spacing: -0.56px;
}

.blog-section .row:first-child a {
    text-decoration: none;
    display: flex;
    width: 184px;
    height: 56px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
}

@media(max-width:768px) {
    .blog-section .row:first-child a {
        height: 45px;
        padding: 0px 20px;
        width: 125px;

    }

    .blog-section .row:first-child .col-md-2 {
        margin-bottom: 10px;
    }

}

/* blog-page */
.blogs-section {
    padding: 0;

}

.blogs-section .new-header {
    height: 107px;
    /* display: flex;
    align-items: center; */


}

/* .blogs-section .new-header header {
    position: absolute;
} */

.blogs-section .new-header .header-links {
    color: #000 !important;
}

.blogs-section .new-header .header-links:hover {
    color: var(--primary-blue) !important;
}

.blogs-section2 .hero-section {
    /* height: 715px; */
    background-color: red;
}

.blogs-section2 .hero-section .left-col {
    background-color: var(--primary-blue);
    /* padding: 0 80px; */
    padding: 0 3rem;
}

.blogs-section2 .hero-section .left-col h2 {
    color: var(--Primary-50, #F5FCFB);
    /* Heading/H1/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 72px */
    letter-spacing: -1.92px;
}

.blogs-section2 .hero-section .left-col p {
    color: var(--Primary-50, #F5FCFB);

    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.4px;
}

.blogs-section2 .hero-section .left-col button {
    border-radius: 4px;
    border: 1px solid var(--Primary-50, #F5FCFB);
    background-color: transparent;
    display: flex;
    padding: 24px 32px;
    align-items: start;
    color: #fff;
    /* Heading/H5/Small/SemiBold */
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.4px;
}


.blogs-section2 .all-blogs .card {
    border: none;
    background-color: transparent;
    padding: 0 10px;


}

.blogs-section2 .all-blogs a {
    text-decoration: none;
}


.blogs-section2 .all-blogs .card .card-header {
    height: 313px;
    border-radius: 0px 0px 24px 24px;
    overflow: hidden;

}

.blogs-section2 .all-blogs .card .card-body .date-time {
    color: var(--Neutral-800, #3B4140);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
}

.blogs-section2 .all-blogs .card .card-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blogs-section2 .all-blogs .card .card-body h5 {
    color: var(--Neutral-900, #141615);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.blogs-section2 .all-blogs .card .card-body p {
    color: var(--Neutral-700, #626D6B);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 27px */
}


.all-blogs .row:first-child h1 {
    color: var(--Neutral-800, #3B4140);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.blogs-detail-section .hero-section {
    /* background-image: url("../img/assets/blogs/learnbanner.png"); */
    height: 597px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: bottom !important;
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url("../img/assets/blogs/learnbanner.png"), lightgray 50%; */
    display: flex;
    align-items: center;
    justify-content: center;


}


@media(max-width:500px) {
    .blogs-detail-section .hero-section {
        height: fit-content;
        padding: 50px 0px !important;
    }
}

.blogs-detail-section .hero-section .img-container {}

.blogs-detail-section .hero-section .content {
    display: flex;
    width: 600px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.blogs-detail-section .hero-section .content .date-auth {
    color: #fff;
    opacity: 0.7;
}

.blog-content {
    padding: 48px 80px;
}

.blog-content .blog-img {

    /* width: 720px;
    height: 480px; */
    max-width: 720px;
    max-height: 480px;
}

.blog-content .blog-para {
    color: var(--Neutral-900, #141615);
    /* Paragraph/P2/Regular */
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    text-align: justify;
}

.blog-content .subheading1 {
    color: var(--Neutral-900, #141615);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
    margin: 0;
    margin-bottom: 4px;
}

.blog-content .subheading2 {
    color: var(--Neutral-800, #3B4140);
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.4px;
}

@media(max-width:650px) {
    .blogs-detail-section .hero-section {
        padding: 25px !important;
    }

}

.blogs-detail-section .hero-section .content h3 {
    color: var(--Primary-50, #F5FCFB);
    font-family: 'Lato', sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 72px */
    letter-spacing: -1.92px;
}

.blogs-detail-section .hero-section .content p {
    color: var(--Primary-50, #F5FCFB);
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.4px;
}

@media(max-width:1200px) {
    .blogs-section2 .hero-section .left-col {
        padding: 0 64px;
    }

    .blogs-section2 .hero-section .left-col h2 {
        font-size: 40px;
    }

    .blogs-section2 .all-blogs {
        padding: 20px 40px !important;
    }

    .blog-content {
        padding: 40px !important;
    }
}

@media(max-width:992px) {

    .img-grid-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .new-section-3 .r-col {
        margin-bottom: 12px;
    }

    .img-grid-img-cont {
        height: initial !important;
    }

    .blogs-section2 .hero-section .left-col {
        padding: 0 32px;
    }

    .blogs-section2 .hero-section .left-col h2 {
        font-size: 32px;
    }

    .blogs-section2 .all-blogs {
        padding: 20px 32px !important;
    }

    .blog-content {
        padding: 32px !important;
    }
}

@media(max-width:768px) {
    .blogs-section2 .hero-section .left-col {
        padding: 16px 16px;
    }

    .blogs-section2 .hero-section .left-col h2 {
        font-size: 48px;
    }

    .blogs-section2 .all-blogs {
        padding: 16px !important;
    }
}

@media(max-width:576px) {
    .blogs-section2 .hero-section .left-col .btn-div {
        display: flex;
        justify-content: center;
    }

    .blogs-section2 .hero-section .right-col .head-img {
        display: none;

    }
}



/* new landing page styles */

.new-header {
    height: auto;
    background-color: white;
}

.new-header .new-hero-section {
    /* position: absolute;
    height: fit-content;
    top: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */

    /* padding-top: 150px; */
}

/* .new-hero-section .left_section{
    background: url(../img/assets/images/gradient.png);
} */

.top_section_bg_img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 100px;
    z-index: 1;
    object-fit: contain;
}

.bottom_section_spiral_img {
    position: absolute;
    height: 100%;
    /* width: 100%; */
    object-fit: contain;
    right: -40px;
    bottom: -178px
}

.bottom_section_lines_img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: scale-down;
    right: 0;
    bottom: -157px;

}

.new-hero-section .bottom_section {
    position: relative;
    overflow: hidden;
}

.new-hero-section .right_section,
.new-hero-section .left_section {
    position: relative;
    overflow: hidden;
}

.new-hero-section .left_section,
.new-hero-section .right_section {
    padding: 36px 79px;
}

.new-hero-section .top_section {
    position: relative;
    /* height: 600px; */
    height: 100vh;
    overflow: hidden;
    border-radius: 0px 0px 0px 152px;
    /* top-left, top-right, bottom-right, bottom-left */
    border-width: 0px 0px 8px 0px;
    /* top, right, bottom, left */
    /* border-style: solid; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-hero-section .top_section .header_content {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.new-hero-section .top_section .header_content h1 {
    text-align: center;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 2.8px;
}

@media(max-width:860px) {
    .new-hero-section .top_section .header_content h1 {
        font-size: 48px;
        line-height: 52px;
    }
}

@media(max-width:480px) {
    .new-hero-section .top_section .header_content h1 {
        font-size: 30px;
        line-height: 48px !important;
    }
}

.left_section_gradient {
    position: absolute;
    top: -59px;
    object-fit: fill;
    height: 100vh;
    width: 100%;
    left: -440px;
}

@media(max-width:480px) {
    .new-hero-section .top_section {
        border-radius: 0px;
        /* top-left, top-right, bottom-right, bottom-left */

    }

    .bottom_section_lines_img {
        display: none;
    }

    .bottom_section_spiral_img {
        bottom: -102px;
        right: -100px;
    }

    .left_section_gradient {
        left: -29px;
        top: 0
    }
}

@media(max-width:992px) {
    .bottom_section_lines_img {
        display: none;
    }
}

.new-hero-section .hero_asset {
    object-fit: cover;
    filter: brightness(0.5);
}

.new-hero-section .hero-image-frame {
    width: 848px;
    height: 562px;
    position: relative;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.new-hero-section .hero-image-frame img {
    position: absolute;
    z-index: 1;
}

.hero-image-frame .pattern1 {
    position: absolute;
    right: 0;
    top: -30px;
    z-index: 0;
}

.hero-image-frame .pattern2 {
    position: absolute;
    bottom: -50px;
    z-index: 0;
}

.new-hero-section h1 {
    color: var(--Neutral-900, #141615);
    text-align: left;
    /* Display 2/Bold */
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 300;
    line-height: 85px;
    /* 67.2px */
    letter-spacing: -2.24px;
    width: 630px;
    margin-bottom: 15px;
    text-wrap: balance;
}

.w-98 {
    width: 98%;
}

@media(max-width:992px) {
    .new-hero-section h1 {
        text-align: center;
        width: 100%;
    }

    .new-hero-section .left_section,
    .new-hero-section .right_section {
        padding: 10px 26px;
    }

    .header_content_width {
        width: 100% !important;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}

@media(max-width:768px) {
    .new-hero-section h1 {
        line-height: 60px;
    }

    .new-hero-section p {
        text-align: center !important;
    }

    .new-hero-section .right_section {
        justify-content: center !important;
    }

}

@media(max-width:1100px) {
    .new-hero-section h1 {
        text-wrap: balance;
    }

}

.new-hero-section p {

    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #626D6B;

}

.header_content_width {
    width: 350px;
}


@media(max-width:768px) {
    .new-hero-section h1 {
        width: 100%;
        font-size: 42px;
    }

    .new-hero-section p {
        width: 100%;
    }

    .new-hero-section .book-now,
    .new-hero-section .contact-us-btn {
        padding: 16px 18px !important;
    }

    .new-hero-section .hero-image-frame {
        height: 488px;
    }

    .hero-image-frame .pattern1 {
        display: none;
    }

    .hero-image-frame .pattern2 {
        display: none;
    }
}

@media(max-width:992px) {
    .new-hero-section p {
        text-align: center !important;
    }
}

.new-hero-section .book-now {
    border-radius: 50px;
    background: var(--primary-blue);
    display: flex;
    height: 56px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    width: fit-content;
    gap: 12px;
}

.new-hero-section .contact-us-btn {
    color: var(--Neutral-700, #626D6B);
    /* Paragraph/P2/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    border: none;
    border-radius: 50px;
    background: var(--Shades-White, #FFF);
    display: flex;
    height: 56px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.new-section-2 {
    overflow: hidden;
    padding: 50px 3rem;
}

.new-section-2 h1,
.new-section-3 h1 {
    color: #161C2D;
    font-family: 'Lato', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 133.333% */
    letter-spacing: -1.2px;
    margin-bottom: 15px
}

.new-section-2 p,
.new-section-3 p {
    color: var(--Neutral-700, #626D6B);
    /* Paragraph/P3/Regular */
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    opacity: 0.7;
}

.new-section-2 .book-now,
.new-section-3 .book-now {
    border-radius: 50px;
    background: var(--primary-blue);
    display: flex;
    height: 56px;
    padding: 16px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    width: fit-content;
    gap: 12px;
}

.new-section-2 .hero-image-frame2 {
    position: relative;
    display: flex;
    justify-content: center;
}

.new-section-2 .hero-image-frame2 img {
    /* position: absolute; */
    /* z-index: 1; */
}

.new-section-2 .hero-image-frame2 .pattern1 {
    position: absolute;
    right: 10px;
    z-index: -1;
    top: -18px;

}


.new-section-2 .hero-image-frame2 .pattern2 {
    position: absolute;
    left: -3px;
    bottom: 0;
    z-index: -1;
}



@media(max-width:768px) {

    .new-section-2,
    .new-section-3,
    .new-section-4,
    .new-section-4-mobile {
        padding: 50px 12px !important;
    }

    .new-section-2 .hero-image-frame2 .pattern1 {
        display: none;
    }

    .new-section-2 .hero-image-frame2 .pattern2 {
        display: none;
    }


}

@media(max-width:997px) {
    .img-grid-row {
        gap: 10px;
    }

    .new-section-3 .img-grid {
        gap: 10px !important;

        flex-direction: row !important;
    }

    .new-section-3 .img-grid2 {
        gap: 10px !important;

        flex-direction: row !important;
    }

    .new-section-3 .img-grid2 img,
    .new-section-3 .img-grid img {
        /* width: 50% !important; */
        padding: 6px
    }

    .new-section-2 .l-col,
    .new-section-3 .r-col {
        gap: 15px !important;
        text-align: center;
    }

    .new-section-3 .r-col {
        margin-top: 15px;
        padding-left: 12px !important;
    }

    .new-section-3 a {
        justify-content: center;
        display: flex;
    }
}

.new-section-3 {
    padding: 50px 3rem;
    overflow: hidden;
}

.new-section-3 .img-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
}

.new-section-3 .img-grid2 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
    position: relative;
    top: 25px;
}

@media(max-width:992px) {
    .new-section-3 .img-grid2 {
        position: unset;
    }
}

.new-section-3 .img-grid img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding: 0;
}

.new-section-3 .r-col {
    padding-left: 100px;
}




/* ------ */
/* .nav-animate{
    transform: translateX(50px);
}

.mobile-nav{
    transform: translateX(0px);
} */


.new-section-4 {
    padding: 30px 0px;
    overflow: hidden;
}



.new-section-4 .row {
    display: flex;
    flex-direction: row-reverse;
}


.new-section-4 .row:nth-child(2) {
    padding: 30px 250px;
}

@media(max-width:1024px) and (min-width:768px) {
    .new-section-4 .row:nth-child(2) {
        padding: 30px 10%;
    }

    .new-section-4 .tab-content {
        padding-left: 0px !important;
    }
}

@media(max-width:768px) {
    .new-section-4 {
        display: none;
    }

    .new-section-4-mobile {
        display: block !important;
    }
}


.new-section-4-mobile {
    display: none;
}

.new-section-4-mobile .img-cont {
    width: 40%;
    height: 100%;
}

.new-section-4-mobile .carousel-inner {
    padding-bottom: 50px;
    background-color: white;
}

.new-section-4-mobile .carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.new-section-4-mobile .c-content {
    background-color: white;
}

.new-section-4-mobile .carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: lightgray;

}

.new-section-4-mobile .carousel-indicators button.active {
    background-color: var(--primary-blue) !important;
}

.new-section-4 h1,
.new-section-4-mobile h1 {
    color: #161C2D;
    text-align: center;
    /* Heading/H2/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 60px */
    letter-spacing: -1.6px;
}

.new-section-4 p,
.new-section-4-mobile p {
    color: var(--Neutral-700, #626D6B);
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.72px;
    opacity: 0.7;
}

.new-section-4 .nav-tabs .nav-link {
    text-align: left;
    border-radius: 8px;
    display: flex;
    padding: 16px 12px;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    background-color: #fff;

}

.new-section-4 .nav-tab .nav-link {
    text-decoration: none;
}


.new-section-4 .nav-tabs .nav-link.active {
    border-radius: 8px;
    background: var(--Primary-500, #3EB9AE);
    display: flex;
    padding: 16px 12px;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.new-section-4 .nav-tabs .nav-link.active .step-num {
    background-color: #fff;
    color: var(--primary-blue);
}

.new-section-4 .nav-tabs {
    border: none;
    display: flex;
    align-items: start;
    justify-content: center;
}

.new-section-4 .step-num {
    min-width: 43px;
    min-height: 43px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
    color: white;

    text-align: center;

    /* Paragraph/P2/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */

}

.new-section-4 .nav-link.active .step-name {
    color: var(--Shades-White, #FFF);
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.new-section-4 .nav-link.active .step-para {
    color: var(--Shades-White, #FFF);
    font-family: 'Gilroy', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 170.588% */
    letter-spacing: -0.2px;
    opacity: 0.7;
    text-align: left;
}


.new-section-4 .nav-link .step-name,
.new-section-4-mobile .step-name {
    color: #161C2D;
    /* Heading/H4/Small/Bold */
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.48px;
}

.new-section-4 .nav-link .step-para,
.new-section-4-mobile .step-para {
    color: #161C2D;
    font-family: 'Gilroy', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    /* 170.588% */
    letter-spacing: -0.2px;
    text-align: left;
    opacity: 0.7;
}


.new-section-4 .fade {
    transition: opacity 0.5s linear;
}


.section-7 .carousel-indicators [data-bs-target],
.section-8-mobile .carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: lightgray;

}

.section-7 .carousel-indicators button.active,
.section-8-mobile .carousel-indicators button.active {
    background-color: var(--primary-blue) !important;
}

.section-7 .carousel-inner {
    padding-bottom: 60px;
}

.section-8-mobile .carousel-inner {
    padding-bottom: 60px;
    /* display: flex;
    justify-content: center; */

}

.section-8-mobile .carousel .carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:670px) {
    footer .row:first-child {
        padding: 8px 20px !important;
    }
}

#monthly-tab-content-mob,
#yearly-tab-content-mob {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-8-mobile .carousel {
    width: 100%;
}

.new-section-4 .row:first-child {
    padding: 0px 3rem;
}


.section-8-desktop .plans-container {
    position: relative;
}

.section-8-desktop .saving {
    position: absolute;
    right: 250px;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section-8-desktop .saving-content {
    position: relative;
    bottom: 10px;
    right: -88px;
    font-family: cursive;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    align-items: center;
    color: var(--dark-green);

}


.footer_email_input {
    width: 635px;
}

input:focus {
    border: var(--dark-green);
}


#bookdemobtn,
#logindashboardbtn,
#btn3 {
    opacity: 0;
    transition: 0.2s linear all;
}

@media(max-width:480px) {
    .bd_cont {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media(max-width:375px) {
    .bd_cont {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}


input:focus,
textarea:focus {
    border: 1px solid var(--dark-green) !important;
    outline: none;
}

input:active,
textarea:active {
    border: 1px solid var(--dark-green) !important;
    outline: none;
}



@media(max-width:480px) {

    .new-section-2 h1,
    .new-section-2 p,
    .new-section-3 h1,
    .new-section-3 p,
    .new-section-4-mobile h1,
    .new-section-4-mobile p {
        text-align: left;
    }
}


.blog-section .scroll-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 30px;
    background-color: #FAFAFB;
    margin: 0 5px;
}

.blog-section #scroll-left {
    position: absolute;
    left: 0;
    top: 50%;
}

.blog-section #scroll-right {
    position: absolute;
    right: 0;
    top: 50%;
}

.new-section-2-img-container {
    width: 92%;
    height: auto;
    border-radius: 32px;
    overflow: hidden;

}

.img-grid-img-cont {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}


.new-btn {
    border: 1px solid white;
    padding: 4px !important;
    display: flex !important;
    justify-content: center !important;
    background: #f5fcfb;
    color: black !important;
    border-radius: 30px;
    text-decoration: none;
}

.new-btn-row {
    gap: 10px;
    flex-wrap: wrap;
}


.bd_cont {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

@media(max-width:1230px) {
    .logo-row {
        margin: 15px 0;
    }
}

@media(max-width:768px) {
    .blogs-banner {
        display: none;
    }

    .blogs-text-section {
        align-items: center !important;
        height: 50vh;
        gap: 0px !important;
    }

    .blogs-section2 .hero-section .left-col p {
        text-align: center !important;
    }
}

@media(max-width:992px) {
    .cu-col1 {
        margin-bottom: 25px;
    }
}


.theme-color{
    color: rgb(62, 185, 174);
}