:root {
    --color-primary: #b40012;
    --color-primary-dark: #8f000f;
    --color-secondary: #4181b7;
    --color-accent: #8acff2;
    --color-text: #1c1b1b;
    --color-muted: #5e5a5a;
    --color-surface: #fdf9f6;
}

body.season-summer {
    --color-primary: #ecab27;
    --color-primary-dark: #c58d1f;
    --color-secondary: #a7633a;
    --color-accent: #185541;
    --color-surface:  #fcf9f8;
    --color-muted: #5e3f3b;

    color: var(--color-text);
    background: var(--color-surface);
    padding-bottom: 0;
}
body.season-winter {
    --color-primary: #b40012;
    --color-primary-dark: #8f000f;
    --color-secondary: #4181b7;
    --color-accent: #8acff2;
    --color-surface: #f4f8fc;
    --color-muted: #4f5f73;
    color: var(--color-text);
    background: var(--color-surface);
    padding-bottom: 0;
}

.fw-black {
    font-weight: 900;
}

.od-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(180, 0, 18, 0.12);
    z-index: 1030;
    transition: transform 240ms ease, opacity 240ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
    will-change: transform, opacity;
}

.od-navbar.od-navbar--hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.od-navbar .navbar-brand {
    color: var(--color-text) !important;
    letter-spacing: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
}

.od-navbar .container-fluid {
    position: relative;
}

.od-navbar__logo {
    display: block;
    width: auto;
    height: auto;
    max-height: 2.35rem;
    max-width: min(46vw, 12rem);
    object-fit: contain;
}

.od-navbar-quickmenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    gap: 1.25rem;
    z-index: 2;
}

.od-navbar-quickmenu__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.od-navbar-quickmenu__icon {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    filter: brightness(0);
}

.od-navbar-quickmenu__label {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translate(-50%, -0.25rem);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(24, 28, 34, 0.9);
    color: #fff;
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 0.5rem;
    border-radius: 0.3rem;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 6;
}

.od-navbar-quickmenu__item:hover .od-navbar-quickmenu__label,
.od-navbar-quickmenu__item:focus-visible .od-navbar-quickmenu__label {
    opacity: 1;
    transform: translate(-50%, 0);
}

.od-navbar.od-navbar--on-top {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.od-navbar.od-navbar--on-top .od-navbar__logo {
    max-height: 3.8rem;
    max-width: min(62vw, 18rem);
}

.od-navbar.od-navbar--on-top .od-navbar-quickmenu__icon {
    width: 2.1rem;
    height: 2.1rem;
    filter: brightness(0) invert(1);
}

.od-navbar.od-navbar--on-top .od-menu-toggle {
    color: #fff;
}

.od-navbar.od-navbar--on-top .od-menu-toggle-btn .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.od-menu-toggle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
}

.od-menu-toggle-btn .navbar-toggler-icon {
    width: 1.15em;
    height: 1.15em;
}

.od-offcanvas-nav {
    max-width: 26rem;
    background: var(--color-surface);
}

.od-nav-list > .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.od-nav-list .nav-link {
    padding: 0.75rem 0;
}

.od-navbar .nav-link {
    color: #3d3a3a;
}

.od-navbar .nav-link.active,
.od-navbar .nav-link:hover {
    color: var(--color-primary-dark);
}

.od-subnav-list {
    padding-left: 0.75rem;
}

.od-subnav-list .nav-link {
    color: var(--color-muted);
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.od-subnav-toggle-icon {
    margin-left: 0.5rem;
    transition: transform 180ms ease;
}

[aria-expanded="true"] .od-subnav-toggle-icon {
    transform: rotate(180deg);
}

.od-season-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 13.8rem;
    height: 2.35rem;
    padding: 0.22rem;
    border-radius: 999px;
    background: rgba(54, 95, 119, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 22px rgba(10, 25, 35, 0.22);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: background-color 260ms ease, box-shadow 260ms ease, border-color 220ms ease;
    text-decoration: none;
    cursor: pointer;
}

.od-season-switcher:link,
.od-season-switcher:visited,
.od-season-switcher:hover,
.od-season-switcher:focus-visible {
    text-decoration: none;
}

.od-season-switcher-wrap {
    min-height: 2.35rem;
}

.od-season-switcher__thumb {
    position: absolute;
    top: 0.22rem;
    left: 0.22rem;
    width: calc(50% - 0.22rem);
    height: calc(100% - 0.44rem);
    border-radius: 999px;
    background: #b40012;
    box-shadow: 0 6px 14px rgba(77, 0, 8, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 280ms cubic-bezier(.22,.8,.25,1), background-color 220ms ease, box-shadow 220ms ease;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.od-season-switcher.is-winter .od-season-switcher__thumb {
    transform: translateX(0);
}

.od-season-switcher.is-switching .od-season-switcher__thumb {
    transition-duration: 180ms;
}

.od-season-switcher__icon {
    display: inline-flex;
    line-height: 1;
    align-items: center;
    justify-content: center;
}

.od-season-switcher__icon svg {
    display: block;
    width: 12px;
    height: 12px;
}

.od-season-switcher__icon--snow {
    display: none;
}

.od-season-switcher.is-winter .od-season-switcher__icon--sun {
    display: none;
}

.od-season-switcher.is-winter .od-season-switcher__icon--snow {
    display: inline-flex;
    color: #ffffff;
}

.od-season-switcher.is-summer .od-season-switcher__icon--sun {
    color: #ffffff;
}

.od-season-switcher.is-winter {
    background: rgba(54, 95, 119, 0.72);
    border-color: rgba(255, 255, 255, 0.16);
}

.od-season-switcher.is-summer .od-season-switcher__thumb {
    transform: translateX(100%);
    background: var(--color-primary);
    box-shadow: 0 6px 14px rgba(120, 85, 12, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.od-season-switcher.is-summer .od-season-switcher__icon--sun {
    display: inline-flex;
}

.od-season-switcher__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    width: 50%;
    text-align: center;
    z-index: 2;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 241, 247, 0.68);
    line-height: 1;
    pointer-events: none;
    transition: color 220ms ease;
}

.od-season-switcher.is-winter .od-season-switcher__label--winter,
.od-season-switcher.is-summer .od-season-switcher__label--summer {
    color: #ffffff;
}

.od-season-switcher__label--winter {
    padding-left: 0.5rem;
}

.od-season-switcher__label--summer {
    padding-right: 0.5rem;
}

.od-language-switcher__toggle {
    min-width: 4.8rem;
    height: 1.9rem;
    padding: 0.2rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    color: var(--color-text);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 3px 10px rgba(0, 0, 0, 0.09);
}

.od-language-switcher__toggle:hover,
.od-language-switcher__toggle:focus,
.od-language-switcher__toggle:active,
.od-language-switcher.show .od-language-switcher__toggle {
    background: rgba(255, 255, 255, 0.62) !important;
    color: var(--color-text) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.65), 0 4px 12px rgba(0, 0, 0, 0.11) !important;
}

.od-language-switcher__toggle::after {
    margin-left: 0.45rem;
}

.od-language-switcher__menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.6rem;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.od-language-switcher__item {
    border-radius: 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--color-text);
}

.od-language-switcher__item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text);
}

.od-language-switcher__item.active,
.od-language-switcher__item:active {
    background: var(--color-primary);
    color: #fff;
}

.od-hero {
    min-height: 86vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
}

.od-hero-carousel {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}

.frame-type-sitepackage_hero,
.frame-type-sitepackage-hero {
    width: 100%;
    max-width: none;
}

.od-hero-carousel .od-hero-carousel__swiper {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
}

.od-hero-carousel .od-hero-carousel__swiper,
.od-hero-carousel .swiper-wrapper,
.od-hero-carousel .od-hero-carousel__slide {
    min-height: 86vh;
}

.od-hero-carousel .od-hero-carousel__swiper {
    position: relative;
}

.od-hero-carousel .od-hero-carousel__slide {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    max-width: 100vw;
    flex: 0 0 100vw;
    overflow: hidden;
}

.od-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.od-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
}

.od-hero-season-switcher {
    position: absolute;
    top: 5.2rem;
    right: clamp(1rem, 4vw, 2.6rem);
    z-index: 3;
}

.od-hero-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    margin-bottom: 5rem;
}

.od-hero-content__inner {
    width: min(100%, 1280px);
}

.od-hero-glass-card {
    width: min(100%, 42rem);
    padding: clamp(1.3rem, 2vw, 2.5rem);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.od-hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.25rem;
    padding: 0.375rem 1rem;
    border-radius: 999px;
    background: #fcd400;
    color: #6e5c00;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-hero-title {
    margin: 0;
    color: #1a1c1e;
    font-size: clamp(1.75rem, 2.8vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
}

.od-hero-copy {
    margin: 0;
    color: #424753;
    font-size: 1rem;
    line-height: 1.5rem;
    max-width: 28rem;
}

.od-hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
}

.od-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.od-hero-btn--primary {
    background: #0058bd;
    color: #fff;
    box-shadow: 0 4px 6px -4px rgba(59, 130, 246, 0.2), 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.od-hero-btn--secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #c2c6d5;
    color: #1a1c1e;
}

.od-hero-btn:hover {
    transform: translateY(-1px);
}

.od-hero-btn--primary:hover {
    color: #fff;
    background: #014ca4;
}

.od-hero-btn--secondary:hover {
    color: #1a1c1e;
    background: rgba(255, 255, 255, 0.92);
}

.od-hero-carousel__controls {
    position: absolute;
    right: clamp(1rem, 4vw, 2.6rem);
    bottom: 2.2rem;
    z-index: 4;
    gap: 0.5rem;
}

.od-hero-carousel__next,
.od-hero-carousel__prev {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(20, 28, 36, 0.45);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.od-hero-carousel__next:hover,
.od-hero-carousel__prev:hover {
    background: rgba(20, 28, 36, 0.68);
    border-color: rgba(255, 255, 255, 0.7);
}

.od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 2.35rem !important;
    transform: none !important;
    z-index: 12 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet {
    width: 0.55rem;
    height: 0.55rem;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.od-hero-carousel .od-hero-carousel__pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.od-hero-carousel .od-hero-carousel__pagination.swiper-pagination-lock {
    display: inline-flex !important;
}

@media (max-width: 767.98px) {
    .od-hero-content {
        margin-bottom: 4rem;
    }

    .od-hero-glass-card {
        width: 100%;
        border-radius: 1rem;
        padding: 1rem;
    }

    .od-hero-pill {
        font-size: 0.9rem;
        line-height: 1.35rem;
    }

    .od-hero-title {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .od-hero-btn {
        width: 100%;
        min-height: 3.4rem;
        padding: 0.95rem 1.1rem;
    }

    .od-hero-season-switcher {
        top: 3.8rem;
    }

    .od-season-switcher {
        width: 11.8rem;
        height: 2.1rem;
    }

    .od-season-switcher-wrap {
        min-height: 2.1rem;
    }

    .od-season-switcher__label {
        font-size: 0.72rem;
    }

    .od-hero-carousel > .od-hero-carousel__pagination.swiper-pagination {
        bottom: 1.35rem !important;
    }
}

.od-teaser {
    min-height: auto;
    overflow: hidden;
}

.od-teaser-large {
    min-height: auto;
}

.od-teaser .card-img {
    height: auto;
    transform: scale(1);
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
    will-change: transform;
    border-radius: 0 !important;
}

.od-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16));
}

.od-teaser .card-img-overlay {
    position: absolute;
    z-index: 2;
    border-radius: 0 !important;
}

.od-teaser-cards__kicker {
    color: var(--color-primary);
}

.od-teaser-cards__link-label {
    border-color: var(--color-primary) !important;
}

.od-teaser-cards .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper .od-teaser:hover .card-img {
    transform: scale(1.08);
    filter: contrast(1.05) saturate(1.05);
}

@media (min-width: 992px) {
    .od-teaser-cards .row {
        align-items: stretch;
    }

    .od-teaser-cards .col-lg-8,
    .od-teaser-cards .col-lg-4 {
        min-height: 100%;
    }

    .od-teaser-cards .col-lg-4.d-grid {
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .od-teaser-cards .col-lg-8 > a,
    .od-teaser-cards .col-lg-4 > a,
    .od-teaser-cards .col-lg-8 .od-teaser,
    .od-teaser-cards .col-lg-4 .od-teaser {
        height: 100%;
    }

    .od-teaser-cards .od-teaser .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.od-live-bar {
    background: rgba(18, 18, 18, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    transition: transform 240ms ease, opacity 240ms ease;
    will-change: transform, opacity;
}

.od-live-bar__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.od-live-bar__item .bi {
    font-size: 0.95rem;
    line-height: 1;
}

.od-live-bar.od-live-bar--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.od-footer {
    margin-bottom: 0;
    background: #ededf0;
}

.od-footer .row > div {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #63636c;
}

.od-footer .frame-type-text h1,
.od-footer .frame-type-text h2,
.od-footer .frame-type-text h3,
.od-footer .frame-type-text h4,
.od-footer .frame-type-text h5,
.od-footer .frame-type-text h6 {
    margin: 0 0 1.15rem;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.od-footer .frame-type-text p {
    margin-bottom: 0.5rem;
    color: #63636c;
    font-weight: 500;
}

.od-footer .frame-type-text ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.od-footer .frame-type-text li {
    margin-bottom: 0.72rem;
    color: #63636c;
    font-weight: 600;
}

.od-footer .frame-type-text a {
    color: #4a4a52;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}

.od-footer .frame-type-text a:hover {
    color: #111317;
    border-color: #111317;
}

.od-footer .frame-type-text strong,
.od-footer .frame-type-text b {
    color: #1f2024;
    font-weight: 800;
}

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

.btn-danger:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

.py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.od-split-feature-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    letter-spacing: 0;
}

.od-split-feature-line-lg {
    background-color: var(--color-primary);
    width: 3rem;
    height: 0.5rem;
}

.od-split-feature-line-sm {
    width: 1.5rem;
    height: 0.5rem;
    background-color: var(--color-primary);
}

.od-split-feature-copy p {
    margin-bottom: 1rem;
}

.od-split-feature-link {
    transition: gap 250ms ease;
}

.od-split-feature-link:hover {
    gap: 2rem !important;
}

.od-split-feature-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 0 !important;
}

.od-split-feature-badge {
    background-color: var(--color-primary);
    left: -2.5rem;
    bottom: -2.5rem;
    padding: 2rem 2.25rem;
}

.od-split-feature-badge-value {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
}

.od-split-feature-badge-text {
    letter-spacing: 0;
    font-size: 0.65rem;
}

.od-split-feature-image-frame img,
.od-teaser-cards .card,
.od-teaser-cards .card-img,
.od-teaserswiper .card,
.od-teaserswiper .card-img {
    border-radius: 0 !important;
}

.od-textpic-card {
    width: min(100%, 50rem);
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(194, 198, 213, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.od-textpic-content {
    padding: clamp(1.25rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.od-textpic-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 88, 189, 0.1);
    color: #0058bd;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-textpic-title {
    margin: 0;
    color: #1a1c1e;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.od-textpic-copy,
.od-textpic-copy p {
    margin: 0;
    color: #424753;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-textpic-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    min-height: 3.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: #0058bd;
    color: #fff;
    text-decoration: none;
}

.od-textpic-btn:hover {
    background: #014ca4;
    color: #fff;
}

.od-textpic-btn .bi {
    font-size: 1rem;
    line-height: 1;
}

.od-textpic-image-wrap {
    width: 100%;
    height: 25rem;
}

.od-textpic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {
    .od-textpic-btn {
        width: 100%;
        justify-content: center;
    }

    .od-textpic-image-wrap {
        height: 14rem;
    }
}

.od-bento {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.od-bento__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.od-bento__kicker {
    margin: 0;
    color: #1a1c1e;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
}

.od-bento__divider {
    width: 5rem;
    height: 0.25rem;
    border-radius: 999px;
    background: #fcd400;
}

.od-bento__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
}

.od-bento__card {
    border-radius: 1.5rem;
    border: 1px solid rgba(194, 198, 213, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.od-bento__card--feature {
    grid-column: span 12;
    min-height: 28rem;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
}

.od-bento__feature-copy {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.od-bento__feature-media {
    flex: 1 1 0;
    min-height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
}

.od-bento__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.od-bento__card--muted {
    grid-column: span 6;
    background: #f3f3f6;
}

.od-bento__card--small {
    grid-column: span 4;
}

.od-bento__icon {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.2rem;
    background: #0058bd;
}

.od-bento__title {
    margin: 0;
    color: #1a1c1e;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.od-bento__text,
.od-bento__text p {
    margin: 0;
    color: #424753;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-bento__bullets {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.od-bento__bullet {
    color: #0058bd;
    font-size: 1rem;
    line-height: 1.5rem;
    position: relative;
    padding-left: 1.1rem;
}

.od-bento__bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #0058bd;
}

.od-bento__partner {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(194, 198, 213, 0.3);
}

.od-bento__partner-label {
    color: #424753;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    line-height: 1.35rem;
}

.od-bento__partner-value {
    color: #0058bd;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-bento__link {
    margin-top: 0.5rem;
    color: #0058bd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.od-bento__link:hover {
    color: #014ca4;
}

@media (max-width: 991.98px) {
    .od-bento__card--muted,
    .od-bento__card--small {
        grid-column: span 12;
    }

    .od-bento__card--feature {
        flex-direction: column;
        min-height: auto;
    }

    .od-bento__feature-media {
        min-height: 14rem;
    }
}

.od-cta {
    position: relative;
    overflow: hidden;
    border-radius: 2.5rem;
    background: #0058bd;
    padding: clamp(2rem, 7vw, 6rem);
}

.od-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.od-cta__kicker {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-cta__copy,
.od-cta__copy p {
    margin: 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-cta__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
}

.od-cta__btn {
    min-height: 4.1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.5rem;
}

.od-cta__btn--primary {
    background: #fcd400;
    color: #6e5c00;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.od-cta__btn--primary:hover {
    background: #e6c000;
    color: #6e5c00;
}

.od-cta__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(2px);
}

.od-cta__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

@media (max-width: 767.98px) {
    .od-cta {
        border-radius: 1.5rem;
        padding: 1.4rem 1rem;
    }

    .od-cta__actions {
        width: 100%;
    }

    .od-cta__btn {
        width: 100%;
        min-height: 3.4rem;
        padding: 0.95rem 1rem;
    }
}

.od-product-teaser__swiper {
    overflow: visible;
}

.od-product-card {
    height: 100%;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #c2c6d5;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.od-product-card__media {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

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

.od-product-card__badge {
    position: absolute;
    left: 1rem;
    top: 0.7rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: #fcd400;
    color: #6e5c00;
    font-size: 0.75rem;
    line-height: 0.75rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.od-product-card__body {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 0.5rem;
    column-gap: 0.75rem;
}

.od-product-card__title {
    margin: 0;
    color: #1a1c1e;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 400;
}

.od-product-card__price {
    color: #0058bd;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    text-align: right;
}

.od-product-card__desc {
    grid-column: 1 / -1;
    color: #424753;
    font-size: 1rem;
    line-height: 1.6rem;
    min-height: 5.8rem;
}

.od-product-card__desc p {
    margin: 0;
}

.od-product-card__button {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #0058bd;
    color: #fff;
    text-decoration: none;
    min-height: 3rem;
}

.od-product-card__button:hover {
    background: #014ca4;
    color: #fff;
}

.od-product-teaser__controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.od-product-teaser__prev,
.od-product-teaser__next {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #c2c6d5;
    border-radius: 0.5rem;
    background: #fff;
    color: #1a1c1e;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .od-navbar {
        background: rgba(255, 255, 255, 0.94);
    }

    .od-navbar.od-navbar--on-top {
        background: transparent;
    }

    .od-navbar__logo {
        max-height: 1.95rem;
        max-width: min(58vw, 10rem);
    }

    .od-navbar.od-navbar--on-top .od-navbar__logo {
        max-height: 2.9rem;
        max-width: min(72vw, 14rem);
    }

    .od-hero {
        min-height: 74vh;
    }

    .od-hero-carousel .od-hero-carousel__swiper,
    .od-hero-carousel .swiper-wrapper,
    .od-hero-carousel .od-hero-carousel__slide {
        min-height: 74vh;
    }

    .od-hero-content h1 {
        font-size: clamp(2.1rem, 8vw, 3.6rem);
    }

    .py-lg-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}


.container{
    max-width: 1200px;
}

/*Teaserswiper css*/
.od-teaserswiper {
    --swiper-theme-color: var(--color-primary);
}

.od-teaserswiper .swiper {
    overflow: hidden;
}

.od-teaserswiper-feature,
.od-teaserswiper-card {
    background: #fff;
    overflow: hidden;
}

.od-teaserswiper-feature__image,
.od-teaserswiper-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(.2, .65, .2, 1), filter 450ms ease;
}

.od-teaserswiper-feature {
    min-height: 520px;
}

.od-teaserswiper-feature picture,
.od-teaserswiper-card picture {
    display: block;
    height: 100%;
    overflow: hidden;
}

.od-teaserswiper-feature__content,
.od-teaserswiper-card__content {
    height: 100%;
    padding: clamp(2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.od-teaserswiper-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.od-teaserswiper-card picture {
    aspect-ratio: 4 / 3;
}

.od-teaserswiper-card__content {
    flex: 1;
    justify-content: space-between;
    min-height: 280px;
}

.od-teaserswiper__kicker {
    color: var(--color-primary);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.od-teaserswiper__headline {
    color: var(--color-text);
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.od-teaserswiper__text {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.od-teaserswiper__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 250ms ease, color 250ms ease;
}

.od-teaserswiper__link:hover {
    gap: 1.5rem;
    color: var(--color-primary-dark);
}

.od-teaserswiper__link-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1;
}

.od-teaserswiper-card:hover .od-teaserswiper-card__image,
.od-teaserswiper-feature:hover .od-teaserswiper-feature__image {
    transform: scale(1.06);
    filter: contrast(1.05) saturate(1.05);
}

.od-teaserswiper__nav {
    color: var(--color-primary);
}

@media (max-width: 767.98px) {
    .od-teaserswiper-feature {
        min-height: auto;
    }

    .od-teaserswiper-feature picture {
        aspect-ratio: 4 / 3;
    }

    .od-teaserswiper-feature__content,
    .od-teaserswiper-card__content {
        padding: 2rem;
    }
}

.od-teaserswiper__next,
.od-teaserswiper__prev {
    position: absolute;
    color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.80);
    border-radius: 100%;
    padding: 8px;
    margin: auto;

}


.od-teaserswiper__swiper {
    width: 100%;
    overflow: hidden;
}

.od-teaserswiper .swiper-wrapper {
    display: flex;
}

.od-teaserswiper .swiper-slide {
    flex-shrink: 0;
    height: auto;
}
.od-textmedia__headline {
    color: var(--color-text);
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.od-textmedia__subheadline {
    color: var(--color-primary);
    letter-spacing: .12em;
    font-size: .78rem;
}

.od-textmedia__body {
    color: var(--color-muted);
    font-size: 1.125rem;
    line-height: 1.625;
}

.od-textmedia__panel {
    background: var(--color-surface);
    padding: clamp(2rem, 4vw, 6rem);
    min-height: 100%;
}

.od-textmedia.od-season-summer .od-textmedia__panel {
    background: #fdf7f2;
}

.od-textmedia.od-season-winter .od-textmedia__panel {
    background: #edf3f9;
}

.od-textmedia__media-panel {
    min-height: 100%;
}

.od-textmedia__media-panel .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.od-textmedia__media-panel .col {
    padding: 0;
}

.od-textmedia__cta {
    letter-spacing: 0.1em;
    line-height: 1.25rem;
    border-radius: 0;
}

.od-textmedia__figure {
    overflow: hidden;
    height: 100%;
}

.od-textmedia__image {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .12);
    border-radius: 0 !important;
}

.od-textmedia--split-feature .od-textmedia__image {
    aspect-ratio: 4 / 5;
}

.od-textmedia__media-panel .od-textmedia__image {
    aspect-ratio: 16 / 9;
}

.od-textmedia__caption {
    color: var(--color-muted);
}

.od-textmedia picture,
.od-textmedia .od-textmedia__figure {
    border-radius: 0 !important;
}

.icc-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.icc-footer img {
    filter: brightness(0) saturate(100%);
}

@media (max-width: 991.98px) {
    .od-textmedia {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
