﻿:root {
    /* Typography */
    --font-sans: "Geist", sans-serif;
    --font-body: var(--font-sans);
    --font-ui: var(--font-sans);
    --h1-size: clamp(2.6rem, 4.5vw, 4.375rem);
    /* ~44px -> 70px */
    --h2-size: clamp(2rem, 3.2vw, 2.8125rem);
    /* ~32px -> 45px */
    --h3-size: clamp(1.75rem, 2.6vw, 2.5rem);
    /* ~28px -> 40px */
    --h4-size: clamp(1.5rem, 2.1vw, 2rem);
    /* ~24px -> 32px */
    --h5-size: clamp(1.125rem, 1.6vw, 1.5rem);
    /* ~18px -> 24px */

    --text-14: 0.875rem;
    --text-15: 0.9375rem;
    --text-16: 1rem;
    --text-18: 1.125rem;
    --text-20: 1.25rem;
    /* Colors (from Figma tokens) */
    --c-white: #ffffff;
    --c-text: #1e2832;
    --c-text-muted: #49514f;
    --c-grey-blue: #335a6d;
    --c-dark-grey-blue: #193b4c;
    --c-diagram-bg: #faf8f6;
    --c-keyline: #e7e6e4;
    /* Effects */
    --shadow-soft: 0 1px 3px rgba(123, 139, 147, .29), 0 5px 5px rgba(123, 139, 147, .26), 0 12px 7px rgba(123, 139, 147, .15), 0 22px 9px rgba(123, 139, 147, .04), 0 34px 9px rgba(123, 139, 147, .01);
    --shadow-glass: 0 8px 8px rgba(0, 0, 0, .10);
    /* Layout */
    --container: 1320px;
    --gutter: 60px;
    --radius-4: 4px;
    --radius-6: 6px;
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-16: 16px;
    --radius-24: 24px;
    /* Spacing */
    --s-4: 4px;
    --s-8: 8px;
    --s-10: 10px;
    --s-12: 12px;
    --s-16: 16px;
    --s-20: 20px;
    --s-24: 24px;
    --s-30: 30px;
    --s-40: 40px;
    --s-60: 60px;
    --s-80: 80px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

/* Header / Navigation */
.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    background: var(--c-white);
}

.header .nav {
    height: 104px;
    display: flex;
    align-items: center;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-24);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--s-12);
}

.brand__mark {
    font-size: 34px;
    letter-spacing: -0.04em;
    font-weight: 500;
}

.brand__dot {
    width: 6px;
    height: 6px;
    background: var(--c-text);
    border-radius: 999px;
    display: inline-block;
    transform: translateY(-8px);
}

.menu {
    display: flex;
    align-items: center;
    gap: var(--s-8);
    flex-wrap: wrap;
    justify-content: center;
}

.menu__item {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: var(--text-16);
    letter-spacing: -0.02em;
    line-height: 1.4;
    color: var(--c-text);
}

.menu__item:focus-visible,
.menu__item:hover {
    outline: none;
    background: rgba(51, 90, 109, .08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-8);
    height: 48px;
    padding: 16px 24px;
    border-radius: var(--radius-6);
    font-size: var(--text-16);
    letter-spacing: -0.02em;
    line-height: 1.5;
    border: 1px solid transparent;
    cursor: pointer;
    user-select: none;
    background: transparent;
    transition: all 0.2s ease;
}

.btn__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn__icon svg {
}

.btn--primary {
    color: #efefef;
    border-color: var(--c-dark-grey-blue);
    background-image: linear-gradient(-33.6047deg, rgb(57, 77, 88) 30.875%, rgb(102, 147, 169) 142.63%);
    box-shadow: var(--shadow-soft);
    text-shadow: 0 0.5px 0 rgba(0, 0, 0, .25);
}

.btn--primary-outer > .btn-primary {
    color: #efefef;
    border-color: var(--c-dark-grey-blue);
    background-image: linear-gradient(-33.6047deg, rgb(57, 77, 88) 30.875%, rgb(102, 147, 169) 142.63%);
    box-shadow: var(--shadow-soft);
    text-shadow: 0 0.5px 0 rgba(0, 0, 0, .25);
}

.btn--primary:hover {
    color: #FFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(-33.6047deg, rgb(48 62 70) 30.875%, rgb(102, 147, 169) 142.63%);
}

.btn--secondary {
    color: var(--c-grey-blue);
    border-color: var(--c-grey-blue);
    text-shadow: 0 0.25px 0 rgba(0, 0, 0, .05);
    background: transparent;
}

.btn--white {
    color: var(--c-grey-blue);
    border-color: rgba(255, 255, 255, .0);
    background: #fff;
}

.btn--white:hover {
    border-color: #FFF;
}

.btn--outline-white {
    color: #fff;
    border-color: #fff;
    background: transparent;
}

.btn--outline-white:hover {
    color: #333;
    background: #FFF;
}

.btn--blue {
    color: var(--c-grey-blue);
    background: #fff;
    border-color: #335A6D !important;
}

.btn--blue:hover {
    transform: translateY(-1px);
    background: #335A6D;
    color: #FFF !important;
}

.border--primary {
    border-color: var(--c-text) !important;
    border-color: #335A6D !important;
}

.border--neutral {
    border: 1px solid #E7E6E4;
}

.bg--lightgrey {
    background: rgba(255, 255, 255, 0.70);
}

.bg--darkgreen {
    background: linear-gradient(295deg, #37483D 30.88%, #547460 142.63%) !important;
}

.bg-gradient-darkblue {
    background: linear-gradient(114deg, #335A6D 2.98%, #6693A9 87.42%) !important;
}

.bg-gradient-darkblue2 {
    background: linear-gradient(309deg, #335A6D 33.31%, #6693A9 95.76%);
}

.bg-gradient-purple {
    background: linear-gradient(178deg, #421F54 -8.36%, #C59EC9 190.29%);
}

.lh-120{
    line-height: 120%;
}

.fs-15px{
    font-size: 15px;
}
.h-hww-container {
    height: 43vw;
    max-height: 325px;
}

/* Hero */
.hero {
    padding: 60px 0;
}

.hero__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 18px;
    background: #f8f5f2;
    color: var(--c-text-muted);
    font-size: var(--text-15);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero__title {
    margin: var(--s-24) 0 0;
    font-size: var(--h1-size);
    line-height: 1.1;
    letter-spacing: -0.04em;
    text-align: center;
    font-weight: 400;
}

.hero__subtitle {
    margin: var(--s-16) auto 0;
    max-width: 520px;
    color: var(--c-text-muted);
    font-size: var(--text-16);
    line-height: 1.35;
    letter-spacing: -0.01em;
    text-align: center;
}

.hero__cta {
    margin-top: var(--s-40);
    display: flex;
    justify-content: center;
}

.pill-toolbox-con{
    text-align: center;
}
.pill.pill-toolbox {
    position: relative;
    margin: 10px 20px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    height: auto;
    background: rgba(255, 255, 255, 0.10);
    color: #FFF;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pill.pill-toolbox::before {
    position: absolute;
    content: "";
    width: 34px;
    height: 30px;
    background-image: url('/img/right-arrow-moving.svg');
    right: -38px;
    background-repeat: no-repeat;
    background-position: right center;
}

.pill.pill-toolbox:last-child::before {
    visibility: hidden;
}
/* Logo section */
.logo-section {
    padding: 80px 0;
}

.logo-section__title {
    margin: 0;
    color: var(--c-text-muted);
    font-size: var(--h5-size);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.logo-strip {
    margin-top: var(--s-40);
    display: flex;
    gap: var(--s-30);
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.logo-strip .logo {
    height: 70px;
    border-radius: 6px;
    width: 160px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Center heading block */
.center-heading {
    padding: 60px 0;
}

.center-heading__text {
    margin: 0 auto;
    max-width: 1024px;
    font-size: var(--h4-size);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    font-weight: 400;
}

/* Feature sections */
.section {
    padding: 60px 0;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-30);
    align-items: center;
}

.feature__kicker {
    display: none;
}

.feature__title {
    margin: 0;
    font-size: var(--h2-size);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.feature__desc {
    margin: var(--s-24) 0 0;
    color: var(--c-text-muted);
    font-size: var(--text-16);
    line-height: 1.35;
    letter-spacing: -0.01em;
    max-width: 520px;
}

.checklist {
    margin: var(--s-24) 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s-8);
}

.checklist li {
    display: flex;
    gap: var(--s-8);
    align-items: flex-start;
    color: var(--c-text-muted);
    font-size: var(--text-16);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.checklist .checklist__icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--c-text-muted);
}

.list-arrow-white {
    list-style: none;
    padding-left: 0;
}

.list-arrow-white li {
    background: url(/img/right-arrow-white.svg) no-repeat left top;
    padding-left: 32px;
    background-position: 0 4px;
    line-height: 2.1em;
}

.list-arrow {
    list-style: none;
    padding-left: 0;
}

.list-arrow li {
    background: url(/img/right-arrow.svg) no-repeat left top;
    padding-left: 32px;
    background-position: 0 4px;
    line-height: 2.1em;
}
.feature__cta {
    margin-top: var(--s-40);
}

.media {
    border: 1px solid var(--c-keyline);
    background: var(--c-diagram-bg);
    border-radius: var(--radius-24);
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.media--white {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
}

.media__placeholder {
    position: absolute;
    inset: 24px;
    border-radius: 16px;
    border: 1px dashed rgba(30, 40, 50, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(30, 40, 50, .55);
    text-align: center;
    padding: 20px;
}

/* “Video + Panel” section approximation */
.panel {
    border-radius: var(--radius-12);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-10);
}

.panel__left {
    min-height: 520px;
    background: linear-gradient(135deg, rgba(30, 40, 50, .08), rgba(51, 90, 109, .08));
    border-radius: var(--radius-12);
}

.panel__right {
    min-height: 520px;
    border-radius: var(--radius-12);
    color: #fff;
    background-image: linear-gradient(-65.9175deg, rgb(55, 72, 61) 30.875%, rgb(84, 116, 96) 142.63%);
    display: flex;
    align-items: center;
}

.panel__content {
    padding: 40px;
    max-width: 520px;
}

.panel__content .feature__desc,
.panel__content .checklist li {
    color: rgba(255, 255, 255, .88);
}

.panel__content .checklist .checklist__icon {
    color: rgba(255, 255, 255, .88);
}

/* Blog */
.blog {
    padding: 60px 0;
}

.blog__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--s-24);
}

.blog__title {
    margin: 0;
    font-size: var(--h2-size);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 720px;
}

.cards {
    margin-top: var(--s-40);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-30);
}

.card {
    background: var(--c-diagram-bg);
    border: 1px solid var(--c-keyline);
    border-radius: var(--radius-8);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: var(--s-16);
}

.card__media {
    height: 280px;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(51, 90, 109, .18), rgba(30, 40, 50, .08));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.card.productshowcase {
    height: 420px;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.card.productshowcase2 {
    height: 310px;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 16px;
    margin-bottom: 16px;
}

.card.productshowcase3 {
    height: 365px;
    justify-content: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid #FFF;
    background: linear-gradient(163deg, rgba(255, 255, 255, 0.10) -17.7%, rgba(255, 255, 255, 0.00) 69.05%);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(3px);
}
.pos-absolute-team-desc {
    top: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background: #333;
    color: #FFF;
    background: linear-gradient(185deg, #4F585F -11.37%, #1E2832 70.89%);
    padding: 20px 20px 60px 20px;
    border-radius: 4px;
    transition: all 1.6s;
    overflow-y: auto;
}

.pos-absolute-team-social {
    position: absolute;
    right: 20px;
    bottom: -100px;
    transition: all 1s;
}

.pos-absolute-team-social a {
    margin: 10px;
}

.card.productshowcase:hover .pos-absolute-team-desc {
    top: 0;
}

.card.productshowcase:hover .pos-absolute-team-social {
    bottom: 20px;
}
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    height: 24px;
    border: 1px solid var(--c-keyline);
    border-radius: 300px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-text);
    width: max-content;
}

.card__title {
    margin: 0;
    font-weight: 500;
    font-size: var(--text-20);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: var(--s-8);
    color: var(--c-text-muted);
    font-size: var(--text-16);
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.link:hover {
    text-decoration: underline;
}

/* CTA + Testimonial */
.cta {
    padding: 60px 0;
}

.cta__wrap {
    border-radius: var(--radius-12);
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(185, 93, 43, 0.75), rgba(84, 116, 96, 0.75));
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.cta__left {
    color: #fff;
}

.cta__left .cta__kicker {
    margin: 0;
    font-size: var(--text-18);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.cta__left .cta__headline {
    margin: var(--s-12) 0 0;
    font-size: var(--h4-size);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.cta__card {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 9.242%, rgba(255, 255, 255, 0.00) 113.92%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-16);
    padding: 40px;
    color: #fff;
}

.quote {
    margin: 0;
    font-size: var(--h3-size);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 400;
}

.attribution {
    margin-top: 48px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.logo-mark {
    width: 120px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
}

.who {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.who__name {
    margin: 0;
    font-size: var(--text-18);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.who__org {
    margin: 0;
    font-size: var(--text-15);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* FAQ */
.faq {
    padding: 60px 0;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.faq__title {
    margin: 0;
    font-size: var(--h2-size);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion details {
    border: 1px solid var(--c-keyline);
    border-radius: 4px;
    background: #fff;
}

.accordion details[open] {
    background: var(--c-diagram-bg);
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary .q {
    font-size: var(--text-18);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--c-text);
}

.accordion summary .chev {
    width: 28px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    transition: transform .18s ease;
}

.accordion details[open] summary .chev {
    transform: rotate(180deg);
}

.accordion .a {
    padding: 0 16px 16px;
    color: var(--c-text-muted);
    font-size: var(--text-16);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* Footer */
.site-footer {
    padding: 80px 0;
    color: #fff;
    background-image: linear-gradient(124.386deg, rgb(98, 109, 120) 7.4881%, rgb(30, 40, 50) 45.064%);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.footer__cols {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 150px;
    max-width: 865px;
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: var(--text-16);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.footer__signup h3 {
    margin: 0;
    font-size: var(--text-20);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer__form {
    margin-top: 30px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer__input {
    height: 48px;
    flex: 1 1 auto;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: linear-gradient(180deg, rgba(255, 255, 255, .12) 180.53%, rgba(255, 255, 255, 0) 79.063%);
    color: #fff;
    padding: 0 14px;
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.footer__submit {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.footer__small {
    margin-top: 12px;
    font-size: var(--text-14);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, .85);
    max-width: 270px;
}

.footer__line {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .45);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer__legal {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: "Inter Tight", var(--font-body);
    font-size: var(--text-16);
    line-height: 1.5;
}

.legal-links {
    display: flex;
    gap: 30px;
    font-size: var(--text-14);
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.navbar .nav-link, .navbar .nav-link a, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #1E2832;
    font-size: 15px;
    line-height: 140%; /* 21px */
    letter-spacing: -0.3px;
}

.pt-2x {
    padding-top: 20px;
}

.my-3x {
    margin-top: 30px;
    margin-: 30px;
}

.py-x {
    padding-top: 10px;
    padding-bottom: 10px
}
.py-2x {
    padding-top: 20px;
    padding-bottom: 20px
}
.py-3x {
    padding-top: 30px;
    padding-bottom: 30px
}
.py-4x {
    padding-top: 40px;
    padding-bottom: 40px
}

.py-5x {
    padding-top: 50px;
    padding-bottom: 50px
}

.py-6x {
    padding-top: 60px;
    padding-bottom: 60px
}

.py-7x {
    padding-top: 70px;
    padding-bottom: 70px
}

.py-8x {
    padding-top: 80px;
    padding-bottom: 80px
}
.pt-4x{
    padding-top: 40px;
}
.pt-3x {
    padding-top: 30px;
}
.p-4x {
    padding: 40px;
}
.pt-12x {
    padding-top: 120px;
}

.br-standard {
    border-radius: 12px;
}

.border-neutral {
    border-color: var(--c-keyline);
}
.home-hero-1 {
    border-radius: 12px;
    background: linear-gradient(42deg, #B95A2B -6.46%, #335A6D 82.3%);
    padding: 20px;
    color: #FFF;
    height: 100%;
}

.home-hero-1 > div {
    height: 100%;
}

.hero_home_first_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.home-hero-2 {
    height: 100%;
    width: 100%;
    flex: 0 0 100%;
}

.home-hero-2 > div {
    height: 100%;
}

.hero_home_second_container {
    flex: 0 0 auto;
    height: 100%;
}

.navbar-toggler {
    border: 0px;
    padding-right:0px;
}

.background-video {
    position: relative;
    color: #FFF;
    overflow: hidden;
    min-height: 600px;
    padding: 40px;
    border-radius: 12px;
}

.background-video video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.background-video-1 {
    position: relative;
    color: #FFF;
    overflow: hidden;
    min-height: 600px;
    padding: 40px;
}

.background-video-1 .video-conn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
}

.background-video-1 .video-conn video {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.background-image-conn {
    position: relative;
}

.background-image img {
    height: 100% !important;
    object-fit: cover;
}

.background-image {
    width: 100%;
    height: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 12px !important;
    overflow: hidden;
}

.digitalstudent-text {
    border-radius: 16px;
    border: 1px solid #FFF;
    background: linear-gradient(167deg, rgba(21, 21, 21, 0.60) 29.5%, rgba(21, 21, 21, 0.50) 81.15%);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(5px);
    padding: 40px;
}

.sfPageEditorWrp .background-video-1 .video-conn{
    max-width: 100%;
    max-height: 100%;
}

.fs-12 {
    font-size: 12px;
}

.p-10px-12px{
    padding: 12px;
}

.bg-gradient-dark {
    background: linear-gradient(261deg, rgba(255, 255, 255, 0.20) 12.09%, rgba(21, 21, 21, 0.20) 64.32%);
}

.bg-gradient-beige {
    background-image: linear-gradient(69.0029deg, rgb(150, 95, 54) 17.817%, rgb(194, 147, 98) 97.884%);
    position: relative;
}

.bg-beige-img::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    background-image: url(/img/discover-our-purpose.svg);
    background-position: right center;
}

.bg-beige-img2::before {
    background-image: url(/images/default-source/default-album/integration-framework.png);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: top center;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
}
.bg-neutral {
    background-color: var(--c-diagram-bg)
}

.bg-puple-gradient {
    background: linear-gradient(190deg, #C59EC9 -58.13%, #421F54 75.92%);
}

.bg-orange-gradient {
    background: linear-gradient(343deg, #965F36 56.95%, #D6A26C 102.09%);
}

.whole-system-thinking {
    border: 1px solid #E7E6E4;
    background-image: url(/images/default-source/default-album/whole-system-thinking.png);
    background-repeat: no-repeat;
    background-position: top right;
    padding: 40px;
    background: linear-gradient( 225deg, #20345A -6.69%, #20345A 8.26%, rgba(204, 194, 205, 0.47) 34.34%, rgba(250, 248, 246, 0.30) 65.63%), #FFF;
    position: relative;
}

.whole-system-thinking::before {
    content: "";
    background-image: url(/images/default-source/default-album/whole-system-thinking.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    width: 70%;
    top: 0;
    right: 0;
    height: 60%;
    position: absolute;
}

.whole-system-thinking > div {
    position: relative;
}

.right-arrow-icon {
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.right-arrow-icon::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(/img/right-arrow-white.svg);
}

.btn--outline-white.right-arrow-icon:hover::after {
    background-image: url(/img/right-arrow.svg);
}

.right-arrow-icon-blue {
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.right-arrow-icon-blue::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(/img/arrow-right-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.btn--blue.right-arrow-icon-blue:hover::after {
    background-image: url(/img/right-arrow-white.svg);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 12px;
}

.footer {
    padding: 40px 20px;
    background: linear-gradient(103deg, #626D78 -7.49%, #1E2832 45.06%);
}

.footer .nav-link {
    color: #FFF;
    padding-left: 0px !important;
}

.footer-social {
    margin-bottom: 40px;
}

.end-to-end-container > div {
    height: 100%;
}
.end-to-end-container > div > div {
    height: 100%;
}
.end-to-end-container > div  > div> div{
    height: 100%;
}

.end-to-end-container .background-video video {
    right: initial;
    left: -20%;
}

.rotate-180 {
    transform: rotateY(180deg);
}

.accordion.acc-transparent  details {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.40);
    color: #FFF;
}

.accordion.acc-transparent details summary span, 
.accordion.acc-transparent details .a {
    color: #FFF;
}

.inner-div-justify-around > div {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-title1 {
    margin-top:16px;
}

.blog-hero {
    text-align: center;
    display: flex;
    justify-content: center;
}

.blog-content {
    max-width: 864px;
    margin: 0px auto;
    padding-top: 30px;
    padding-bottom: 0;
}

.blog-header {
    text-align: center;
}

.cards.cards-casestudy {
    gap: 20px;
}
.card.card-casestudy {
    border-radius: 8px;
    background: linear-gradient(181deg, #FFF -2.88%, #D4C3B1 139.08%);
    border: 0;
    padding: 20px;
}

.blog-detail p {
    margin-bottom: 30px;
    color: #49514F;
}

.blog-detail h1, .blog-detail h2, .blog-detail h3, .blog-detail h4, .blog-detail h5, .blog-detail h6 {
    margin-bottom: 12px;
    color: #49514F;
}

.disable-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Standard syntax (Chrome, Firefox, Opera) */
}
.home_top_video .background-video {
}
/* Responsive */
@media (max-width: 1080px) {
    : root {
        --gutter: 24px;
    }
    .p-10px-12px {
        padding: 10px;
    }
    .menu {
        display: none;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .panel {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cards.m-card-horizontal-scroll {
        overflow-x: scroll;
        display: flex;
        gap: 10px;
        /*scroll-marker-group: none;
        -ms-overflow-style: none;*/  /* Internet Explorer 10+ */
        /*scrollbar-width: none;*/
    }
    .cards.m-card-horizontal-scroll .card {
        min-width: 400px;
    }

    .cards.m-card-horizontal-scroll::-webkit-scrollbar { 
        /*display: none;*/  /* Older Safari and Chromium */
    }

    .blog__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta__wrap {
        grid-template-columns: 1fr;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__cols {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: none;
    }
    .m-py-x {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .m-py-2x {
        padding-top: 20px;
        padding-bottom: 20px
    }

    .m-py-3x {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .m-py-4x {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .m-pt-6x{
        padding-top: 60px;
    }
}

@media (max-width: 800px){
    .whole-system-thinking {
        padding-top: 171px;
        padding-right: 20px;
        padding-bottom: 30px;
        padding-left: 20px;
        background: linear-gradient(203deg, #20345A 4.36%, rgba(204, 194, 205, 0.47) 37.38%, rgba(250, 248, 246, 0.30) 61.52%), #FFF;
    }

    .whole-system-thinking::before{
        background-image: url(/images/default-source/default-album/whole-system-thinking-mobile.png);
        max-height: 254px;
        width: 100%;
    }
    .background-video{
        padding: 20px;
    }
}

/* Responsive */
@media (min-width: 768px) {
    .p-md-4x{
        padding: 40px !important;
    }
    .p-md-8x{
        padding: 80px !important
    }
    .py-md-3x {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-md-4x {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .py-md-6x {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .py-md-12x {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }
    .pt-md-12x {
        padding-top: 120px !important;
    }
    .md-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-gap: 12px;
    }
    .md-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 12px;
    }
    .footer {
        padding: 80px;
    }
    .navbar-expand-lg .navbar-nav .nav-item:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .m-background-green {
        background: linear-gradient(295deg, #37483D 30.88%, #547460 142.63%);
    }
    .m-background-blue {
        background: linear-gradient(180deg, #1E2832 0%, #49514F 141.17%);
    }
    .video-top-on-mobile {
        padding-top: 300px;
    }
    .video-top-on-mobile.background-video-1 .video-conn{
        height: 300px;
        z-index: 1;
        overflow: hidden;
    }

    .background-video-1 .video-conn video{
        width: 110%;
    }
    .digitalstudent-text{
        padding: 30px 20px;
    }
    .pill-toolbox-con {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pill.pill-toolbox {
        padding: 4px 24px;
        margin: 14px 0;
    }
    .pill.pill-toolbox::before {
        transform: rotate(90deg) translateY(-24%);
        width: 16px;
        right: 50%;
        top: 100%;
    }
    .blog-listing__grid {
        grid-template-columns: auto;
    }
    .stratgic-consulting-wrapper {
        margin: 30px 15px;
        border-radius: 14px;
    }
}

@media (max-width: 500px) {
    .background-video-1 .video-conn video {
        width: 160%;
    }
    .home_top_video .background-video {
        min-height: 400px;
    }
}

@media (min-width:769px) and (max-width:1400px) {
    .background-video-1 .video-conn video {
        width: auto;
        height: 100%;
    }
    .background-video-1.m-background-green .video-conn video {
        height: 110%;
    }
}

@media (min-width: 800px){
    .blog-header {
        padding: 60px;
    }
    .blog-title1 {
        font-size: 71px;
    }
    .blog-content {
        padding-top: 40px;
        padding-bottom: 80px;
    }
}