:root {
    --max: 1200px;
    --gap: 24px;
    --brand: #0a3;
    --ink: #111;
    --muted: #666
}

:root {
    --font-body: "montserrat", Arial, Helvetica, sans-serif;
    --font-head: "montserrat", var(--font-body);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
}

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px
}

/* ===== HEADER ===== */
.site_header {
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 50
}

.header_inner {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0
}

.site_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo_img {
    max-height: 44px;
    width: auto
}

.nav_toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    cursor: pointer
}

.nav_toggle_icon {
    width: 16px;
    height: 2px;
    background: #222;
    position: relative;
    display: inline-block
}

.nav_toggle_icon::before, .nav_toggle_icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: #222
}

.nav_toggle_icon::before {
    top: -6px
}

.nav_toggle_icon::after {
    top: 6px
}

.site_nav {
    display: flex
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    align-items: center
}

.menu_item {
    position: relative
}

.menu_link {
    display: inline-block;
    padding: 10px 8px;
    text-decoration: none;
    color: #111
}

.menu_item--highlight .menu_link {
    background: var(--brand);
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px
}

.submenu_toggle, .submenu_toggle {
    display: none
}

.sub_menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.sub_menu_item {
    list-style: none
}

.sub_menu_link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #111
}

.sub_menu_link:hover {
    background: #f6f6f6
}

.sub_menu_desc {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 2px
}

/* show submenu on hover (desktop) */
@media (hover: hover) {
    .menu_item--has-children:hover > .sub_menu {
        display: block
    }

    .menu_item--has-children > .sub_menu[hidden] {
        display: none
    }
}

/* Header actions */
.header_actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.header_cta {
    white-space: nowrap
}

.header_search_panel {
    border-top: 1px solid #eee;
    background: #fafafa;
    padding: 8px 0
}

.header_search_form {
    display: flex;
    gap: 8px;
    align-items: center
}

/* ===== HERO rotator ===== */
.hero-rotator .pic {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity var(--fade, 600ms) ease
}

.hero-rotator .pic.active {
    opacity: 1
}

.hero-rotator .banner {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.hero-overlay-content {
    position: relative;
    z-index: 3
}

.vh100 {
    min-height: 100vh
}

/* ===== Sections / Base ===== */
.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none
}

.btn_primary {
    background: var(--brand);
    color: #fff
}

.btn_secondary {
    border: 1px solid #ccc;
    color: #111
}

.grid_2 {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: var(--gap)
}

.two_columns {
    padding: 72px 0
}

.two_columns_right .image_col {
    order: 2
}

.section_title {
    font: 600 24px/1.2 "montserrat", sans-serif;
    margin: 0 0 40px;
    color: #2e3191;
    text-align: center;
}

.section p, .rte p, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio, .section-intro {
    margin: 0 0 1em;
    color: #2f3192;
}

.sbi_feedtheme_header_text h3 {
    font-weight: 700;
}

.cards {
    padding: 72px 0;
    background: #fafafa
}

.cards_grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: var(--gap)
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 16px
}

.card_title {
    margin: 12px 0 8px;
    font-size: 20px;
    color: #222
}

.card_text {
    color: var(--muted)
}

.logos_strip {
    padding: 80px 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom left;
}

.logos_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

a.logo_item {
    max-width: 170px;
}

.testimonials {
    padding: 72px 0;
    background: #f7f7f7
}

.testimonial_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px
}

.t_meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px
}

.t_photo {
    border-radius: 50%
}

.cta {
    padding: 80px 0;
    background: #fff;
}

body.home .cta {
    padding: 0 0 120px;
}

.cta_inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.cta_text {
    font: 600 24px/1.2 "montserrat", sans-serif;
    margin: 0
}
.hero-rotator { position: relative; overflow: hidden; }

.hero-circles {
    position: absolute;
    top: 50%;
    right: 6vw;                 /* fixed resting position */
    transform: translateY(-50%);
    aspect-ratio: 1/1;
    height: 80%;
    pointer-events: none;
    z-index: 0;                 /* keep below overlay text */
}

/* ONE definition only */
.hero-circle {
    position: absolute;
    width: 55%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 20px;               /* gradient “border” thickness */
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);

    /* start off-screen relative to the viewport */
    transform: translate3d(120vw,0,0) scale(.98);
    opacity: 0;
    transition: transform .75s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
    will-change: transform, opacity;
}

.hero-circle__img {
    display: block; width: 100%; height: 100%;
    border-radius: 50%; object-fit: cover;
}

/* final positions */
.hero-circle--1 { top: 0; left: 0; }
.hero-circle--2 { top: 0; right: 0; }
.hero-circle--3 { bottom: 0; left: 0; right: 0; margin: 0 auto; }

/* activate animation (add .circles-in to the .hero-rotator) */
.hero-rotator.circles-in .hero-circle {
    transform: translate3d(0,0,0) scale(1);
    opacity: 1;
}

/* stagger */
.hero-rotator.circles-in .hero-circle--1 { transition-delay: 0s; }
.hero-rotator.circles-in .hero-circle--2 { transition-delay: 0.4s; }
.hero-rotator.circles-in .hero-circle--3 { transition-delay: 0.8s; }

@media (max-width: 767px) {
    .hero-circles { width: 300px; height: 300px; right: 2rem; top: 29%; }
    .hero-circle {
        padding: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-circle { transition: none !important; transform: none !important; opacity: 1 !important; }
}


/* ===== FOOTER ===== */
.site_footer {
    border-top: 1px solid #eee;
    margin-top: 40px;
    background: #fff
}

.footer_inner {
    display: grid;
    grid-template-columns:1.2fr 2fr;
    gap: 32px;
    padding: 28px 0
}

.footer_brand .footer_logo_img {
    max-height: 48px;
    width: auto
}

.footer_blurb {
    color: #555;
    margin: 12px 0 16px
}

.footer_socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.footer_social svg {
    width: 22px;
    height: 22px;
    display: block
}

.footer_cols {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 24px
}

.footer_col_title {
    font-size: 16px;
    margin: 0 0 10px
}

.footer_links {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer_links a {
    text-decoration: none;
    color: #111;
    padding: 6px 0;
    display: inline-block
}

.footer_col_html p {
    margin: 0 0 8px
}

.footer_bar {
    border-top: 1px solid #eee;
    background: #fafafa
}

.footer_bar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0
}

.footer_legal {
    margin: 0;
    color: #666
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .menu {
        gap: 14px
    }
}

@media (max-width: 900px) {
    .nav_toggle {
        display: flex
    }

    .site_nav {
        position: fixed;
        inset: 64px 0 0 0;
        background: #fff;
        border-top: 1px solid #eee;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, transform .25s ease
    }

    .site_nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0)
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        padding: 16px
    }

    .submenu_toggle {
        display: inline-block;
        position: absolute;
        right: 8px;
        top: 8px;
        width: 28px;
        height: 28px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff
    }

    .menu_item--has-children > .sub_menu {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 6px 0 0 0
    }

    .menu_item--has-children > .sub_menu[hidden] {
        display: none
    }
}

@media (max-width: 960px) {
    .grid_2 {
        grid-template-columns:1fr
    }

    .cards_grid {
        grid-template-columns:1fr 1fr
    }

    .logos_row {
        grid-template-columns:repeat(3, 1fr)
    }

    .footer_inner {
        grid-template-columns:1fr
    }

    .footer_cols {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .cards_grid {
        grid-template-columns:1fr
    }

    .footer_cols {
        grid-template-columns:1fr
    }

    .itc-card__panel {
        min-height: 460px;
    }

    .news-grid {
        gap: 12px;
    }

    .news-card__body {
        padding: 14px 16px 70px !important;
    }

    .section_title {
        text-align: center !important;
    }

}

@media (min-width: 641px) {

    .news-grid {
        gap: 32px;
    }

}

.container {
    width: calc(100% - 2 * var(--component-padding));
    margin-left: auto;
    margin-right: auto;
}

.grid, .flex, .inline-flex,
[class^=flex\@], [class*=" flex@"],
[class^=inline-flex\@], [class*=" inline-flex@"] {
    --gap: 0px;
    --gap-x: var(--gap);
    --gap-y: var(--gap);
    gap: var(--gap-y) var(--gap-x);
}

.grid > *, .flex > *, .inline-flex > *,
[class^=flex\@] > *, [class*=" flex@"] > *,
[class^=inline-flex\@] > *, [class*=" inline-flex@"] > * {
    --sub-gap: 0px;
    --sub-gap-x: var(--sub-gap);
    --sub-gap-y: var(--sub-gap);
}

.grid {
    --grid-columns: 12;
    display: flex;
    flex-wrap: wrap;
}

.grid > * {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 0;
}

/* #region (Safari < 14.1 fallback) */
@media not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
        .grid, .flex[class*=gap-], .inline-flex[class*=gap-] {
            gap: 0px;
            margin-bottom: calc(-1 * var(--gap-y));
            margin-left: calc(-1 * var(--gap-x));
        }

        .grid > *, .flex[class*=gap-] > *, .inline-flex[class*=gap-] > * {
            margin-bottom: var(--sub-gap-y);
        }

        .grid {
            --offset: var(--gap-x);
            --gap-modifier: 0;
            --offset-modifier: 1;
        }

        .grid > * {
            margin-left: var(--offset);
        }

        .flex[class*=gap-] > *, .inline-flex[class*=gap-] > * {
            margin-left: var(--sub-gap-x);
        }
    }
}


*, *::after, *::before {
    box-sizing: inherit;
}

* {
    font: inherit;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, p, blockquote,
a, address, img, s,
small, strong, var,
b, i,
dl, dt, dd, ul, li, form, caption,
article, embed,
figure, figcaption, footer, header,
menu, nav, section, summary,
time, audio, video, hr {
    margin: 0;
    padding: 0;
    border: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg, white);
}

article, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

ul, menu {
    list-style: none;
}

blockquote {
    quotes: none;
}

button, input, select {
    margin: 0;
}

.btn, .form-control, .link, .reset {
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.form-control::-ms-expand {
    display: none;
}

input::-ms-clear {
    display: none;
}

img, video, svg {
    max-width: 100%;
}

[data-theme] {
    background-color: var(--color-bg, hsl(0deg, 0%, 100%));
    color: var(--color-contrast-high, hsl(210deg, 7%, 21%));
}

body {
    font-size: var(--text-base-size, 1rem);
    font-family: "montserrat", Arial, Helvetica, sans-serif;
    color: var(--color-contrast-high, hsl(210deg, 7%, 21%));
    font-weight: var(--body-font-weight, normal);
}

h1, h2, h3, h4 {
    color: var(--color-contrast-higher, hsl(204deg, 28%, 7%));
    line-height: var(--heading-line-height, 1.2);
    font-weight: var(--heading-font-weight, 700);
}

a, .link {
    color: #2e3192;
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

s {
    text-decoration: line-through;
}

.text-component h1, .text-component h2, .text-component h3, .text-component h4 {
    line-height: calc(var(--heading-line-height) * var(--line-height-multiplier, 1));
    margin-bottom: calc(var(--space-unit) * 0.3125 * var(--text-space-y-multiplier, 1));
}

.text-component h2, .text-component h3, .text-component h4 {
    margin-top: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}

.text-component p, .text-component blockquote, .text-component ul li {
    line-height: calc(var(--body-line-height) * var(--line-height-multiplier, 1));
}

.text-component ul, .text-component p, .text-component blockquote, .text-component .text-component__block {
    margin-bottom: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
}

.text-component ul {
    list-style-position: inside;
}

.text-component ul ul {
    padding-left: 1em;
    margin-bottom: 0;
}

.text-component ul {
    list-style-type: disc;
}

.text-component img {
    display: block;
    margin: 0 auto;
}

.text-component figcaption {
    text-align: center;
    margin-top: calc(var(--space-unit) * 0.5);
}

.text-component hr {
    margin-top: calc(var(--space-unit) * 1.875 * var(--text-space-y-multiplier, 1));
    margin-bottom: calc(var(--space-unit) * 1.875 * var(--text-space-y-multiplier, 1));
    margin-left: auto;
    margin-right: auto;
}

.text-component > *:first-child {
    margin-top: 0;
}

.text-component > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 48rem) {

    .text-component__block--right {
        width: 45%;
    }

    .text-component__block--right img {
        width: 100%;
    }

    .text-component__block--right {
        float: right;
        margin-left: calc(var(--space-unit) * 0.9375 * var(--text-space-y-multiplier, 1));
    }
}

@media (min-width: 90rem) {
    .text-component__block--right {
        width: 50%;
    }
}

:root {
    --icon-xxxs: 8px;
    --icon-xxs: 12px;
    --icon-xs: 16px;
    --icon-sm: 24px;
    --icon-md: 32px;
    --icon-lg: 48px;
    --icon-xl: 64px;
    --icon-xxl: 96px;
    --icon-xxxl: 128px;
}

.icon {
    --size: 1em;
    height: var(--size);
    width: var(--size);
    display: inline-block;
    color: inherit;
    fill: currentColor;
    line-height: 1;
    flex-shrink: 0;
    max-width: initial;
}

.icon--sm {
    --size: var(--icon-sm);
}

.icon--md {
    --size: var(--icon-md);
}

.icon--lg {
    --size: var(--icon-lg);
}

@-webkit-keyframes icon-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes icon-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.icon use {
    color: inherit;
    fill: currentColor;
}

.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-decoration: none;
    font-size: var(--btn-font-size, 1em);
    padding-top: var(--btn-padding-y, 0.5em);
    padding-bottom: var(--btn-padding-y, 0.5em);
    padding-left: var(--btn-padding-x, 0.75em);
    padding-right: var(--btn-padding-x, 0.75em);
    border-radius: var(--btn-radius, 0.25em);
}

.btn--md {
    font-size: var(--btn-font-size-md, 1.2em);
}

.form-control {
    font-size: var(--form-control-font-size, 1em);
    padding-top: var(--form-control-padding-y, 0.5em);
    padding-bottom: var(--form-control-padding-y, 0.5em);
    padding-left: var(--form-control-padding-x, 0.75em);
    padding-right: var(--form-control-padding-x, 0.75em);
    border-radius: var(--form-control-radius, 0.25em);
}

:root {
    --z-index-header: 3;
    --z-index-popover: 5;
    --z-index-fixed-element: 10;
    --z-index-overlay: 15;
}

:root {
    --display: block;
}

html:not(.js) .no-js\:is-hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-column {
    flex-direction: column;
}

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

.flex-basis-0 {
    flex-basis: 0;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

[class^=aspect-ratio], [class*=" aspect-ratio"] {
    --aspect-ratio: calc(16 / 9);
    position: relative;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
}

[class^=aspect-ratio] > *, [class*=" aspect-ratio"] > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

[class^=aspect-ratio] > *:not(iframe), [class*=" aspect-ratio"] > *:not(iframe) {
    -o-object-fit: cover;
    object-fit: cover;
}

.block {
    display: block;
}

.margin-top-sm {
    margin-top: var(--space-sm);
}

.margin-top-md {
    margin-top: var(--space-md);
}

.margin-top-lg {
    margin-top: var(--space-lg);
}

.margin-top-xl {
    margin-top: var(--space-xl);
}

.margin-bottom-xxs {
    margin-bottom: var(--space-xxs);
}

.margin-bottom-xs {
    margin-bottom: var(--space-xs);
}

.margin-bottom-sm {
    margin-bottom: var(--space-sm);
}

.margin-bottom-md {
    margin-bottom: var(--space-md);
}

.margin-bottom-lg {
    margin-bottom: var(--space-lg);
}

.margin-bottom-xl {
    margin-bottom: var(--space-xl);
}

.margin-right-xxxs {
    margin-right: var(--space-xxxs);
}

.margin-right-xxs {
    margin-right: var(--space-xxs);
}

.margin-right-xs {
    margin-right: var(--space-xs);
}

.margin-left-xxxs {
    margin-left: var(--space-xxxs);
}

.margin-left-xxs {
    margin-left: var(--space-xxs);
}

.margin-x-auto {
    margin-left: auto;
    margin-right: auto;
}

.padding-md {
    padding: var(--space-md);
}

.padding-top-md {
    padding-top: var(--space-md);
}

.padding-top-lg {
    padding-top: var(--space-lg);
}

.padding-top-xl {
    padding-top: var(--space-xl);
}

.padding-top-xxl {
    padding-top: var(--space-xxl);
}

.padding-bottom-md {
    padding-bottom: var(--space-md);
}

.padding-bottom-lg {
    padding-bottom: var(--space-lg);
}

.padding-right-lg {
    padding-right: var(--space-lg);
}

.padding-y-md {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}

.padding-y-lg {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.padding-y-xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.padding-y-xxxl {
    padding-top: var(--space-xxxl);
    padding-bottom: var(--space-xxxl);
}

.text-xs {
    font-size: var(--text-xs, 0.6875rem);
}

.text-sm {
    font-size: var(--text-sm, 0.75rem);
}

.text-lg {
    font-size: var(--text-lg, 1.375rem);
}

.text-xl {
    font-size: var(--text-xl, 1.75rem);
}

.text-xxl {
    font-size: var(--text-xxl, 2rem);
}

.letter-spacing-md {
    letter-spacing: 0.05em;
}

.font-bold {
    font-weight: 700;
}

.font-italic {
    font-style: italic;
}

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

.text-space-y-xxs {
    --text-space-y-multiplier: 0.25 !important;
}

.text-space-y-lg {
    --text-space-y-multiplier: 1.5 !important;
}

.line-height-sm {
    --heading-line-height: 1.1;
    --body-line-height: 1.2;
}

.line-height-sm:not(.text-component) {
    line-height: 1.2;
}

.line-height-md {
    --heading-line-height: 1.15;
    --body-line-height: 1.4;
}

.line-height-md:not(.text-component) {
    line-height: 1.4;
}

.line-height-xl {
    --heading-line-height: 1.3;
    --body-line-height: 1.72;
}

.line-height-xl:not(.text-component) {
    line-height: 1.72;
}

.line-height-1 {
    line-height: 1 !important;
}

[class^=color-], [class*=" color-"] {
    --color-o: 1;
}

.color-contrast-lower {
    color: hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), var(--color-o, 1));
}

.color-contrast-low {
    color: hsla(var(--color-contrast-low-h), var(--color-contrast-low-s), var(--color-contrast-low-l), var(--color-o, 1));
}

.color-contrast-medium {
    color: hsla(var(--color-contrast-medium-h), var(--color-contrast-medium-s), var(--color-contrast-medium-l), var(--color-o, 1));
}

.color-contrast-high {
    color: hsla(var(--color-contrast-high-h), var(--color-contrast-high-s), var(--color-contrast-high-l), var(--color-o, 1));
}

.color-accent {
    color: hsla(var(--color-accent-h), var(--color-accent-s), var(--color-accent-l), var(--color-o, 1));
}

.color-accent-light {
    color: hsla(var(--color-accent-light-h), var(--color-accent-light-s), var(--color-accent-light-l), var(--color-o, 1));
}

.color-success {
    color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), var(--color-o, 1));
}

.color-white {
    color: #fff;
}

[class^=color-gradient], [class*=" color-gradient"] {
    color: transparent !important;
    -webkit-background-clip: text;
    background-clip: text;
}

.width-100\% {
    width: 100%;
}

.height-100\% {
    height: 100%;
}

:root {
    --max-width-xxxxxs: 17.5rem;
    --max-width-xxxxs: 20rem;
    --max-width-xxxs: 26rem;
    --max-width-xxs: 32rem;
    --max-width-xs: 38rem;
    --max-width-sm: 48rem;
    --max-width-md: 64rem;
    --max-width-lg: 80rem;
    --max-width-xl: 90rem;
    --max-width-xxl: 100rem;
    --max-width-xxxl: 120rem;
    --max-width-xxxxl: 150rem;
}

.max-width-xxxxs {
    max-width: var(--max-width-xxxxs);
}

.max-width-xs {
    max-width: var(--max-width-xs);
}

.max-width-sm {
    max-width: var(--max-width-sm);
}

.max-width-lg {
    max-width: var(--max-width-lg);
}

[class^=max-width-adaptive], [class*=" max-width-adaptive"] {
    max-width: 32rem;
}

@media (min-width: 48rem) {
    .max-width-adaptive-md, .max-width-adaptive-lg {
        max-width: 48rem;
    }
}

@media (min-width: 64rem) {
    .max-width-adaptive-md, .max-width-adaptive-lg {
        max-width: 64rem;
    }
}

@media (min-width: 80rem) {
    .max-width-adaptive-lg {
        max-width: 80rem;
    }
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

[class^=flip], [class*=" flip"],
[class^=-rotate], [class*=" -rotate"],
[class^=rotate], [class*=" rotate"],
[class^=-translate], [class*=" -translate"],
[class^=translate], [class*=" translate"],
[class^=-scale], [class*=" -scale"],
[class^=scale], [class*=" scale"],
[class^=-skew], [class*=" -skew"] [class^=skew],
[class*=" skew"] {
    --translate: 0;
    --rotate: 0;
    --skew: 0;
    --scale: 1;
    transform: translate3d(var(--translate-x, var(--translate)), var(--translate-y, var(--translate)), var(--translate-z, 0)) rotateX(var(--rotate-x, 0)) rotateY(var(--rotate-y, 0)) rotateZ(var(--rotate-z, var(--rotate))) skewX(var(--skew-x, var(--skew))) skewY(var(--skew-y, 0)) scaleX(var(--scale-x, var(--scale))) scaleY(var(--scale-y, var(--scale)));
}

.visible {
    visibility: visible;
}

@media (min-width: 48rem) {
    .margin-right-sm\@sm {
        margin-right: var(--space-sm);
    }

    .padding-sm\@sm {
        padding: var(--space-sm);
    }

    .padding-md\@sm {
        padding: var(--space-md);
    }

    .padding-top-xl\@sm {
        padding-top: var(--space-xl);
    }

    .padding-bottom-xl\@sm {
        padding-bottom: var(--space-xl);
    }

    .padding-left-md\@sm {
        padding-left: var(--space-md);
    }

    .padding-x-md\@sm {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .padding-y-md\@sm {
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .text-md\@sm {
        font-size: var(--text-md, 1.125rem);
    }

    .text-xxl\@sm {
        font-size: var(--text-xxl, 2rem);
    }
}

@media not all and (min-width: 48rem) {
    .display\@sm {
        display: none !important;
    }
}

@media (min-width: 64rem) {
    .flex-row\@md {
        flex-direction: row;
    }

    .justify-end\@md {
        justify-content: flex-end;
    }

    .justify-between\@md {
        justify-content: space-between;
    }

    .items-center\@md {
        align-items: center;
    }

    .margin-bottom-xl\@md {
        margin-bottom: var(--space-xl);
    }

    .padding-lg\@md {
        padding: var(--space-lg);
    }

    .padding-left-md\@md {
        padding-left: var(--space-md);
    }

    .padding-x-md\@md {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .padding-y-xl\@md {
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }

    .padding-y-xxl\@md {
        padding-top: var(--space-xxl);
        padding-bottom: var(--space-xxl);
    }

    .text-center\@md {
        text-align: center;
    }

    .text-sm\@md {
        font-size: var(--text-sm, 0.75rem);
    }

    .text-base\@md {
        font-size: var(--text-unit, 1rem);
    }

    .text-xl\@md {
        font-size: var(--text-xl, 1.75rem);
    }

    .text-xxl\@md {
        font-size: var(--text-xxl, 2rem);
    }

    .text-xxxl\@md {
        font-size: var(--text-xxxl, 2.5rem);
    }
}

@media (min-width: 80rem) {
    .padding-y-xxl\@lg {
        padding-top: var(--space-xxl);
        padding-bottom: var(--space-xxl);
    }

    .padding-y-xxxl\@lg {
        padding-top: var(--space-xxxl);
        padding-bottom: var(--space-xxxl);
    }

    .width-70\%\@lg {
        width: 70%;
    }
}

@media not all and (min-width: 80rem) {
    .display\@lg {
        display: none !important;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

.text-component {
    --line-height-multiplier: 1;
    --text-space-y-multiplier: 1;
}

.text-component > * {
    --text-unit: 1em;
    --space-unit: 1em;
}

.text-component blockquote {
    padding-left: 0em;
    border: none;
    font-style: italic;
}

.text-component hr {
    background: var(--color-contrast-lower);
    height: 1px;
}

.text-component figcaption {
    font-size: var(--text-sm);
    color: var(--color-contrast-low);
}

.article {
    --body-line-height: 1.5;
    --text-space-y-multiplier: 1.5;
    --heading-line-height: 1.5;
}

@media (max-width: 400px) {
    .hide-border {
        border: 0;
    }
}

.btn {
    background: #2e3192;
    color: #fff;
    cursor: pointer;
    font-family: "montserrat", sans-serif;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.3s ease;
    will-change: transform;
}

.btn:focus {
    box-shadow: 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.15);
    outline: none;
}

.btn:active {
    transform: translateY(2px);
}

.btn--primary {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-primary-lighter);
    color: var(--color-white);
    box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 1px 4px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25);
}

.btn--primary:focus {
    color: var(--color-white);
    box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.15), 0px 1px 2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 1px 4px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.1), 0px 3px 6px -2px hsla(var(--color-primary-darker-h), var(--color-primary-darker-s), var(--color-primary-darker-l), 0.25), 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px var(--color-primary);
}

.btn--primary:active {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.btn--subtle {
    background: var(--color-bg-darker);
    color: var(--color-contrast-higher);
    box-shadow: none;
}

.btn--subtle:hover {
    background: var(--color-bg-light);
    box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1), 0px 0px 0px 1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.02), 0px 1px 3px -1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.2), var(--shadow-xs);
}

.btn--subtle:focus {
    box-shadow: inset 0px 1px 0px hsla(var(--color-white-h), var(--color-white-s), var(--color-white-l), 0.1), 0px 0px 0px 1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.02), 0px 1px 3px -1px hsla(var(--color-black-h), var(--color-black-s), var(--color-black-l), 0.2), var(--shadow-xs), 0px 0px 0px 2px var(--color-bg), 0px 0px 0px 4px var(--color-contrast-high);
}

.btn--cta {
    background: var(--color-primary);
    color: var(--color-bg-lighter);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-md);
    box-shadow: var(--shadow-sm);
}

.btn--cta:hover {
    background: var(--color-accent);
}

.btn--cta:active {
    background: var(--color-accent);
}

.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn--md {
    font-size: 1em;
}

.form-control {
    background: var(--color-bg-dark);
    line-height: 1.2;
    box-shadow: inset 0px 0px 0px 1px var(--color-contrast-lower);
    transition: all 0.2s ease;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: var(--color-contrast-lower);
}

.form-control::placeholder {
    opacity: 1;
    color: var(--color-contrast-lower);
}

.form-control:focus, .form-control:focus-within {
    background: var(--color-bg);
    box-shadow: inset 0px 0px 0px 1px hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0), 0px 0px 0px 2px var(--color-primary), var(--shadow-sm);
    outline: none;
}

.form-control[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 48rem) {
    .subNavBorder {
        background: rgba(254, 254, 254, 0.6);
        border-left: 1px solid rgba(236, 236, 236, 0.3);
        border-right: 1px solid rgba(236, 236, 236, 0.3);
    }

    .services-one__content {
        max-height: 290px;
    }
}

@media screen and (max-width: 600px) {
    .push-1 {
        margin-top: 1.4em !important;
    }
}

.header-bg {
    background-color: #1E2B31;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 1800'%3E%3Cdefs%3E%3Cpath id='a' fill='%23202E35' d='M4002.8.3C3620.4 14 3647 280.9 3371.4 340.6s-433.8-225-723.3-111.8-339.6 465.3-489.3 557.8c-149.7 92.5-562.5-20.8-728.1 120.4s-111.8 539.2-238.8 700.2-555.5 132.2-679.3 353.4c-123.9 221.2 108.6 547.6 38.2 762.1S48 3037.7 10.9 3286.3s307.8 453.1 316.8 713.7S-60.6 4385.1 8 4698.2s414.7 262.9 537.9 565.7c123.2 302.8-228 480.4-36 771s456.2 107.4 673 347 18.8 538 247.8 711.1c229 173.1 443.6-30.5 728.1 120.4s143.1 452.9 483 555.6 409.8-153.1 715.8-112c306 41.1 329.7 354.2 645.2 342.7s302.7-293.2 631.4-340.3c328.7-47.1 496 198.7 723.3 111.8s343.6-468.3 477.1-550.7c133.6-82.5 566.4 21.2 735.6-123.8 169.2-145 110.8-536.1 243.5-704 132.6-167.8 557.7-136.8 679.3-353.4s-99.6-579.6-38.2-762.1c61.4-182.5 507.3-353.9 539.9-563.6 32.6-209.7-311.2-506.8-316.8-713.7-5.7-206.8 358.7-509.6 319-701.6-39.7-192-470.7-390.9-537.3-562.3-66.6-171.4 163.6-571.8 36-771-127.6-199.2-504.6-179.3-661-345.2s-7-522.6-259.8-712.8-519-4.7-740.2-127.3-197.7-463.1-470.8-548.7-534.7 88.1-719.4 55S4290-10 4002.8.3z' /%3E%3C/defs%3E%3Cg transform='translate(0 1200)' %3E%3Cg transform='translate(-2500 200) scale(1 .4)' stroke='%23334953' stroke-width='1'%3E%3Cg%3E%3Cuse href='%23a' y='-100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='52s' begin='-17s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='-100' y='150'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' begin='-5s' dur='48.3s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='50' y='100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='44.7s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' begin='-14s' dur='40.9s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='45s' values='360 4000 4000%3B0 4000 4000'%3E%3C/animateTransform%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.cross-bg {
    background-color: #1E2B31;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3000 1800'%3E%3Cdefs%3E%3Cpath id='a' fill='%23202E35' d='M4002.8.3C3620.4 14 3647 280.9 3371.4 340.6s-433.8-225-723.3-111.8-339.6 465.3-489.3 557.8c-149.7 92.5-562.5-20.8-728.1 120.4s-111.8 539.2-238.8 700.2-555.5 132.2-679.3 353.4c-123.9 221.2 108.6 547.6 38.2 762.1S48 3037.7 10.9 3286.3s307.8 453.1 316.8 713.7S-60.6 4385.1 8 4698.2s414.7 262.9 537.9 565.7c123.2 302.8-228 480.4-36 771s456.2 107.4 673 347 18.8 538 247.8 711.1c229 173.1 443.6-30.5 728.1 120.4s143.1 452.9 483 555.6 409.8-153.1 715.8-112c306 41.1 329.7 354.2 645.2 342.7s302.7-293.2 631.4-340.3c328.7-47.1 496 198.7 723.3 111.8s343.6-468.3 477.1-550.7c133.6-82.5 566.4 21.2 735.6-123.8 169.2-145 110.8-536.1 243.5-704 132.6-167.8 557.7-136.8 679.3-353.4s-99.6-579.6-38.2-762.1c61.4-182.5 507.3-353.9 539.9-563.6 32.6-209.7-311.2-506.8-316.8-713.7-5.7-206.8 358.7-509.6 319-701.6-39.7-192-470.7-390.9-537.3-562.3-66.6-171.4 163.6-571.8 36-771-127.6-199.2-504.6-179.3-661-345.2s-7-522.6-259.8-712.8-519-4.7-740.2-127.3-197.7-463.1-470.8-548.7-534.7 88.1-719.4 55S4290-10 4002.8.3z' /%3E%3C/defs%3E%3Cg transform='translate(0 288)' %3E%3Cg transform='translate(-2500 200) scale(1 .4)' stroke='%23334953' stroke-width='1'%3E%3Cg%3E%3Cuse href='%23a' y='-100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='52s' begin='-17s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='-100' y='150'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' begin='-5s' dur='48.3s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='50' y='100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='44.7s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3Cuse href='%23a' x='100'%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' begin='-14s' dur='40.9s' values='0 4000 4000%3B360 4000 4000' %3E%3C/animateTransform%3E%3C/use%3E%3CanimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='45s' values='360 4000 4000%3B0 4000 4000'%3E%3C/animateTransform%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: top center;
}

html, body {
    margin: 0;
}

*:focus {
    outline: none;
}

.vh100 {
    height: 100vh;
    min-height: 101vh;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-height-lg {
    height: 60vh;
}

#maincontent h2:after, #maincontent h3:after, #maincontent h5:after {
    display: block;
    content: "";
    background: var(--color-accent);
    width: 40px;
    height: 4px;
    margin-top: 10px;
    margin-bottom: 1em;
}

.shadow-xxs {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.clippy {
    padding: 1em;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
    background: hsla(200deg, 21%, 21%, 0.4);
    box-shadow: rgba(0, 0, 0, 0.14) 0px 3px 8px;
}

.highlight {
    font-style: italic;
}

.border-1 {
    border-width: thin;
}

.login svg {
    display: inner-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -1px;
    width: 1rem;
    height: auto;
    fill: var(--color-accent-light);
}

.no-bg {
    background: linear-gradient(0deg, hsla(200deg, 21%, 21%, 0.4) 0%, hsla(200deg, 21%, 17%, 0.4) 50%, hsla(200deg, 21%, 25%, 0.4) 100%);
}

.bg-decoration-service {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-decoration-service__svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.bg-decoration-1 {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-decoration-1__svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 134%;
    min-width: 1280px;
    max-width: 1920px;
    height: auto;
}

.bg-decoration-3 {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-decoration-3__svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 134%;
    min-width: 1280px;
    max-width: 1920px;
    height: auto;
}

.bg-decoration-v2 {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-decoration-v2__svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 134%;
    min-width: 1280px;
    max-width: 1920px;
    height: auto;
}

/*---Feature Blocks ---*/
.feature-block {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 90px;
    z-index: 1;
}

.feature-block:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 512px;
    background-color: var(--color-primary);
    content: "";
    z-index: -1;
}

.feature-block .section-title__tagline {
    background-color: var(--color-primary);
}

.feature-block__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.feature-block__img {
    position: relative;
    display: flex;
    overflow: hidden;
}

.feature-block__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: hsla(200deg, 21%, 17%, 0.4);
    opacity: 1;
    transition: 0.5s;
    transform: perspective(100px) rotateX(-90deg) scale(0.2);
    transform-origin: top;
    z-index: 1;
}

.feature-block__single:hover .feature-block__img:before {
    opacity: 1;
    transform: perspective(100px) rotateX(0deg) scale(1);
}

.feature-block__img img {
    width: 100%;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
    /* Enable hardware acceleration to fix laggy transitions */
    transform: translateZ(0);
}

.feature-block__single:hover .feature-block__img img {
    transform: scale(1.1) rotate(2deg);
}

.feature-block__content {
    position: relative;
    display: block;
    background-color: var(--color-primary);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    padding: 30px 50px 41px 20px;
    margin-right: 40px;
    margin-top: -125px;
    z-index: 3;
}

.feature-block__content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #fff;
    transition-delay: 0.08s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.feature-block__single:hover .feature-block__content:before {
    transform: scaleY(1);
}

.feature-block__tagline {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    transition: all 0.5s ease;
    color: var(--color-success);
}

.feature-block__single:hover .feature-block__tagline {
    color: var(--color-primary);
}

.feature-block__title {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.5rem;
    margin-top: 4px;
}

.feature-block__title a {
    color: var(--color-white);
    transition: all 0.5s ease;
    text-decoration: none;
}

.feature-block__single:hover .feature-block__title a {
    color: var(--color-primary);
}

.feature-block__arrow {
    position: absolute;
    bottom: 40px;
    right: 70px;
    z-index: 4;
}

.feature-block__arrow a {
    position: relative;
    background-color: rgba(224, 243, 255, 0.355);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-accent);
    transition: all 0.5s ease;
    z-index: 1;
    width: 40px;
    height: 40px;
}

.feature-block__single:hover .feature-block__arrow a {
    background-color: rgba(173, 224, 255, 0.1);
}

.feature-block__arrow a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    border-radius: 4px;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.feature-block__single:hover:hover .feature-block__arrow a:before {
    transform: scaleX(1);
}

header {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.f-header__link.login {
    color: var(--color-accent-light);
}

.f-header__link.login:hover {
    color: white;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/*--- ScrollFade Specific ---*/
.scrollFade {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--hidden {
    opacity: 0;
    pointer-events: none;
}

.scrollFade--visible {
    opacity: 1;
    pointer-events: all;
}

.scrollFade--animate {
    transition: opacity 0.6s ease-in-out;
}

/*--- Fading Hero ---*/
.pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: fade 8s ease-in-out infinite;
    animation: fade 8s ease-in-out infinite;
}

#pic1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

#pic2 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

@-webkit-keyframes fade {
    0% {
        opacity: 1;
    }
    38% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    74% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    38% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    74% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*--- Service Boxes ---*/
.services-one__single {
    position: relative;
    background: #fff;
}

.services-one__single a {
    text-decoration: none;
}

.services-one__img {
    position: relative;
    display: flex;
    overflow: hidden;
}

.services-one__img, .services-one__img:before {
    z-index: 1;
}

.services-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: hsla(191deg, 21%, 16%, 0.2);
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
}

.services-one__single:hover .services-one__img:before {
    transform: scaleY(1);
}

.services-one__img img {
    width: 100%;
    height: auto;
    transition-delay: 0.1s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.7s;
    transition-property: all;
}

.services-one__single:hover .services-one__img img {
    transform: scale(1.1);
}

.services-one__content {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 20px;
    transition: all 0.5s ease;
    min-height: 320px;
}

.services-one__single:hover .services-one__content {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
}

.services-one__title-box {
    padding-bottom: 21px;
}

.services-one__title-box {
    position: relative;
    display: flex;
    align-items: center;
}

.services-one__title {
    font-weight: 600;
    line-height: 31px;
    margin-left: 0px;
}

.services-one__title a {
    color: var(color-primary-lighter);
    transition: all 0.5s ease;
    text-decoration: none;
}

.services-one__single:hover .services-one__title a {
    color: var(color-primary-lighter);
}

.services-one__text {
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.services-one__bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #dcdce0;
    padding-top: 20px;
    margin-top: 19px;
}

.services-one__read-more {
    font-size: 12px;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    transition: all 0.5s ease;
}

.services-one__single:hover .services-one__read-more {
    color: var(--color-primary);
}

.services-one__arrow {
    position: relative;
    height: 25px;
    width: 45px;
    background-color: var(--color-accent-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: black;
    transition: all 0.5s ease;
    z-index: 1;
}

.services-one__arrow i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.services-one__single:hover .services-one__arrow {
    color: white;
}

.services-one__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    background-color: var(--color-primary);
    border-radius: 15px;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.services-one__single:hover .services-one__arrow:before {
    transform: scaleX(1);
}

.advantages li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.advantages li.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-bg-white {
    background: #fff;
    color: #000;
}
.faq-bg-blue {
    background: #2e3192;
    color: #fff;
}
.faq-bg-branding {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

.faq-section {
    padding: 80px 0;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: opacity 0.25s ease;
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: 0;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    transform: none;
}

.faq-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(46 50 146);
    transition: width 0.35s ease;
    z-index: 1;
}

.faq-question:hover .faq-highlight,
.faq-item.active .faq-highlight {
    width: 100%;
}

.faq-question-text {
    position: relative;
    z-index: 3;
    color: #000;
    padding-right: 40px;
}

.faq-item.active .faq-question-text, .faq-item:hover .faq-question-text {
    color: #fff;
}

.faq-icon-img {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: auto;
    padding-right: 20px;
    background-image: url('https://www.ivfcouriers.com/wp-content/uploads/2025/09/news-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 3;
    transition: transform 0.25s ease;
    transform: rotate(270deg);
}

.faq-question[aria-expanded="true"] .faq-icon-img {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #a3c961;
}

.faq-answer-inner {
    padding: 15px 20px;
    color: #000;
    font-size: 1rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-accordion.dim-others .faq-item {
    opacity: 0.40;
}
.faq-accordion.dim-others .faq-item.active,
.faq-accordion.dim-others .faq-item:hover {
    opacity: 1;
}

.faq-heading {
    text-align: center;
    font: 700 28px/42px "montserrat", Arial, Helvetica, sans-serif;
    margin-bottom: 2rem;
    color: #2e3192;
}

.footer-icons {
    display: block;
    padding: 0.2em;
    max-width: 140px;
    height: auto;
    margin: 0.3em 0 0.3em 0;
}

.back-to-top {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    display: flex;
    position: fixed;
    right: var(--space-md);
    bottom: var(--space-md);
    z-index: var(--z-index-fixed-element, 10);
    border-radius: 50%;
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.9);
    transition: 0.2s;
}

.back-to-top:hover {
    background-color: var(--color-contrast-higher);
}

.back-to-top .icon {
    --size: 20px;
    display: block;
    margin: auto;
    color: var(--color-bg);
}

.back-to-top {
    visibility: hidden;
    opacity: 0;
}

.back-to-top--is-visible {
    visibility: visible;
    opacity: 1;
}

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

File#: _1_bg-gradients
Title: Background Gradients
Descr: Customizable background gradients
Usage: codyhouse.co/license

-------------------------------- */
.bg-gradient-1, .bg-gradient-2, .bg-gradient-3, .bg-gradient-4, .bg-gradient-5 {
    background-repeat: no-repeat;
    background-position: center;
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-1[data-bg-animate=on], .bg-gradient-2[data-bg-animate=on], .bg-gradient-3[data-bg-animate=on], .bg-gradient-4[data-bg-animate=on], .bg-gradient-5[data-bg-animate=on] {
        will-change: background-position;
    }
}

.bg-gradient-1 {
    background-color: #1f343f;
    background-image: radial-gradient(ellipse at 90% 30%, #1f343f 20%, rgba(31, 52, 63, 0) 50%), radial-gradient(ellipse at 70% 0%, #2a3c45 0%, rgba(42, 60, 69, 0) 50%), radial-gradient(ellipse at 20% 10%, #30525a 10%, rgba(48, 82, 90, 0) 70%), radial-gradient(ellipse at 50% 100%, #2a3c45 0%, rgba(42, 60, 69, 0) 50%);
    background-size: 200% 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-1[data-bg-animate=on] {
        background-size: 400% 200%;
        background-position: 0% 0%;
        -webkit-animation: bg-gradient-anim-1 30s linear infinite;
        animation: bg-gradient-anim-1 30s linear infinite;
    }
}

@-webkit-keyframes bg-gradient-anim-1 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 100% 0%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes bg-gradient-anim-1 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 100% 0%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.bg-gradient-2 {
    background-color: #1f343f;
    background-image: radial-gradient(ellipse at 10% 20%, #2a3c45 0%, rgba(42, 60, 69, 0) 40%), radial-gradient(ellipse at 50% 0%, #1f343f 25%, rgba(31, 52, 63, 0) 75%), radial-gradient(ellipse at 100% 100%, #30525a 35%, rgba(48, 82, 90, 0) 70%), radial-gradient(ellipse at 50% 100%, #1f343f 20%, rgba(31, 52, 63, 0) 70%);
    background-size: 120% 200%;
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-2[data-bg-animate=on] {
        background-size: 240% 400%;
        background-position: 0% 0%;
        -webkit-animation: bg-gradient-anim-2 30s linear infinite;
        animation: bg-gradient-anim-2 30s linear infinite;
    }
}

@-webkit-keyframes bg-gradient-anim-2 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 100% 0%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes bg-gradient-anim-2 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 100% 0%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.bg-gradient-3 {
    background-color: #1f343f;
    background-image: radial-gradient(ellipse at 25% 90%, #2a3c45 10%, rgba(42, 60, 69, 0) 70%), radial-gradient(ellipse at 55% 90%, #2a3c45 0%, rgba(42, 60, 69, 0) 70%), radial-gradient(ellipse at 100% 100%, #30525a 5%, rgba(48, 82, 90, 0) 60%), radial-gradient(ellipse at 0% 0%, #2a3c45 15%, rgba(42, 60, 69, 0) 50%), radial-gradient(ellipse at 100% 0%, #2a3c45 30%, rgba(42, 60, 69, 0) 70%);
    background-size: 100% 140%;
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-3[data-bg-animate=on] {
        background-size: 200% 280%;
        background-position: 50% 0%;
        -webkit-animation: bg-gradient-anim-3 30s linear infinite;
        animation: bg-gradient-anim-3 30s linear infinite;
    }
}

@-webkit-keyframes bg-gradient-anim-3 {
    0%, 100% {
        background-position: 0% 0%;
    }
    33% {
        background-position: 100% 0%;
    }
    66% {
        background-position: 100% 100%;
    }
}

@keyframes bg-gradient-anim-3 {
    0%, 100% {
        background-position: 0% 0%;
    }
    33% {
        background-position: 100% 0%;
    }
    66% {
        background-position: 100% 100%;
    }
}

.bg-gradient-4 {
    background-color: #1f343f;
    background-image: radial-gradient(ellipse at 70% 0%, #2a3c45 0%, rgba(42, 60, 69, 0) 30%), radial-gradient(circle at 90% 0%, #30525a 0%, rgba(48, 82, 90, 0) 30%), radial-gradient(ellipse at 0% 0%, #2a3c45 0%, rgba(42, 60, 69, 0) 40%), radial-gradient(circle at 30% 100%, #2a3c45 0%, rgba(42, 60, 69, 0) 40%), radial-gradient(ellipse at 10% 100%, #30525a 0%, rgba(48, 82, 90, 0) 40%), radial-gradient(ellipse at 100% 100%, #2a3c45 0%, rgba(42, 60, 69, 0) 40%);
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-4[data-bg-animate=on] {
        background-size: 200% 200%;
        background-position: 0% 0%;
        -webkit-animation: bg-gradient-anim-4 30s linear infinite;
        animation: bg-gradient-anim-4 30s linear infinite;
    }
}

@-webkit-keyframes bg-gradient-anim-4 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes bg-gradient-anim-4 {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.bg-gradient-5 {
    background-color: #1f343f;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(42, 60, 69, 0.35) 0%, rgba(42, 60, 69, 0) 30%), radial-gradient(ellipse at 100% 0%, rgba(48, 82, 90, 0.32) 0%, rgba(48, 82, 90, 0) 60%);
    background-size: 200% 100%;
}

@media (prefers-reduced-motion: no-preference) {
    .bg-gradient-5[data-bg-animate=on] {
        background-size: 400% 200%;
        background-position: 0% 0%;
        -webkit-animation: bg-gradient-anim-5 20s linear infinite;
        animation: bg-gradient-anim-5 20s linear infinite;
    }
}

@-webkit-keyframes bg-gradient-anim-5 {
    0%, 100% {
        background-position: 0% 0%;
    }
    40%, 60% {
        background-position: 100% 0%;
    }
}

@keyframes bg-gradient-anim-5 {
    0%, 100% {
        background-position: 0% 0%;
    }
    40%, 60% {
        background-position: 100% 0%;
    }
}

.card-v11 {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    height: var(--card-v11-height);
    background-color: var(--color-contrast-lower);
    background-size: cover;
    background-repeat: no-repeat;
}

.card-v11:hover .card-v11__btn {
    background-color: var(--color-bg);
    color: var(--color-contrast-higher);
}

.card-v11:hover .card-v11__icon line:nth-child(1),
.card-v11:hover .card-v11__icon line:nth-child(2) {
    opacity: 1;
    transform: rotate(0deg);
    transition: opacity 0s 0.2s, transform 0.2s 0.2s var(--ease-in-out);
}

.card-v11:hover .card-v11__icon line:nth-child(3) {
    stroke-dashoffset: 96;
    transition: stroke-dashoffset 0.2s var(--ease-in-out);
}

.card-v11__box {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.95);
    color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .card-v11__box {
        background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.7);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

.card-v11__btn {
    display: flex;
    align-items: center;
    height: var(--card-v11-btn-height);
    transition: 0.4s;
}

.card-v11__icon {
    font-size: 48px;
}

.card-v11__icon line:nth-child(1),
.card-v11__icon line:nth-child(2) {
    transform-origin: 47px 24px;
    opacity: 0;
    transition: opacity 0s 0.2s, transform 0.2s var(--ease-in-out);
}

.card-v11__icon line:nth-child(1) {
    transform: rotate(-45deg);
}

.card-v11__icon line:nth-child(2) {
    transform: rotate(45deg);
}

.card-v11__icon line:nth-child(3) {
    stroke-dasharray: 48;
    stroke-dashoffset: 72;
    transition: stroke-dashoffset 0.2s 0.2s var(--ease-in-out);
}

.width-p {
    line-height: 1.5;
}

@media (min-width: 48rem) {
    .width-p {
        width: 50%;
    }
}

.card-news {
    display: block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: inherit;
    background-color: var(--color-contrast-lower);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.card-news:hover {
    box-shadow: var(--shadow-md);
}

.card-news__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.card-news__btn {
    position: relative;
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.card-news__btn i {
    position: relative;
    z-index: 2;
    color: var(--color-bg);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-news__btn::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.8);
    opacity: 0;
    transform: translateY(25%);
    transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.card-news:hover .card-news__btn i {
    opacity: 1;
}

.card-news:hover .card-news__btn::after {
    opacity: 1;
    transform: translateY(0);
}

.card-news--overlay-bg::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(var(--color-accent-darker-h), var(--color-accent-darker-s), var(--color-accent-darker-l), 0.5);
    transition: background-color 0.3s;
}

.card-news--overlay-bg:hover::before {
    background-color: hsla(var(--color-accent-dark-h), var(--color-accent-dark-s), var(--color-accent-dark-l), 0.4);
}

.details-list--rows .details-list__item {
    border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}

.details-list--rows .details-list__item:last-child {
    border-bottom: none;
}

.details-list--cols .details-list__item {
    border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
}

.details-list--cols .details-list__item:last-child {
    border-right: none;
}

@media (min-width: 32rem) {
    .details-list--rows\@xs .details-list__item {
        border-right: 0;
        border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--rows\@xs .details-list__item:last-child {
        border-bottom: none;
    }

    .details-list--cols\@xs .details-list__item {
        border-bottom: 0;
        border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--cols\@xs .details-list__item:last-child {
        border-right: none;
    }
}

@media (min-width: 48rem) {
    .details-list--rows\@sm .details-list__item {
        border-right: 0;
        border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--rows\@sm .details-list__item:last-child {
        border-bottom: none;
    }

    .details-list--cols\@sm .details-list__item {
        border-bottom: 0;
        border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--cols\@sm .details-list__item:last-child {
        border-right: none;
    }
}

@media (min-width: 64rem) {
    .details-list--rows\@md .details-list__item {
        border-right: 0;
        border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--rows\@md .details-list__item:last-child {
        border-bottom: none;
    }

    .details-list--cols\@md .details-list__item {
        border-bottom: 0;
        border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--cols\@md .details-list__item:last-child {
        border-right: none;
    }
}

@media (min-width: 80rem) {
    .details-list--rows\@lg .details-list__item {
        border-right: 0;
        border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--rows\@lg .details-list__item:last-child {
        border-bottom: none;
    }

    .details-list--cols\@lg .details-list__item {
        border-bottom: 0;
        border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--cols\@lg .details-list__item:last-child {
        border-right: none;
    }
}

@media (min-width: 90rem) {
    .details-list--rows\@xl .details-list__item {
        border-right: 0;
        border-bottom: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--rows\@xl .details-list__item:last-child {
        border-bottom: none;
    }

    .details-list--cols\@xl .details-list__item {
        border-bottom: 0;
        border-right: var(--details-list-border-width) solid hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), var(--details-list-border-opacity));
    }

    .details-list--cols\@xl .details-list__item:last-child {
        border-right: none;
    }
}

.footer {
    position: relative;
    z-index: 1;
}

.footer__link {
    color: var(--color-contrast-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--color-accent-light);
    text-decoration: none;
}

.footer__link-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    color: var(--color-contrast-medium);
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.1);
    border-radius: 50%;
    transition: 0.2s;
}

.footer__link-icon .icon {
    font-size: 16px;
    margin: auto;
}

.footer__link:hover .footer__link-icon {
    background-color: var(--color-accent-darker);
    color: var(--color-primary);
}

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

File#: _1_google-maps
Title: Google Maps
Descr: Google Maps component
Usage: codyhouse.co/license

-------------------------------- */
.google-maps {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.google-maps--ratio-4\:1 {
    padding-bottom: 25%;
}

.google-maps--ratio-3\:1 {
    padding-bottom: 33%;
}

.text-component ul.list-0 {
    margin-left: 0;
}

.text-component li.border-none {
    border: 0;
}

.text-component {
    padding-left: 0;
    list-style: circle;
}

.text-component ul, .text-component ol {
    list-style: none;
    margin: 0 1em 0 1em;
    margin-top: calc(var(--list-space-y) * 3 * var(--text-space-y-multiplier, 1));
    margin-bottom: calc(var(--list-space-y) * 7 * var(--text-space-y-multiplier, 1));
    padding-top: calc(var(--list-space-y) * 3 * var(--text-space-y-multiplier, 1));
    padding-right: var(--list-offset);
}

.text-component li {
    padding-bottom: calc(var(--list-space-y) * 2 * var(--text-space-y-multiplier, 1));
    margin-bottom: calc(var(--list-space-y) * 2 * var(--text-space-y-multiplier, 1));
    line-height: calc(var(--body-line-height) * var(--list-line-height-multiplier));
    border-bottom: 1px solid #eee;
}

/* #region (ul + ol) */
.text-component ul,
.text-component ol {
    --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}

.text-component ul ul, .text-component ul ol,
.text-component ol ul,
.text-component ol ol {
    padding-left: 0;
}

.text-component ul li,
.text-component ol li {
    padding-left: var(--list-offset);
}

.text-component ul li::before,
.text-component ol li::before {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: var(--list-bullet-size);
    height: var(--list-bullet-size);
    vertical-align: middle;
    position: relative;
    top: -0.1em;
    left: calc(var(--list-bullet-margin-right) * -1);
    margin-left: calc(var(--list-bullet-size) * -1);
}

.text-component ul {
    --list-bullet-size: 7px;
    --list-bullet-margin-right: 12px;
}

.text-component ul > li::before {
    content: "";
    border-radius: 50%;
    color: hsla(var(--color-success-darker-h), var(--color-success-darker-s), var(--color-success-darker-l), 0.7);
    background-color: currentColor;
}

.text-component ul ul li::before {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px currentColor;
}

.text-component ol {
    --list-bullet-size: 26px;
    --list-bullet-margin-right: 6px;
    --list-bullet-font-size: 14px;
    counter-reset: list-items;
}

.text-component ol > li {
    counter-increment: list-items;
}

.text-component ol ol {
    counter-reset: list-items;
}

.text-component ol > li::before {
    content: counter(list-items);
    font-size: var(--list-bullet-font-size, 14px);
    background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
    color: var(--color-contrast-higher);
    line-height: 1;
    border-radius: 50%;
}

.text-component ol ol > li::before {
    background-color: transparent;
    box-shadow: inset 0 0 0 2px hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
}

/* #endregion */
/* #region (border) */
.list--border li:not(:last-child), .text-component .list--border li:not(:last-child) {
    border-bottom: 1px solid var(--color-contrast-lower);
}

.list--border ul, .list--border ol, .text-component .list--border ul, .text-component .list--border ol {
    border-top: 1px solid var(--color-contrast-lower);
}

/* #endregion */
/* #region (icons) */
.list--icons, .text-component .list--icons {
    --list-bullet-size: 24px;
    --list-bullet-margin-right: 8px;
    --list-offset: calc(var(--list-bullet-size) + var(--list-bullet-margin-right));
}

.list--icons ul, .list--icons ol, .text-component .list--icons ul, .text-component .list--icons ol {
    padding-left: var(--list-offset);
}

.list__icon {
    position: relative;
    width: var(--list-bullet-size);
    height: var(--list-bullet-size);
    margin-right: var(--list-bullet-margin-right);
}

.list__icon:not(.top-0) {
    top: calc((1em * var(--body-line-height) * var(--list-line-height-multiplier) - var(--list-bullet-size)) / 2);
}

/* #endregion */
.sidenav-v2::after {
    content: "";
    display: table;
    clear: both;
}

.sidenav-v2__control {
    width: 100%;
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidenav-v2__control-text {
    position: relative;
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
}

.sidenav-v2__control-text > * {
    display: inline-block;
    transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.sidenav-v2__control-text > *:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.sidenav-v2__icon-arrow .icon__group {
    will-change: transform;
    transform-origin: 8px 8px;
    transition: transform 0.3s var(--ease-out);
}

.sidenav-v2__icon-arrow .icon__group > * {
    transform-origin: 8px 8px;
    stroke-dasharray: 17;
    transform: translateY(3px);
    transition: transform 0.3s, stroke-dashoffset 0.3s;
    transition-timing-function: var(--ease-out);
}

.sidenav-v2__icon-arrow .icon__group > *:first-child {
    stroke-dashoffset: 8.5;
}

.sidenav-v2__icon-arrow .icon__group > *:last-child {
    stroke-dashoffset: 8.5;
}

.sidenav-v2__list:not(:last-child) {
    margin-bottom: var(--space-md);
}

.sidenav-v2__label {
    margin-bottom: var(--space-xs);
}

.sidenav-v2__label > * {
    color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1);
    font-size: var(--text-md);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.sidenav-v2__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary);
    transition: 0.2s;
    background-color: hsla(var(--color-success-lighter-h), var(--color-success-lighter-s), var(--color-success-lighter-l), 1);
}

.sidenav-v2__link:hover {
    background-color: hsla(var(--color-success-h), var(--color-success-s), var(--color-success-l), 0.2);
    color: var(--color-primary);
}

.sidenav-v2__link-text {
    margin-right: var(--space-xxxs);
    font-size: var(--text-sm);
}

.sidenav-v2:not(.sidenav-v2--static) {
    border-radius: var(--radius-sm);
    background-color: hsla(var(--color-success-light-h), var(--color-success-light-s), var(--color-success-light-l), 0.5);
    transition: 0.3s;
    color: var(--color-black);
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__link {
    background-color: hsla(var(--color-success-light-h), var(--color-success-light-s), var(--color-success-light-l), 0.3);
    color: var(--color-black);
    border-top: 1px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.02);
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__link:hover {
    background-color: hsla(var(--color-success-light-h), var(--color-success-light-s), var(--color-success-light-l), 0.5);
    color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.7);
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__nav {
    display: none;
    margin: 0;
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__label {
    padding-left: var(--space-sm);
    color: var(--color-black);
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__link-text {
    font-size: 1rem;
}

.sidenav-v2:not(.sidenav-v2--static) .sidenav-v2__link {
    padding: var(--space-md) var(--space-md);
}

.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__control-text > *:first-child {
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
}

.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__control-text > *:last-child {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__nav {
    display: block;
    -webkit-animation: sidenav-v2-entry-animation 0.4s var(--ease-out);
    animation: sidenav-v2-entry-animation 0.4s var(--ease-out);
}

.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group {
    transform: rotate(-90deg);
}

.sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group > *:first-child, .sidenav-v2:not(.sidenav-v2--static).sidenav-v2--expanded .sidenav-v2__icon-arrow .icon__group *:last-child {
    stroke-dashoffset: 0;
    transform: translateY(0px);
}

.sidenav-v2--static .sidenav-v2__control {
    display: none;
}

.sidenav-v2--static .sidenav-v2__link {
    padding: var(--space-sm) var(--space-sm);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.sidenav-v2--static .sidenav-v2__link[aria-current=page] {
    box-shadow: var(--shadow-sm);
}

.sidenav-v2--static .sidenav-v2__link-text {
    font-size: 0.8rem;
}

@-webkit-keyframes sidenav-v2-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes sidenav-v2-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

[class*=sidenav-v2--static]::before {
    display: none;
    content: "collapsed";
}

@media (min-width: 32rem) {
    .sidenav-v2--static\@xs::before {
        content: "static";
    }
}

@media (min-width: 48rem) {
    .sidenav-v2--static\@sm::before {
        content: "static";
    }
}

@media (min-width: 64rem) {
    .sidenav-v2--static\@md::before {
        content: "static";
    }
}

@media (min-width: 80rem) {
    .sidenav-v2--static\@lg::before {
        content: "static";
    }
}

@media (min-width: 90rem) {
    .sidenav-v2--static\@xl::before {
        content: "static";
    }
}

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

File#: _1_testimonial
Title: Testimonial
Descr: A testimonial quote
Usage: codyhouse.co/license

-------------------------------- */
.testimonial__block-wrapper {
    position: relative;
}

.testimonial__block-wrapper blockquote {
    position: relative;
    z-index: 1;
}

.testimonial__block-wrapper .icon {
    position: absolute;
    top: -0.5em;
    left: -0.5em;
}

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

File#: _1_text-divider
Title: Text divider
Descr: Labelled horizontal divider for text components
Usage: codyhouse.co/license

-------------------------------- */
.text-divider {
    margin: var(--space-lg) auto;
    display: flex;
    text-align: center;
    align-items: center;
}

.text-divider span {
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 var(--space-sm);
}

.text-divider::before, .text-divider::after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 20px;
    flex-grow: 1;
    background: var(--color-contrast-lower);
    vertical-align: middle;
}

.text-component .text-divider {
    margin: calc(var(--space-md) * var(--text-space-y-multiplier)) auto;
}

.user-cell {
    --space-unit: 1.6rem;
    font-size: 1rem;
    border: 1px solid #eee;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
}

.user-cell a {
    text-decoration: none;
}

.user-cell:hover {
    background: hsla(var(--color-success-lighter-h), var(--color-success-lighter-s), var(--color-success-lighter-l), 0.5);
    transition: 0.2s;
}

.user-cell__img {
    display: block;
    border-radius: 50%;
    width: var(--user-cell-img-size);
    height: var(--user-cell-img-size);
    margin-bottom: var(--space-sm);
}

.user-cell__content {
    margin-bottom: var(--space-sm);
}

@supports (grid-area: auto) {
    .user-cell {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        grid-gap: var(--space-xxs);
    }

    .user-cell__body {
        display: grid;
        grid-template-columns: var(--user-cell-img-size) 1fr;
        align-items: center;
        grid-gap: var(--space-xs);
    }

    .user-cell__img,
    .user-cell__content {
        margin-bottom: 0;
    }
}

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

File#: _2_contact-v2
Title: Contact v2
Descr: Contact block w/ info about how to get in touch
Usage: codyhouse.co/license

-------------------------------- */
.f-header {
    height: var(--f-header-height);
    width: 100%;
    z-index: var(--z-index-header, 3);
}

.f-header::before { /* used in JS to detect menu style */
    display: none;
    content: "mobile";
}

.f-header--expanded {
    /* class added when navigation is visible - small devices only */
}

.f-header__mobile-content { /* logo + menu button on small devices */
    position: relative;
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.f-header__logo {
    display: block;
    width: var(--f-header-logo-width);
    flex-shrink: 0;
    text-decoration: none;
    margin: -12px 0 0 0;
}

.f-header__logo svg, .f-header__logo img {
    display: block;
}

.f-header__nav-control { /* menu button */
    --anim-menu-btn-size: 40px;
    --anim-menu-btn-icon-size: 28px;
    --anim-menu-btn-icon-stroke: 2px;
}

.f-header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--f-header-offset, 0px));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 0 0 var(--space-md);
    background-color: var(--color-bg-dark);
    box-shadow: var(--shadow-md);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1em);
}

.f-header__nav::before { /* top header bg + border */
    content: "";
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: var(--f-header-height);
    background-color: inherit;
    border-bottom: 1px solid hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.2);
}

.f-header__nav--is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: visibility 0s, opacity 0.4s, transform 0.5s;
    height: 100vh;
}

.f-header__nav-logo-wrapper {
    display: none; /* hide logo nav on small devices */
}

.f-header__item {
    flex-shrink: 0;
    padding: var(--space-md) 0 var(--space-md) 0;
    border-bottom: 1px solid hsla(var(--color-contrast-lower-h), var(--color-contrast-lower-s), var(--color-contrast-lower-l), 0.2);
}

.f-header__dropdown-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
    margin: 0 10px 0 auto;
    display: none; /* hide on mobile if link */
}

.f-header__dropdown-control .f-header__dropdown-icon {
    display: block;
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link,
.f-header__btn,
.f-header__form-control {
    font-size: 1.025rem;
    text-transform: capitalize;
    cursor: pointer;
}

.f-header__link,
.f-header__dropdown-control,
.f-header__dropdown-link {
    display: flex;
    align-items: center;
    color: var(--color-contrast-higher);
    text-decoration: none;
    padding: var(--space-xs) 0 var(--space-xs) 0;
    cursor: pointer;
}

.f-header__link:hover, .f-header__link[aria-current=page],
.f-header__dropdown-control:hover,
.f-header__dropdown-control[aria-current=page],
.f-header__dropdown-link:hover,
.f-header__dropdown-link[aria-current=page] {
    color: var(--color-accent);
}

.f-header__form-control {
    width: 100%;
    margin: var(--space-xs) 0;
}

.f-header__dropdown-control {
    width: 100%;
}

.f-header__dropdown { /* sub navigation */
    padding-left: var(--space-xs); /* offset sub nav */
}

.f-header__dropdown-control + .f-header__dropdown {
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
    opacity: 1;
    height: auto;
}

@media (min-width: 64rem) {
    .f-header::before {
        content: "desktop";
    }

    .f-header__mobile-content {
        display: none; /* hide logo + menu (mobile content) */
    }

    .f-header__nav {
        /* reset */
        position: static;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition: none;
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
        height: var(--f-header-height);
    }

    .f-header__nav::before { /* reset */
        display: none;
    }

    .f-header__nav-logo-wrapper {
        display: flex;
    }

    .f-header__nav-grid,
    .f-header__list {
        display: flex;
        align-items: center;
    }

    .f-header__nav-grid {
        height: 100%;
    }

    .f-header__item {
        position: relative;
        border-bottom: 0;
        padding: var(--space-sm); /* padding between nav items */
    }

    .f-header__item:last-child {
        padding-right: 0;
        padding-left: var(--space-md);
        border-right: 0;
    }

    .f-header__dropdown-icon {
        --size: 0.6rem;
        display: block;
        margin: 0 0 0 var(--space-xxxs);
    }

    .f-header__link,
    .f-header__dropdown-control,
    .f-header__btn,
    .f-header__form-control {
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.025rem;
    }

    .f-header__dropdown-link {
        text-transform: capitalize;
        letter-spacing: 0;
        font-size: 0.786rem;
        font-weight: 500;
    }

    .f-header__link {
        padding: var(--space-xxxs) var(--space-xxs);
    }

    .f-header__link--icon span {
        display: none; /* hide icon label */
    }

    .f-header__btn,
    .f-header__form-control {
        margin: 0; /* reset */
        letter-spacing: 0;
        font-weight: 700;
    }

    .f-header__btn {
        max-width: 300px;
    }

    .f-header__dropdown {
        position: absolute;
        top: 90%;
        width: 260px;
        left: calc(55% - 60px);
        padding: 0;
        box-shadow: var(--inner-glow), var(--shadow-lg);
        z-index: var(--z-index-popover, 5);
        /* hide */
        pointer-events: none;
        visibility: hidden;
        opacity: 0;
        transition: all 0.6s ease-in-out;
    }

    .f-header__dropdown-control + .f-header__dropdown {
        display: block; /* reset style */
    }

    .f-header__item:hover .f-header__dropdown, .f-header__dropdown-control[aria-expanded=true] + .f-header__dropdown {
        pointer-events: auto;
        height: auto;
        overflow: visible;
        visibility: visible;
        opacity: 1;
        transition: all 0.6s ease-in-out;
    }

    .f-header__dropdown {
        background-color: hsl(197deg, 41%, 17%);
    }

    .f-header__dropdown-link {
        color: var(--color-contrast-high);
        padding: var(--space-xs) var(--space-sm);
        transition: 0.2s;
        line-height: 1.45;
    }

    .f-header__dropdown-link:hover {
        background-color: hsla(var(--color-contrast-higher-h), var(--color-contrast-higher-s), var(--color-contrast-higher-l), 0.075);
        color: var(--color-accent);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.site-header__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__logo img {
    height: 110px;
    width: auto;
    display: block;
}

/* Menu layout */
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav .menu {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.site-nav .menu > li {
    position: relative;
}

.site-nav a {
    color: #e7eef3;
    text-decoration: none;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Plus indicator for parents */
.menu-item-has-children > a::after {
    content: "+";
    font-weight: 700;
    opacity: .75;
    transform: translateY(-1px);
}

/* Dropdown */
.site-nav .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    padding: 8px 0;
    margin-top: 10px;
    background: rgba(28, 40, 46, .98);
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    display: none;
}

.site-nav .sub-menu li {
    white-space: nowrap;
}

.site-nav .sub-menu a {
    display: block;
    padding: 10px 14px;
    text-transform: none;
    letter-spacing: 0;
    font-size: .82rem;
    color: #dde6eb;
}

.site-nav .sub-menu a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

/* Show on hover (desktop) */
@media (hover: hover) {
    .site-nav .menu > li:hover > .sub-menu {
        display: block;
    }
}

/* CTA button */
.header-cta {
    margin-left: 10px;
    padding: 8px 12px;
    border-radius: 16px;
    background: #f0a64a;
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .64rem;
    letter-spacing: .06rem;
}

.header-cta:hover {
    background: #ffbb69;
    color: #111;
}

/* Burger (mobile) */
.nav-toggle {
    display: none;
    position: relative;
    width: 38px;
    height: 30px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #e7eef3;
    border-radius: 2px;
}

.nav-toggle__bar {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle__bar::before {
    top: -9px;
}

.nav-toggle__bar::after {
    top: 9px;
}

/* Mobile menu */
@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 64px 0 auto 0;
        background: rgba(23, 32, 37, .98);
        border-top: 1px solid rgba(255, 255, 255, .06);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 14px;
        gap: 8px;
        transform: translateY(-120%);
        transition: transform .3s ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
    }

    .site-nav .menu {
        flex-direction: column;
        gap: 0;
    }

    .site-nav .menu > li > a {
        padding: 12px 6px;
    }

    .site-nav .sub-menu {
        position: static;
        display: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        margin: 0;
        padding: 0 0 8px;
    }

    .site-nav .menu > li.open > .sub-menu {
        display: block;
    }

    .menu-item-has-children > a::after {
        content: "▾";
        transform: none;
    }

    .header-cta {
        align-self: flex-start;
    }
}

/* ===== BSRB-style header & menus ===== */
:root {
    --hdr-h: 74px;
    --hdr-bg: rgba(31, 52, 63, .55); /* teal/ink tint over video */
    --hdr-bg-scrolled: rgba(31, 52, 63, .85);
    --drop-bg: #16313a; /* dropdown panel */
    --ink: #e6edf0;
    --ink-dim: #a9b7bf;
    --accent: #f0a443; /* button accent (login) */
}

.f-header { /* your header wrapper */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--hdr-h);
    z-index: 50;
    background: var(--hdr-bg);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .35s ease, border-color .35s ease;
}

.f-header.is-scrolled {
    background: var(--hdr-bg-scrolled);
    border-bottom-color: rgba(255, 255, 255, .12);
}

.f-header .f-header__nav-grid,
.f-header .f-header__list {
    align-items: center;
}

.f-header .f-header__link,
.f-header .menu_link {
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
    font-size: .72rem;
    padding: .45rem .65rem;
    transition: color .2s ease, opacity .2s ease, background .2s ease;
}

.f-header .f-header__link:hover,
.f-header .menu_link:hover {
    color: #fff;
}

.menu_item--highlight > .menu_link {
    background: var(--accent);
    color: #111;
    border-radius: 999px;
    padding: .45rem .85rem;
}

.menu_item--highlight > .menu_link:hover {
    filter: brightness(1.03);
}

/* top-level items row */
ul.menu, .f-header .f-header__list {
    display: flex;
    gap: .25rem;
}

/* caret button for ACF nav (mobile + a11y) */
.submenu_toggle {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    margin-left: .25rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    position: relative;
    cursor: pointer;
}

.submenu_toggle::before, .submenu_toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

.submenu_toggle::after {
    transform: rotate(90deg);
}

.menu_item--open > .submenu_toggle::after {
    transform: rotate(0deg);
}

/* dropdown panel */
.sub_menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    background: var(--drop-bg);
    color: var(--ink);
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, .35), 0 1px 0 rgba(255, 255, 255, .03) inset;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .24s ease, transform .24s ease, visibility 0s .24s;
}

.menu_item {
    position: relative;
}

.menu_item--open > .sub_menu,
.menu_item:hover > .sub_menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.sub_menu_item + .sub_menu_item {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.sub_menu_link {
    display: block;
    padding: 11px 16px 12px 16px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.3;
}

.sub_menu_link:hover {
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

.sub_menu_label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
}

.sub_menu_desc {
    display: block;
    font-size: .78rem;
    color: var(--ink-dim);
    margin-top: 2px;
}

/* keyboard focus ring */
.menu_link:focus, .sub_menu_link:focus, .submenu_toggle:focus {
    outline: 2px solid rgba(255, 255, 255, .35);
    outline-offset: 2px;
}

/* small screens: dropdowns stack, no absolute */
@media (max-width: 63.99rem) {
    .sub_menu {
        position: static;
        margin: .25rem 0 .5rem;
        box-shadow: none;
        border-radius: 4px;
        background: rgba(22, 49, 58, .8);
        transform: none;
        opacity: 1;
        visibility: visible; /* visibility is toggled with [hidden] in JS */
    }

    .sub_menu[hidden] {
        display: none;
    }
}

:root {
    --hdr-h: 74px;
    --hdr-bg: rgba(31, 52, 63, .55);
    --hdr-bg-scrolled: rgba(31, 52, 63, .85);
    --drop-bg: #16313a;
    --ink: #e6edf0;
    --ink-dim: #a9b7bf;
    --accent: #f0a443;
}

/* sticky/blur header – match whatever your header element is */
header, .site-header, .header, .f-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .35s ease, border-color .35s ease;
}

/* primary nav base */
#primary-menu.site-nav {
    display: flex;
    align-items: center;
    height: var(--hdr-h);
}

#primary-menu .menu {
    display: flex;
    gap: .25rem;
    align-items: center;
}

#primary-menu .menu > .menu-item > a {
    color: #2e3192;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease, background .2s ease;
    text-transform: uppercase;
}

#primary-menu .menu > .menu-item > a:hover {
    color: #ec008c;
}

#primary-menu .menu > .menu-item.highlight > a {
    background: var(--accent);
    color: #111;
    border-radius: 999px;
    padding: .45rem .85rem;
}

#primary-menu .menu > .menu-item {
    position: relative;
}

#primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 280px;
    background: var(--drop-bg);
    color: var(--ink);
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, .35), 0 1px 0 rgba(255, 255, 255, .03) inset;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .24s ease, transform .24s ease, visibility 0s .24s;
}

#primary-menu .menu-item:hover > .sub-menu,
#primary-menu .menu-item:focus-within > .sub-menu,
#primary-menu .menu-item.menu-item--open > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

#primary-menu .sub-menu .menu-item + .menu-item {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

#primary-menu .sub-menu a {
    display: block;
    padding: 11px 16px 12px;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.3;
}

#primary-menu .sub-menu a:hover {
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

/* keyboard focus ring */
#primary-menu a:focus, #primary-menu button.submenu-toggle:focus {
    outline: 2px solid rgba(255, 255, 255, .35);
    outline-offset: 2px;
}

/* caret toggle (injected by JS for mobile) */
#primary-menu .submenu-toggle {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    margin-left: .25rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    position: relative;
    cursor: pointer;
    display: none; /* hidden on desktop */
}

#primary-menu .submenu-toggle::before,
#primary-menu .submenu-toggle::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 12px;
    height: 2px;
    background: currentColor;
    transition: transform .25s ease, opacity .25s ease;
}

#primary-menu .submenu-toggle::after {
    transform: rotate(90deg);
}

#primary-menu .menu-item.menu-item--open > .submenu-toggle::after {
    transform: rotate(0deg);
}

/* mobile behaviour */
@media (max-width: 64rem) {
    #primary-menu .submenu-toggle {
        display: inline-block;
    }

    #primary-menu .sub-menu {
        position: static;
        margin: .25rem 0 .5rem;
        box-shadow: none;
        border-radius: 4px;
        background: rgba(22, 49, 58, .8);
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    #primary-menu .sub-menu[hidden] {
        display: none;
    }

    /* JS toggles this */
}

/* === BSRB-style header & menu === */
:root {
    --hdr-bg: rgba(24, 38, 47, .55); /* translucency like BSRB */
    --hdr-bg-scrolled: rgba(24, 38, 47, .75);
    --hdr-border: rgba(255, 255, 255, .08);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 2px solid #90bceb;
}

body.home .site-header {
    background: #fff;
}

.site-header.scrolled {
    background: var(--hdr-bg-scrolled);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* logo left, nav right */
.site-logo {
    display: block;
    line-height: 0;
}

#primary-menu {
    margin-left: auto;
}

#primary-menu .menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

    #primary-menu .menu {
        gap: 12px;
    }

    #primary-menu .menu > .menu-item > a {
        font: 500 15px/22px "montserrat", Arial, Helvetica, sans-serif;
        padding: .40rem 0;
    }

}

@media (min-width: 1441px) {

    #primary-menu .menu {
        gap: 22px;
    }

    #primary-menu .menu > .menu-item > a {
        font: 500 18px/22px "montserrat", Arial, Helvetica, sans-serif;
        padding: .80rem 0;
    }

}

#primary-menu .menu > li {
    position: relative;
}

#primary-menu .menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
    color: #ec008c;
    transition: color .15s ease;
}

#primary-menu .menu > li > a:hover,
#primary-menu .menu > li.current-menu-item > a {
    color: #ec008c;
}

/* small “+” indicator on parents (rotates on open) */
#primary-menu .menu > li.menu-item-has-children > a::after {
    content: "+";
    opacity: .6;
    font-weight: 700;
    font-size: .75em;
    transition: transform .2s ease, opacity .2s ease;
}

#primary-menu .menu > li.is-open > a::after {
    transform: rotate(45deg);
    opacity: .9;
}

/* keep hover while traveling from parent to submenu */
#primary-menu .menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

/* dropdown panel */
#primary-menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 260px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    background: rgba(20, 35, 44, .95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}

#primary-menu .menu > li.is-open > .sub-menu,
#primary-menu .menu > li:focus-within > .sub-menu {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

/* submenu links */
#primary-menu .sub-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, .95);
    font-size: .9rem;
    white-space: nowrap;
    transition: background .12s ease, color .12s ease;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

/* hero flush to the top – content pages get padded, hero pages do not */
:root {
    --header-h: 64px;
}

/* JS updates this to actual height */

body.has-hero .site-main,
body.has-hero main {
    padding-top: 0;
}

/* admin bar compensation when logged in */
#wpadminbar + .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    #wpadminbar + .site-header {
        top: 46px;
    }
}

.hero-rotator.is-static .hero-controls,
.hero-rotator.is-static .hero-dots {
    display: none;
}

.hero-rotator.is-static,
.hero-rotator.is-static *,
.banner.is-static,
.banner.is-static * {
    animation: none !important;
    transition: none !important;
}

.hero-rotator .hero-overlay-content {
    color: #2e3192;
}

.hero-intro{
    opacity: 0;
    transform: translateY(40px);
    filter: blur(2px);
    transition:
            transform .7s cubic-bezier(.2,.7,.2,1),
            opacity   .5s ease,
            filter    .5s ease;
    will-change: transform, opacity, filter;
}

.hero-rotator.circles-in .hero-intro{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: .35s;
}

.hero-rotator.circles-in .hero-subtitle{ transition-delay: .35s; }
.hero-rotator.circles-in .hero-lead    { transition-delay: .55s; }
.hero-rotator.circles-in .hero-cta     { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce){
    .hero-intro{ transition:none !important; transform:none !important; opacity:1 !important; filter:none !important; }
}

.hero-title {
    max-width: 510px;
    font: 400 62px / 1.1 "montserrat", sans-serif;
    color: #fff;
    margin: 0 0 .50em 0;
    letter-spacing: 0;
}

.hero-subtitle {
    color: #fff;
}

.hero-lead {
    font: 500 17px/1.4 "montserrat", sans-serif;
    color: #fff;
    margin: 0 0 1.25rem;
    max-width: 62rem;
}

.hero-cta {
    margin-top: 1.25rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    background: #2e3192;
    color: #98ca4f;
    border: 0;
    border-radius: 4px;
    padding: .95rem 1.9rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .06);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.hero-btn:hover, .hero-btn:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12), inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.hero-rotator .banner {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-rotator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-bottom: 2px solid #90bceb;
}

.hero-overlay-content {
    flex: 1;
    display: flex;
}

.hero-overlay-content .grid {
    width: 100%;
    align-items: end;
}

.section-text {
    padding: clamp(48px, 8vw, 160px) 0;
}

.section-text:not(.bg-cream) {
    border-bottom: 2px solid #90bceb;
}

.section-text p {
    margin-bottom: 1.5rem;
    font-size: 17px;
}

body:not(.home) .section-text__col:not(.section-text__col--large) p {
    color: #000;
    line-height: 1.6;
    font-size: 17px;
}

.section-text__col:not(.section-text__col--large) p {
    line-height: 1.6;
}

p:last-of-type {
    margin-bottom: 0 !important;
}

.section-text__grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 900px) {
    .section-text__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.section-text.bg-blue {
    background: #90bceb;
}

.section-text.bg-blue, body:not(.home) .section-text.bg-blue .section-text__col:not(.section-text__col--large) p {
    font: 400 18px/1.8 "montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
}

.section-text.bg-white {
    background: #fff;
}

.section-text.bg-white, body:not(.home) .section-text.bg-white .section-text__col:not(.section-text__col--large) p {
    color: #2e3192;
}

.hl {
    color: #ed018b;
}

body.blog .hl {
    color: #ed018b;
}

.section-tg { padding: clamp(2rem, 5vw, 5rem) 0; }

.tg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

@media (min-width: 900px) {
    .tg-grid { grid-template-columns: 1fr 1fr; }
    .tg-grid--left  { grid-template-areas: "gallery copy"; }
    .tg-grid--right { grid-template-areas: "copy gallery"; }
    .tg-grid--left  .tg-gallery { grid-area: gallery; }
    .tg-grid--left  .tg-copy    { grid-area: copy; }
    .tg-grid--right .tg-copy    { grid-area: copy; }
    .tg-grid--right .tg-gallery { grid-area: gallery; }
}

.tg-heading { margin: 0 0 .6rem; padding-right: 60px; }
.tg-text { margin: 0 0 1rem; }

.tg-gallery { position: relative; }

.tg-slider {
    --tg-aspect: 16 / 9;
    --tg-nav: 46px;
    position: relative;
}

.tg-slider__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: var(--tg-aspect);
    overflow: hidden;
}

.tg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(.985);
    transition: opacity .5s ease, transform .5s ease;
    display: grid;
    place-items: end;
}

.tg-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.tg-slide__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-slide__cap {
    position: relative;
    z-index: 1;
    margin: .75rem;
    padding: .4rem .6rem;
    border-radius: 999px;
    background: #fff;
    color: #282c5e;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    max-width: 90%;
}

.tg-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--tg-nav);
    height: var(--tg-nav);
    border-radius: 999px;
    border: 1px solid #e7e7e7;
    background: #fff;
    color: #2e3192;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    transition: transform .2s ease, border-color .2s ease;
    z-index: 2;
    cursor: pointer;
}
.tg-nav:hover { transform: translateY(-50%) scale(1.04); border-color: #98ca4f; }
.tg-nav--prev { left: -12px; }
.tg-nav--next { right: -12px; }
@media (min-width: 1200px) {
    .tg-nav--prev { left: -18px; }
    .tg-nav--next { right: -18px; }
}

.intro-two-cards {
    padding: clamp(48px, 6vw, 96px) 0;
}

.intro-two-cards .intro-two-cards__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr; /* intro + two cards */
    gap: clamp(24px, 3vw, 48px);
    align-items: start;
}

.itc__title {
    font: 400 28px/42px "montserrat", sans-serif;
    color: #2e3192;
    margin-bottom: 3rem;
}

.itc__text {
    margin-top: 18px;
    color: #000;
}

.itc__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.5vw, 32px);
}

.itc-card {
    text-decoration: none;
    display: block;
}

.itc-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.itc-card__panel {
    background: #90bceb;
    padding: 20px 24px;
    color: #fff;
}

.itc-card__kicker {
    display: block;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2e3192;
    margin-bottom: 6px;
}

.itc-card__heading {
    display: block;
    font: 600 17px/1.25 "montserrat", sans-serif;
}

@media (max-width: 980px) {
    .intro-two-cards .intro-two-cards__grid {
        grid-template-columns: 1fr 1fr;
    }

    .itc__cards {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Intro + Two Cards (matches .intro-two-cards markup) ===== */

.intro-two-cards {
    padding: clamp(32px, 6vw, 96px) 0;
}

/* Grid: left intro column + right cards column */
.intro-two-cards .intro-two-cards__grid {
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr; /* intro max width, cards fill the rest */
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
}

/* Intro text */
.itc__title {
    margin: 0 0 .6em;
    line-height: 1.4;
}

.itc__text {
    max-width: 46ch;
    line-height: 1.6;
}

.itc__text p, .tvs-text p {
    margin-bottom: 25px;
    color: #2e3192;
}

/* Cards layout (2 across, equal heights) */
.itc__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 32px);
    align-self: stretch; /* make the cards area fill the column height */
}

/* Each card */
.itc-card {
    grid-template-rows: 1fr auto; /* image stretches, panel hugs content */
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
}

/* Equal image heights via aspect-ratio; tweak as needed */
.itc-card__image {
    aspect-ratio: 4 / 5; /* keeps both cards the same height */
}

.itc-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.itc-card__panel {
    color: #2e3192;
    display: grid;
    gap: 6px;
}

.itc-card__heading {
    display: block;
    font-weight: 600;
    line-height: 1.25;
}

.sub-heading {
    font: 400 17px/1.5 "Source Sans 3", sans-serif;
    min-height: 120px;
    display: block;
}

/* Responsive */
@media (max-width: 980px) {
    .intro-two-cards .intro-two-cards__grid {
        grid-template-columns: 1fr;
    }

    .itc__cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .itc-card__image {
        aspect-ratio: 16 / 10;
    }
}

.news-band {
    padding: clamp(36px, 6vw, 96px) 0;
    background: #fff7e9;
}

.news-band__intro {
    margin-bottom: clamp(16px, 3vw, 32px);
}

.news-band__title {
    margin: 0 0 .25em;
    font: 600 24px/1.2 "montserrat", sans-serif;
}

.news-band__lead {
    margin: 0;
    max-width: 56ch;
}

.news-band__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 2.5vw, 32px);
}

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card__link {
    color: inherit;
    text-decoration: none;
    display: contents;
}

.news-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__meta {
    margin-top: 12px;
}

.news-card__date {
    font-size: .9rem;
    opacity: .8;
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.news-card__title {
    margin: 0;
}

@media (max-width: 900px) {
    .news-band__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .news-band__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.news-band__more {
    margin-bottom: 20px;
}

.site-footer {
    background: #90bceb url('https://www.ivfcouriers.com/wp-content/uploads/2025/11/Untitled-200-x-200-px.svg') no-repeat bottom left;
    background-size: 400px auto;
    color: #2f3192;
    padding: clamp(48px, 8vw, 112px) 0;
}

.site-footer a {
    color: #2f3192;
    text-decoration: none;
    font: 400 17px/1.25em "montserrat", sans-serif;
}

.site-footer a:hover {
    text-decoration: underline
}

.footer__title {
    margin: 0 0 22px;
    max-width: 40ch;
    font: 400 25px/1.25em "montserrat", sans-serif;
    letter-spacing: .02em;
    text-transform: lowercase;
    color: #2f3192;
}

.footer__rule {
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin: 16px 0 40px
}

.footer__cols {
    display: grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap: clamp(24px, 4vw, 64px);
    align-items: start
}

.footer__h {
    margin: 0 0 16px;
    font: 600 1em/1em "montserrat", sans-serif;
    letter-spacing: .02em;
    text-transform: lowercase;
    color: #fff;
}

.footer__menu, .footer__list, .footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    color: #000;
}

.footer__social a {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer__social .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #96c33d;
    flex: 0 0 24px
}

.footer__social .dot svg path {
    background: #fff;
    color: #fff;
}

.footer__rule--bottom {
    margin: 40px 0 20px
}

.footer__legal {
    display: grid;
    gap: 6px;
    color: #2f3192;
}

@media (max-width: 1023px) {
    .footer__cols {
        grid-template-columns:1fr 1fr
    }
    .hero-intro {
        padding: 0 0 30px 60px;
    }
    .hero-subtitle {
        font: 400 34px / 1.2 "montserrat", sans-serif;
        margin: .25em 0 .9em;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .team-card {
        width: 100% !important;
    }

    .team-card__bar {
        padding: 12px !important;
    }

    .team-card__media {
        padding-bottom: 0 !important;
    }

    .team-card__name, .team-card__role {
        font: 400 15px / 21px "montserrat", Arial, Helvetica, sans-serif !important;
        letter-spacing: 0 !important;
    }

    .team-card__bar {
        position: relative !important;
        align-items: flex-start !important;
        flex-direction: column;
    }

    .news-card__cta {
        left: 12px !important;
        right: auto !important;
        bottom: 12px !important;
    }
}

@media (max-width: 640px) {
    .footer__cols {
        grid-template-columns:1fr
    }

    .footer__title {
        max-width: none
    }
}

.footer__social .dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2f3192;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.footer__social .dot svg {
    width: 14px;
    height: 14px;
    color: #2f3192;
    display: block;
}

/* ---------- HERO ---------- */
.hero-rotator {
    position: relative;
    height: var(--hero-height, 100vh);
}

.hero-rotator .pic {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: var(--hero-bg-pos, center center);
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease;
}

.hero-rotator .pic.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-rotator .banner {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, var(--hero-overlay, 0));
}

.hero-overlay-content {
    position: relative;
    z-index: 1;
}

.section-hi, .wysiwyg_section {
    --pad-top: clamp(6rem, 10vw, 8rem); /* 3× larger top space */
    --pad-bottom: clamp(3rem, 7.5vw, 6rem);
    --gap: clamp(1.25rem, 4vw, 2.5rem);
    padding: var(--pad-top) 0 var(--pad-bottom) 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom left;
}

body.page-id-986 .section-hi {
    padding: 100px 0;
}

.section-hi .hi-wrap {
    display: grid;
    gap: var(--gap);
    grid-template-columns: 1fr;
    align-items: center;
}

body.single time {
    font: 300 14px / 1 "montserrat", Arial, Helvetica, sans-serif;
    margin: 0;
}

.section-hi .hi-copy h1,
.section-hi .hi-copy h2,
.section-hi .hi-copy h3 {
    margin: 0 0 .75rem 0;
    line-height: 1.05;
}

.section-hi .hi-copy p {
    margin: .75rem 0 1.25rem 0;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
}

@media (min-width: 960px) {
    .section-hi .hi-wrap {
        grid-template-columns: 1.6fr 1fr;
    }

    .section-hi.is-image-right .hi-copy {
        order: 1;
    }

    .section-hi.is-image-right .hi-media {
        order: 2;
    }

    .section-hi.is-image-left .hi-copy {
        order: 2;
    }

    .section-hi.is-image-left .hi-media {
        order: 1;
    }
}

.section-hi.is-blue,
.section-tg .tg-copy h2,
.section-hi.is-blue .hi-copy,
.section-hi.is-blue .hi-copy h1,
.section-hi.is-blue .hi-copy h2,
.section-hi.is-blue .hi-copy h3,
.section-hi.is-blue .hi-copy h4,
.section-hi.is-blue .hi-copy p,
.section-hi.is-blue .hi-copy a {
    color: #2e3192;
}

.section-tg .tg-copy h2,
.section-hi.is-blue .hi-copy h2,
.section-hi.is-white .hi-copy h2 {
    --font-head: "montserrat", var(--font-body);
    font-weight: 700;
    color: #2e3192;
}

.section-hi.is-blue .hi-copy p {
    font: 500 18px/1.6 "montserrat", sans-serif;
}

.section-hi.is-blue, .section-tg {
    background: #90bceb;
}

body.page-id-919 .section-tg {
    background: #2e3192;
}

body.page-id-919 .wysiwyg_section p {
    color: #2e3192;
}

body.page-id-919 .section-tg p {
    font-size: 24px;
    color: #fff;
    padding-right: 80px;
}

.section-hi.is-white {
    background: #fff;
    color: #2e3192;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom left;
}

.section-hi.is-white .hl {
    color: #ec008c;
}

section.raw_html {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #2e3192;
}
section.raw_html embed p {
    margin: 0;
}

.section-children {
    background: #fff;
    color: #2e3192;
}

.section-hi.is-cream .hl {
    color: #98ca4f;
}

/* Text Band / generic text section with cream background */
.section-text.bg-cream {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

/* image frame (toggleable) */
.section-hi .hi-picture {
    display: block;
    width: 100%;
    height: auto;
}

.section-hi .hi-frame {
    border: 8px solid rgba(0, 0, 0, .25);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .08) inset;
}

/* ===== Child Pages Grid (Individuals) ===== */

.section-children {
    padding-top: 60px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: clamp(2rem, 6vw, 5rem);
}

.children-head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.children-title {
    font: 600 16px/1.3 "montserrat", sans-serif;
    color: #2e3192;
    margin: 0;
}

.children-rule {
    height: 2px;
    background: #98ca4f;
    display: block;
}

.children-grid {
    display: grid;
    gap: clamp(1rem, 3vw, 2rem);
}

.children-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.children-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .children-grid {
        grid-template-columns: 1fr;
    }
}

.child-card {
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    border-radius: 2px;
    overflow: hidden;
}

.child-card__image {
    display: block;
}

.child-card .card-img {
    width: 100%;
    height: auto;
    display: block;
}

.child-card__body {
    padding: clamp(1rem, 2.4vw, 1.5rem);
    color: #222;
}

.child-card__title {
    margin: 0 0 1rem 0;
    font: 600 20px/1.3 "montserrat", sans-serif;
    color: #2e3192;
}

.child-card__title a {
    color: inherit;
    text-decoration: none;
}

.child-card__title a:hover {
    text-decoration: underline;
}

.child-card__excerpt {
    min-height: 120px;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.child-card__rule {
    border: 0;
    height: 1px;
    background: #98ca4f;
    margin: 1rem 0;
}

.child-card__more {
    text-transform: uppercase;
    font: 600 13px/1 "montserrat", sans-serif;
    letter-spacing: .03em;
    color: #000;
    text-decoration: none;
}

.child-card__more:hover {
    text-decoration: underline;
}

/* ===== Text + Side Navigation ===== */

.section-sidenav {
    padding: clamp(48px, 6vw, 120px) 0;
}

.section-sidenav.is-blue {
    background: #2e3192;
    color: #fff;
}

.section-sidenav.is-white {
    background: #fff;
    color: #2e3192;
}

.section-sidenav.is-cream {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

.section-sidenav .hl {
    color: #98ca4f;
}

.sidenav-wrap {
    display: grid;
    gap: clamp(24px, 4vw, 48px);
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
}

@media (max-width: 960px) {
    .sidenav-wrap {
        grid-template-columns: 1fr;
    }
}

.sidenav-content ul {
    list-style: disc;
    padding-left: 15px;
}

.sidenav-content ul li {
    margin-bottom: 15px;
}

body.single .section-text p, .sidenav-content p, body.page-id-918 .container p {
    font: 400 18px / 1.6 "montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
    margin: 0 0 2rem 0;
}

body.page-id-918 .section-text {
    padding: 90px 0;
}

body.page-id-918 .wysiwyg_section {
    background-color: #f3f9e9;
}

body.single .section-text p {
    color: #000;
}

body.single .section-text h2 {
    font: 600 24px/1.6 "montserrat", sans-serif;
    color: #2e3192;
}

.sidenav-content h2 {
    font: 600 30px/1.6 "montserrat", sans-serif;
    color: #2e3192;
    margin: 0 0 .75rem 0;
}

.sidenav-title {
    font: 500 18px/1.6 "montserrat", sans-serif;
    color: #2e3192;
    margin: 0 0 .75rem 0;
    text-transform: uppercase;
}

.section-sidenav.is-blue .sidenav-title {
    color: #fff;
}

.sidenav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .75rem;
}

.sidenav-item {
    background: #fbf2db;
}

.section-sidenav.is-blue .sidenav-item {
    background: rgba(255, 255, 255, .08);
}

.sidenav-link {
    display: flex;
    align-items: center;
    padding: .875rem 1rem;
    text-decoration: none;
    color: inherit;
    font: 400 15px/1.3 "montserrat", sans-serif;
    gap: .5rem;
}

.sidenav-spacer {
    flex: 0 0 0;
    transition: flex-grow .3s ease;
}

.sidenav-arrow {
    width: 18px;
    height: 18px;
    transition: transform .3s ease, opacity .3s ease;
}

.sidenav-link:hover .sidenav-spacer,
.sidenav-link:focus-visible .sidenav-spacer {
    flex-grow: 1;
}

.sidenav-link:hover .sidenav-arrow,
.sidenav-link:focus-visible .sidenav-arrow {
    transform: translateX(2px);
}

.sidenav-link:hover .sidenav-text,
.sidenav-link:focus-visible .sidenav-text {
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .sidenav-spacer, .sidenav-arrow {
        transition: none;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
}

@media (min-width: 700px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: #fff;
    color: #2e3192;
    overflow: hidden;
}

.news-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.news-card__body {
    padding: 1rem 1.1rem 0;
}

.news-card__title {
    margin: 0 0 .25rem;
    color: #2e3192;
    line-height: 1.4;
}

.news-card__date {
    font-size: .9rem;
    opacity: .7;
}

.news-card__excerpt {
    margin: .6rem 0 0;
}

.news-card__read {
    display: inline-block;
    margin-top: .75rem;
    font-weight: 600;
}

/* sentinel just needs to exist */
.news-load-sentinel {
    height: 1px;
}

/* === All News grid === */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 740px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === Card === */
.news-card {
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .08);
}

.news-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

/* Image with consistent crop */
.news-card__media {
    position: relative;
    background: #eee;
    overflow: hidden;
}

.news-card__media {
    aspect-ratio: 16/10;
}

/* modern browsers */
.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body */
.news-card__body {
    position: relative;
    padding: 14px 16px 0;
    min-height: 160px;
}

.news-card__date {
    display: block;
    font: 300 14px / 1 "montserrat", Arial, Helvetica, sans-serif;
    opacity: 1;
    margin-bottom: 10px;
}

.news-card__title {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* Round CTA arrow */
.news-card__cta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #f4136b; /* brand gold */
    transition: transform .25s ease;
}

.news-card:hover .news-card__cta {
    transform: translateX(6px);
}

/* White arrow using your SVG as a mask */
.news-card__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 58%;
    height: 58%;
    background: #fff;
    -webkit-mask: url("https://www.ivfcouriers.com/wp-content/uploads/2025/09/news-arrow.svg") center / contain no-repeat;
    mask: url("https://www.ivfcouriers.com/wp-content/uploads/2025/09/news-arrow.svg") center / contain no-repeat;
}

/* Optional: tighten gaps on very large screens so rows align nicely */
@media (min-width: 1280px) {
    .news-grid {
        gap: 32px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.news-card {
    background: #90bceb;
    overflow: hidden;
    position: relative;
}

.news-card__img img {
    display: block;
    width: 100%;
    height: auto
}

.news-card__meta {
    margin: 14px 16px 0;
    color: #6b7280;
    font-size: .9rem
}

.news-card__title {
    margin: 6px 64px 16px 0;
}

.news-card__title a {
    text-decoration: none;
    color: #2e3192
}

.news-card__cta {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #2f3192;
    transition: transform .25s ease
}

.news-card:hover .news-card__cta {
    transform: translateX(6px)
}

#infinite-sentinel {
    height: 1px
}

.news-card__img {
    display: block;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-news {
    padding: 60px 0 120px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom left;
}

/* Centered text band */
.section-center {
    --pad-top: clamp(6rem, 10vw, 12rem); /* 3× larger top space */
    --pad-bottom: clamp(3rem, 7.5vw, 6rem);
    padding: var(--pad-top) 0 var(--pad-bottom) 0;
    text-align: center;
    border-bottom: 2px solid #90bceb;
}

.section-center.is-cream {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
}

.section-center.is-white {
    background: #fff;
}

.section-center.is-blue {
    background: #2e3192;
    color: #fff;
}

.section-center.spacing-tight {
    padding: 36px 0;
}

.section-center.spacing-loose {
    padding: 88px 0;
}

.center-wrap {
    max-width: 1024px;
    margin: 0 auto;
}

.center-wrap.is-narrow {
    max-width: 760px;
}

.center-kicker {
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0 0 .5rem;
    color: #98ca4f;
}

.wysiwyg_section h2, .center-heading, h2.section-title {
    color: #2e3192;
    margin: .25rem 0 1rem;
}

.tvs-text h2 {
    font: 400 28px/42px "montserrat", sans-serif;
    margin-bottom: 20px;
}

body.home .wysiwyg_section h2, .tvs-text h2 {
    color: #2e3192;
}

body.page-id-1156 .wysiwyg_section h2 {
    text-align: center;
}

.container p + h2 {
    margin-top: 30px;
}

.section-center.is-blue .center-heading {
    color: #fff;
}

ul:not(:is(.sidenav-list, #menu-footer, .footer__list, .footer__social, .sub-menu, #menu-main-menu)) {
    padding-left: 20px;
}

.itc__text ul {
    margin-top: 30px;
}

.itc__text ul li {
    color: #2e3192;
}

ul:not(:is(.sidenav-list, #menu-footer, .footer__list, .footer__social, .sub-menu, #menu-main-menu)) > li {
    list-style-type: disc;
    margin-bottom: 10px;
}

.center-text {
    font-size: 1.05rem;
    line-height: 1.7;
}

.center-text.is-small {
    font-size: .975rem;
}

/* Map section */
.section-map {
    padding: 60px 0 0;
    background: #fbf7ec;
    border-bottom: 2px solid #90bceb;
    border-bottom: 2px solid #90bceb;
}

.section-map .center-heading {
    text-align: center;
    margin-bottom: .3rem;
}

.section-map .center-text {
    text-align: center;
    margin-bottom: 1rem;
}

.gmap {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.contact-item {
    color: #2e3192;
}

/* === Testimonials === */
.section-testimonials {
    padding: clamp(2rem, 5vw, 5rem) 0;
}

/* gradient hero band */
.section-testimonials--hero {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #000;
    text-align: center;
}

.section-testimonials--hero .center-heading,
.section-testimonials--hero .center-heading--light {
    color: #000;
}

/* wrapper */
.testi {
    --nav-size: 44px;
    --nav-shadow: 0 10px 24px rgba(0, 0, 0, .15);
    position: relative;
}

/* track now just stacks absolute slides */
.testi__track,
.testi__track--hero {
    position: relative;
    min-height: 500px;
}

/* one full-width slide at a time */
.testi-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}

.testi-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.testi-slide__quote {
    max-width: 52rem;
    margin: 0 auto 1.75rem;
    font-style: italic;
}

.testi-slide__quote p {
    margin: 0 auto 1rem;
    font-style: italic;
}

.testi-slide__quote-mark {
    font-size: 130px;
    line-height: 20px;
    opacity: .25;
    vertical-align: top;
    display: none;
}

span.testi-slide__locations {
    display: block;
    font: 400 0.9rem/1.6 "montserrat", sans-serif;
}

.review_us img {
    width: 220px;
    display: block;
    margin-top: 40px;
}

.testi-slide__meta {
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.testi-slide__role {
    opacity: .85;
    font-weight: 600;
}

.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: var(--nav-size);
    height: var(--nav-size);
    border-radius: 999px;
    border: 1px solid #e7e7e7;
    background: #fff;
    color: #2e3192;
    display: grid;
    place-items: center;
    box-shadow: var(--nav-shadow);
    transition: border-color .2s ease, transform .2s ease;
    z-index: 1;
    cursor: pointer;
}

.testi-nav:hover {
    border-color: #98ca4f;
    transform: translateY(-50%) scale(1.04);
}

.testi-nav--prev { left: -12px; }
.testi-nav--next { right: -12px; }

@media (min-width: 1200px) {
    .testi-nav--prev { left: -18px; }
    .testi-nav--next { right: -18px; }
}

@media (max-width: 768px) {
    .testi-slide__quote {
        font-size: 1.2rem;
    }
    .testi-nav--prev { left: .75rem; }
    .testi-nav--next { right: .75rem; }
}

.section-tvs {
    width: 100%;
    padding: 60px 0;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: bottom left;
}

.tvs-wrap {
    display: flex;
    gap: 40px;
}

.tvs-wrap .text-col {
    width: var(--tvs-text);
}

.tvs-wrap .video-col {
    width: var(--tvs-video);
}

.tvs-video {
    width: 100%;
    height: auto;
    display: block;
}

.stats-counters {
    padding: 160px 0;
    text-align: center;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 18%;
}

.stat-item {
    opacity: 0.4;
    transition: opacity 0.35s ease;
}

.stat-item.active {
    opacity: 1;
}

.stat-number {
    font: 700 56px/1 "montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font: 400 18px/1.4 "montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
}

.stats-bg-white {
    background: #fff;
    color: #000;
}

.stats-bg-blue {
    background: #2e3192;
    color: #fff;
}

.stats-bg-branding {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

.stats-bg-white .stat-number,
.stats-bg-white .stat-label,
.stats-bg-white .stats-heading {
    color: #000;
}

.stats-bg-blue .stat-number,
.stats-bg-blue .stat-label,
.stats-bg-blue .stats-heading,
.stats-bg-branding .stat-number,
.stats-bg-branding .stats-heading {
    color: #fff;
}

.stats-bg-branding .stat-label {
    color: #000;
}

/* Reports section */
.section-reports {
    padding: 64px 0;
}

.reports__heading {
    text-align: center;
    margin-bottom: 28px;
}

.reports__latest {
    margin-bottom: 28px;
}

.reports__sub {
    margin: 24px 0 12px;
    font-size: 1.125rem;
}

/* Document list grid */
.doc-list {
    display: grid;
    gap: 12px;
}

.doc-list--cols-2 {
    grid-template-columns: 1fr;
}

.doc-list--cols-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .doc-list--cols-2 {
        grid-template-columns: 1fr 1fr;
    }

    .doc-list--cols-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Row item */
.doc-item {
    display: grid;
    grid-template-columns: 28px 1fr 28px;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}

.doc-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

/* Icon left */
.doc-item__icon {
    display: inline-grid;
    place-items: center;
    opacity: .8;
}

/* Meta (title + year + eyebrow) */
.doc-item__meta {
    display: grid;
    gap: 2px;
}

.doc-item__eyebrow {
    display: inline-block;
    font-size: .75rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    background: #98ca4f;
    color: #2e3192;
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 4px;
}

.doc-item__title {
    font-weight: 700;
    line-height: 1.25;
}

.doc-item__year {
    opacity: .75;
    font-size: .925rem;
}

/* Reuse the News round arrow CTA */
.doc-item__cta.news-card__cta {
    justify-self: end;
}

.doc-item--latest {
    border: 2px solid #98ca4f;
    background: #fff;
}

/* Featured Testimonial */
.section-featured-testimonial {
    padding: 80px 0;
}

.section-featured-testimonial--center {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.section-featured-testimonial--bg-blue {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

.section-featured-testimonial--bg-cream {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}

.section-featured-testimonial--bg-white {
    background: #fff;
    color: #2e3192;
}

.ft-card {
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.ft-card__avatar {
    margin: 0 auto 18px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
}

.ft-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ft-card__quote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.ft-card--emph .ft-card__quote {
    position: relative;
}

.ft-card--emph .ft-card__quote:before,
.ft-card--emph .ft-card__quote:after {
    content: "“";
    position: absolute;
    font-size: clamp(64px, 8vw, 110px);
    line-height: 0.8;
    opacity: 0.15;
    left: -12px;
    top: -30px;
}

.ft-card--emph .ft-card__quote:after {
    content: "”";
    left: auto;
    right: -12px;
    top: auto;
    bottom: -30px;
}

.ft-card__meta {
    margin-top: 18px;
    font-size: 16px;
    opacity: .9;
}

.ft-card__author {
    font-weight: 400;
    color: #fff;
}

.ft-card__role {
    font-weight: 400;
    opacity: .9;
}

.cta .cta_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.cta .cta_text {
    margin: 0;
    color: #2e3191;
}

.section-team {
    padding: 90px 0;
}

.section-team.is-cream {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
}

.team__heading {
    font-size: 20px;
    margin: 0 0 24px;
}

.team-grid{
    --card: 336px;
    --gapX: 120px; /* horizontal gap */
    --gapY: 80px;  /* vertical gap */
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, var(--card));
    column-gap: var(--gapX);
    row-gap: var(--gapY);
}

.team-card{
    width: var(--card);
    justify-self: center;
    overflow: hidden;
    position: relative;
}

.team-card__media{
    width: 100%;
    position: relative;
    padding-bottom: 120px;
}

.team-card__img{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card__name,
.team-card__role{
    font: 400 18px / 27px "montserrat", Arial, Helvetica, sans-serif;
    color: #2f3192;
    display: block;
    letter-spacing: -1px;
}

.team-card__role{
    font: 400 16px / 22px "montserrat", Arial, Helvetica, sans-serif;
}

h2.team__heading{
    font: 700 30px / 36px "montserrat", sans-serif;
    color: #2f3192;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.team-card__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 12px 12px 12px 16px;
}

.team-card__toggle{
  appearance:none; -webkit-appearance:none; border:0; background:transparent; padding:0;
  display:inline-grid; place-items:center;
  width:48px; height:48px; cursor:pointer; line-height:0;
}

.team-card__toggle .news-card__cta{
  width:48px; height:48px; display:block;
  transition:transform .25s ease;
  will-change: transform;
  pointer-events:none;
}

.team-card__toggle:focus{ outline:none; }
.team-card__toggle:focus-visible .news-card__cta{
  border-radius:9999px;
}

.team-card__toggle .news-card__cta { transition: transform .25s ease; }
.team-card.is-open .team-card__toggle .news-card__cta { transform: rotate(90deg); }

.team-card__bio-inner {
  padding: 20px;
}

.team-card__bio-inner p {
    margin-bottom: 25px;
    font: 400 15px/26px "montserrat", Arial, Helvetica, sans-serif;
    color: #000;
}

.team-card__bio{
  overflow: hidden;
  transition: max-height .35s ease;
  will-change: max-height;
}

.team-card__bio-inner{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease .08s, transform .25s ease .08s; /* tiny delay so it starts after the panel opens */
  will-change: opacity, transform;
}

.team-card.is-open .team-card__bio-inner{
  opacity: 1;
  transform: translateY(0);
}

.team-card__bio-inner > *{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.team-card.is-open .team-card__bio-inner > *{
  opacity: 1;
  transform: none;
}
.team-card.is-open .team-card__bio-inner > *:nth-child(1){ transition-delay: .05s; }
.team-card.is-open .team-card__bio-inner > *:nth-child(2){ transition-delay: .10s; }
.team-card.is-open .team-card__bio-inner > *:nth-child(3){ transition-delay: .15s; }

@media (prefers-reduced-motion: reduce){
  .team-card__bio, .team-card__bio-inner, .team-card__bio-inner > *{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ---------- Header layout ---------- */
:root{
    --brand-blue: #252a77;      /* adjust to match */
    --brand-green:#96c33d;      /* thin line / accents */
    --pink:       #ff2b93;      /* callback */
    --purple:     #3c31cb;      /* contact */
    --text:       #1c1c1c;
    --muted:      #7a7a7a;
}

.site-header { background:#fff; position:relative; z-index:50; }
.site-header__container {
    max-width: 1280px;
    margin-inline: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* TOP BAR */
.site-header__top { padding: 14px 0; }
.site-header__top .site-header__container { justify-content: space-between; }

.site-header__logo img { display:block; height: 54px; width:auto; }
@media (min-width: 1280px){
    .site-header__logo img { height: 64px; }
}

.site-header__right {
    display:flex;
    align-items:center;
    gap: 16px;
}

/* Socials */
.header-socials { display:flex; align-items:center; gap: 10px; }
.header-socials .social {
    width: 40px; height: 40px; display:grid; place-items:center;
    border: 2px solid var(--brand-green);
    border-radius: 9999px;
    flex: 0 0 40px;
    transition: transform .18s ease, border-color .18s ease;
}
.header-socials .social:hover { transform: translateY(-1px); border-color: #78ad1d; }
.header-socials img { width: 22px; height: 22px; display:block; }

/* CTAs */
.header-ctas { display:flex; align-items:center; gap: 14px; }
.btn-pill{
    display:inline-flex; align-items:center; gap:10px;
    font-weight: 700; font-size: 16px; line-height:1;
    padding: 14px 18px;
    border-radius: 9999px;
    color:#fff; text-decoration:none;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    white-space: nowrap;
}
.btn-pill .btn-icon{ font-size: 18px; line-height:1; color: #fff; }
.btn-pill--pink   { background: var(--pink); }
.btn-pill--purple { background: var(--purple); }
.btn-pill:hover   { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.16); }

.header-ctas img.quote {
    width: 270px;
    height: 59px;
}

.header-ctas img.callback {
    width: 160px;
    height: 59px;
}

/* BOTTOM BAR (main nav) */
.site-header__bottom {
    border-top: 3px solid var(--brand-green);
    border-bottom: 1px solid #e9edf1;
}
.site-header__bottom .site-header__container {
    justify-content: center;
}

.site-nav { position:relative; }
.site-nav .menu {
    display:flex; align-items:center; gap: 36px;
    list-style:none; margin:0; padding: 12px 0;
}
.site-nav .menu > li > a {
    color: var(--brand-blue);
    text-decoration:none; font-weight:600; font-size: 18px;
    padding: 14px 0; display:inline-block;
}
.site-nav .menu > li > a:hover,
.site-nav .menu > li.current-menu-item > a { text-decoration: underline; }

/* Accessible helper */
.sr-only{ position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* NAV TOGGLE (mobile) */
.nav-toggle{
    position: relative;
    width: 44px; height: 44px; border: 0; background: #f3f5f8;
    border-radius: 8px; display:none; align-items:center; justify-content:center;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after{
    content:""; display:block; width:22px; height:2px; background:#111; border-radius:2px; position:relative;
}
.nav-toggle__bar::before{ position:absolute; top:-6px; }
.nav-toggle__bar::after { position:absolute; top: 6px; }

/* MOBILE */
@media (max-width: 1023px){
    .header-ctas { display:none; }             /* desktop CTAs hidden on mobile */
    .nav-toggle { display:flex; }
    .site-header__bottom .site-header__container { justify-content: stretch; }
    .site-nav {
        position:absolute; left:0; right:0; top:100%;
        background:#fff; border-top:1px solid #e9edf1; box-shadow: 0 10px 30px rgba(0,0,0,.08);
        transform: translateY(-8px); opacity:0; pointer-events:none;
        transition: opacity .18s ease, transform .18s ease;
    }
    /* you likely toggle [aria-expanded] in your existing JS; styles react to it */
    .nav-toggle[aria-expanded="true"] + .site-nav,
    .site-nav.is-open{
        transform: translateY(0); opacity:1; pointer-events:auto;
    }
    .site-nav .menu{
        flex-direction:column; align-items:stretch; gap:0; padding: 6px 16px;
    }
    .site-nav .menu > li > a{
        display:block; padding: 14px 6px; font-size: 17px; border-bottom:1px solid #f0f2f5;
    }
    .site-nav .menu > li:last-child > a{ border-bottom:0; }

    /* Mobile CTAs appear inside the dropdown */
    .header-ctas--mobile{
        display:grid; gap:10px; padding: 12px 16px 18px;
        border-top:1px solid #f0f2f5; background:#fff;
    }
}

/* Small polish: keep top items from wrapping too quickly */
@media (max-width: 1280px){
    .header-socials { gap: 8px; }
    .header-socials .social { width:36px; height:36px; flex-basis:36px; }
    .btn-pill{ padding: 12px 14px; font-size:15px; }
}

/* Hide the mobile CTAs by default (desktop & tablet) */
.header-ctas--mobile { display: none; }

/* Mobile */
@media (max-width: 1023px){
    /* hide desktop CTAs on mobile */
    .header-ctas { display: none; }

    /* show the mobile CTAs inside the dropdown on mobile */
    .header-ctas--mobile { display: grid; gap: 10px; padding: 12px 16px 18px; }
}

@media (max-width: 1023px){
    .header-ctas--mobile { display: none; } /* default hidden */
    .nav-toggle[aria-expanded="true"] + .site-nav .header-ctas--mobile,
    .site-nav.is-open .header-ctas--mobile { display: grid; }
}

/* Make top bar roomy and keep elements centered */
.site-header__top { padding-block: 18px; }                /* desktop spacing */
@media (min-width: 1280px){ .site-header__top { padding-block: 22px; } }

/* Let the logo be large (fills the top bar height) */
.site-header__logo { display:flex; align-items:center; }
.site-header__logo img{
    display:block;
    height: clamp(72px, 10vw, 120px);  /* grows on large screens */
    width:auto;
}

/* Social buttons: visible icons inside green-outlined circles */
.header-socials { display:flex; align-items:center; gap: 12px; }
.header-socials .social{
    display:grid; place-items:center;
    border: 2px solid var(--brand-green, #96c33d);
    border-radius: 9999px;
    transition: transform .18s ease, border-color .18s ease;
}
.header-socials .social:hover { transform: translateY(-1px); border-color: #78ad1d; }
.header-socials .social img{ display:block; }

/* Keep the green divider like your reference */
.site-header__bottom { border-top: 3px solid var(--brand-green, #96c33d); }

/* Mobile CTAs visibility (desktop hidden) */
.header-ctas--mobile { display:none; }
@media (max-width:1023px){
    .header-ctas { display:none; }                 /* hide desktop CTAs on mobile */
    .header-ctas--mobile { display:grid; gap:10px; padding:12px 16px 18px; }
    /* only show when menu is open (optional) */
    .header-ctas--mobile { display:none; }
    .nav-toggle[aria-expanded="true"] + .site-nav .header-ctas--mobile,
    .site-nav.is-open .header-ctas--mobile { display:grid; }
}

/* =========================================================
   Header — single bar, logo spans both rows
   ========================================================= */
:root{
    --brand-blue:  #282c5e;
    --brand-green: #96c33d;
    --brand-pink:  #ff3aa0;
    --brand-purple:#3a31d8;
}

.site-header{ background:#fff; position:relative; z-index:50; }
.site-header__bar{ }
.site-header__grid{
    max-width: 1600px;
    margin-inline: auto;
    padding: 20px;            /* top padding for row 1; nav gets its own padding */
    display:grid;
    grid-template-columns: auto 1fr; /* logo | right side */
    grid-template-rows: auto auto;   /* row 1: socials+ctas; row 2: nav */
    column-gap: 24px;
    align-items:center;
}

/* Logo (spans both rows) */
.site-header__logo{ grid-row:1 / span 2; display:flex; align-items:center; }
.site-header__logo img{
    display:block;
    height: clamp(80px, 9vw, 120px); /* big on desktop, scales down on smaller screens */
    width:auto;
}

/* Row 1 right: socials + CTAs + burger */
.site-header__actions{
    grid-column:2; grid-row:1;
    display:flex; align-items:center; justify-content:flex-end; gap: 18px;
}

.btn-pill{
    display:inline-flex; align-items:center; gap:10px;
    padding:12px 18px;
    border-radius:9999px;
    text-decoration:none;
    font-weight:800;
    color:#fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    line-height:1;
}
.btn-pill:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.16); }
.btn-pill--pink{   background:var(--brand-pink); }
.btn-pill--purple{ background:var(--brand-purple); }
.btn-icon{ font-size:1.05em; }

/* Row 2 right: nav; green divider above it */
.site-nav{
    grid-column:2; grid-row:2;
    padding: 12px 0;
}
.site-nav .menu{
    margin:0; padding:0; list-style:none;
    display:flex; flex-wrap:wrap; gap: 28px;
    justify-content:flex-end;
}
.site-nav .menu > li > a{
    text-decoration:none;
    color: var(--brand-blue);
    font-weight: 700;
    letter-spacing: .01em;
    padding: 10px 0;
}
.site-nav .menu > li > a:hover{ opacity:.7; }

/* Accessibility helper */
.sr-only{
    position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,1px,1px); white-space:nowrap; border:0;
}

/* Burger (hidden on desktop) */
.nav-toggle{
    appearance:none; border:0; background:transparent; cursor:pointer;
    width:42px; height:42px; position:relative; display:none;
}
.nav-toggle .nav-toggle__bar,
.nav-toggle .nav-toggle__bar::before,
.nav-toggle .nav-toggle__bar::after{
    content:""; display:block; position:absolute; left:9px; right:9px; height:2px; background:var(--brand-blue);
}
.nav-toggle .nav-toggle__bar{ top:50%; transform:translateY(-50%); }
.nav-toggle .nav-toggle__bar::before{ top:-8px; }
.nav-toggle .nav-toggle__bar::after{ top: 8px; }

/* Mobile CTAs live inside the dropdown; hide on desktop */
.header-ctas--mobile{ display:none; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 1023px){

    .site-header__grid{
        padding: 16px;
        column-gap: 16px;
    }

    /* Show burger; reduce right-side clutter */
    .nav-toggle{ display:block; }
    .header-socials{ gap:10px; }
    .header-ctas{ display:none; }                  /* desktop CTAs hidden on mobile */

    /* Make nav full-width under row 2; hidden by default */
    .site-nav{
        grid-column: 1 / -1; grid-row: 2;
        padding: 10px 0 14px;
        display: none;
    }
    .site-nav .menu{
        display:grid; gap:12px;
        justify-content: start;
    }

    /* Mobile CTAs: shown inside dropdown only when open */
    .header-ctas--mobile{ display:none; gap:10px; margin-top:10px; }

    /* Use :has() to open the menu when the toggle is expanded */
    .site-header__grid:has(.nav-toggle[aria-expanded="true"]) .site-nav{ display:block; }
    .site-header__grid:has(.nav-toggle[aria-expanded="true"]) .header-ctas--mobile{ display:grid; }
}

/* Optional: slightly larger logo on big screens */
@media (min-width: 1440px){
    .site-header__logo img{ height: 110px; }
}

/* =========================================================
   Header — single bar, logo spans both rows + language switch
   ========================================================= */
:root{
    --brand-blue:  #2f3192;
    --brand-green: #96c33d;
    --brand-pink:  #ff3aa0;
    --brand-purple:#3a31d8;
}

.site-header{ background:#fff; position:relative; z-index:50; isolation:isolate; }

.site-header__logo{ grid-row:1 / span 2; display:flex; align-items:center; }
.site-header__logo img{
    display:block;
    height: clamp(80px, 9vw, 120px);
    width:auto;
}

.site-header__actions{
    grid-column:2; grid-row:1;
    display:flex; align-items:center; justify-content:flex-end; gap: 18px;
}

.lang-switch{ position:relative; }
.lang-switch__btn{
    display:grid; place-items:center;
    background:#fff; border-radius:9999px;
    cursor:pointer; transition:transform .18s ease, border-color .18s ease;
}
.lang-switch__btn:hover{ transform:translateY(-1px); border-color:#78ad1d; }
.lang-switch__btn img{ width:22px; height:22px; display:block; }
.lang-switch__menu{

}
#lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 450px;
    padding: 8px;
    background: #98cb4f;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
    z-index: 1000;
    display: none;
}
.lang-switch.is-open #lang-menu {
    display:grid;
    gap: 6px;
}
@media (min-width: 1024px) {
    #lang-menu {
        min-width: 450px;
    }
    .lang-switch.is-open #lang-menu {
        grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    }
    .hero-subtitle {
        font: 400 48px / 1.6 "montserrat", sans-serif;
        margin: .25em 0 .9em;
        padding-left: 60px;
    }
    .lang-switch__btn{
        width:44px; height:44px;
        border:2px solid var(--brand-green);
    }
    .header-socials .social{
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border:2px solid var(--brand-green);
    }
    .header-socials .social img{
        width: 22px;
        height: 22px;
    }
    .section-tg .tg-copy h2,
    .section-hi.is-blue .hi-copy h2,
    .section-hi.is-white .hi-copy h2,
    body.page-id-986 .text-band.tb--blue.lottie-parachute .tb-text p {
        font-size: 30px;
        line-height: 46px;
    }

    body.page-id-986 .text-band.tb--blue.lottie-parachute .tb-text p {
        font-weight: 700;
    }

    .section-text__col--large, .section-text__col--large p {
        font: 700 28px/42px "montserrat", Arial, Helvetica, sans-serif;
    }

    .news-card__title, .section p, .rte p, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio, .section-intro, .itc__text p, .tvs-text p, .faq-answer p, .faq-question, .tb-text p, ul:not(:is(.sidenav-list, #menu-footer, .footer__list, .footer__social, .sub-menu, #menu-main-menu)) > li,
    .section-text.bg-white, body:not(.home) .section-text.bg-white .section-text__col:not(.section-text__col--large) p {
        font: 400 18px/1.8 "montserrat", Arial, Helvetica, sans-serif;
    }

    .text-band.lottie-communication {
        padding: 20px 0;
    }

    .itc-card__kicker {
        font-size: 16px;
    }

    .itc-card__panel {
        min-height: 340px;
    }

    .testi-slide {
        padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
    }

    .testi-slide__quote {
        font: 400 18px/1.6 "montserrat", sans-serif;
    }

    .section-hi .hi-copy h1 {
        font: 700 32px / 1.6 "montserrat", Arial, Helvetica, sans-serif;
    }

    .center-heading, h2.section-title {
        font: 700 36px/42px "montserrat", sans-serif;
    }

    .wysiwyg_section h2 {
        font: 700 26px/42px "montserrat", sans-serif !important;
    }

    .wysiwyg_section h3, .wysiwyg_section h4, .wysiwyg_section h5 {
        font: 700 20px/32px "montserrat", Arial, Helvetica, sans-serif;
        margin-bottom: 20px;
        color: #2f3192;
    }

    .wysiwyg_section h4 {
        font: 700 18px/26px "montserrat", Arial, Helvetica, sans-serif;
    }

    .wysiwyg_section h5 {
        font: 700 16px/24px "montserrat", Arial, Helvetica, sans-serif;
    }

    .team-grid--cols-2{
        grid-template-columns: repeat(2, var(--card));
    }

    .team-grid--cols-3{
        grid-template-columns: repeat(3, var(--card));
    }

    #primary-menu .menu > li > a {
        padding: 22px 8px;
        font: 100 18px/18px "montserrat", Arial, Helvetica, sans-serif;
    }

    .mobile_only {
        display: none !important;
    }

    .cta-pills{
        gap: 30px;
    }
}
/* 1024 yeah */

@media (max-width: 1023px) {
    #lang-menu {
        min-width: 260px;
    }
    .lang-switch.is-open #lang-menu {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
    }
    .stats-wrapper, .tvs-wrap {
        gap: 60px;
        flex-direction: column;
    }
    .hero-intro {
        padding: 0 0 30px 20px;
    }
    .hero-subtitle {
        font: 400 34px / 1.2 "montserrat", sans-serif;
        margin: .25em 0 0;
    }
    .tvs-wrap .text-col, .tvs-wrap .video-col {
        width: 100%;
    }
    .header-socials .social {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        border:1px solid var(--brand-green);
    }
    .header-socials .social img {
        width: 12px;
        height: 12px;
    }
    .lang-switch__btn {
        width: 24px;
        height: 24px;
        border:1px solid var(--brand-green);
        padding: 0;
    }
    .section-tg .tg-copy h2,
    .section-hi.is-blue .hi-copy h2,
    .section-hi.is-white .hi-copy h2 {
        font-size: 26px;
        line-height: 38px;
    }

    .section-hi .hi-copy h1,
    .wysiwyg_section h2, .center-heading, h2.section-title,
    .section-text__col--large, .section-text__col--large p {
        font: 700 24px/36px "montserrat", Arial, Helvetica, sans-serif;
    }

    .wysiwyg_section h3, .wysiwyg_section h4, .wysiwyg_section h5 {
        font: 700 20px/32px "montserrat", Arial, Helvetica, sans-serif;
        margin-bottom: 20px;
        color: #2f3192;
    }

    .wysiwyg_section h4 {
        font: 700 18px/26px "montserrat", Arial, Helvetica, sans-serif;
    }

    .wysiwyg_section h5 {
        font: 700 16px/24px "montserrat", Arial, Helvetica, sans-serif;
    }

    .testi-slide__quote, .news-card__title, .section p, .rte p, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio, .section-intro,
    .itc__text p, .tvs-text p, .faq-answer p, .faq-question, .tb-text p, ul:not(:is(.sidenav-list, #menu-footer, .footer__list, .footer__social, .sub-menu, #menu-main-menu)) > li,
    .section-text.bg-white, body:not(.home) .section-text.bg-white .section-text__col:not(.section-text__col--large) p {
        font: 400 16px/1.6 "montserrat", Arial, Helvetica, sans-serif;
    }

    .itc-card__kicker {
        font-size: 16px;
    }

    #primary-menu { display:none; }
    #primary-menu.is-open { display:block; }

    /* optional scroll lock */
    body.nav-open { overflow:hidden; }

    .testi-slide {
        padding: 20px 70px;
    }

    .testi__track, .testi__track--hero {
        min-height: 710px !important;
    }

    .team-grid--cols-2{
        grid-template-columns: repeat(1, var(--card));
    }

    .team-grid--cols-3{
        grid-template-columns: repeat(1, var(--card));
    }

    .js-mobile-nav #primary-menu {
        display: none;
    }

    .js-mobile-nav.is-nav-open #primary-menu {
        display: block;
    }

    .nav-toggle {
        cursor: pointer;
    }

    #primary-menu .menu > .menu-item > a {
        font-weight: 500;
    }

    .js-mobile-nav.is-nav-open #primary-menu {
        display: block;
        height: 580px;
    }

    .cta-pills {
        flex-direction: column;
    }

    #primary-menu .menu > li > a {
        padding: 14px 8px;
        font: 100 16px/18px "montserrat", Arial, Helvetica, sans-serif;
    }

    #primary-menu .menu {
        margin-bottom: 10px;
        padding: 0;
    }

    .desktop_only {
        display: none;
    }

    .cta-pills{
        gap: 10px;
    }

}
/* 1023 yeah */

.lang-switch__item{
    display:flex; align-items:flex-start; gap:10px;
    padding:8px 10px; border-radius:8px;
    text-decoration:none; color:#fff;
}
.lang-switch__item:hover{ background:#2e3191; }
.lang-switch__item img{ width:20px; height:20px; display:block; border-radius:2px; }
.lang-switch__placeholder{ width:20px; height:20px; display:grid; place-items:center; }
.lang-switch__item[aria-current="true"]{ background:#eef6ff; }
.lang-switch__item .ls-code{ margin-left:auto; opacity:.7; font-size:.9rem; }

/* Social round buttons */
.header-socials{ display:flex; align-items:center; gap:12px; }
.header-socials .social{
    display:grid; place-items:center;
    border-radius:9999px;
    transition: transform .18s ease, border-color .18s ease;
}
.header-socials .social:hover{ transform:translateY(-1px); border-color:#78ad1d; }
.header-socials .social img{ display:block; }

/* CTAs (desktop) */
.header-ctas{ display:flex; align-items:center; gap:14px; }
.cta-pills{
    display:flex;
    align-items:center;
}

.cta-pill{
    height:59px;
    border-radius:10px;
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#fff;
    padding:0 10px;
    gap:10px;
    box-sizing:border-box;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight:600;
    font-size: 15px;
    line-height: 18px;
}

.cta-pill--chat{
    width:271px;
    background:#303786;
}

.cta-pill--call{
    width:160px;
    background:#D13A83;
}

.cta-pill__icon{
    max-width: 60px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}

.cta-pill.cta-pill--call .cta-pill__icon{
    max-width: 50px;
}

.cta-pill.cta-pill--call {
    gap: 0;
}

.cta-pill__label{
    display:block;
}
.btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:12px 18px; border-radius:9999px;
    text-decoration:none; font-weight:800; color:#fff;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    line-height:1;
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.16); }
.btn{   background:var(--brand-blue); }

/* Row 2 right: nav; green divider above it */
.site-nav{
    grid-column:2; grid-row:2;
    padding: 32px 0 0;
}
.site-nav .menu{
    margin:0; padding:0; list-style:none;
    display:flex; flex-wrap:wrap; gap: 28px;
    justify-content:flex-end;
}
.site-nav .menu > li > a{
    text-decoration:none; color: var(--brand-blue);
    font-weight: 700; letter-spacing: .01em;
    padding: 10px 0;
}
.site-nav .menu > li > a:hover{ opacity:.7; }

/* Accessibility helper */
.sr-only{
    position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0,0,1px,1px); white-space:nowrap; border:0;
}

/* Burger (hidden on desktop) */
.nav-toggle{
    appearance:none; border:0; background:transparent; cursor:pointer;
    width:42px; height:42px; position:relative; display:none;
}
.nav-toggle .nav-toggle__bar,
.nav-toggle .nav-toggle__bar::before,
.nav-toggle .nav-toggle__bar::after{
    content:""; display:block; position:absolute; left:9px; right:9px; height:2px;
    background:var(--brand-blue);
}
.nav-toggle .nav-toggle__bar{ top:50%; transform:translateY(-50%); }
.nav-toggle .nav-toggle__bar::before{ top:-8px; }
.nav-toggle .nav-toggle__bar::after{ top: 8px; }

/* Mobile CTAs live inside the dropdown; hide on desktop */
.header-ctas--mobile{ display:none; }

/* ============================
   Responsive
   ============================ */
@media (max-width: 1023px){
    .site-header__grid{
        padding: 16px;
        column-gap: 16px;
    }
    .nav-toggle{ display:block; }
    .header-socials{ gap:10px; }
    .header-ctas{ display:none; }                  /* desktop CTAs hidden on mobile */

    /* Make nav full-width under row 2; hidden by default */
    .site-nav{
        grid-column: 1 / -1; grid-row: 2;
        padding: 10px 0 14px;
        display: none;
    }
    .site-nav .menu{
        display:grid; gap:12px; justify-content: start;
    }

    /* Mobile CTAs: shown inside dropdown only when open */
    .header-ctas--mobile{ display:none; gap:10px; margin-top:10px; }

    /* Reveal menu + mobile CTAs when toggle is expanded (via JS) */
    .site-header__grid:has(.nav-toggle[aria-expanded="true"]) .site-nav{ display:block; }
    .site-header__grid:has(.nav-toggle[aria-expanded="true"]) .header-ctas--mobile{ display:grid; }

    /* Language dropdown should sit above the menu */
    .lang-switch__menu{ right: 16px; }
}

/* Optional: slightly larger logo on very large screens */
@media (min-width: 1440px){
    .site-header__logo img{ height: 110px; }
}

/* Fallback: open language dropdown on hover/focus */
.lang-switch:hover .lang-switch__menu,
.lang-switch:focus-within .lang-switch__menu { display: block; }

/* Make sure it’s above the nav and not clipped */
.lang-switch__menu { z-index: 9999; }
.site-header, .site-header__bar { overflow: visible; }

.skiptranslate {
    display: none;
}

/* Hide Google Translate UI & prevent layout shift */
.goog-te-banner-frame.skiptranslate { display: none !important; }
.goog-te-gadget-icon { display: none !important; }
#goog-gt-tt { display: none !important; }
.skiptranslate { display: none !important; }

/* In case the banner tries to reserve space */
html.translated-ltr,
html.translated-rtl,
html[style*="top"],
body[style*="top"] {
    top: 0 !important;
}

/* =========================================================
   Text + Lottie (Two Columns)
   ========================================================= */
.text-band {
    padding: 80px 0;
    position: relative;
}

.text-band.tb--white {
    background: #fff;
    color: #282c5e;
}

.section-text.logo-blue, .text-band.tb--blue {
    background: #2e3192;
    color: #fff;
}

body.page-id-986 .text-band.tb--blue.lottie-parachute {
    background-color: #90bceb;
}

.text-band.tb--branding {
    background: linear-gradient(90deg, rgba(255, 188, 188, 0.83), rgba(255, 222, 151, 0.88), #bbf8de, #9fcaff);
    color: #fff;
}


/* ----- Grid layout ----- */
.tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tb-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tb-col--large {
    font-size: 1.35rem;
    line-height: 1.45;
    font-weight: 400;
}

.tb-text h2 {
    font: 700 28px/42px "montserrat", Arial, Helvetica, sans-serif;
    color: var(--brand-pink);
    margin: 0 0 1rem;
}

.tb-text p {
    margin: 0 0 1rem;
    color: #2e3192;
}

.tb-text p:last-of-type {
    margin: 0;
}
/* ============================
   BASE LOTTIE STYLES
   ============================ */
.tb-lottie {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.tb-lottie svg {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

body .text-band.lottie-online-customer-reviews {
    padding-bottom: 75px;
}

.text-band.lottie-compliance {
    padding: 40px 0;
}

.text-band.lottie-compliance .tb-lottie svg {
    max-width: 380px;
    height: auto;
}

.text-band.lottie-communication .tb-lottie svg {
    max-width: 430px;
    height: auto;
}

.tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tb-col {
    position: relative;
    display: flex;
    flex-direction: column;
}

.text-band.tb--lottie-bottom-left .tb-col:first-child .tb-lottie,
.text-band.tb--lottie-bottom-right .tb-col:last-child .tb-lottie {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.text-band.tb--lottie-bottom-left .tb-col:first-child,
.text-band.tb--lottie-bottom-right .tb-col:last-child {
    padding-bottom: 260px;
}

/* ============================
   MOBILE
   ============================ */

@media (max-width: 992px) {
    .tb-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .text-band.tb--lottie-bottom-left .tb-col:first-child,
    .text-band.tb--lottie-bottom-right .tb-col:last-child {
        padding-bottom: 160px;
    }

    .text-band.lottie-online-customer-reviews.tb--lottie-bottom-right .tb-col:last-child {
        padding-bottom: 320px;
    }
}

.text-band.tb--lottie-bottom-right, .text-band.tb--lottie-bottom-left {
    padding-bottom: 0;
}

.text-band.tb--lottie-bottom-right, .text-band.tb--lottie-bottom-left {
    padding-bottom: 0;
}

.tb--lottie-bottom-left .tb-col:nth-of-type(2) {
    padding-bottom: 75px;
}

.lottie-compliance svg, .lottie-track svg {
    max-width: 70%;
}