:root {
    --landing-body-font: "Sora", sans-serif;
    --landing-secondary-font: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

header.landing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 40px;
    z-index: 99;
}

body.page-template-page-landing-page {
    background-color: #f2f7ff;
    box-sizing: border-box;
    font-family: var(--landing-body-font);
    color: #211747;
}

body.page-template-page-landing-page h1,
body.page-template-page-landing-page h2,
body.page-template-page-landing-page h3,
body.page-template-page-landing-page h4,
body.page-template-page-landing-page h5,
body.page-template-page-landing-page h6 {
    font-family: var(--landing-secondary-font);
}

body.page-template-page-landing-page section {
    overflow: hidden;
}

body.page-template-page-landing-page main {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.page-template-page-landing-page a {
    text-decoration: none;
}

body.page-template-page-landing-page p {
    color: #4B4B4B;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

body.page-template-page-landing-page .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 52px;
}

body.page-template-page-landing-page .section-title .h2 {
    color: #0B1234;
    text-align: center;
    font-family: var(--landing-secondary-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin: 0;
}

body.page-template-page-landing-page .section-title .h2 span {
    color: #173397;
    display: block;
}

body.page-template-page-landing-page .section-title .text {
    color: #173397;
    text-align: center;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 717px;
}

body.page-template-page-landing-page .main-container {
    width: 100%;
    max-width: 1164px;
    align-items: center;
    gap: 72px;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    body.page-template-page-landing-page .main-container {
        padding: 0 20px;
    }
}

header.landing-header .main-container {
    display: inline-flex;
}

header.landing-header .logo img {
    width: 177px;
}

header.landing-header .main-nav ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    list-style: none;
    margin: 0;
}

header.landing-header .main-nav ul li a {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

header.landing-header .header-cta a {
    border-radius: 100px;
    background: #FFF;
    box-shadow: 0 8px 23px 0 rgba(65, 132, 247, 0.24);
    display: flex;
    padding: 16px 28px;
    align-items: flex-start;
    gap: 10px;
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

header.landing-header .mobile-menu,
.mobile-cta {
    display: none;
}

@media (max-width: 1024px) {
    header.landing-header {
        padding: 21px 19px 21px 19px;
        background: #0D1641;
        height: 78px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    header.landing-header .header-cta {
        display: none;
    }

    header.landing-header .main-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        position: fixed;
        top: 78px;
        right: 0;
        left: -100vw;
        z-index: 999;
        background: linear-gradient(0deg, #0D1641 -22.71%, #80A4EE 151.66%, #5581F1 219.09%);
        padding: 13px 19px 37px;
        height: calc(100vh - 78px);
        width: 100vw;
        transition: left 0.3s ease;
    }

    header.landing-header .main-nav.open {
        left: 0;
    }

    header.landing-header .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        gap: 0px;
        margin: 0;
        padding: 0;
    }

    header.landing-header .main-nav ul li a {
        display: flex;
        width: 100%;
        height: 62px;
        align-items: center;
        align-self: stretch;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.10);
        color: #FFF;
        text-align: left;
        font-family: var(--landing-secondary-font);
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 22px;
        text-transform: capitalize;
    }

    header.landing-header .mobile-menu {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 46px;
        height: 46px;
        padding: 12px;
        border-radius: 23px;
        background-color: transparent;
        z-index: 1000;
        transition: top 0.3s ease;
        border: 0 none;
        background-color: var(--dark-purple);
        gap: 4px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 4px;
        background-color: var(--white-tech, #F8F8F8);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    header.landing-header .main-nav .mobile-cta {
        display: flex;
        padding: 16px 28px;
        align-items: center;
        gap: 10px;
        border-radius: 100px;
        background: #FEC935;
        color: #0B1234;
        font-family: var(--landing-body-font);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-align: center;
        text-transform: uppercase;
    }
}


section.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0 0 50px 50px;
    background-image: url(../images/landing-page/bg-hero.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 150px;
}

section.hero-section .main-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

section.hero-section .main-container .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    padding: 50px 19px 0;
    max-width: 683px;
    position: relative;
    z-index: 2;
}

section.hero-section .main-container .caption .h1 {
    color: #FFF;
    font-family: var(--landing-secondary-font);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 51px;
}

section.hero-section .main-container .caption .h1 span {
    color: #FFF;
    font-family: var(--landing-secondary-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 51px;
    text-transform: uppercase;
}

section.hero-section .main-container .caption .h1 span strong {
    color: #FEC935;
    font-family: var(--landing-secondary-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 51px;
    text-transform: uppercase;
}

section.hero-section .main-container .caption p {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    max-width: 577px;
}

section.hero-section .main-container .caption p strong {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

section.hero-section .main-container .image-col {
    width: 100%;
    max-width: 662px;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}

section.hero-section .main-container .image-col img {
    width: 100%;
}

section.hero-section .main-container .hero-cta a {
    display: flex;
    padding: 16px 28px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 100px;
    background: #FEC935;
    box-shadow: 0 8px 23px 0 rgba(254, 201, 53, 0.24);
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 1024px) {
    section.hero-section {
        padding-top: 100px;
        padding-bottom: 10px;
    }

    section.hero-section .main-container .caption .h1 {
        font-size: 26px;
        line-height: 1.3;
        margin: 0;
    }

    section.hero-section .main-container .caption .h1 span {
        font-size: 30px;
    }

    section.hero-section .main-container .caption .h1 span strong {
        font-size: 30px;
    }

    section.hero-section .main-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    section.hero-section .main-container .caption {
        padding-top: 0;
        gap: 10px;
    }

    section.hero-section .main-container .image-col {
        position: relative;
        top: auto;
        right: auto;
    }

    section.hero-section .main-container .hero-cta a {
        text-align: center;
    }
}

.form-section {
    padding: 40px 0;
}

.form-section .main-container {
    border-radius: 53px;
    background: #E5E9F2;
    max-width: 1128px;
    padding: 66px 53px;
}

.form-section .main-container .image-col img {
    width: 100%;
}

.form-section .main-container .form-row {
    display: grid;
    grid-template-columns: 483px auto;
    gap: 54px;
}

.form-section .main-container .form-row .input-holder {
    width: 100%;
}

.form-section .main-container .form-row .form-col .h2,
.form-section .main-container .form-row .image-col .h2 {
    color: #211747;
    font-family: var(--landing-secondary-font);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 48.843px;
    letter-spacing: -0.7px;
    margin-bottom: 10px;
}

.form-section .main-container .form-row .form-col .text,
.form-section .main-container .form-row .image-col .text {
    color: #211747;
    font-family: var(--landing-secondary-font);
    font-size: 18.69px;
    font-style: normal;
    font-weight: 300;
    line-height: 24.92px;
    letter-spacing: -0.187px;
    margin-bottom: 20px;
}

.form-section .main-container .form-row .input-holder input,
.form-section .main-container .form-row .input-holder select {
    width: 100%;
    border-radius: 81px;
    padding: 11.962px 13.955px;
    border: 0.3px solid rgba(109, 109, 109, 0.21);
    background: #FFF;
    box-shadow: 3.987px 3.987px 15.45px 0 rgba(153, 153, 153, 0.17) inset;
    color: rgba(110, 110, 110, 0.70);
    font-family: var(--landing-secondary-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.12px;
}

.form-section .main-container .form-row .input-holder button {
    display: flex;
    padding: 11.962px 9.968px;
    justify-content: center;
    align-items: center;
    gap: 9.968px;
    align-self: stretch;
    border-radius: 79px;
    background: #F7CD57;
    box-shadow: 4.984px 4.984px 8.174px 0 rgba(0, 0, 0, 0.04);
    color: #1E1A34;
    font-family: var(--landing-secondary-font);
    font-size: 14.952px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.15px;
    text-transform: capitalize;
    width: 100%;
    border: 0 none;
}

.form-holder {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-holder-row {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1024px) {
    .form-section .main-container {
        padding: 20px;
    }

    .form-section .main-container .form-row {
        grid-template-columns: 1fr;
    }

    .form-holder-row {
        flex-direction: column;
    }

    .form-section .main-container .form-row .form-col .h2,
    .form-section .main-container .form-row .image-col .h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .form-section .main-container .form-row .form-col .text,
    .form-section .main-container .form-row .image-col .text {
        font-size: 14px;
        line-height: 1.3;
    }
}

section.grid-icons-section {
    padding: 0 0 55px 0;
}

.grid-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1303px;
    margin: 0 auto;
    gap: 25px;
}

.grid-icons-row .grid-icon-col {
    display: inline-flex;
    padding: 28.097px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 21.073px;
    background: #FFF;
    box-shadow: 0 21.073px 28.097px -2.634px rgba(3, 9, 50, 0.04);
}

.grid-icons-row .grid-icon-col .icon-holder {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(92, 138, 233, 0.10);
    margin-bottom: 10px;
}


.grid-icons-row .grid-icon-col .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.grid-icons-row .grid-icon-col .caption .h3 {
    color: #000;
    font-family: var(--landing-secondary-font);
    font-size: 21.073px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.439px;
    margin: 0
}

.grid-icons-row .grid-icon-col .caption .text {
    color: #173397;
    font-family: var(--landing-body-font);
    font-size: 12.292px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.561px;
    margin: 0;
    min-height: 141px;
}

.grid-icons-row .grid-icon-col .caption .cta {
    display: flex;
    padding: 15.633px 26.557px 16.537px 28.049px;
    justify-content: center;
    align-items: center;
    border-radius: 87.803px;
    background: linear-gradient(96deg, #0B1234 -10.84%, #173397 196.74%);
    box-shadow: 0 7.024px 20.195px 0 rgba(65, 132, 247, 0.24);
    color: var(--White, #FFF);
    text-align: center;
    font-family: var(--landing-body-font);
    font-size: 13.675px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
    margin: 21px 0 0;
}

@media screen and (max-width: 1024px) {
    body.page-template-page-landing-page .section-title .h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .grid-icons-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        padding: 10px 20px 40px 20px;
        /* Included bottom padding for drop shadow */
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .grid-icons-row::-webkit-scrollbar {
        display: none;
    }

    .grid-icons-row .grid-icon-col {
        min-width: 320px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 768px) {
    .grid-icons-row .grid-icon-col {
        min-width: 80vw;
        max-width: 239px;
    }
}

/***org chart***/
section.org-section {
    padding: 55px 0;
    background-color: #fff;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
}

/* NODOS */
.node {
    display: flex;
    width: 431px;
    padding: 18.191px 18.191px 18.191px 24.521px;
    justify-content: center;
    align-items: center;
    gap: 17px;
    border-radius: 13.643px;
    border: 0.568px solid #211747;
    background: #5C8AE9;
    box-shadow: 0 13.643px 18.191px -1.705px rgba(3, 9, 50, 0.04);
    position: relative;
}


.node .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #fff;
    width: 100%;
}

.node .caption .h3 {
    color: #fff;
    font-family: var(--landing-secondary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.439px;
    margin: 0;
    text-align: left;
    display: block;
    width: 100%;
}

.node .caption .text {
    color: #fff;
    font-family: var(--landing-body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.561px;
    margin: 0;
    text-align: left;
}

.node.main {
    background: #0d1b4c;
    flex-direction: column;
    padding: 3.503px 18.191px 18.191px 18.191px;
}

.node.secondary {
    background: #173397;
}

.node.main .caption .h3,
.node.main .caption .text {
    text-align: center;
}

.node.main .caption .text {
    font-size: 16px;
}

.node.main .caption .h3 {
    font-size: 20px;
    text-wrap: wrap;
}

.node.highlight {
    background: #f4c542;
    flex-direction: column;
    padding: 13.503px 18.191px 18.191px 18.191px;
}

.node.highlight .caption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: #173397;
    width: 100%;
}

.node.highlight .caption .h3 {
    color: #0D1641;
    text-align: center;
}

.node.highlight .caption .text {
    color: #173397;
    text-align: center;
}

/* FILAS */
.row {
    display: flex;
    justify-content: center;
    gap: 25px;
    position: relative;
}

/* LÍNEAS VERTICALES DESDE EL MAIN */
.org-chart>.node.main::after,
.row>.node::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 22px;
    background: #211747;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

/* LÍNEA HORIZONTAL ENTRE HIJOS */
.row::before,
.node.highlight::after {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    width: 60%;
    height: 0.7px;
    background: #211747;
    transform: translateX(-50%);
}

.row.first-row::before {
    width: 457px;
}

.row.second-row::before,
.node.highlight::after {
    width: 910px;
}

/* LÍNEAS VERTICALES A CADA NODE */
.row .node::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: #211747;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* CONEXIÓN HACIA EL BLOQUE FINAL */
.node.highlight::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: #211747;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
    .org-chart {
        padding: 0 20px;
        width: 100%;
        gap: 20px;
    }

    .node {
        width: 100%;
        max-width: 220px;
        flex-direction: column;
        z-index: 5;
        position: relative;
    }

    .row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }

    .node .caption .h3,
    .node .caption .text {
        text-align: center !important;
    }

    .row::before,
    .node.highlight::after,
    .row .node::before {
        display: none;
    }

    .row .node::before,
    .org-chart>.node.main::after,
    .row>.node::after {
        z-index: 0;
    }

}

body.page-template-page-landing-page .main-container.section-cta-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
}

.section-cta {
    display: flex;
    padding: 16px 28px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 100px;
    background: #0D1641;
    box-shadow: 0 8px 23px 0 rgba(254, 201, 53, 0.24);
    color: #fff !important;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all 0.3s ease;
}

.section-cta:hover {
    background-color: #5581F1;
    color: #0A0E31;
}

@media screen and (max-width: 768px) {
    .section-cta {
        font-size: 14px;
    }
}

section.feature-section {
    padding: 55px 0;
}

section.feature-section .main-container {
    max-width: 1041px;
}

@media screen and (max-width: 1024px) {
    section.feature-section .main-container {
        max-width: 100%;
    }

    section.feature-section .main-container .section-title {
        margin-bottom: 24px;
    }

    section.feature-section .main-container .section-title .h2 {
        font-size: 24px;
        text-align: left;
    }

    section.feature-section .main-container .content p {
        color: #173397;
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
    }

    .icon-text-grid {
        margin: 20px auto;
        flex-direction: column;
    }
}

/***icon text grid***/
.icon-text-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin: 40px auto;
    max-width: 700px;
    width: 100%;
}

.icon-text-grid .icon-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 20px 40px 20px;
    box-shadow: 0 8px 23px 0 rgba(0, 0, 0, 0.25);
    flex: 1;
}

.icon-text-grid .icon-text-col .icon-holder {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-text-grid .icon-text-col .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.icon-text-grid .icon-text-col .caption .h3 {
    color: #6b6b6b;
    text-align: center;
    font-family: var(--landing-secondary-font);
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 48.843px;
    letter-spacing: -0.7px;
    margin: 0;
}

.icon-text-grid .icon-text-col .caption .text {
    color: #6b6b6b;
    text-align: center;
    font-family: var(--landing-body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

section.steps-section {
    padding: 55px 0;
    background-color: #fff;
}

section.steps-section .main-container {
    max-width: 1110px;
}

.steps-box {
    border-radius: 20px;
    background: #F9F8FA;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 36px;
    padding: 25px;
}

.steps-box .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex: 1;
}

.steps-box .step .step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.steps-box .step .step-number {
    color: #858585;
    font-family: var(--landing-secondary-font);
    font-size: 21.784px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.061px;
    margin: 0;
    margin-bottom: 19px;
}

.steps-box .step .step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.steps-box .step .step-content .h3 {
    color: #0D1641;
    text-align: center;
    font-family: var(--landing-secondary-font);
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 35px;
    margin: 0;
}

.steps-box .step .step-content .text {
    color: #0D1641;
    text-align: center;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .steps-box {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .steps-box .step {
        border-radius: 20px;
        background: #F9F8FA;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
        padding: 25px;
    }
}

section.comments-section {
    padding: 55px 0;
    background-color: #fff;
}

section.comments-section .main-container {
    max-width: 1110px;
}

.comments-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.comment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    border-radius: 20px;
    padding: 110px 66px 78px;
    box-shadow: 0 8px 23px 0 rgba(0, 0, 0, 0.25);
    max-width: 743px;
    position: relative;
}

.comment:after {
    content: "";
    position: absolute;
    top: -15px;
    left: 66px;
    width: 88px;
    height: 102px;
    background-image: url(../images/landing-page/quote.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comment .comment-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment .comment-content .text {
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.comment .comment-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment .comment-footer .comment-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comment .comment-footer .comment-info .h3 {
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 24px 0 0;
}

.comment .comment-footer .comment-info .h3::before {
    content: " — "
}

.comment .comment-footer .comment-info .text {
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

/**trust section**/

section.trust-section {
    padding: 55px 0;
}

section.trust-section .main-container {
    max-width: 1275px;
}

.trust-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 83px;
    width: 100%;
    margin-bottom: 43px;
}

.trust-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    padding: 22px 126px;
    position: relative;
}

@media screen and (max-width: 1024px) {
    section.trust-section .main-container {
        padding: 0;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 43px;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table thead {
    border-radius: 20px 20px 0 0;
    background: #0B1234;
    color: #fff;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.comparison-table thead tr th {
    background: #0B1234;
    color: #fff;
    font-family: var(--landing-body-font);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: 72px;
    text-align: left;
    padding-left: 20px;
}

.comparison-table thead tr th:first-child {
    font-size: 18px;
}

.comparison-table tbody tr {
    background: #fff;
    color: #000;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr td {
    padding: 16px 20px;
}

.comparison-table tbody tr td:nth-child(2) {
    background: #5C8AE9;
    border-color: #5C8AE9;
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(92, 138, 233, 0.10);

}

.comparition-grid {
    display: none
}



section.table-section p {
    color: #000;
    text-align: center;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

section.table-section p strong {
    font-weight: 700;
}

@media screen and (max-width: 1024px) {

    section.table-section {
        padding: 55px 0;
        background-color: #0A0E31;
        color: #fff;
    }

    section.table-section .section-title .h2 {
        color: #fff;
    }

    section.table-section p {
        color: #fff;
        text-align: left;
        font-weight: 400;
        font-size: 14px;
    }

    section.table-section .main-container .section-cta {
        display: inline-flex;
        padding: 14.752px 25.816px;
        align-items: flex-start;
        gap: 9.22px;
        border-radius: 92.201px;
        background: #FFC400;
        box-shadow: 0 7.376px 21.206px 0 rgba(65, 132, 247, 0.24);
        color: #0B1234;
        font-family: var(--landing-body-font);
        font-size: 16.596px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        text-transform: uppercase;
    }

    .comparison-table {
        display: none;
    }

    .comparition-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        width: 100%;
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .comparition-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        border: 1px solid #fff;
        border-radius: 20px;
        overflow: hidden;
    }

    .comparition-col .h3 {
        padding: 16px 20px 10px;
        display: block;
        width: 100%;
        background: #FFC400;
        color: #0D1641;
        font-family: var(--landing-body-font);
        font-size: 23.11px;
        font-style: normal;
        font-weight: 800;
        line-height: 26.665px;
        margin: 0;
    }

    .comparition-col:not(:first-child) .h3 {
        background: #fff;
    }

    .comparition-col ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0px;
    }

    .comparition-col ul li {
        padding: 12px 20px;
        gap: 10px;
        width: 100%;
        border-bottom: 1px solid #fff;
        color: #FFF;
        font-family: var(--landing-body-font);
        font-size: 11.537px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.237px;
    }

    .comparition-col ul li strong {
        color: #FFC400;
        font-family: var(--landing-body-font);
        font-size: 12.979px;
        font-style: normal;
        font-weight: 600;
        line-height: 25.237px;
    }

    .comparition-col:not(:first-child) ul li strong {
        color: #FFF;
        font-family: var(--landing-body-font);
        font-size: 11.537px;
        font-style: normal;
        font-weight: 400;
        line-height: 25.237px;
    }

    .comparition-col ul li:last-child {
        border-bottom: none;
    }
}

/**providers section**/

section.providers-section {
    padding: 55px 0;
}

section.providers-section .main-container {
    max-width: 1320px;
}

.providers-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.provider-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background-color: #fff;
    padding: 26px;
    border-radius: 26.982px;
    box-shadow: 0 20.237px 26.982px -2.53px rgba(3, 9, 50, 0.04);
    flex: 1;
    gap: 26px;
}

.provider-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.provider-card-header img {
    width: 100%;
    max-width: 60px;
    height: auto;
    border-radius: 50%;
}

.provider-card-header .caption-holder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
}

.provider-card-header .caption-holder .h3 {
    color: #173397;
    font-family: var(--landing-body-font);
    font-size: 16.864px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.provider-card-header .caption-holder .text {
    color: #173397;
    font-family: var(--landing-body-font);
    font-size: 13.491px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.provider-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.provider-card-content .text {
    color: #0D1641;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .providers-grid {
        flex-direction: column;
        gap: 20px;
    }
}

/**faq section**/

section.faq-section {
    padding: 55px 0 0;
    background-color: #fff;
}

section.faq-section .main-container {
    max-width: 1110px;
}

section.faq-section .section-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section.faq-section .section-title h2 {
    text-wrap: nowrap;
}

section.faq-section .section-title::after,
section.faq-section .section-title::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #0D1641;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

.faq-grid .faq-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 26px;
    flex: 1;
    gap: 26px;
    width: 100%;
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.faq-grid .faq-item:nth-child(odd) {
    background-color: rgba(247, 247, 247, 1);
}

.faq-grid .faq-item:nth-child(even) {
    background-color: rgba(255, 255, 255, 1);
}

.faq-grid .faq-item .faq-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 678px;
    margin: 0 auto;
    cursor: pointer;
}

.faq-grid .faq-item .faq-question .h3 {
    color: #211747;
    font-family: var(--landing-body-font);
    font-size: 18.675px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.868px;
    text-transform: uppercase;
    margin: 0;
}

.faq-grid .faq-item .faq-question .icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.faq-grid .faq-item .faq-answer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 678px;
    margin: 0 auto;
    height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.faq-grid .faq-item .faq-answer .text {
    color: #211747;
    font-family: var(--landing-body-font);
    font-size: 18.675px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.faq-grid .faq-item.active .faq-answer {
    height: 150px;
    opacity: 1;
}

.faq-grid .faq-item.active .faq-question .icon {
    transform: rotate(180deg);
}

section.logo-grid {
    padding: 55px 0;
}

section.logo-grid .main-container {
    max-width: 1122px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding-top: 26px;
    padding-bottom: 26px;
}

section.logo-grid .main-container::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(13, 22, 65, 0.00) 0%, #0D1641 50%, rgba(13, 22, 65, 0.00) 100%);
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
}

section.logo-grid .main-container::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(13, 22, 65, 0.00) 0%, #0D1641 50%, rgba(13, 22, 65, 0.00) 100%);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
}

section.logo-grid .main-container img {
    mix-blend-mode: multiply;
}

@media screen and (max-width: 1024px) {
    section.logo-grid .main-container {
        width: 100%;
        overflow-y: scroll;
    }
}

/*** Trust Section Mobile Carousel ***/
@media screen and (max-width: 1024px) {
    .trust-section .main-container {
        padding: 0;
    }

    .trust-grid,
    .trust-box {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        padding: 0 20px 20px 20px;
        gap: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .trust-grid::-webkit-scrollbar,
    .trust-box::-webkit-scrollbar {
        display: none;
    }

    .trust-col,
    .logo-trust {
        scroll-snap-align: start;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 150px;
    }

    .trust-grid {
        margin-bottom: 30px;
    }

    .trust-col img,
    .logo-trust img {
        max-width: 100%;
        height: auto;
    }
}

/**** footer ****/
footer.minimal-footer {
    padding: 64px 0;
    background: #0A0E31;
    color: #fff;
}

footer.minimal-footer .main-container.footer-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

footer.minimal-footer .main-container.footer-row .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    flex: 1;
}

footer.minimal-footer .main-container.footer-row .footer-col:first-child {
    flex: 2;
}

footer.minimal-footer .main-container.footer-row .footer-col .brand-text {
    color: #F7CD57;
    font-family: var(--landing-secondary-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

footer.minimal-footer .main-container.footer-row .footer-col .brand-description {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

footer.minimal-footer .main-container.footer-row .footer-col .brand-rss {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    margin-top: 24px;
}

footer.minimal-footer .main-container.footer-row .footer-col .text {
    color: #fff;
    font-family: var(--landing-body-font);
    font-size: 18.675px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

footer.minimal-footer .main-container.footer-row .footer-col .menu-footer-title {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0 0 24px;
}

footer.minimal-footer .main-container.footer-row .footer-col .menu-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer.minimal-footer .main-container.footer-row .footer-col .menu-footer li a,
footer.minimal-footer .main-container.footer-row .footer-col .menu-footer li {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    opacity: 0.8;
}

footer.minimal-footer .main-container.post-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 64px;
    padding-top: 16px;
    border-top: 1px solid #fff;
}

footer.minimal-footer .main-container.post-footer .copy-text {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    opacity: 0.8;
}

footer.minimal-footer .main-container.post-footer .copyright {
    color: #FFF;
    font-family: var(--landing-body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    opacity: 0.8;
}

@media screen and (max-width: 1024px) {
    footer.minimal-footer {
        padding: 55px 20px;
    }

    footer.minimal-footer .main-container.footer-row {
        flex-direction: column;
        gap: 20px;
    }
}