:root {
    --bg: #ffce01;
    --text: #000000;
    --muted: #5c5c5c;
    --accent: #101010;
    --border: rgba(16, 16, 16, .15);
    --container: 1160px;
}


@font-face {
    font-family: "Gotham Rnd SSm";
    src: url("./assets/fonts/gothamrndssm_book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham Rnd SSm";
    src: url("./assets/fonts/gothamrndssm_medium.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.5;
    overflow-y: hidden;
    transition: background-color 0.45s ease;
}


.page-loader {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 200;
    background: rgba(0, 0, 0, .08);
    backdrop-filter: blur(6px);
}

.page-loader.is-active {
    display: grid;
}

.spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid rgba(0, 0, 0, .2);
    border-top-color: rgba(0, 0, 0, .85);
    animation: spin 0.9s linear infinite;
}

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

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

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


html {
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    height: 100vh;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

h1,h2,h3{
  line-height: 1.15;
}

.slides-container {
    display: flex;
    width: 400vw;
    height: 100vh;
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
}

.hero .container {
    width: 100%;
    max-width: none;
}


.header {
    position: sticky;
    top: 0;
    z-index: 50;
    margin-top: 24px;
    margin-bottom: 16px;
    border-radius: 0;
    transition: background-color 0.45s ease;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 110px;
    gap: 24px;
}

.header .container {
    padding: 0 85px;
    box-sizing: border-box;
    width: 1910px;
    max-width: none;
}

.header__inner {
    position: relative;
}

.header__icon {
    margin-left: auto;
    width: 112px;
    height: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.header__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

.nav__link {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    font-size: 22px;
}


.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--text);
    transition: width .25s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.lang-toggle {
    background: transparent;
    border: none;
    color: var(--text);
    font-weight: 400;
    cursor: pointer;
    padding: 4px 0;
    font-size: 22px;

}

.lang-toggle .lang-nl {
    opacity: .6;
}

.lang-toggle[data-active="nl"] .lang-nl {
    opacity: 1;
}

.lang-toggle[data-active="nl"] .lang-en {
    opacity: .6;
}

.lang-toggle[data-active="en"] .lang-en {
    opacity: 1;
}


.main {
    padding: 8px 0 24px;
}

.section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.hero.section {
    padding-top: 8px;
    border-bottom: 0;
}

.hero .container {
    max-width: none;
    padding-left: 85px;
    padding-right: 85px;
    width: 1910px;
    height: 605.9px;
    overflow: visible;
}

.about-slide .container {
    max-width: none;
    padding-left: 64px;
    padding-right: 16px;
}

.about__title {
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-size: 56px;
    line-height: 1.1;
    margin: 24px 0;
    color: #111;
}

.about__line {
    height: 2px;
    background: #111;
    width: 100%;
    margin: 24px 0 32px;
}

.about__nav {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.about__nav-item {
    position: relative;
    display: inline-block;
    font: 400 24px/1.2 "Gotham Rnd SSm", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: #111;
    text-decoration: none;
}

.about__nav-item span {
    position: relative;
    display: inline-block;
}

.about__nav-item span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 1px;
    background: #111;
    width: 0;
    transition: width .3s ease;
}

.about__nav-item:hover span::after {
    width: 100%;
}


.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.hero__title {
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-size: 78px;
    margin: 12px 0 40px 0;
    letter-spacing: -0.01em;
    font-weight: 400;
    border-radius: 0;
    display: block;
    line-height: 1.1;
}

.hero__title span {
    white-space: nowrap;
}

.hero__content {
    max-width: 640px;
}

.hero__intro {
    max-width: 520px;
    color: var(--text);
    opacity: 0.9;
    margin: 0;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
    font-size: 20px;
}

.hero__actions {
    margin-top: 16px;
    padding-left: 0;
}
.hero__actions a{
  font-size: 21px;
  padding-bottom: 0;
}


.btn--primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn--primary:hover {
    background: transparent;
    color: var(--text);
}

.hero__aside {
    min-height: 560px;
}

.hero .cards__track {
    height: 640px;
}




.is-modal-open {
    overflow: hidden !important;
}

.is-modal-open .cards__track {
    pointer-events: none;
}


.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.modal__dialog {
    position: relative;
    max-width: min(720px, 92vw);
    width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    background: #fff;
}

.modal__content {
    padding: 24px;
}

.modal__title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    color: #111;
}

.modal__text {
    margin: 0;
    color: #333;
}


.footer {
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    color: var(--muted);
    font-size: 14px;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--text);
    border-radius: 10px;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
}

.btn:hover {
    color: var(--text);
    box-shadow: none;
}

.btn:focus,
.btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.btn-cta {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-decoration: none;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.btn-cta__arrow {
    display: inline-block;
    margin-right: 8px;
    margin-left: -18px;
    transition: transform .25s ease;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.6em;
}

.btn-cta:hover .btn-cta__arrow {
    transform: translateX(-6px);
}


.burger {
    display: none;
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    html,
    body {
        height: auto;
        min-height: 100%;
        overflow-y: auto;
    }

    body {
        height: auto;
    }

    .header {
        display: none;
    }

    .main {
        padding-top: 12px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero .container {
        width: 100% !important;
        height: auto !important;
    }

    .slides-container {
        display: block;
        width: 100%;
        height: auto;
        transform: none !important;
    }

    .slide {
        width: 100%;
        height: auto;
    }

    .scroll-progress {
        display: none;
    }

    .about__title {
        font-size: 32px;
    }

    .hero__title {
        font-size: clamp(28px, 7.2vw, 36px);
        line-height: 1.08;
        letter-spacing: -0.01em;
        width: auto;
        height: auto;
    }

    .hero__intro {
        font-size: 16px;
        max-width: none;
    }

    .hero__aside {
        min-height: auto;
    }

    .cards__track {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: initial;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .card {
        width: 100%;
        height: 240px;
    }

    .cards__spacer,
    .partners {
        display: none;
    }

    .cards__cta-text {
        width: auto;
        height: auto;
        font-size: 20px;
    }

    .burger {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 130;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid var(--border);
        background: rgba(0, 0, 0, .85);
        color: var(--bg);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
    }

    .burger:active {
        transform: translateY(1px);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 140;
        display: none;
    }

    .mobile-menu[aria-hidden="false"] {
        display: grid;
        grid-template-rows: auto 1fr;
    }

    .mobile-menu__backdrop {
        grid-row: 1 / -1;
        background: rgba(0, 0, 0, .6);
        backdrop-filter: blur(6px);
    }

    .mobile-menu__panel {
        position: relative;
        background: var(--bg);
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        margin-top: auto;
        padding: 20px 16px 28px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, .35);
    }

    .mobile-menu__title {
        font-family: "Gotham Rnd SSm", Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
        font-size: 28px;
        margin: 0 0 12px;
    }

    .mobile-menu__list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 12px;
    }

    .mobile-menu__link {
        display: block;
        padding: 12px 2px;
        color: #111;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid var(--border);
    }
}


@media (max-width: 1024px) {

    html,
    body {
        height: auto;
        min-height: 100%;
        overflow-y: auto !important;
    }

    body {
        height: auto;
    }

    .slides-container {
        display: block;
        width: 100%;
        height: auto;
        transform: none !important;
        left: 0 !important;
    }

    .slide {
        width: 100%;
        height: auto;
    }

    .container {
        max-width: 680px;
        padding-left: 16px;
        padding-right: 16px;
        margin: 0 auto;
    }

    .main {
        overflow-x: hidden;
    }

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

    .hero .container {
        width: 100% !important;
        height: auto !important;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .hero__content {
        text-align: center;
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(26px, 7.2vw, 34px);
        line-height: 1.06;
        letter-spacing: -0.01em;
        margin: 8px 0 8px;
    }

    .hero__title span {
        white-space: normal !important;
    }

    .hero__intro {
        font-size: 15px;
        max-width: 44ch;
     
    }


    .cards__track {
        justify-items: center;
    }

    .card {
        width: 88vw;
        max-width: 360px;
        height: auto;
        min-height: 220px;
        margin: 0 auto;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
    }

    .card__overlay {
        align-items: center;
        text-align: center;
        padding: 16px;
    }

    .card__title {
        font-size: 20px;
    }

    .card__desc {
        font-size: 13px;
        text-wrap: pretty;
        hyphens: auto;
    }

    .scroll-progress {
        display: none !important;
    }
}


@media (max-width: 400px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(22px, 7.2vw, 28px);
        line-height: 1.06;
    }

    .hero__title span {
        white-space: normal !important;
    }

    .hero__intro {
        font-size: 14px;
        max-width: 38ch;
    }

    .cards__track {
        gap: 14px !important;
    }

    .card {
        width: 92vw;
        max-width: 320px;
        min-height: 200px;
    }

    .card__title {
        font-size: 19px;
    }

    .card__desc {
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero__title {
        font-size: clamp(24px, 7vw, 30px);
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 90vw;
        max-width: 360px;
        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .card__title {
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (max-width: 414px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero__title {
        font-size: clamp(22px, 6.8vw, 28px);
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 92vw;
        max-width: 340px;
        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .burger {
        right: 10px;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (max-width: 390px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero__title {
        font-size: clamp(21px, 6.8vw, 26px);
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 94vw;
        max-width: 330px;
        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .burger {
        right: 8px;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero__title {
        font-size: clamp(20px, 6.6vw, 25px);
    }

    .hero__intro {
        font-size: 14px;
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 94vw;
        max-width: 320px;

        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero__title {
        font-size: clamp(19px, 6.4vw, 24px);
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 96vw;
        max-width: 310px;
        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (max-width: 320px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero__title {
        font-size: clamp(18px, 6.2vw, 22px);
    }

    .hero__intro {
        font-size: 13px;
        max-width: 34ch;
    }

    .hero__grid {
        justify-items: start;
    }

    .hero__content {
        text-align: left;
    }

    .hero__actions {
        justify-content: flex-start;
    }

    .cards__track {
        justify-items: start;
    }

    .cards__cta-text {
        text-align: left;
    }

    .card {
        width: 98vw;
        max-width: 300px;
        min-height: 180px;
        margin: 0;
    }

    .card__overlay {
        align-items: flex-start;
        text-align: left;
    }

    .card__title {
        font-size: 18px;
    }

    .card__desc {
        font-size: 12px;
    }

    .scroll-progress {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 600px 1fr;
        gap: 330px;
    }
}

.hero__aside {
    min-height: 560px;
}

.cards__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 340px;
    gap: 70px;
    width: max-content;
}

.cards__spacer {
    width: 300px;
}

.cards__cta-text {
    align-self: start;
    display: grid;
    gap: 12px;
    align-items: start;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: #111;
    width: 100%;
    max-width: 622.088px;
    height: 450px;
    grid-template-rows: auto auto auto auto 1fr auto;
}

.cards__cta-btn {
    width: max-content;
    font-size: 18px;
    padding: 10px 14px;
    border-radius: 9px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.cards__cta-btn .btn-cta__arrow {
    margin-left: -14px;
    margin-right: 8px;
    font-size: 1.3em;
}

.cards__cta-list {
    margin: 12px 0 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 20px;
    font-size: 22px;
    color: #222;
    opacity: .9;
}

.cards__cta-list li::before {
    content: "• ";
    margin-right: 4px;
}

.partners {
    display: grid;
    gap: 42px;
    margin-top: auto;
}

.partners__title {
    font-size: 20px;
    color: #111;
}

.partners__logos {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 768px) {
    .partners__logos {
        gap: 30px;
        flex-wrap: wrap;
    }
}

.partners__logos img {
    display: block;
}

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 340px;
    height: 610px;
    border: 0;
}

.card:hover {
    cursor: pointer;
}

.card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
    will-change: transform;
}

.card:hover .card__img {
    transform: scale(1.05);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .0) 30%, rgba(0, 0, 0, .55) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    gap: 20px;
}

.card__overlay--stacked {
    gap: 20px;
    padding: 40px;
}

.card__eyebrow {
    font-size: 14px;
    opacity: 0.95;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
}

.card__body {
    display: grid;
    gap: 10px;
}

.card__title {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
    font-size: 30px;
}

.card__desc {
    margin: 0;
    opacity: 0.95;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
    font-size: 20px;
}

.card__cta {
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-family: "Gotham Rnd SSm", "Avenir Next Rounded", Nunito, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.card__cta::after {
    content: "→";
    font-size: 1.2em;
    font-weight: 900;
    transition: transform .25s ease;
}

.card:hover .card__cta::after {
    transform: translateX(4px);
}


.scroll-progress {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 0;
    z-index: 120;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 12px;

}

.scroll-progress__inner {
    display: flex;
    font-size: 20px;
    font-weight: 600;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: right;
    position: relative;
}

.scroll-progress__label {
    font-weight: 500;
}

.scroll-progress__chevron {
    width: 26px;
    height: 26px;

}

.scroll-progress__track {
    position: relative;
    height: 3px;
    width: 310px;
    border-radius: 999px;
    overflow: hidden;
}

.scroll-dotted{
  display: block;
  border-bottom: 3px dotted #000!important;
  position: absolute;
  left: 0;
  border: 0;
  height: 3px;
  width: 100%;
}

.scroll-progress__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 999;
    width: 0%;
    background: rgba(0, 0, 0, 1);
    border-radius: 999px;
    transition: width .15s ease;
}




@media (max-width: 1024px) {
    .hero__aside {
        min-height: auto !important;
    }

    .cards__track {
        display: grid !important;
        grid-auto-flow: row !important;
        grid-auto-columns: initial !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }

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

@media(max-width: 767px){
  .hero .container{
    padding: 0 20px;
    box-sizing: border-box;
  }
  .hero .cards__track{
    height: 100%;
  }
}

@media(max-height: 790px){
    .hero__title{
        font-size: 50px;
    }
    .hero__title br{
        display: none;
    }
    .card{
        height: 455px;
    }
    .header__inner{
        height: 80px;
    }
    .hero__grid{
        align-items: flex-start;
    }
}