/*  Default CSS  */
:root {
    --color-black-solid: #000000;
    --color-white-solid: #ffffff;
    --color-gray: #4A4A52;
    --cool-gray: #f0f4fa;
    --dark-gray-text: #2D2D32;
    --deep-navy: #000F2A;
    --faded-text: rgba(221, 231, 244, 0.60);
    --gray-border: #E5E5E8;
    --icon-teal-bg: #E1F9F4;
    --light-gray: #8E8E98;
    --light-teal: rgba(234, 251, 247, 0.7);
    --light-text: #E7E7E7;
    --midnight-blue: #001B45;
    --mist-blue: rgba(221, 231, 244, 0.80);
    --muted-gray: #F9F9FA;
    --teal: #33B5A0;
    --teal-border: #5BDECC;
    --quote-bg: #F1FCF9;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    color: var(--color-gray);
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    overflow-x: hidden;
}

/* Let Lenis manage heights */
html.lenis,
html.lenis body {
    height: auto;
}

/* Prevent native smooth so Lenis stays in control */
:root {
    scroll-behavior: auto !important;
}

/* If a modal/offcanvas should NOT scroll with page: add data-lenis-prevent */
[data-lenis-prevent] {
    overscroll-behavior: contain;
}

h1 {
    color: var(--color-white-solid);
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -1px;
}

h2 {
    color: var(--midnight-blue);
    font-size: 40px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -1px;
    text-transform: capitalize;
}

h3 {
    color: var(--midnight-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 115%;
}

h4 {
    color: var(--midnight-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
}

h5 {
    color: var(--teal);
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 1.336px;
    text-transform: uppercase;
}

a {
    color: var(--teal);
}

a,
a:hover {
    text-decoration: none;
}

input:focus {
    outline: none;
}

button:focus {
    outline: none;
}

ul {
    list-style-type: none;
}

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

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--midnight-blue);
}

::-webkit-scrollbar {
    width: 10px;
    background-color: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--teal);
}

.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    row-gap: 20px;
}

.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}

@media (min-width: 992px) {
    .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Animations */
@keyframes marquee--move__logos {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes FadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 32px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes glowAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-60%, 20%) scale(1.05);
    }

    50% {
        transform: translate(-40%, 0) scale(1.1);
    }

    75% {
        transform: translate(-20%, -20%) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes glowAnimationBottom {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(35%, -15%) scale(1.08);
    }

    50% {
        transform: translate(15%, -35%) scale(1.12);
    }

    75% {
        transform: translate(-15%, -10%) scale(1.06);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.midnight-blue-bg {
    background-color: var(--midnight-blue);
}

.midnight-blue-color {
    color: var(--midnight-blue);
}

.teal-bg {
    background-color: var(--teal);
}

.teal-color {
    color: var(--teal);
}

.white-color {
    color: var(--color-white-solid);
}

.light-teal-bg {
    background-color: var(--light-teal);
}

.muted-gray-bg {
    background-color: var(--muted-gray);
}

.muted-teal-bg {
    background-color: var(--icon-teal-bg);
}

.light-blue-bg {
    background-color: var(--cool-gray);
}

.faded-teal-bg {
    background-color: var(--quote-bg);
}

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

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

.gap-24.row {
    margin-right: -12px;
    margin-left: -12px;
    row-gap: 24px;
}

.gap-24>[class^="col-sm-"] {
    padding-right: 12px;
    padding-left: 12px;
}

.gap-40.row {
    margin-right: -20px;
    margin-left: -20px;
    row-gap: 40px;
}

.gap-40>[class^="col-sm-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.gap-48.row {
    margin-right: -24px;
    margin-left: -24px;
    row-gap: 48px;
}

.gap-48>[class^="col-sm-"] {
    padding-right: 24px;
    padding-left: 24px;
}

.gap-64.row {
    margin-right: -32px;
    margin-left: -32px;
    row-gap: 52px;
}

.gap-64>[class^="col-sm-"] {
    padding-right: 32px;
    padding-left: 32px;
}

.gap-80.row {
    margin-right: -40px;
    margin-left: -40px;
    row-gap: 48px;
}

.gap-80>[class^="col-sm-"] {
    padding-right: 40px;
    padding-left: 40px;
}

.p-100 {
    padding: 100px 0;
}

h5.subheading {
    padding-bottom: 8px;
}

h1.inner-page {
    font-size: 40px;
    line-height: 126%;
    letter-spacing: -1.1px;
}

.heading-wrapper {
    padding-bottom: 40px;
}

.heading-wrapper p {
    padding-top: 10px;
}

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

h2 strong {
    font-weight: 700;
}

h2 span,
h2 strong {
    color: var(--teal);
}

.midnight-blue-bg h2,
.midnight-blue-bg h3,
.midnight-blue-bg h4 {
    color: var(--color-white-solid);
}

.midnight-blue-bg p,
.midnight-blue-bg ul {
    color: var(--mist-blue);
}

.desktop-hide {
    display: none;
}

.fade-up {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    animation: FadeUp 0.8s ease-out forwards;
    -webkit-animation: FadeUp 0.8s ease-out forwards;
    will-change: opacity, transform;
}

.icon {
    background-color: var(--icon-teal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    max-width: 56px;
    max-height: 56px;
    aspect-ratio: 1;
    flex-shrink: 0;
}

.icon img,
.icon svg {
    max-width: 32px;
    max-height: 32px;
}

.popup {
    transition: transform 0.25s ease-in-out;
}

.popup:hover {
    transform: translateY(-8px);
}

/* Buttons */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button {
    padding: 8px 18px;
    box-shadow: 0 4px 24px 0 rgba(91, 222, 204, 0.35);
    min-height: 60px;
    border-radius: 6px;
    color: var(--color-white-solid);
    font-size: 14px;
    font-weight: 700;
    line-height: 141%;
    text-transform: uppercase;
}

.arrow-button {
    border-radius: 8px;
    min-height: 48px;
    padding: 8px 36px;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    width: fit-content;
    text-transform: uppercase;
}

.arrow-button::after {
    content: "";
    -webkit-mask: url('../images/solid-white-arrow.svg') no-repeat center;
    mask: url('../images/solid-white-arrow.svg') no-repeat center;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    transition: transform 0.25s ease-in-out;
}

.arrow-button:hover:after,
.arrow-link:hover::after {
    transform: translateX(8px);
}

.arrow-button.midnight-blue-bg::after {
    background-color: var(--color-white-solid);
}

.arrow-button.midnight-blue-bg {
    color: var(--color-white-solid);
}

.arrow-button.teal-bg::after {
    background-color: var(--midnight-blue);
}

.arrow-button.teal-bg {
    color: var(--midnight-blue)
}

.arrow-button.transparent-midnight-blue {
    background-color: transparent;
    border: 1px solid var(--midnight-blue);
    color: var(--midnight-blue);
}

.arrow-button.transparent-midnight-blue::after {
    background-color: var(--midnight-blue);
}

.arrow-link {
    color: var(--teal);
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0.72px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.arrow-link::after {
    content: "";
    -webkit-mask: url('../images/teal-arrow-forward.svg') no-repeat center;
    mask: url('../images/teal-arrow-forward.svg') no-repeat center;
    mask-size: contain;
    background-color: currentColor;
    width: 14px;
    height: 14px;
    display: block;
    transition: transform 0.25s ease-in-out;
}

.white-transparent-button {
    min-height: 48px;
    font-size: 16px;
    letter-spacing: normal;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 8px 36px;
    color: var(--color-white-solid);
    transition: color 0.25s linear, background-color 0.25s linear;
}

.white-transparent-button:hover {
    background-color: var(--color-white-solid);
    color: var(--midnight-blue);
}

.transparent-button {
    min-height: 48px;
    font-size: 13px;
    font-weight: 600;
    line-height: 165%;
    letter-spacing: 0.65px;
    width: fit-content;
    border-radius: 6px;
    border: 1px solid var(--midnight-blue);
    text-transform: uppercase;
    padding: 8px 27px;
    color: var(--midnight-blue);
    background-color: transparent;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.transparent-button:hover {
    background-color: var(--midnight-blue);
    color: var(--color-white-solid);
}

.midnight-blue-button {
    min-height: 40px;
    font-size: 12px;
    font-weight: 600;
    line-height: 165%;
    letter-spacing: 0.6px;
    width: fit-content;
    border-radius: 4px;
    border: 1px solid var(--midnight-blue);
    text-transform: uppercase;
    padding: 8px 18px;
    color: var(--color-white-solid);
    background-color: var(--midnight-blue);
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border 0.25s ease-in-out;
}

.midnight-blue-button:hover {
    background-color: var(--teal);
    border: 1px solid var(--teal);
    color: var(--midnight-blue);
}

.desktop-hide {
    display: none;
}

/* Iframe */
.iframe-wrapper {
    position: relative;
    min-height: 100px;
}

.iframe-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: opacity .3s ease, visibility .3s ease;
}

.iframe-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e5e5;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    -webkit-animation: spin .8s linear infinite;
}

.iframe-wrapper iframe {
    display: block;
    width: 100%;
}

/* Header */
header {
    height: 72px;
}

.header-wrapper,
.mobile-header {
    position: fixed;
    z-index: 99;
    top: 0;
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 27, 69, 0.07);
    background-color: #FFF;
    box-shadow: 0 1px 12px 0 rgba(0, 27, 69, 0.04);
    backdrop-filter: blur(10px);
}

.header-wrapper {
    padding: 0 20px;
    transition: background-color 0.2s linear, box-shadow 0.2s linear, border-color 0.2s linear;
}

.header-wrapper:has(li.menu-item-has-children:hover) {
    background-color: #EDEDED;
    box-shadow: 0 8px 30px 0 rgba(0, 27, 69, 0.08);
    border-color: rgba(0, 27, 69, 0.06);
}

.header-wrapper .container {
    padding: 0;
}

.row-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.header-logo a {
    width: 100%;
    max-width: 109px;
}

.header-menu ul.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-menu ul.menu li>a {
    font-size: 14px;
    font-weight: 500;
    line-height: 23.1px;
    color: var(--color-gray);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 12px;
    transition: color 0.2s linear, font-weight 0.2s linear;
}

.header-menu ul.menu li>a::after {
    content: attr(data-text) / "";
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
    font-weight: 600;
}

.header-menu ul.menu li.current-menu-item>a,
.header-menu ul.menu li:hover>a,
.header-menu ul.sub-menu li:hover>a,
.header-menu ul.sub-menu li.current-menu-item>a {
    color: var(--midnight-blue);
    font-weight: 600;
}

.header-menu li.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

.header-menu ul.menu li.menu-item-has-children a {
    padding-right: 0;
}

.header-menu li.menu-item-has-children::after {
    content: "";
    background-image: url('../images/chevron-forward.svg');
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    background-size: 18px;
    margin-right: 14px;
    transform: rotate(0);
    transition: transform 0.25s linear;
}

.header-menu li.menu-item-has-children:hover::after {
    transform: rotate(-180deg);
}

.header-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white-solid);
    width: 280px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.header-menu li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu ul.sub-menu li {
    padding: 4px;
}

.header-menu ul.sub-menu li a {
    padding: 5px 14px;
    color: var(--midnight-blue);
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    transition: font-weight 0.2s linear;
}

header .arrow-button {
    min-height: 40px;
    font-size: 14px;
}

.mobile-menu {
    display: none;
}

/* Footer */
.footer-wrapper {
    padding: 80px 20px 0;
    background-color: var(--deep-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-wrapper .container {
    padding: 0;
}

.footer-top-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 57px;
    padding-bottom: 87px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.footer-logo-text-wrapper {
    max-width: 285px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-logo-text-wrapper img {
    max-width: 157px;
}

.footer-logo-text-wrapper p,
.footer-info-text p {
    color: var(--mist-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.footer-menu-wrapper {
    max-width: 894px;
    display: flex;
    gap: 24px;
}

.footer-menu h5 {
    padding-bottom: 20px;
}

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

.footer-menu li a {
    color: rgba(221, 231, 244, 0.65);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    transition: color 0.25s ease;
}

.footer-menu li a:hover,
.footer-menu li.current-menu-item a {
    color: var(--color-white-solid);
}

.footer-mid-wrapper {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

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

.footer-links-wrapper {
    max-width: 310px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-links-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-links-wrapper li {
    position: relative;
}

.footer-links-wrapper li::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: -30px;
    top: 5px;
}

.footer-links-wrapper li.address::before {
    background-image: url('../images/location-pin.svg');
}

.footer-links-wrapper li.phone-no::before {
    background-image: url('../images/call.svg');
}

.footer-links-wrapper li.email::before {
    background-image: url('../images/mail.svg');
}

.footer-links-wrapper li a {
    color: var(--mist-blue);
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-decoration: underline;
}

.footer-links-wrapper li a:hover {
    text-decoration: none;
}

.social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links-wrapper a {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: border 0.25s ease, background 0.25s ease;
}

.social-links-wrapper a:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.social-links-wrapper img {
    width: 16px;
    height: 16px;
}

.footer-bottom-wrapper {
    padding: 32px 0 28px;
}

.footer-bottom-wrapper p {
    color: rgba(221, 231, 244, 0.45);
    font-size: 12px;
    font-weight: 400;
    line-height: 165%;
}

/* Two Column with Iframe Home Banner */
.two-column-with-iframe-home-banner {
    position: relative;
    padding: 64px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.two-column-with-iframe-home-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, var(--color-cyan-6118, rgba(91, 222, 204, 0.18)) 0%, var(--color-cyan-610, rgba(91, 222, 204, 0.00)) 60%);
    filter: blur(10px);
    right: -288px;
    top: -217px;
    width: 900px;
    height: 900px;
    animation: glowAnimation 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.two-column-with-iframe-home-banner::before {
    content: "";
    position: absolute;
    border-radius: 350px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, var(--color-azure-5714, rgba(72, 156, 217, 0.14)) 0%, var(--color-azure-570, rgba(72, 156, 217, 0.00)) 60%);
    filter: blur(5px);
    left: -123px;
    bottom: -172.73px;
    width: 700px;
    height: 700px;
    animation: glowAnimationBottom 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.two-column-with-iframe-home-banner .row {
    position: relative;
    z-index: 1;
}

.two-column-with-iframe-home-banner .heading-content-wrapper {
    display: flex;
    flex-direction: column;
}

.two-column-with-iframe-home-banner .heading-content-wrapper {
    gap: 20px;
}

.two-column-with-iframe-home-banner .podcast-guestings-tag {
    font-size: 13px;
    width: fit-content;
}

.two-column-with-iframe-home-banner .content-wrapper {
    gap: 32px;
}

.two-column-with-iframe-home-banner .reviews-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.two-column-with-iframe-home-banner .review-img,
.two-column-with-iframe-home-banner .review-img img {
    max-height: 56px;
}

.two-column-with-iframe-home-banner .review-text {
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 100px;
    border: 1px solid rgba(91, 222, 204, 0.18);
    background: rgba(91, 222, 204, 0.08);
    backdrop-filter: blur(4px);
}

.two-column-with-iframe-home-banner .review-text img {
    max-width: 72px;
}

.two-column-with-iframe-home-banner .review-text p {
    color: rgba(221, 231, 244, 0.90);
    font-size: 12px;
    font-weight: 600;
    line-height: 19.8px;
    letter-spacing: 0.24px;
}

.two-column-with-iframe-home-banner .review-text p span {
    font-weight: 900;
}

.two-column-with-iframe-home-banner .form-wrapper {
    border-radius: 10px;
    border: 0.891px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 35.62px 71.241px 0 rgba(0, 8, 20, 0.50);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10.686080932617188px);
}

.two-column-with-iframe-home-banner .form-wrapper::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(140deg, rgba(91, 222, 204, 0.35) 0%, rgba(72, 156, 217, 0.10) 40%, rgba(72, 156, 217, 0.00) 65%);
}

.two-column-with-iframe-home-banner .form-wrapper .form-container {
    position: relative;
    z-index: 1;
}

.two-column-with-iframe-home-banner .iframe-header {
    padding: 24px 24px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.two-column-with-iframe-home-banner .iframe-badge {
    border-radius: 889.616px;
    border: 0.891px solid rgba(91, 222, 204, 0.30);
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.693px;
    letter-spacing: 1.336px;
    text-transform: uppercase;
    width: fit-content;
}

.two-column-with-iframe-home-banner .form-wrapper h4 {
    line-height: 130%;
}

/* Logo Slider */
.logo-slider h5 {
    line-height: 160%;
    text-align: center;
    padding: 44px 0 20px;
    letter-spacing: normal;
}

.marquee-logos {
    width: 100%;
    align-items: center;
    display: flex;
    gap: 32px;
    position: relative;
    overflow: hidden;
    padding: 0 0 44px;
}

.marquee-logos__container {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    will-change: transform;
    animation: marquee--move__logos 20s linear infinite;
    -webkit-animation: marquee--move__logos 20s linear infinite;
}

.marquee-logos__container img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
    .marquee-logos:hover .marquee-logos__container {
        animation-play-state: paused;
        -webkit-animation-play-state: paused;
    }
}

/* Two Column Content and Image */
.two-column-content-and-image.light-teal-bg {
    background-color: #F2FAF9;
}

.radial-gradient-bg{
    background: radial-gradient(60% 70% at 88% 14%, rgba(91, 222, 204, 0.3), rgba(91, 222, 204, 0) 60%), linear-gradient(136.76deg, rgba(241, 252, 249, 0.4), rgba(225, 249, 244, 0.8)), linear-gradient(#fff, #fff);
}

.radial-gradient-bg .image-overlay .icon{
    background-color: #fff0df;

}

.two-column-content-and-image h2 {
    padding-bottom: 12px;
}

.two-column-content-and-image .content-wrapper{
    gap: 16px;
}

.two-column-content-and-image .content-wrapper strong,
.two-column-content-and-image .content-wrapper a {
    color: var(--teal);
    font-weight: 700;
}

.two-column-content-and-image .content-wrapper p strong {
    color: var(--color-gray);
}

.two-column-content-and-image h4 {
    padding-top: 20px;
}

.two-column-content-and-image ul {
    padding-left: 36px;
    line-height: 140%;
    letter-spacing: -0.16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.two-column-content-and-image li {
    position: relative;
}

.two-column-content-and-image li::before {
    content: "";
    position: absolute;
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -36px;
    top: 2px;
}

.two-column-content-and-image .advisor-info {
    padding-top: 20px;
}

.advisor-info h3 {
    line-height: 130%;
    letter-spacing: -1px;
}

.advisor-info h6 {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding-top: 6px;
}

.two-column-content-and-image .button-wrapper {
    margin-top: 20px;
}

.button-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.two-column-content-and-image .arrow-button {
    padding: 8px 30px;
}

.two-column-content-and-image .rounded-image {
    border-radius: 20px;
    box-shadow: 0 20.833px 41.667px 0 rgba(0, 27, 69, 0.12), 0 8.333px 16.667px 0 rgba(0, 27, 69, 0.04);
}

.two-column-content-and-image .rounded-image {
    box-shadow: 0 24px 48px 0 rgba(0, 27, 69, 0.13), 0 8px 16px 0 rgba(0, 27, 69, 0.05);
}

.two-column-content-and-image .add-image-overlay {
    position: relative;
    display: flex;
}

.two-column-content-and-image .image-overlay {
    position: absolute;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 24px 0 rgba(0, 27, 69, 0.10), 0 4px 8px 0 rgba(0, 27, 69, 0.04);
    backdrop-filter: blur(6px);
    display: flex;
    gap: 14px;
    padding: 16px 22px;
}

.two-column-content-and-image .image-overlay .icon {
    background-color: var(--teal);
    width: 42px;
    height: 42px;
    border-radius: 11px;
}

.two-column-content-and-image .image-overlay .icon img {
    width: 20px;
    width: 20px;
}

.two-column-content-and-image .image-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.two-column-content-and-image .image-overlay.right {
    right: -10px;
    bottom: 39px;
}

.two-column-content-and-image .image-overlay.left {
    left: 24px;
    bottom: 24px;
}

.two-column-content-and-image .image-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.84px;
}

.two-column-content-and-image .image-overlay h6 {
    color: #6B6B75;
    font-size: 11px;
    font-weight: 700;
    line-height: 18.15px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.two-column-content-and-image .image-overlay-text.icon-added h3 {
    font-size: 17px;
}

/* Icon and Content Cards */
.icon-and-content-cards .heading-wrapper,
.feature-and-video-section .heading-wrapper,
.icon-pointers-section .heading-wrapper {
    max-width: 888px;
    margin: auto;
}

.icon-and-content-cards .heading-wrapper p {
    font-weight: 500;
    line-height: 140%;
}

.icon-cards-wrapper.two-cards-layout {
    row-gap: 20px;
}

.icon-content-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.05);
    height: 100%;
    padding: 24px;
}

.muted-gray-bg .icon-content-card {
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
}

.icon-cards-wrapper.two-cards-layout .icon-content-card {
    border-radius: 18px;
}

.icon-content-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.icon-content-card .icon img {
    width: 30px;
    height: 30px;
}

.icon-content-card p {
    line-height: 140%;
}

.icon-content-card ul{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.icon-content-card ul li {
    display: flex;
    gap: 12px;
}

.icon-content-card ul li::before {
    content: "";
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
}


.icon-and-content-cards a.button {
    margin: auto;
    margin-top: 40px;
}

/* Heading and Button */
.heading-and-button {
    padding: 80px 0;
    background: radial-gradient(70.71% 120.21% at 85% 50%, rgba(91, 222, 204, 0.18) 0%, rgba(91, 222, 204, 0.00) 60%), radial-gradient(70.71% 120.21% at 15% 50%, rgba(72, 156, 217, 0.12) 0%, rgba(72, 156, 217, 0.00) 50%), #001B45;
}

.heading-and-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.heading-and-button-wrapper h2 {
    max-width: 806px;
}

.heading-and-button-wrapper h2 strong {
    color: var(--teal);
    font-weight: 700;
}

.heading-and-button-wrapper a {
    flex-shrink: 0;
}

/* Content with Statistics and Quote  */
.content-with-statistics-and-quote .image-wrapper {
    border-radius: 20px;
    box-shadow: 0 19.158px 38.316px 0 rgba(0, 27, 69, 0.12), 0 7.663px 15.326px 0 rgba(0, 27, 69, 0.04);
    position: relative;
    overflow: hidden;
}

.content-with-statistics-and-quote .image-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 27, 69, 0.40) 0%, rgba(0, 27, 69, 0.00) 50%);
    top: 0;
    left: 0;
}

.content-with-statistics-and-quote .image-wrapper img {
    display: block;
}

.content-with-statistics-and-quote .content {
    padding-top: 12px;
}

.content-with-statistics-and-quote .advisor-info {
    padding-top: 20px;
}

.stats-wrapper {
    padding: 24px 0;
    margin-top: 12px;
}

.stats-card {
    border-right: 1px solid var(--light-text);
}

.stats-card p {
    font-weight: 700;
    line-height: 14.3px;
    letter-spacing: 1.716px;
    text-transform: uppercase;
    padding: 0 0 2px;
}

.stats-card p span {
    font-size: 24px;
    font-weight: 800;
    line-height: 140%;
}

.stats-card h6 {
    font-size: 12px;
    font-weight: 600;
    line-height: 18.48px;
    letter-spacing: 1.344px;
    text-transform: uppercase;
}

.quote {
    background-color: var(--quote-bg);
    border-radius: 0 8px 8px 0;
    border-left: 3px solid var(--teal);
    padding: 20px 24px;
}

.quote p {
    padding: 0;
    color: var(--dark-gray-text);
    font-style: italic;
    font-weight: 500;
    line-height: 25.5px;
}

.quote,
.content-with-statistics-and-quote .button {
    margin-top: 20px;
}

/* Feature and Video Section */
.features-video-wrapper .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.features-video-wrapper .feature h4 {
    color: var(--teal);
    font-weight: 600;
    line-height: 120%;
    text-transform: uppercase;
    padding-bottom: 14px;
}

.features-video-wrapper .feature p {
    color: #d5d5d5;
}

.features-video-wrapper .video-wrapper {
    border-radius: 22px;
    padding: 14px;
    border: 1px solid var(--teal-border);
    background: linear-gradient(161deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.features-video-wrapper .video-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 322px;
}

.features-video-wrapper .youtube-video {
    display: flex;
}

.features-video-wrapper .video-wrapper video {
    width: 100%;
    display: flex;
    height: auto;
}

/* Cards with Numbers */
.cards-with-numbers .heading-wrapper p {
    color: rgba(221, 231, 244, 0.75);
}

.cards-with-numbers .heading-container h5 {
    padding-bottom: 8px;
}

.cards-with-numbers .heading-container p {
    padding-top: 10px;
}

.cards-with-numbers .row {
    justify-content: center;
}

.heading-quote-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.heading-quote-wrapper h2 strong::after {
    content: "";
    display: block;
}

.heading-quote-wrapper h6 {
    color: #F2F2F4;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    max-width: 380px;
    padding-left: 18px;
    height: fit-content;
    border-left: 2px solid var(--teal);
}

.heading-quote-wrapper h6 strong {
    color: var(--teal);
    font-weight: 700;
}

.numbered-cards-wrapper .card {
    border-radius: 24px;
    padding: 28px 26px 32px;
    height: 100%;
}

.numbered-cards-wrapper h3 {
    padding: 23px 0 11px;
}

.numbered-cards-wrapper .white-card {
    border: 1px solid var(--gray-border);
    background-color: var(--color-white-solid);
    box-shadow: 0 4px 12px 0 rgba(0, 27, 69, 0.06), 0 2px 4px 0 rgba(0, 27, 69, 0.04);
}

.numbered-cards-wrapper .white-card h3 {
    color: initial;
}

.numbered-cards-wrapper .white-card p {
    color: var(--color-gray);
}

.numbered-cards-wrapper .card p.card-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 85%;
    letter-spacing: 2px;
}

.numbered-cards-wrapper .white-card p.card-number {
    position: relative;
    z-index: 1;
    color: var(--color-white-solid);
}

.numbered-cards-wrapper .white-card p.card-number::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: var(--teal);
    z-index: -1;
}

.numbered-cards-wrapper .transparent-card {
    border: 1px solid rgba(91, 222, 204, 0.25);
    background: radial-gradient(141.42% 141.42% at 100% 0%, rgba(91, 222, 204, 0.20) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(141.42% 141.42% at 0% 100%, rgba(72, 156, 217, 0.12) 0%, rgba(72, 156, 217, 0.00) 50%), linear-gradient(180deg, #001B45 0%, #012558 100%);
    box-shadow: 0 22px 56px 0 rgba(0, 8, 20, 0.28);
}

.numbered-cards-wrapper .transparent-card p.card-number {
    color: var(--teal);
}

.numbered-cards-wrapper .transparent-card h3,
.numbered-cards-wrapper .transparent-card p {
    color: var(--color-white-solid);
}

/* Image and CTA Cards */
.image-cta-card {
    border-radius: 18px;
    height: 100%;
}

.faded-teal-bg .heading-wrapper {
    padding-bottom: 36px;
}

.midnight-blue-bg .image-cta-card {
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(161deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.image-cta-card {
    overflow: hidden;
}

.faded-teal-bg .image-cta-card {
    background-color: var(--color-white-solid);
    border: 1px solid var(--gray-border);
}

.image-cta-card img {
    display: flex;
    max-height: 320px;
}

.image-cta-card h6.tag {
    font-size: 11px;
    font-weight: 700;
    line-height: 100%;
    padding: 5px 11px;
    text-transform: uppercase;
    width: fit-content;
}

.midnight-blue-bg .image-cta-card h6.tag {
    border-radius: 4px;
    border: 1px solid rgba(72, 156, 217, 0.30);
    background: #DBEAF7;
    color: #185983;
    letter-spacing: 0.88px;
    margin-bottom: 4px;
}

.faded-teal-bg .image-cta-card h6.tag {
    border-radius: 5px;
    border: 1px solid rgba(91, 222, 204, 0.40);
    background-color: var(--icon-teal-bg);
    letter-spacing: 1.1px;
    color: var(--teal);
    padding-bottom: 6px;
}

.image-cta-card .cta-wrapper {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faded-teal-bg .image-cta-card .cta-wrapper {
    padding: 32px;
}

.image-cta-card h4 {
    line-height: 130%;
}

.faded-teal-bg .image-cta-card h4 {
    line-height: 125%;
    font-weight: 800;
    letter-spacing: -0.3px;
    padding-bottom: 4px;
}

.faded-teal-bg .image-cta-card p {
    font-size: 15px;
}

.image-cta-card .cta-wrapper ul {
    padding: 10px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.image-cta-card .cta-wrapper li {
    font-size: 14px;
    line-height: 150%;
}

.image-and-cta-cards h4.sub-text {
    font-weight: 400;
    line-height: 156%;
    text-align: center;
    padding-top: 20px;
}

.image-and-cta-cards .advisor-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
}

.image-and-cta-cards .advisor-info h3 {
    font-size: 13px;
    line-height: 110%;
}

.image-and-cta-cards .advisor-info h6 {
    color: #6B6B75;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.44px;
    text-transform: none;
    padding-top: 1px;
}

/* Client Stories Slider */
.client-stories-slider {
    position: relative;
}

.client-stories-slider-wrapper {
    overflow: hidden;
}

.slider-gradient {
    position: absolute;
    height: 100%;
    width: 125px;
    top: 0;
    z-index: 1;
}

.slider-gradient.right {
    background: linear-gradient(270deg, #FFF 49.56%, rgba(255, 255, 255, 0.00) 100%);
    right: -40px;
}

.slider-gradient.left {
    left: -40px;
    background: linear-gradient(90deg, #FFF 49.56%, rgba(255, 255, 255, 0.00) 100%);
}

.client-stories-grid {
    display: flex;
    min-height: 282px;
    gap: 18px;
    width: max-content;
    flex-wrap: nowrap;
    will-change: transform;
}

.client-stories-grid.row-1 {
    padding-bottom: 18px;
    animation: marquee-right 40s linear infinite;
    -webkit-animation: marquee-right 40s linear infinite;
}

.client-stories-grid.row-2 {
    animation: marquee-left 40s linear infinite;
    -webkit-animation: marquee-left 40s linear infinite;
}

.client-story-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.client-stories-grid:hover {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.client-story-card.review-card {
    display: flex;
}

.client-story-card.review-card p {
    max-width: 380px;
}

.client-story-card.review-card.review-with-image p {
    max-width: 455px;
}

.client-story-card.review-card.midnight-blue-bg {
    box-shadow: 0 7.525px 30.1px 0 rgba(0, 8, 20, 0.15);
}

.client-story-card.review-card.light-bg {
    background-color: var(--quote-bg);
    border: 0.941px solid rgba(91, 222, 204, 0.20);
}

.client-story-card .review-img-wrapper {
    flex: 0 0 30%;
    align-self: stretch;
    overflow: hidden;
    position: relative;
}

.client-story-card .review-img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.client-story-card.review-card .review-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    line-height: 15.52px;
    letter-spacing: 0.752px;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 3.763px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3.762500047683716px);
}

.client-story-card.review-card .review-wrapper {
    padding: 32px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-story-card.review-card .review-wrapper::before {
    content: '"';
    position: absolute;
    font-size: 52.675px;
    font-weight: 400;
    line-height: 26.337px;
    top: 15px;
    right: 17px;
}

.client-story-card.review-card.midnight-blue-bg .review-wrapper::before,
.client-story-card.review-card.light-bg .review-wrapper::before {
    color: rgba(91, 222, 204, 0.30);
}

.client-story-card.review-card.teal-bg .review-wrapper::before {
    color: rgba(0, 27, 69, 0.18);
}

.client-story-card.review-card .review-wrapper::after {
    content: "";
    border-radius: 47.031px;
    position: absolute;
    right: -28.281px;
    top: -28.219px;
    width: 94px;
    height: 94px;
}

.client-story-card.review-card.midnight-blue-bg .review-wrapper::after {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.25) 0%, rgba(91, 222, 204, 0.00) 70%);
}

.client-story-card.review-card.teal-bg .review-wrapper::after {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.00) 70%);
}

.client-story-card.review-card.light-bg .review-wrapper::after {
    background: radial-gradient(70.71% 70.71% at 50% 50%, var(--color-cyan-6125, rgba(91, 222, 204, 0.25)) 0%, var(--color-cyan-610, rgba(91, 222, 204, 0.00)) 70%);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
}

.review-name {
    line-height: 15.52px;
    letter-spacing: 1.129px;
}

.client-story-card.review-card.midnight-blue-bg .review-name {
    color: var(--color-white-solid);
}

.client-story-card.review-card.teal-bg .review-name,
.client-story-card.review-card.light-bg .review-name {
    color: var(--midnight-blue);
}

.review-stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.client-story-card.review-card.midnight-blue-bg .review-stars svg,
.client-story-card.review-card.light-bg .review-stars svg {
    color: var(--teal);
}

.client-story-card.review-card.teal-bg .review-stars svg {
    color: var(--midnight-blue);
}

.review-content {
    font-size: 14px;
    line-height: 20.694px;
}

.client-story-card.review-card.midnight-blue-bg .review-content {
    color: var(--mist-blue);
}

.client-story-card.review-card.teal-bg .review-content,
.client-story-card.review-card.light-bg .review-content {
    color: rgba(0, 0, 0, 0.80);
}

.review-footer {
    padding-top: 13.17px;
    margin-top: 13.17px;
    border-top: 0.941px solid rgba(255, 255, 255, 0.10);
    color: var(--teal);
    font-size: 14px;
    font-weight: 500;
    line-height: 15.52px;
    letter-spacing: 0.941px;
    text-transform: uppercase;
}

.client-story-card.review-card.teal-bg .review-footer {
    border-color: rgba(0, 27, 69, 0.18);
    color: var(--midnight-blue);
}

.client-story-card.review-card.light-bg .review-footer {
    border-color: rgba(91, 222, 204, 0.25);
}

.review-card.light-style .review-badge {
    background: rgba(13, 27, 62, 0.08);
    color: var(--midnight-blue);
}

.review-card.light-style .review-footer {
    border-top-color: rgba(13, 27, 62, 0.12);
}

.review-card.light-style .review-stars svg.empty {
    color: rgba(13, 27, 62, 0.15);
}

.media-card {
    position: relative;
    aspect-ratio: 1;
    min-height: 282px;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 27, 69, 0.10) 0%, rgba(0, 27, 69, 0.85) 100%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.media-card .play-button {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2.8218750953674316px);
}

.video-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-popup-modal.open {
    display: flex;
}

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-popup-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    z-index: 1;
}

.video-popup-player,
.youtube-player {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #000;
    display: block;
}

.video-popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-white-solid);
    color: var(--midnight-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.media-card .play-button:hover,
.video-popup-close:hover {
    background-color: var(--teal);
}

body.video-modal-open {
    overflow: hidden;
}

.media-overlay-text {
    position: absolute;
    left: 20px;
    bottom: 16px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.media-overlay-text h5 {
    font-weight: 500;
    line-height: 19.988px;
    text-transform: none;
    letter-spacing: normal;
}

.media-overlay-text p {
    color: rgba(221, 231, 244, 0.70);
    font-size: 14px;
    font-weight: 500;
    line-height: 18.624px;
}

.desktop-hide .client-stories-slider-wrapper .slick-slide {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 9px;
    padding-right: 9px;
}

.desktop-hide .client-stories-slider-wrapper .slick-slide>div {
    display: flex;
}

/* Book CTA with Features and Form */
.book-cta-with-features-and-form.gradient {
    position: relative;
    overflow: hidden;
}

.book-cta-with-features-and-form.gradient::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, var(--color-cyan-6118, rgba(91, 222, 204, 0.18)) 0%, var(--color-cyan-610, rgba(91, 222, 204, 0.00)) 60%);
    filter: blur(10px);
    right: -237px;
    top: -263.109px;
    width: 1106px;
    height: 1106px;
    animation: glowAnimation 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.book-cta-with-features-and-form.gradient .container {
    position: relative;
    z-index: 1;
}

.book-cta-with-features-and-form h5.subheading {
    padding-bottom: 0;
}

.book-cta-with-features-and-form .content-wrapper {
    gap: 16px;
}

.book-cta-with-features-and-form .content-wrapper p {
    line-height: 24.75px;
    max-width: 570px;
}

.book-cta-with-features-and-form .content-wrapper ul {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

li.check {
    display: flex;
    gap: 12px;
    line-height: 140%;
}

li.check::before {
    content: "";
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
}

.book-cta-with-features-and-form .content-wrapper li {
    letter-spacing: -0.16px;
}

.book-cta-with-features-and-form .review-stars svg {
    color: var(--teal);
}

.book-cta-with-features-and-form .button-wrapper {
    gap: 14px;
    margin-top: 15px;
}

.book-cta-with-features-and-form .button-wrapper p {
    color: var(--faded-text);
    font-size: 13px;
    line-height: 21.45px;
}

.book-cta-with-features-and-form .form-wrapper {
    margin-top: -20px;
}

.book-cta-with-features-and-form .form-wrapper h4 {
    color: #DDE7F4;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
}

.book-cta-with-features-and-form .iframe-wrapper {
    border-radius: 15px;
    border: 1px solid var(--teal-border);
    background: linear-gradient(161deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 12px;
    margin-top: 24px;
    overflow: hidden;
}

.book-cta-with-features-and-form .iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.book-cta-with-features-and-form.download-form .content-wrapper {
    gap: unset;
}

.book-cta-with-features-and-form.download-form h5.subheading {
    padding-bottom: 8px;
}

.book-cta-with-features-and-form.download-form .content-wrapper ul {
    padding: 24px 0 60px;
}

.book-cta-with-features-and-form img {
    max-height: 420px;
    object-fit: contain;
}

/* FAQ Section */
.faq-section.light-teal-bg {
    background-color: #F2FAF9;
}

.faq-section .accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    z-index: 2;
    border-radius: 18px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 10px 20px 0 rgba(0, 27, 69, 0.10), 0 4px 8px 0 rgba(0, 27, 69, 0.04);
}

.faq-section .accordionjs .acc_section {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-bottom: 1px solid var(--gray-border);
}

.faq-section .accordionjs .acc_section .acc_head {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}

.faq-section .accordionjs .acc_section .acc_content {
    padding: 0 28px 24px;
}

.faq-section .accordionjs .acc_section.acc_active>.acc_content {
    display: block;
}

.faq-section .accordionjs .acc_section .ant-collapse-header {
    padding: 24px 28px;
    transition: all ease-in-out 0.4s;
}

.faq-section .custom-cms-content a,
.faq-section .custom-cms-content strong {
    color: var(--teal);
}

.faq-section .custom-cms-content a {
    text-decoration: underline;
}

.faq-section .custom-cms-content a:hover {
    text-decoration: none;
}

.faq-section .faq-icon {
    width: 32px;
    height: 32px;
    background-color: #C6F3EC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100%;
}

.faq-section .faq-icon svg {
    width: 14px;
    height: 14px;
}

.faq-section .faq-icon path {
    transition: all ease-in-out 0.3s;
}

.faq-section .acc_active path.vertical-line {
    opacity: 0;
}

.faq-section .custom-faq-content {
    max-width: 820px;
    margin: auto;
}

.faq-section .custom-cms-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 140%;
}

.faq-section .custom-cms-content ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-section .custom-cms-content ul li {
    display: flex;
    gap: 12px;
}

.faq-section .custom-cms-content ul li::before {
    content: "";
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
}

/* Founders Video Section */
.founders-video-section {
    overflow: hidden;
}

.founders-video-section .heading-wrapper {
    max-width: 800px;
    margin: auto;
}

.founders-video-section p {
    line-height: 24.75px;
}

.founder-video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box {
    width: 638px;
    padding: 12px;
    position: relative;
    border-radius: 25px;
    border: 1px solid var(--teal-border);
    background: linear-gradient(161deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    overflow: hidden;
}

.video-box img,
.founder img {
    display: block;
}

.founder {
    position: absolute;
    bottom: -106px;
    z-index: 1;
}

.founder img {
    height: 436px;
}

.founder-left {
    left: 0;
}

.founder-right {
    right: 0;
}

.founder-card {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white-solid);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 20px 0 rgba(0, 27, 69, 0.10), 0 4px 8px 0 rgba(0, 27, 69, 0.04);
    backdrop-filter: blur(6px);
    padding: 7px 22px;
    min-width: 312px;
}

.founder-card h6 {
    font-size: 17px;
    font-weight: 700;
    line-height: 175%;
}

.founder-card span {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.6;
    line-height: 165%;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.founders-video-section .play-button {
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-white-solid);
    background: transparent;
    cursor: pointer;
}

.founders-video-section .play-button:hover {
    background-color: var(--midnight-blue);
}

/* Podcasts Section */
.podcast-section .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18.41px;
    border: 1.023px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(161deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 30px 0;
}

.podcast-section .image-wrapper img {
    max-width: 386px;
}

.podcast-section .content-wrapper {
    gap: 24px;
}

.podcast-section h4 {
    line-height: 130%;
}

.podcast-section p {
    line-height: 24.75px;
}

.podcasts-wrapper {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.podcast {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 165%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    padding: 12px 19px;
    transition: background-color 0.25 ease-in-out;
}

.podcast:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.podcast img {
    width: 24px;
    height: 24px;
}

/* Content with Form */
.content-with-form.light-teal-bg {
    background-color: #EAFBF7;
}

.content-with-form .heading-wrapper {
    padding-bottom: 12px;
}

.content-with-form p {
    padding-bottom: 26px;
}

.content-with-form .feature {
    display: flex;
    gap: 16px
}

.content-with-form .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.content-with-form .icon img {
    width: 22px;
    height: 22px;
}

.content-with-form .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-with-form .feature-text p {
    padding-bottom: 0;
    line-height: 22px;
}

.content-with-form .feature-text p span {
    font-size: 16px;
    font-weight: 700;
    line-height: 165%;
    display: block;
    margin-bottom: 4px;
}

.form-wrapper.gradient-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 20px 40px 0 rgba(0, 27, 69, 0.12), 0 8px 16px 0 rgba(0, 27, 69, 0.04);
}

.form-wrapper.gradient-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 9px;
    width: 100%;
    background: linear-gradient(90deg, #5BDECC 0%, #489CD9 100%);
}

.content-with-form .iframe-header {
    padding: 40px 32px 28px;
}

.content-with-form .iframe-header p {
    padding: 5px 0 0;
}

/* Blogs Section */
.section-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
}

.section-header a.button {
    flex-shrink: 0;
}

.blogs-section .section-header {
    padding-bottom: 40px;
}

.blogs-section .section-header .content-wrapper {
    gap: 5px;
}

.article-card {
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    overflow: hidden;
    height: 100%;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.blogs-section .blog-image {
    height: 233px;
}

.article-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 100%;
    transition: transform 0.25s ease-in-out;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.blogs-section .category{
    position: absolute;
    top: 14px;
    left: 14px;
}

.category {
    font-size: 11px;
    line-height: 11px;
    font-weight: 700;
    letter-spacing: 0.88px;
    color: var(--midnight-blue);
    padding: 5px 11px;
    border-radius: 4px;
    border: 1px solid rgba(0, 27, 69, 0.15);
    background-color: #ECF7FF;
    text-transform: uppercase;
}

.category.badge-style-2 {
    border-color: rgba(91, 222, 204, 0.40);
    background-color: var(--icon-teal-bg);
    color: var(--teal);
}

.category.badge-style-3 {
    border-color: rgba(255, 188, 125, 0.40);
    background-color: #FFF0DF;
    color: #A35E1E;
}

.blogs-section .blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 233px);
    justify-content: space-between;
    gap: 18px;
}

.blogs-section .blog-date {
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 600;
    line-height: 165%;
    padding-bottom: 8px;
}

.blogs-section .blog-content h3 a {
    color: var(--midnight-blue);
    font-weight: 700;
    font-size: 16px;
    line-height: 143%;
    transition: color 0.2s ease;
}

.blogs-section .blog-content h3 a:hover {
    color: var(--teal);
}

.blogs-section .blog-content p {
    color: rgba(0, 0, 0, 0.80);
    font-size: 14px;
    line-height: 22px;
    padding-top: 4px;
}

.slick-dots li button {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #7BAFDD;
}

.slick-dots li.slick-active button {
    background: var(--midnight-blue);
    width: 16px;
    height: 16px;
}

.slick-dots li button:before {
    display: none;
}

/* Case Study Section */
.case-study-section {
    background-color: #EAFBF7;
}

.case-study-section .heading-wrapper {
    padding-bottom: 48px;
}

.case-study-section .heading-wrapper p {
    font-weight: 500;
    line-height: 140%;
}

.case-study-slider {
    padding: 0 100px 20px;
    max-width: 1420px;
    margin: auto;
    filter: drop-shadow(0 32px 64px rgba(0, 27, 69, 0.2));
}

.case-studies .case-top {
    padding: 24px 40px;
    background: radial-gradient(70.71% 113.14% at 80% 50%, rgba(91, 222, 204, 0.18) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(141.42% 127.28% at 10% 100%, rgba(72, 156, 217, 0.15) 0%, rgba(72, 156, 217, 0.00) 50%), #001B45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24.041px 24.041px 0 0;
}

.case-studies .case-top h3 {
    font-weight: 800;
}

.case-studies .case-top a.button{
    flex-shrink: 0;
}

.case-studies .case-content {
    padding: 32px 40px 36px 40px;
    border-radius: 0 0 24.041px 24.041px;
    background-color: var(--color-white-solid);
}

.case-studies .case-image {
    display: flex;
    overflow: hidden;
    border-radius: 16.027px;
    box-shadow: 0 10.017px 20.034px 0 rgba(0, 27, 69, 0.10), 0 4.007px 8.014px 0 rgba(0, 27, 69, 0.04);
}

.case-studies .case-image img{
    height: 460px;
    object-fit: cover;
}

.case-studies .case-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-studies .info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 16px;
    gap: 12px;
    border: 1px solid var(--gray-border);
}

.case-studies .info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.case-studies label {
    color: #6B6B75;
    font-weight: 600;
    line-height: 25.643px;
    letter-spacing: -0.24px;
}

.case-studies label span {
    display: block;
    color: var(--light-gray);
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
}

.case-studies .info-box strong {
    color: var(--midnight-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 25.643px;
    letter-spacing: -0.24px;
    text-align: right;
}

.case-studies .icon {
    width: 36px;
    height: 36px;
}

.case-studies .additional-text{
    font-size: 14px;
    line-height: 140%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid var(--gray-border);
}

.case-studies .additional-text strong{
    color: var(--midnight-blue);
}

.case-studies .additional-text ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.case-studies .additional-text li {
    position: relative;
}

.case-studies .additional-text li::before {
    content: "";
    position: absolute;
    background-image: url('../images/check-circle.svg');
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -24px;
    top: 1px;
}

.case-study-slider .slick-slide {
    padding: 0 10px;
}

.case-study-slider .slick-prev:before,
.case-study-slider .slick-next:before {
    display: none;
}

.case-study-slider .slick-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--midnight-blue);
    border-radius: 50%;
    z-index: 1;
    transition: background-color 0.25s ease;
}

.case-study-slider .slick-arrow.slick-next {
    right: 20px;
}

.case-study-slider .slick-arrow.slick-prev {
    left: 20px;
}

.case-study-slider .slick-arrow svg path {
    transition: fill 0.25 ease;
}

.case-study-slider .slick-arrow:hover {
    background-color: var(--midnight-blue);
}

.case-study-slider .slick-arrow:hover svg path {
    fill: var(--color-white-solid);
}

.case-study-slider .slick-dots {
    left: 0;
}

.case-studies .desktop-hide {
    display: none;
}

.case-studies .highlighted-card {
    border-radius: 16.027px;
    border: 1.002px solid rgba(91, 222, 204, 0.18);
    background:
        radial-gradient(141.42% 141.42% at 100% 0%,
        rgba(91, 222, 204, 0.2) 0%,
        rgba(91, 222, 204, 0) 55%),
        linear-gradient(115deg,
        #001B45 0%,
        #012558 100%);

    box-shadow: 0 8.014px 32.054px 0 rgba(0, 8, 20, 0.28);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-studies .highlighted-card .header,
.case-studies .highlighted-card .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.case-studies .highlighted-card .header h5 {
    font-size: 14px;
    line-height: 17.63px;
    letter-spacing: 1.983px;
}

.case-studies .highlighted-card .header p {
    font-size: 12px;
    font-weight: 800;
    line-height: 16.027px;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 1.002px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.case-studies .highlighted-card .footer {
    padding-top: 15px;
    border-top: 1.002px dashed rgba(91, 222, 204, 0.25);
}

.case-studies .highlighted-card .footer h5 {
    color: rgba(221, 231, 244, 0.75);
    font-weight: 600;
    line-height: 19.233px;
    letter-spacing: 0.721px;
}

.case-studies .highlighted-card .footer p strong {
    color: var(--teal);
    font-size: 28px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.841px;
}

.case-studies .highlighted-card .footer p {
    color: var(--faded-text);
    font-size: 14px;
    line-height: 11.019px;
    letter-spacing: 0.551px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 4px;
}

.case-studies .highlighted-card .subcards-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.case-studies .highlighted-card .subcard {
    border-radius: 8.014px;
    border: 1.002px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    width: calc(50% - 6px);
}

.case-studies .highlighted-card .subcard h6 {
    color: rgba(221, 231, 244, 0.65);
    font-size: 12px;
    font-weight: 700;
    line-height: 16.027px;
    letter-spacing: 1.202px;
    text-transform: uppercase;
    padding-bottom: 7px;
}

.case-studies .highlighted-card .subcard p strong {
    color: var(--color-white-solid);
    font-size: 20px;
    font-weight: 800;
    line-height: 32.054px;
}

.case-studies .highlighted-card .subcard p {
    color: var(--faded-text);
    font-size: 12px;
    font-weight: 500;
    line-height: 17.63px;
    letter-spacing: 0.441px;
}

/* Inner Page */
.inner-page-banner {
    background-color: #011F47;
    overflow: hidden;
    position: relative;
}

.inner-page-banner::after {
    content: "";
    position: absolute;
    right: -196px;
    top: -293px;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, var(--color-cyan-6118, rgba(91, 222, 204, 0.18)) 0%, var(--color-cyan-610, rgba(91, 222, 204, 0.00)) 60%);
    filter: blur(10px);
    width: 780px;
    height: 780px;
    animation: glowAnimation 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    will-change: transform;
}

.inner-page-banner .heading-and-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.inner-page-banner .content {
    max-width: 857px;
}

.inner-page-banner p {
    color: #E5E5F1;
    line-height: 150%;
}

/* Metrics Section */
.metrics-section {
    padding: 48px 0;
    background: radial-gradient(70.71% 113.14% at 80% 50%, rgba(91, 222, 204, 0.12) 0%, rgba(91, 222, 204, 0.00) 60%), #001B45;
}

.metrics-section .row {
    row-gap: 50px;
}

.metrics-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.metrics-card p {
    font-size: 40px;
    font-weight: 800;
    line-height: 110%;
    letter-spacing: -1.76px;
}

.metrics-card h6 {
    color: var(--faded-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 18.15px;
    letter-spacing: 1.98px;
    text-transform: uppercase;
}

.metrics-card svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
}

/* Two Column Content with Cards */
.two-column-content-with-cards {
    background: radial-gradient(55% 70% at 85% 6%, rgba(91, 222, 204, 0.16) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(50% 60% at 6% 94%, rgba(72, 156, 217, 0.10) 0%, rgba(72, 156, 217, 0.00) 55%), linear-gradient(180deg, #FFF 0%, #F9F9FA 100%);
}

.two-column-content-with-cards h2 {
    padding-bottom: 12px;
}

.two-column-content-with-cards a.button {
    margin-top: 20px;
}

.two-column-content-with-cards .card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 7px;
}

.two-column-content-with-cards .icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.two-column-content-with-cards .card h4 {
    padding-top: 8px;
}

.two-column-content-with-cards .card p {
    font-size: 14px;
    line-height: 140%;
}

/* Section with Background Image and Content */
.section-with-background-image-and-content {
    position: relative;
    overflow: hidden;
}

.section-with-background-image-and-content .background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section-with-background-image-and-content.opaque-bg-image .background-image {
    opacity: 14%;
}

.section-with-background-image-and-content::before,
.section-with-background-image-and-content.opaque-bg-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.section-with-background-image-and-content.opaque-bg-image::before {
    background: linear-gradient(0deg, #001B45 0%, #001B45 100%), #FFF;
    z-index: -1;
}

.section-with-background-image-and-content.opaque-bg-image::after {
    background: radial-gradient(50% 60% at 12% 18%, rgba(91, 222, 204, 0.16) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(50% 55% at 95% 90%, rgba(72, 156, 217, 0.14) 0%, rgba(72, 156, 217, 0.00) 55%);
    z-index: 1;
}

.section-with-background-image-and-content.bg-image::before {
    background: linear-gradient(97deg, rgba(0, 15, 42, 0.92) 0%, rgba(0, 27, 69, 0.78) 50%, rgba(0, 27, 69, 0.45) 100%);
    z-index: 1;
}

.section-with-background-image-and-content .container {
    position: relative;
    z-index: 2;
}

.section-with-background-image-and-content.bg-image h2,
.section-with-background-image-and-content.bg-image p {
    max-width: 605px;
}

.section-with-background-image-and-content h2 {
    padding-bottom: 12px;
}

.section-with-background-image-and-content p {
    color: var(--light-text);
}

.section-with-background-image-and-content a.button {
    margin-top: 20px;
}

.section-with-background-image-and-content ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-with-background-image-and-content li {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 4px 11.1px 0 rgba(0, 0, 0, 0.29);
    backdrop-filter: blur(49px);
    color: rgba(221, 231, 244, 0.85);
    line-height: 150%;
    padding-left: 56px;
}

.section-with-background-image-and-content li span {
    position: relative;
}

.section-with-background-image-and-content li span::before {
    content: "";
    position: absolute;
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -36px;
    top: 2px;
}

.section-with-background-image-and-content li strong {
    font-weight: 600;
    color: var(--color-white-solid)
}

/* CTA Section */
.cta-section.midnight-blue-bg {
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.16) 0%, rgba(91, 222, 204, 0.00) 60%), #001B45;
}

.cta-section .content-wrapper {
    max-width: 705px;
    margin: auto;
    gap: 18px;
}

.cta-section .content-wrapper p {
    max-width: 556px;
    margin: auto;
}

.cta-section h5 {
    padding-bottom: 0;
}

.cta-section h2 {
    font-size: 48px;
}

.cta-section .button-wrapper {
    padding-top: 18px;
    justify-content: center;
}

.cta-section .white-transparent-button {
    font-size: 16px;
    letter-spacing: normal;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    padding: 8px 36px;
    color: var(--color-white-solid);
    transition: color 0.25s linear, background-color 0.25s linear;
}

.cta-section .white-transparent-button::before {
    content: "";
    -webkit-mask: url('../images/call-outline.svg') no-repeat center;
    mask: url('../images/call-outline.svg') no-repeat center;
    mask-size: contain;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    background: var(--color-white-solid);
    transition: background 0.25s linear;
}

.cta-section .white-transparent-button:hover {
    background-color: var(--color-white-solid);
    color: var(--midnight-blue);
}

.cta-section .white-transparent-button:hover::before {
    background: var(--midnight-blue);
}

.cta-section .midnight-blue-button,
.cta-section .transparent-button {
    min-height: 48px;
    padding: 8px 36px;
    font-size: 15px;
    letter-spacing: 0.75px;
    border-radius: 8px;
}

/* Pointers Section */
.pointers-section .heading-wrapper {
    max-width: 686px;
    margin: auto;
}

.pointers-section ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pointers-section li {
    width: calc(50% - 10px);
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
}

.pointers-section .pointer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pointers-section .pointer-title {
    color: var(--midnight-blue);
}

.pointers-section .pointer-text,
.pointers-section .pointer-title {
    line-height: 123%;
}

.pointers-section .pointer-text.no-title {
    color: var(--dark-gray-text);
    font-weight: 500;
    line-height: 140%;
}

.pointers-section a.button {
    margin: auto;
    margin-top: 40px;
}

/* Contact Banner Section */
.contact-banner-section {
    padding: 64px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #F9F9FA 0%, #FFF 100%);
}

.contact-banner-section h2 {
    padding-bottom: 16px;
}

.contact-banner-section p {
    padding-bottom: 32px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-wrapper .contact-info {
    border-radius: 14px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    padding: 22px 24px;
    display: flex;
    gap: 16px;
}

.contact-info-wrapper .contact-info .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.contact-info-wrapper .contact-info .icon img {
    width: 20px;
    height: 20px;
}

.contact-info-text p {
    padding-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 21.45px;
}

.contact-info-text a,
.contact-info-text strong {
    color: var(--midnight-blue);
    font-weight: 700;
}

.contact-info-text a {
    transition: opacity 0.2s linear, color 0.2s linear;
}

.contact-info-text a:hover {
    opacity: 0.8;
    color: var(--teal);
}

.contact-info-wrapper .contact-info h6 {
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.54px;
    text-transform: uppercase;
    padding-bottom: 4px;
}

.contact-info-wrapper .contact-info.social-media {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info-wrapper .contact-info.social-media h6 {
    color: #6B6B75;
}

.contact-info-wrapper .social-links-wrapper {
    gap: 8px;
}

.contact-info-wrapper .social-links-wrapper a {
    border-radius: 10px;
    border-color: var(--gray-border);
    background: var(--muted-gray);
}

.contact-info-wrapper .social-links-wrapper a svg {
    width: 16px;
    height: 16px;
}

.contact-info-wrapper .social-links-wrapper a:hover {
    border: 1px solid var(--teal);
    background: var(--icon-teal-bg);
}

.contact-banner-section .form-wrapper {
    padding: 32px;
}

.contact-banner-section .iframe-header {
    padding-bottom: 32px;
}

.contact-banner-section .iframe-header p {
    padding-bottom: 0;
    padding-top: 8px;
}

/* Strategy Steps Section */
.step-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.step {
    padding: 32px 24px;
    border-radius: 18px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    display: flex;
    gap: 24px;
}

.strategy-steps-section.midnight-blue-bg .step {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.step-count {
    color: #26917F;
    font-size: 32px;
    font-weight: 800;
    line-height: 92.5%;
    letter-spacing: -0.48px;
    flex-shrink: 0;
}

.step-content h3 {
    padding-bottom: 16px;
}

.step-content p:not(:first-of-type) {
    padding-top: 10px;
}

.tags-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.strategy-steps-section .tags-wrapper {
    padding-top: 14px;
}

.tags-wrapper li {
    border-radius: 8px;
    border: 1px solid rgba(91, 222, 204, 0.30);
    background: var(--quote-bg);
    padding: 7px 13px;
    color: var(--midnight-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 153.214%;
}

/* Icon Pointers Section */
.icon-pointers-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.icon-pointers-section li {
    display: flex;
    gap: 14px;
    width: calc(33.33% - 11px);
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    padding: 18px 20px;
    align-items: center;
}

.icon-pointers-section li p {
    font-weight: 600;
    line-height: 121%;
}

.icon-pointers-section .icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
}

.icon-pointers-section .icon img {
    width: 21px;
    height: 21px;
}

/* Numbered Content Cards */
.numbered-content-cards {
    background: radial-gradient(113.14% 113.14% at 80% 20%, rgba(91, 222, 204, 0.14) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(127.28% 120.21% at 15% 90%, rgba(72, 156, 217, 0.10) 0%, rgba(72, 156, 217, 0.00) 50%), #001B45;
}

.numbered-content-cards p {
    color: var(--light-text);
}

.numbered-content-cards .heading-container p {
    padding-top: 12px;
}

.numbered-content-cards .heading-container {
    padding-bottom: 48px;
}

.numbered-content-cards .card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 32px 24px;
    height: 100%;
}

.numbered-content-cards .card .count {
    color: var(--teal-border);
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -1.28px;
    padding-bottom: 16px;
}

.numbered-content-cards .card p {
    padding-top: 9px;
}

.numbered-content-cards .card a.button {
    padding: 8px 24px;
    margin-top: 16px;
}

/* Two Column Content with Statistics Cards */

.two-column-content-with-statistics-cards {
    background: radial-gradient(113.14% 113.14% at 80% 20%, rgba(91, 222, 204, 0.14) 0%, rgba(91, 222, 204, 0.00) 55%), radial-gradient(127.28% 120.21% at 15% 90%, rgba(72, 156, 217, 0.10) 0%, rgba(72, 156, 217, 0.00) 50%), #001B45;
}

.two-column-content-with-statistics-cards .content-wrapper {
    gap: 12px;
}

.two-column-content-with-statistics-cards .content-wrapper p {
    color: var(--light-text);
}

.two-column-content-with-statistics-cards .content-wrapper ul {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.two-column-content-with-statistics-cards .content-wrapper li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 145%;
}

.two-column-content-with-statistics-cards .card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.two-column-content-with-statistics-cards .card>div {
    color: var(--teal-border);
    font-size: 40px;
    font-weight: 800;
    line-height: 90%;
}

.two-column-content-with-statistics-cards .card p {
    color: rgba(221, 231, 244, 0.70);
    line-height: 120%;
}

/* Case Study Listing Section */
.case-study-listing-section {
    background-color: #EAFBF7;
}

.case-study-list {
    filter: drop-shadow(0 32px 64px rgba(0, 27, 69, 0.2));
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.case-study-listing-section .load-more {
    margin: auto;
    margin-top: 40px;
    cursor: pointer;
}

.case-study-list .item {
    display: none;
}

/* ----------------- CASE STUDY DETAIL PAGE ---------------- */

body.single-case-study {
    overflow-x: visible;
}

/* Related Case Studies */
.related-case-studies-section {
    background: rgba(225, 249, 244, 0.70);
}

.related-case-studies-section .heading-wrapper p {
    font-size: 17px;
    line-height: 175%;
    padding-top: 8px;
}

.related-case-studies-section .heading-wrapper {
    padding-bottom: 32px;
}

/* Case Study Banner */
.case-study-banner-section {
    background: linear-gradient(180deg, #F9F9FA 0%, #FFF 100%);
    padding: 48px 0 72px;
}

.case-study-banner-section .content-wrapper {
    gap: 20px;
}

.case-study-banner-section .badge {
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.98px;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 7px 16px;
    border: 1px solid rgba(91, 222, 204, 0.40);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
}

.case-study-banner-section .badge::before {
    content: "";
    background-image: url('../images/location.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 14px;
    height: 14px;
    display: block;
}

.case-study-banner-section .headings h5 {
    color: var(--teal);
    font-size: 31px;
    font-weight: 700;
    line-height: 105%;
    letter-spacing: 1.248px;
    text-transform: uppercase;
    padding-bottom: 8px;
}

.case-study-banner-section .image-wrapper {
    position: relative;
}

.case-study-banner-section .image-wrapper img {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 20px 40px 0 rgba(0, 27, 69, 0.12), 0 8px 16px 0 rgba(0, 27, 69, 0.04);
}

.case-study-banner-section .image-tag-wrapper {
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.case-study-banner-section .image-tag-wrapper span {
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: #1A1A1D;
    font-size: 10px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.case-study-banner-section .property-specs {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
}

.case-study-banner-section .property-specs .property {
    padding: 0 20px;
    width: 33.33%;
}

.case-study-banner-section .property-specs .property:not(:nth-child(3n)) {
    border-right: 1px solid #E7E7E7;
}

.case-study-banner-section .property-specs p {
    color: var(--teal);
    font-size: 26px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.52px;
    padding-bottom: 8px;
}

.case-study-banner-section .property-specs h6 {
    font-size: 11px;
    font-weight: 600;
    line-height: 165%;
    letter-spacing: 1.344px;
    text-transform: uppercase;
}

/* Property Snapshot */
.property-snapshot-section {
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 32px 0;
}

.property-snapshot-section h6 {
    letter-spacing: 1.65px;
    padding-bottom: 18px;
}

.property-snapshot-section h6,
.property-snapshots-card .label {
    color: var(--light-gray);
    font-size: 11px;
    font-weight: 700;
    line-height: 165%;
    text-transform: uppercase;
}

.property-snapshots-card {
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    background-color: var(--color-white-solid);
    padding: 22px 24px;
    height: 100%;
}

.property-snapshots-card .label {
    display: flex;
    gap: 6px;
    align-items: center;
    letter-spacing: 1.1px;
    padding-bottom: 7px;
}

.property-snapshots-card .label img {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.property-snapshots-card p {
    font-size: 17px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: -0.17px;
}

.property-snapshots-wrapper.row {
    margin-left: -8px;
    margin-right: -8px;
}

.property-snapshots-wrapper .col-sm-3 {
    padding-left: 8px;
    padding-right: 8px;
}

/* Case Study Narrative */
.case-study-narrative {
    padding: 80px 0;
}

.case-study-narrative .row {
    row-gap: 40px;
}

.case-study-narrative .content-wrapper {
    gap: 20px;
}

.case-study-narrative h6 {
    color: var(--light-gray);
    font-size: 11px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 1.65px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.case-study-narrative h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.6px;
    padding-top: 28px;
}

.case-study-narrative p {
    line-height: 175%;
}

.case-study-narrative p strong {
    color: var(--midnight-blue);
    font-weight: 600;
}

/* Client Block */
.case-study-narrative .client-block h2 {
    padding-top: 0;
}

.client-block .client-card {
    border-radius: 14px;
    border: 1px solid var(--gray-border);
    background-color: var(--muted-gray);
    padding: 24px;
}

.client-block .client-card h5 {
    font-size: 11px;
    line-height: 165%;
}

.client-block .client-card h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: -0.18px;
}

.client-block .client-card span {
    color: #6B6B75;
    font-size: 14px;
    line-height: 165%;
}

/* Outcome Block */
.outcome-block .outcome-cards {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.outcome-block .outcome-cards .card {
    width: calc(33.333% - 14px);
    border-radius: 12px;
    border: 1px solid rgba(91, 222, 204, 0.30);
    background-color: var(--quote-bg);
    padding: 20px 22px;
    color: var(--teal);
}

.outcome-block .card div {
    font-size: 26px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.78px;
    padding-bottom: 8px;
}

.outcome-block .card p {
    font-size: 11px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

/* Testimonial Block */
.testimonial-block .testimonial-card {
    border-radius: 14px;
    border-top: 1px solid var(--gray-border);
    border-right: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    border-left: 3px solid var(--teal-border);
    background-color: var(--color-white-solid);
    padding: 32px 36px;
    position: relative;
    z-index: 2;
}

.testimonial-block .testimonial-card::after {
    content: '"';
    position: absolute;
    color: #C6F3EC;
    font-size: 96px;
    font-weight: 800;
    line-height: 100%;
    right: 20px;
    top: -11px;
    z-index: 1;
}

.testimonial-block .testimonial-card span {
    font-weight: 600;
    line-height: 175%;
    letter-spacing: -0.16px;
}

.testimonial-block .testimonial-card h3 {
    font-size: 15px;
    font-weight: 800;
    line-height: 110%;
    border-top: 1px solid var(--gray-border);
    padding-top: 18px;
    margin-top: 16px;
}

.testimonial-block .testimonial-card p {
    color: #6B6B75;
    font-size: 13px;
    line-height: 165%;
}

/* Property Details Block */
.property-details-block {
    border-radius: 16px;
    padding: 26px 28px;
    border: 1px solid var(--gray-border);
    background-color: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
}

.property-details-block .head {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.property-details-block .head img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.property-details-block .head span {
    font-size: 17px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.17px;
}

.property-details-block .detail-item {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    font-size: 14px;
    line-height: 165%;
    padding: 12px 0;
    border-top: 1px dashed var(--gray-border);
    border-bottom: 1px dashed var(--gray-border);
}

.property-details-block .detail-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.property-details-block .detail-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.property-details-block .detail-item .label {
    color: #6B6B75;
    font-weight: 500;
}

.property-details-block .detail-item .value {
    font-weight: 700;
    text-align: right;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 120px;
}

/* CTA Card */
.case-study-cta-card {
    border-radius: 16px;
    border: 1px solid var(--gray-border);
    background: linear-gradient(151deg, #001B45 0%, #012558 100%);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    padding: 26px 28px;
}

.case-study-cta-card.content-wrapper {
    gap: 10px;
}

.case-study-cta-card h5 {
    font-size: 11px;
    line-height: 165%;
    letter-spacing: 1.65px;
    padding-bottom: 0;
}

.case-study-cta-card h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.17px;
}

.case-study-cta-card p {
    color: rgba(221, 231, 244, 0.75);
    font-size: 14px;
    padding: 6px 0 10px;
    line-height: 160%;
}

.case-study-cta-card a.button {
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
}

/* Service Card */
.service-card {
    border-radius: 16px;
    border: 1px solid rgba(91, 222, 204, 0.30);
    background-color: var(--quote-bg);
    padding: 26px 28px;
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
}

.service-card.content-wrapper {
    gap: 7px;
}

.service-card .badge {
    border-radius: 4px;
    background-color: var(--teal);
    padding: 4px 10px;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 165%;
    text-transform: uppercase;
    gap: 6px;
    width: fit-content;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.17px;
}

.service-card p {
    font-size: 13px;
    line-height: 160%;
}

.service-card a {
    margin-top: 8px;
}

/* ----------------- CASE STUDY DETAIL PAGE END ---------------- */

/* Locations Banner with Form */
.locations-banner-with-form {
    padding: 56px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #F9F9FA 0%, #FFF 100%);
}

.locations-banner-with-form::before {
    content: "";
    border-radius: 240px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.12) 0%, rgba(91, 222, 204, 0.00) 70%);
    position: absolute;
    right: -100px;
    top: -100px;
    width: 480px;
    height: 480px;
}

.locations-banner-with-form .content-wrapper {
    gap: 20px;
}

.locations-banner-with-form a.button {
    margin: 12px 0 20px;
}

.locations-banner-with-form .speciality-card {
    position: relative;
    padding: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px 0 rgba(0, 27, 69, 0.10), 0 6px 12px 0 rgba(0, 27, 69, 0.04);
}

.locations-banner-with-form .speciality-card .content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 3;
}

.locations-banner-with-form .speciality-card h3 {
    line-height: 130%;
    letter-spacing: -0.6px;
    max-width: 430px;
}

.locations-banner-with-form .speciality-card img,
.locations-banner-with-form .speciality-card::before {
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
}

.locations-banner-with-form .speciality-card::before {
    content: "";
    z-index: 2;
    background: linear-gradient(155deg, rgba(0, 15, 42, 0.72) 0%, rgba(0, 27, 69, 0.86) 55%, rgba(1, 37, 88, 0.94) 100%);
}

.speciality-card h6.badge-text {
    border-radius: 100px;
    border: 1px solid rgba(91, 222, 204, 0.32);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 1.76px;
    text-transform: uppercase;
    width: fit-content;
}

.locations-banner-with-form .speciality-card img {
    z-index: 1;
}

.speciality-card .specifications {
    display: flex;
    padding: 27px 0 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.speciality-card .specifications .spec {
    width: calc(33.333% - 10px);
}

.speciality-card .specifications .value {
    font-size: 26px;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.52px;
    padding-bottom: 5px;
}

.speciality-card .specifications h6 {
    color: rgba(255, 255, 255, 0.70);
    font-size: 11px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.88px;
    text-transform: uppercase;
}

.speciality-card .pointers {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.speciality-card .pointer {
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 155%;
}

.locations-banner-with-form .form-wrapper {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--gray-border)_;
    background-color: var(--color-white-solid);
    box-shadow: 0 20px 40px 0 rgba(0, 27, 69, 0.12), 0 8px 16px 0 rgba(0, 27, 69, 0.04);
}


.locations-banner-with-form .form-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #5BDECC 0%, #489CD9 100%);
}

.locations-banner-with-form .form-wrapper h3 {
    font-weight: 800;
    line-height: 115%;
    letter-spacing: -0.48px;
}

.locations-banner-with-form .form-wrapper p {
    font-size: 15px;
}

/* Location Two Column Content and Image */
.location-two-column-content-and-image .row {
    margin-left: -36px;
    margin-right: -36px;
    row-gap: 48px;
    padding: 0 60px;
}

.location-two-column-content-and-image [class^="col-sm-"] {
    padding-left: 36px;
    padding-right: 36px;
}

.location-two-column-content-and-image .content-wrapper {
    gap: 20px;
}

.location-two-column-content-and-image .tags-wrapper h6 {
    font-size: 12px;
    font-weight: 600;
    line-height: 170%;
    border-radius: 100px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
    padding: 5px 14px;
}

.location-two-column-content-and-image .tags-wrapper {
    padding-top: 4px;
}

.location-two-column-content-and-image .image-wrapper {
    position: relative;
}

.location-two-column-content-and-image .image-wrapper>img {
    border-radius: 16px;
    width: 100%;
    max-height: 432px;
    object-fit: cover;
    box-shadow: 0 16px 40px 0 rgba(0, 27, 69, 0.10), 0 6px 12px 0 rgba(0, 27, 69, 0.04);
}

.location-two-column-content-and-image .image-tag {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    gap: 8px;
    width: fit-content;
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.location-two-column-content-and-image .image-tag img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.location-two-column-content-and-image .image-tag p {
    font-size: 12px;
    font-weight: 700;
    line-height: 170%;
}

/* Location Features */
.location-features {
    margin-top: -50px;
    padding-bottom: 100px;
}

.location-features .row{
    justify-content: center;
}

.location-feature-container {
    border-radius: 16px;
    border: 1px solid var(--teal);
    background: var(--color-white-solid);
    box-shadow: 0 1px 3px 0 rgba(0, 27, 69, 0.08), 0 1px 2px 0 rgba(0, 27, 69, 0.04);
    padding: 26px 28px;
    height: 100%;
}

.location-feature-container h5 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 8px;
}

/* Locations Detail Page CSS */
.parent-pageid-836 .strategy-steps-section .heading-wrapper {
    max-width: 712px;
    margin: auto;
}

.parent-pageid-836 .strategy-steps-section .step-wrapper {
    max-width: 920px;
    margin: auto;
}

.parent-pageid-836 .strategy-steps-section .step-count {
    font-size: 48px;
}

.parent-pageid-836 .icon-and-content-cards .heading-wrapper {
    max-width: 715px;
    margin: auto;
}

.parent-pageid-836 .icon-and-content-cards .heading-wrapper p {
    font-weight: 400;
}

.parent-pageid-836 .icon-and-content-cards .heading-wrapper p,
.parent-pageid-836 .icon-content-card p {
    line-height: 175%;
}

.parent-pageid-836 .strategy-steps-section h5.subheading{
    padding-bottom: 18px;
}

.parent-pageid-836 .strategy-steps-section .heading-wrapper p{
    padding-top: 18px;
}

/* Locations Content and Images */
.locations-content-and-images .content-wrapper {
    gap: 20px;
}

.location-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.location-images-wrapper .location-image {
    width: calc(50% - 8px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-border);
}

.location-images-wrapper .location-image.current-location {
    border: 2px solid var(--teal);
}

.location-images-wrapper .location-image::before {
    content: "";
    position: absolute;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 15, 42, 0.08) 30%, rgba(0, 15, 42, 0.82) 100%);
    width: 100%;
    height: 100%;
    inset: 0;
}

.location-images-wrapper .location-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.location-images-wrapper .location-image:hover img {
    transform: scale(1.1);
}

.location-images-wrapper .location-info {
    position: absolute;
    z-index: 2;
    bottom: 14px;
    left: 16px;
}

.location-images-wrapper .location-info p {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    line-height: 170%;
}

.location-images-wrapper .location-info p::before {
    content: "";
    background-color: var(--teal);
    width: 7px;
    height: 7px;
    aspect-ratio: 1;
    top: 0;
    left: 0;
    position: relative;
    border-radius: 50%;
}

.location-images-wrapper .location-info span {
    border-radius: 100px;
    padding: 3px 8px;
    font-size: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Location FAQ Section */
.location-faq-section .content-wrapper {
    gap: 18px;
}

.location-faq-section a.arrow-link {
    color: #2274AC;
    line-height: 170%;
    text-transform: none;
}

.location-faq-section .accordionjs {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    z-index: 2;
    gap: 12px;
}

.location-faq-section .accordionjs .acc_section {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 12px;
    border: 1px solid var(--gray-border);
    background: var(--color-white-solid);
}

.location-faq-section .accordionjs .acc_section.acc_active {
    border: 1px solid var(--teal);
    box-shadow: 0 1px 2px 0 rgba(0, 27, 69, 0.06), 0 1px 3px 0 rgba(0, 27, 69, 0.04);
}

.location-faq-section .accordionjs .acc_section .acc_head {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
}

.location-faq-section .accordionjs .acc_section .acc_content {
    padding: 0 26px 24px;
}

.location-faq-section .accordionjs .acc_section.acc_active>.acc_content {
    display: block;
}

.location-faq-section .accordionjs .acc_section .ant-collapse-header {
    padding: 24px 28px;
    transition: all ease-in-out 0.4s;
}

.location-faq-section .custom-faq-content h4 {
    font-size: 16px;
}

.location-faq-section .custom-cms-content a,
.location-faq-section .custom-cms-content strong {
    color: var(--teal);
}

.location-faq-section .custom-cms-content a {
    text-decoration: underline;
}

.location-faq-section .custom-cms-content a:hover {
    text-decoration: none;
}

.location-faq-section .faq-icon {
    width: 36px;
    height: 36px;
    background-color: var(--cool-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 100%;
    transition: background-color ease-in-out 0.25s;
}

.location-faq-section .acc_active .faq-icon {
    background-color: var(--teal);
}

.location-faq-section .faq-icon svg {
    width: 16px;
    height: 16px;
    transition: transform ease-in-out 0.25s;
}

.location-faq-section .acc_active .faq-icon svg {
    transform: rotate(45deg);
}

.location-faq-section .custom-faq-content {
    max-width: 820px;
    margin: auto;
}

.location-faq-section .custom-cms-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 15px;
    line-height: 180%;
}

.location-faq-section .custom-cms-content ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-faq-section .custom-cms-content ul li {
    display: flex;
    gap: 12px;
}

.location-faq-section .custom-cms-content ul li::before {
    content: "";
    background-image: url('../images/check-circle.svg');
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
}

/* Scroll to top button styel */

.scroll-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 99;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    color: var(--color-white-solid);
    background: linear-gradient(161deg, rgba(0, 27, 69, 0.62) 0%, rgba(0, 27, 69, 0.48) 100%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(91, 222, 204, 0.45);
    box-shadow: 0 8px 24px 0 rgba(0, 27, 69, 0.20), inset 0 1px 1px 0 rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

@supports not ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
    .scroll-to-top {
        background: rgba(0, 27, 69, 0.92);
    }
}

.scroll-to-top::before {
    content: "";
    position: absolute;
    inset: -16px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.55) 0%, rgba(91, 222, 204, 0.00) 60%);
    filter: blur(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover::before {
    transform: scale(1.25);
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(161deg, rgba(0, 27, 69, 0.82) 0%, rgba(0, 27, 69, 0.68) 100%);
    border-color: var(--teal-border);
    color: var(--color-white-solid);
}

.scroll-to-top:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.scroll-to-top-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-to-top-ring circle {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.scroll-to-top-ring .ring-track {
    stroke: rgba(255, 255, 255, 0.18);
    transition: stroke 0.25s ease;
}

.scroll-to-top-ring .ring-progress {
    stroke: var(--teal-border);
    transition: stroke-dashoffset 0.15s linear, stroke 0.25s ease;
}

.scroll-to-top:hover .ring-track {
    stroke: rgba(255, 255, 255, 0.28);
}

.scroll-to-top-arrows {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
}

.scroll-to-top-arrows svg {
    display: block;
    width: 18px;
    height: 18px;
}

.scroll-to-top-arrows-inner {
    display: block;
    animation: baaArrowFloat 2.2s ease-in-out infinite;
    transition: transform 0.35s ease;
}

.scroll-to-top:hover .scroll-to-top-arrows-inner {
    animation: none;
    transform: translateY(-18px);
}

@keyframes baaArrowFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .scroll-to-top,
    .scroll-to-top.is-visible {
        transform: none;
        transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.25s ease;
    }

    .scroll-to-top-arrows-inner {
        animation: none;
        transition: none;
    }

    .scroll-to-top:hover .scroll-to-top-arrows-inner {
        transform: none;
    }

    .scroll-to-top-ring .ring-progress {
        transition: none;
    }

    .scroll-to-top::before,
    .scroll-to-top:hover::before {
        transform: none;
        transition: none;
    }
}

/* Resources Podcasts Section */
.resources-podcasts-section .section-header {
    padding-bottom: 36px;
}

.resources-podcasts-section .section-header .content-wrapper{
    gap: 5px;
}


.podcast-card {
    border-radius: 24px;
    border: 1px solid var(--gray-border);
    background-color: var(--color-white-solid);
    box-shadow: 0 10px 20px 0 rgba(0, 27, 69, 0.10), 0 4px 8px 0 rgba(0, 27, 69, 0.04);
    padding: 32px;
}

.resources-podcasts-section .image-wrapper {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(341deg, #001B45 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 12px 22px;
}

.podcast-card h3 {
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.42px;
}

.podcast-card p {
    font-size: 15px;
    line-height: 165%;
}

.podcast-card h5 {
    padding-top: 20px;
    font-size: 11px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 1.54px;
    padding-bottom: 12px;
}

.episodes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.episode {
    display: flex;
    gap: 14px;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--gray-border);
    background-color: var(--muted-gray);
    padding: 12px 14px;
    transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.episode-number {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    line-height: 165%;
}

.episode-info h4 {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.07px;
}

.episode-info span {
    color: #6B6B75;
    font-size: 11px;
    line-height: 165%;
}

.resources-podcasts-section .podcasts-wrapper {
    padding-top: 24px;
}

.resources-podcasts-section .podcast {
    border-radius: 8px;
    border: 1px solid var(--gray-border);
    background-color: var(--color-white-solid);
    color: #1A1A1D;
    transition: border 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.resources-podcasts-section .podcast:hover,
.episode:hover {
    border: 1px solid var(--teal);
    background-color: var(--icon-teal-bg);
}

.resources-podcasts-section .section-footer {
    display: flex;
    gap: 6px;
    align-items: center;
    padding-top: 16px;
    flex-wrap: wrap;
}

.resources-podcasts-section .section-footer h6 {
    color: #6B6B75;
    font-size: 12px;
    font-weight: 400;
    line-height: 165%;
}

.resources-podcasts-section .section-footer a {
    font-size: 12px;
    line-height: 165%;
    text-transform: none;
}

/* Resources Locations Section */
.resources-locations-section .section-header {
    padding-bottom: 36px;
}

.resources-locations-section .section-header .content-wrapper {
    gap: 5px;
}

.locations-wrapper .location-image {
    height: 165px;
}

.locations-wrapper .location-image h4 {
    position: absolute;
    bottom: 14px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: -0.18px;
}

.locations-wrapper .location-image::before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 27, 69, 0.05) 0%, rgba(0, 27, 69, 0.50) 100%);
    height: 100%;
    width: 100%;
    inset: 0;
    position: absolute;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.locations-wrapper .location-card:hover .location-image::before {
    opacity: 0;
}

.locations-wrapper .location-content {
    padding: 18px 22px 20px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 165px);
    justify-content: space-between;
    gap: 8px;
}

.locations-wrapper .location-info {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.locations-wrapper .location-info p {
    font-size: 13px;
    line-height: 165%;
}

.locations-wrapper .location-info h6 {
    font-size: 13px;
    font-weight: 800;
    line-height: 165%;
    text-align: right;
}

/* Product Section */
.product-section {
    background: radial-gradient(60% 70% at 88% 14%, rgba(91, 222, 204, 0.30) 0%, rgba(91, 222, 204, 0.00) 60%), linear-gradient(137deg, rgba(241, 252, 249, 0.40) 0%, rgba(225, 249, 244, 0.80) 100%), #FFF;
}

.product-section h5 {
    color: var(--light-gray);
    font-size: 12px;
    line-height: 165%;
    letter-spacing: 1.44px;
    padding-bottom: 12px;
}

.product-section h5 strong {
    color: var(--teal);
    font-weight: 700;
}

.product-section h2 {
    padding-bottom: 10px;
}

.product-section p {
    font-size: 18px;
    padding-bottom: 24px;
}

.product-section a.button {
    width: 100%;
}

.product-section .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--color-white-solid);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.product-section .image-wrapper img {
    max-height: 458px;
    object-fit: contain;
}

.product-section .image-wrapper::before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    right: -59px;
    top: -59px;
    border-radius: 120px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(91, 222, 204, 0.40) 0%, rgba(91, 222, 204, 0.00) 70%);
}

.product-section .image-wrapper::after {
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    left: -39px;
    bottom: -39px;
    border-radius: 100px;
    background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(72, 156, 217, 0.20) 0%, rgba(72, 156, 217, 0.00) 70%);
}

/* Resources Case Studies Section */
.resources-case-studies-section .section-header {
    padding-bottom: 40px;
}

.resources-case-studies-section .section-header .content-wrapper {
    gap: 5px;
}

.case-study-card .case-study-image {
    height: 235px;
}

.case-study-card .case-study-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 235px);
    justify-content: space-between;
    gap: 18px;
}

.case-study-card .case-study-content .date{
    font-size: 11px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.case-study-card .case-study-content h3 a{
    font-size: 17px;
    font-weight: 800;
    line-height: 165%;
    letter-spacing: 0.09px;
    transition: color 0.25s ease-in-out;
}

.case-study-card .case-study-content h3 a:hover{
    color: var(--teal);
}

.case-study-card .image-tag-wrapper{
    position: absolute;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    top: 14px;
    left: 14px;
}

.case-study-card .case-study-image .label{
    right: 12px;
    bottom: 14px;
    position: absolute;
    background-color: var(--teal);
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: -0.13px;
}

.case-study-card .case-study-text{
    border-top: 1px solid var(--gray-border);
    padding-top: 15px;
    margin-top: 8px;
}

.case-study-card .case-study-text p{
    font-weight: 700;
    font-size: 13px;
    line-height: 165%;
}

.case-study-card .case-study-text p span{
    font-weight: 400;
}

/*   Must-watch guestings - card grid  */

.podcast-guestings-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(122deg, rgba(91, 222, 204, 0.22) 0%, rgba(0, 27, 69, 0.12) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.podcast-guestings-section.is-must-watch .content-wrapper p {
    padding-top: 5px;
}

.podcast-guestings-section .article-image {
    display: block;
    background-color: var(--icon-teal-bg);
}

.podcast-guestings-grid {
    padding-top: 36px;
}

.podcast-guestings-card {
    display: flex;
    flex-direction: column;
    color: inherit;
}

.podcast-guestings-card-media {
    height: 235px;
}

.podcast-guestings-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.podcast-guestings-card:hover .podcast-guestings-card-media img {
    transform: scale(1.1);
}

.podcast-guestings-play-button {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.podcast-guestings-card:hover .podcast-guestings-play-button {
    background-color: var(--color-white-solid);
    transform: translate(-50%, -50%) scale(1.08);
}

.podcast-guestings-card:focus-visible,
.podcast-guestings-episode:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.podcast-guestings-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 22px 22px;
}

.podcast-guestings-card-body .category.podcast-guestings-badge {
    display: inline-flex;
    align-items: center;
    padding: 3.5px 9px 4.5px;
    border: 1px solid rgba(0, 27, 69, 0.15);
    border-radius: 4px;
    background-color: rgba(0, 27, 69, 0.08);
    color: var(--midnight-blue);
    font-size: 10px;
    font-weight: 700;
    line-height: 10px;
    letter-spacing: 0.8px;
    text-align: left;
    text-transform: uppercase;
}

.podcast-guestings-card-body h3 {
    color: var(--midnight-blue);
    font-size: 17px;
    font-weight: 800;
    line-height: 130%;
    letter-spacing: -0.17px;
    transition: color 0.2s ease;
}

.podcast-guestings-card-body p {
    color: var(--color-gray);
    font-size: 13px;
    line-height: 160%;
}

/* Latest episodes - wide rows */

.podcast-guestings-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 40px;
}

.podcast-guestings-episode {
    display: grid;
    grid-template-columns: 307px 1fr;
    align-items: stretch;
    gap: 24px;
    padding: 18px;
    color: inherit;
}

.podcast-guestings-episode-media {
    min-height: 239px;
    height: 100%;
    border-radius: 12px;
}

.podcast-guestings-episode-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease-in-out;
}

.podcast-guestings-episode:hover .podcast-guestings-episode-media img {
    transform: scale(1.05);
}

.podcast-guestings-episode-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding-right: 12px;
}

.podcast-guestings-episode-body h3 {
    color: var(--midnight-blue);
    font-size: 20px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: -0.3px;
    transition: color 0.2s ease;
}

.podcast-guestings-episode-body p {
    max-width: 640px;
    color: var(--color-gray);
    font-size: 14px;
    line-height: 160%;
}

.podcast-guestings-listen {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    padding: 9px 18px;
    border: 1px solid var(--midnight-blue);
    border-radius: 6px;
    background-color: var(--midnight-blue);
    color: var(--color-white-solid);
    font-size: 11px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.66px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.podcast-guestings-episode:hover .podcast-guestings-listen {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--midnight-blue);
}

.podcast-guestings-listen svg {
    flex-shrink: 0;
    transition: transform 0.25s ease-in-out;
}

.podcast-guestings-episode:hover .podcast-guestings-listen svg {
    transform: translateX(3px);
}

/*Featured interview - two-column-content-and-video*/

.podcast-guestings-video {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background-color: var(--icon-teal-bg);
    box-shadow: 0 24px 48px 0 rgba(0, 27, 69, 0.13), 0 8px 16px 0 rgba(0, 27, 69, 0.05);
}

.podcast-guestings-video.video-trigger {
    cursor: pointer;
}

.podcast-guestings-video-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.35s ease-in-out;
}

.podcast-guestings-video.video-trigger:hover .podcast-guestings-video-image {
    transform: scale(1.04);
}

.podcast-guestings-video-wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(122deg, rgba(0, 27, 69, 0.45) 0%, rgba(0, 27, 69, 0.15) 100%);
    pointer-events: none;
}

.podcast-guestings-video.video-trigger:hover .podcast-guestings-play-button {
    background-color: var(--color-white-solid);
    transform: translate(-50%, -50%) scale(1.08);
}

.podcast-guestings-video.video-trigger:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 3px;
}

.podcast-guestings-video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 5.5px 12px;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--color-white-solid);
    font-size: 11px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.podcast-guestings-featured-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.podcast-guestings-featured-content h5.subheading {
    padding-bottom: 0;
}

.podcast-guestings-featured-content h2 {
    text-transform: none;
}

.podcast-guestings-featured-content .content-wrapper p {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 170%;
}

.podcast-guestings-featured-content .content-wrapper strong {
    color: var(--midnight-blue);
    font-weight: 600;
}

.podcast-guestings-featured-content .button-wrapper {
    padding-top: 12px;
}

.podcast-guestings-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.podcast-guestings-tag {
    display: inline-flex;
    align-items: center;
    padding: 3.5px 9px 4.5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    line-height: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.podcast-guestings-tag.is-teal {
    border: 1px solid rgba(91, 222, 204, 0.40);
    background-color: var(--icon-teal-bg);
    color: var(--teal);
}

.podcast-guestings-tag.is-navy {
    border: 1px solid rgba(0, 27, 69, 0.15);
    background-color: rgba(0, 27, 69, 0.08);
    color: var(--midnight-blue);
}

.podcast-guestings-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0 4px;
    list-style: none;
}

.podcast-guestings-checklist li.check {
    color: var(--dark-gray-text);
    font-size: 15px;
    line-height: 150%;
}

/*Platforms band - podcast-platforms*/

.podcast-guestings-platforms {
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(141.42% 70.71% at 50% 0%, rgba(91, 222, 204, 0.14) 0%, rgba(91, 222, 204, 0.00) 60%);
}

.podcast-guestings-platforms-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.podcast-guestings-platforms h5.subheading {
    padding-bottom: 0;
    color: var(--teal-border);
}

.podcast-guestings-platforms h2 {
    text-transform: none;
}

.podcast-guestings-platforms p {
    max-width: 720px;
    font-size: 15px;
    line-height: 165%;
}

.podcast-guestings-platform-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 22px 0;
    list-style: none;
}

.podcast-guestings-platform {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: var(--color-white-solid);
    font-size: 14px;
    font-weight: 600;
    line-height: 165%;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.podcast-guestings-platform:hover {
    border-color: rgba(91, 222, 204, 0.45);
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.podcast-guestings-platform:focus-visible {
    outline: 2px solid var(--teal-border);
    outline-offset: 3px;
}

.podcast-guestings-platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

.podcast-guestings-platforms-cta {
    gap: 10px;
    min-height: 48px;
    min-width: 287px;
    width: fit-content;
    padding: 8px 28px;
    border-radius: 8px;
    background-color: var(--teal);
    color: var(--midnight-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 165%;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.podcast-guestings-platforms-cta svg {
    flex-shrink: 0;
    width: 15px;
    height: auto;
    transform: translateX(-35px);
    transition: transform 0.25s ease-in-out;
}

.podcast-guestings-platforms-cta:hover svg {
    transform: translateX(3px);
}

.page-id-1367 .two-column-content-and-image .rounded-image {
    box-shadow: none;
}

.page-id-1367 .two-column-content-and-image .row.gap-48.left-side-image {
    align-items: center;
}