* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.4s ease;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

:root {
    --slider-width: 75vw;
    --slider-elements-displayed: 6;
    --slider-element-width: 160px;
    --slider-animation-duration: calc(var(--slider-elements) * 2s);
}

a {
    text-decoration: none;
}

body {
    background-color: #fff;
    color: #1A3446;
    overflow-x: hidden;
}

section {
    overflow: hidden;
}

li {
    list-style: none;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    text-align: center;
}

h3 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 3.5rem;
    letter-spacing: -0.01em;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
}

.container {
    width: 83.33vw;
    margin: auto;
}

nav .nav-bar {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 83.33vw;
    background-color: #fff;
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen {
    color: #1A3446;
    font-size: 30px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a img {
    width: 4.5rem;
}

.menu .logo-toggle {
    display: none;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn button {
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 12px 1.5rem;
    background-color: #28506C;
    border: 2px solid #28506C;
    border-radius: 5px;
    cursor: pointer;
}

.nav-btn button:hover {
    background-color: #00B4B1;
    border: 2px solid #00B4B1;
}

.nav-bar .nav-links {
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li {
    list-style: none;
}

.nav-links li a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #1A3446;
    text-decoration: none;
    padding: 1.5rem;
    line-height: 22px;
}

.nav-links li:hover {
    text-decoration: underline;
}


/* <!-- ===== Hero Section Starts here ===== --> */

.hero {
    margin-top: 13.563rem;
    margin-bottom: 9.875rem;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    width: 40.625rem;
}

.hero-right {
    position: relative;
}

.hero-right .hero-dot {
    position: absolute;
    top: -6%;
    left: -9%;
}

.hero-right .hero-line {
    position: absolute;
    right: -12%;
    bottom: -5%;
}

.hero-left p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.01em;
    margin-top: 2rem;
}

.hero-btn {
    margin-top: 3rem;
}

.hero-left button {
    font-size: 16px;
    line-height: 125%;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    background-color: #28506C;
    border: 2px solid #28506C;
    border-radius: 5px;
    box-shadow: 0px 87px 35px rgba(40, 80, 109, 0.01), 0px 49px 29px rgba(40, 80, 109, 0.05), 0px 22px 22px rgba(40, 80, 109, 0.09), 0px 5px 12px rgba(40, 80, 109, 0.1);
    cursor: pointer;
}

.hero-left button:hover {
    background-color: #00B4B1;
    border: 2px solid #00B4B1;
}

.highlight {
    display: flex;
    row-gap: 10px;
    flex-direction: column;
    width: 19.5rem;
}


/* <!-- ===== Brand Section Starts here ===== --> */

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F7F9FB;
    padding: 4rem 0;
}

.brand-head {
    margin-bottom: 2rem;
}

.slider {
    width: 75vw;
    background-color: #F7F9FB;
    overflow: hidden;
    position: relative;
}

.slider-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--slider-animation-duration) linear infinite;
    column-gap: 1.5rem;
    margin-bottom: 0;
}

.slider-content:hover {
    animation-play-state: paused;
}

.slider-content img {
    width: 160px !important;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-1 * var(--slider-element-width) * var(--slider-elements)));
    }
}

.slider-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 24px;
    flex-shrink: 0;
    width: var(--slider-element-width);
    max-height: 100%;
    font-size: calc(var(--slider-height)*3/4);
    /* 5rem; */
    white-space: nowrap;
}

.slider-content li img {
    width: 100%;
}


/* <!-- ===== Scope Section Starts here ===== --> */

.scope {
    margin-top: 9.375rem;
    margin-bottom: 7.5rem;
}

.scope-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scope-right {
    width: 37.5rem;
}

.scope-left {
    position: relative;
}

.scope-left .scope-dot {
    position: absolute;
    top: -4%;
    right: -5%;
}

.scope-right p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.01em;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.scope-content {
    display: grid;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    grid-template-columns: 0fr 1fr;
}

.scope-item {
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 1rem;
    background: #F7F9FB;
    border: .5px solid #B1CEE2;
    width: 17rem;
    border-radius: 10px;
    transition: background .3s, border .3s, color .3s ease !important;
}

.scope-item:hover {
    background: #1A3446;
    border: .5px solid #F7F9FB;
}

.scope-item:hover p {
    color: #fff;
}

.scope-item p {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}


/* <!-- ===== Benefits Section Starts here ===== --> */

.benefits {
    margin-bottom: 7.5rem;
}

.benefits-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefits-left {
    width: 35.125rem;
}

.benefits-right {
    position: relative;
}

.benefits-right .benefits-dot {
    position: absolute;
    top: -3%;
    right: -4%;
}

.benefits-left p {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -0.01em;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.benefits-item {
    display: flex;
    align-items: center;
    column-gap: 1.25rem;
}

.benefits-item p {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}

.tc_title h3 {
    font-weight: 100;
}


/* <!-- ===== CTA Section Starts here ===== --> */

.cta-wrapper {
    background: url(../images/cta\ bg.svg) no-repeat;
    color: #fff;
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6rem 0;
    row-gap: 1.5rem;
    width: 32.75rem;
    margin: auto;
}

.cta-content h1 {
    text-transform: capitalize;
    text-align: center;
}

.cta-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
}

.cta-content button {
    background: #FFFFFF;
    box-shadow: 4px 38px 15px rgba(255, 255, 255, 0.01), 2px 21px 13px rgba(255, 255, 255, 0.05), 1px 9px 9px rgba(255, 255, 255, 0.09), 0px 2px 5px rgba(255, 255, 255, 0.1), 0px 0px 0px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 28px;
    gap: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
    color: #1A3446;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
}

.cta-content button:hover {
    background: #00B4B1;
}

.cta-content button:hover img {
    transform: translateX(50%);
}


/* <!-- ===== Features Section Starts here ===== --> */

.feature {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 7.5rem;
    padding-bottom: 10rem;
}

.feature-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.feature-head {
    width: 40.625rem;
}

h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 125%;
    color: #1A3446;
    margin-bottom: 12px;
    margin-top: 32px;
}

.swiper p {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #1A3446;
    width: 20rem;
}

.swiper {
    width: 83.33vw;
    margin-top: 4rem;
}

.card {
    background: #F7F9FB;
    border-radius: 10px;
    margin: 0;
    border: .5px solid #B1CEE2;
    padding: 48px 27px 48px 32px;
    width: 24rem !important;
    height: 21.625rem !important;
}

.card .card-content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 100;
}

.feature .card .image {
    height: 3.5rem;
    width: 3.5rem;
    background: #fff;
}

.swiper-pagination {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7;
    color: #000;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
    color: #000;
}

.swiper-buttons {
    position: absolute;
    right: 7.5%;
    top: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev {
    position: absolute;
    top: 4rem !important;
    left: -8rem !important;
}

.swiper-button-next {
    position: absolute;
    top: 4rem !important;
    right: 0rem !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}


/* <!-- ===== Advantage Section Starts here ===== --> */

.advantage-head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 41.875rem;
    margin: auto;
}

.advantage-head .advantage-para {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -0.01em;
    margin-top: 2rem;
}

.advantage-content {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.5rem;
    margin-top: 4rem;
}

.advantage-item {
    background: #1A3446;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 22.063rem;
    padding: 3rem 2rem;
    width: 24rem;
    border-radius: 10px;
    border: .5px solid #F7F9FB;
    transition: background .3s, border .3s, color .3s ease !important;
}

.advantage-item:hover {
    background: #f7f9fb;
    border: .5px solid #b1cee2;
}

.advantage-item:hover h4 {
    color: #1A3446;
}

.advantage-item:hover p {
    color: #1A3446;
}

.advantage-item h4 {
    color: #fff;
    text-align: center;
    width: 11rem;
    font-weight: 500;
}

.advantage-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    text-align: center;
    color: #FFFFFF;
}

.advantage-item img {
    border-radius: 10px;
    filter: drop-shadow(0px 25px 10px rgba(26, 52, 70, 0.04)) drop-shadow(0px 14px 8px rgba(26, 52, 70, 0.13)) drop-shadow(0px 6px 6px rgba(26, 52, 70, 0.21)) drop-shadow(0px 2px 3px rgba(26, 52, 70, 0.25)) drop-shadow(0px 0px 0px rgba(26, 52, 70, 0.25));
}


/* <!-- ===== Footer CTA Section Starts here ===== --> */

.footer-cta {
    background-color: #F7F9FB;
    margin-top: 7.5rem;
}

.footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 7.5rem 0;
    row-gap: 2.2rem;
    width: 50rem;
    margin: auto;
}

.footer-cta-content h2 {
    text-transform: capitalize;
    text-align: center;
}

.footer-cta-content button {
    background: #1A3446;
    box-shadow: 0px 43px 17px rgba(14, 28, 37, 0.01), 0px 24px 14px rgba(14, 28, 37, 0.05), 0px 11px 11px rgba(14, 28, 37, 0.09), 0px 3px 6px rgba(14, 28, 37, 0.1), 0px 0px 0px rgba(14, 28, 37, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
}

.footer-cta-content button:hover {
    background: #00B4B1;
    color: #fff;
}

.footer-cta-content button:hover img {
    transform: translateX(50%);
    color: #fff;
}

.footer-cta-content a img {
    color: #fff;
}


/* <!-- ===== Footer  Starts here ===== --> */

.footer {
    background: #1A3446;
}

.footer-wrapper {
    padding-top: 4rem;
}

.footer-content {
    display: flex;
    color: #fff;
    margin-bottom: 3rem;
}

.footer-head {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.footer p {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.8;
    width: 30.313rem;
}

.footer a {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.8;
    padding: 4px;
}

.footer1 {
    width: 50%;
}

.footer2 {
    width: 50%;
}

.footer-bottom p {
    padding: 1.5rem 0;
    margin: auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    opacity: 0.8;
}

.popup-form h1 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #1A3446;
    line-height: 3.5rem;
    margin-bottom: 2rem;
}

.popup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    background: #fff;
    width: 600px;
    padding: 3rem;
    border-radius: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    padding-top: 2rem;
    ;
}

.hide {
    display: none;
}

.data {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.data input,
.data textarea {
    height: 100%;
    width: 100%;
    padding: 15px 25px;
    font-size: 18px;
    border: 1px solid #B1CEE2;
    border-radius: 10px;
    color: #1A3446;
    font-weight: 400;
}

form .data input:focus {
    border-color: #000;
}

form .submit-btn {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 20px;
    transition: all .3s ease;
    background: #00B4B1;
    transition: all 0.4s;
    border-radius: 10px;
    cursor: pointer;
}

form .submit-btn:hover {
    background: #1A3446;
    color: #fff;
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    cursor: pointer;
    font-size: 32px;
    color: #1A3446;
}

.close-btn:hover {
    color: #00B4B1;
}

.popup-container {
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, .7);
    position: fixed;
    z-index: 1000;
    top: 0;
}

.popup-container1 {
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, .2);
    position: fixed;
    z-index: 1000;
    top: 0;
}

.success-popup h6,
.ct-popup h6 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1A3446;
    line-height: 2rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.success-popup p,
.ct-popup p {
    color: #1A3446;
    font-weight: 400;
    font-size: 1rem;
    line-height: 22px;
    margin: 0;
}

.success-popup img,
.ct-popup img {
    background: #1A3446;
    width: 56px;
    height: 56px;
}

.success-popup,
.ct-popup {
    display: flex;
    justify-content: flex-start;
    background: #fff;
    padding: 36px 40px;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    column-gap: 1.5rem;
    flex-wrap: wrap;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    font-size: 32px;
    color: #1A3446;
}

.hide1 {
    display: none;
}

@media (max-width: 1024px) {
    nav .nav-bar .sidebarOpen {
        display: block;
    }
    .popup-form {
        width: 32rem;
    }
    nav .nav-bar .nav-btn a {
        font-size: 12px;
        line-height: 16px;
        font-weight: 500;
        padding: 8px 16px;
    }
    .menu {
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: #152938;
        z-index: 100;
        transition: all 0.4s ease;
    }
    nav.active .menu {
        left: -0%;
    }
    .menu .logo-toggle {
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo-toggle .siderbarClose {
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }
    .nav-bar .nav-links {
        flex-direction: column;
        padding-top: 30px;
    }
    nav .nav-bar {
        padding: 0;
        max-width: 95vw;
    }
    .nav-links li a {
        display: block;
        margin-top: 20px;
        color: #fff;
    }
    h1 {
        font-size: 3.5rem;
        line-height: 4rem;
    }
    .hero-right img {
        width: 34.4vw;
    }
    .container {
        width: 90vw;
    }
    .highlight {
        row-gap: 0;
    }
    .highlight img {
        width: 75%;
    }
    .hero {
        margin-top: 9rem;
        margin-bottom: 7.5rem;
    }
    .hero-left p {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: -0.02em;
        margin-top: 2.5rem;
    }
    .hero-left a {
        padding: 12px 24px;
    }
    .hero-left {
        width: 50vw;
    }
    .hero-btn {
        margin-top: 2.5rem;
    }
    .hero-wrapper {
        column-gap: 2rem;
    }
    .brand {
        padding: 3.5rem 0;
    }
    .slider {
        width: 85vw;
    }
    .scope {
        margin-top: 7.5rem;
    }
    .scope-left img {
        width: 36vw;
    }
    h3 {
        font-size: 2.5rem;
        line-height: 3rem;
        letter-spacing: -0.02em;
    }
    .scope-right p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.02em;
        margin: 1.5rem 0;
    }
    .scope-item {
        column-gap: 10px;
        padding: 0.8rem;
        background-color: #F7F9FB;
        width: 12rem;
    }
    .scope-item img {
        width: 1.8rem;
    }
    .scope-item p {
        margin: 0;
        line-height: 100%;
    }
    .scope-right {
        width: 50vw;
    }
    .scope-content {
        column-gap: 1.2rem;
        row-gap: 1.2rem;
    }
    .benefits-right img {
        width: 40vw;
    }
    .benefits-left p {
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.5rem;
        letter-spacing: -0.02em;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .benefits-content {
        row-gap: 1rem;
    }
    .benefits-item {
        column-gap: 1rem;
    }
    .benefits-item p {
        margin: 0;
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .title p {
        margin: 0;
        font-size: 1rem;
    }
    .benefits-left {
        width: 43.75vw;
    }
    .cta-content {
        padding: 4.5rem 0;
    }
    .swiper-buttons img {
        width: 1.7rem;
    }
    .card {
        padding: 36px 24px 36px 24px;
        width: 22rem !important;
        height: 19rem !important;
    }
    .feature .card .image {
        height: 3rem;
        width: 3rem;
        background: #fff;
    }
    h4 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        margin-top: 1.5rem;
    }
    .swiper p {
        font-weight: 400;
        font-size: 16px;
        line-height: 125%;
        color: #1A3446;
        width: auto;
    }
    .swiper-slide {
        margin-right: 1.25rem !important;
    }
    .swiper {
        width: 95vw;
        margin-left: 0;
        margin-right: 0;
    }
    h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .advantage-head .advantage-para {
        font-weight: 400;
        font-size: 1rem;
        line-height: 150%;
        letter-spacing: -0.01em;
        margin-top: 1.5rem;
    }
    .advantage-item img {
        width: 4rem;
    }
    .advantage-item h4 {
        margin-bottom: 0.8rem;
        margin-top: 2rem;
    }
    .advantage-item p {
        font-size: 14px;
    }
    .advantage-item {
        height: 22rem;
        padding: 3rem 1.5rem;
        width: 28rem;
    }
    .advantage-content {
        column-gap: 1rem;
    }
    .footer-cta-content {
        padding: 5rem 0;
        width: 45rem;
    }
    .footer-cta-content a {
        padding: 16px 32px;
        gap: 10px;
        font-size: 18px;
        line-height: 24px;
    }
    .footer-head {
        font-weight: 500;
        font-size: 24px;
        line-height: 26px;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
    }
    .footer p {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0;
    }
    .footer a {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0;
        padding: 8px;
    }
    .footer1,
    .footer2 {
        width: auto;
    }
    .footer-content {
        justify-content: space-between;
    }
    .footer-bottom p {
        margin: auto;
        width: 24rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-wrap: wrap;
        row-gap: 5rem;
    }
    .hero-left {
        width: 100vw;
    }
    .popup-form {
        width: 35rem;
        padding: 3rem;
    }
    h1 {
        font-size: 4rem;
        line-height: 4.5rem;
    }
    .highlight img {
        width: 90%;
    }
    .hero-left p {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        letter-spacing: 0;
    }
    .hero-left a {
        padding: 16px 32px;
        font-size: 18px;
    }
    .hero-right {
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-right img {
        width: 27.5rem;
        margin: 0 auto;
    }
    .scope-wrapper {
        flex-wrap: wrap;
        row-gap: 5rem;
    }
    .benefits-wrapper {
        flex-wrap: wrap;
        row-gap: 5rem;
    }
    .scope-wrapper .scope-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .benefits-wrapper .benefits-right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .benefits-wrapper .benefits-left {
        width: 100%;
    }
    .scope-wrapper .scope-left img {
        width: 27.5rem;
    }
    .benefits-wrapper .benefits-right img {
        width: 27.5rem;
    }
    .scope-wrapper .scope-right {
        width: 100%;
    }
    .scope-content {
        column-gap: 1.5rem;
        row-gap: 1.5rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .advantage-content {
        flex-wrap: wrap;
        row-gap: 2rem;
    }
}

@media (max-width: 425px) {
    nav .nav-bar .sidebarOpen {
        font-size: 2rem;
        padding: 0px;
    }
    .scope-content {
        column-gap: 1.5rem;
        row-gap: 1.5rem;
        grid-template-columns: 1fr 1fr;
    }
    .feature-head {
        width: auto;
    }
    .advantage-head {
        width: auto;
    }
    .footer-cta-content {
        width: auto;
    }
    .footer-content {
        flex-wrap: wrap;
        row-gap: 2rem;
    }
    .footer p {
        width: auto;
    }
    .cta-content {
        width: auto;
    }
    h1 {
        font-size: 2.5rem;
        line-height: 3rem;
        text-align: center;
    }
    .highlight {
        width: auto;
    }
    .highlight img {
        width: 50%;
        margin: auto;
    }
    .hero-left p {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
    }
    .hero-left a {
        padding: 14px 28px;
        font-size: 16px;
    }
    .hero-left {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .hero-right img {
        width: 100%;
    }
    .hero {
        margin-bottom: 6rem;
    }
    .slider {
        width: 100%;
    }
    .slider-content {
        column-gap: 1rem;
    }
    .slider-content li {
        row-gap: 1rem;
    }
    .scope {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }
    .benefits {
        margin-bottom: 6rem;
    }
    .scope-wrapper .scope-left img {
        width: 100%;
    }
    .scope-content {
        row-gap: 1rem;
        grid-template-columns: 1fr;
    }
    .scope-item {
        column-gap: 1rem;
        padding: 1rem;
        width: 100%;
    }
    .scope-item img {
        width: 2.5rem;
    }
    .scope-item p {
        font-size: 18px;
        font-weight: 500;
    }
    .benefits-wrapper .benefits-right img {
        width: 100%;
    }
    .footer-cta {
        margin-top: 6rem;
    }
    .cta-content {
        padding: 4rem 1rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
    .feature {
        margin-top: 6rem;
    }
    .swiper-buttons {
        right: 35%;
        left: 65%;
        top: 78%;
    }
    h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    .footer-cta-content a {
        padding: 14px 28px;
        gap: 8px;
        font-size: 16px;
    }
    .popup-form {
        padding: 2rem;
        border-radius: 10px;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10000;
        width: 90vw;
    }
    .popup-form h1 {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 2rem;
    }
    .data {
        width: 100%;
        margin-bottom: .8rem;
    }
    .data input {
        height: 100%;
        width: 100%;
        padding: .6rem 1.2rem;
        font-size: 16px;
        border: 1px solid #B1CEE2;
        border-radius: 5px;
        color: #1A3446;
        font-weight: 400;
    }
    form .submit-btn {
        font-size: 16px;
        font-weight: 500;
        padding: .6rem;
        border-radius: 5px;
    }
    .success-popup h6 {
        margin-bottom: 10px;
        margin-top: 1rem;
        text-align: center;
    }
    .success-popup p {
        text-align: center;
    }
    .success-popup img {
        border-radius: 10px;
    }
    .success-popup {
        justify-content: center;
        padding: 20px 24px;
        width: 80vw;
    }
}

.title {
    display: flex;
    align-items: center;
    column-gap: 5px;
    margin-bottom: 10px;
}

.title p {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #00B4B1;
    margin: 0;
}

.title-hr {
    width: 30px;
    height: 2px;
    background: #00B4B1;
}

.bg-danger {
    background-color: #a94442;
}

.bg-success {
    background-color: #dff0d8;
}

.myalert {
    text-align: center;
    color: #fff;
    font-size: larger;
}