.video-banner {
    position: relative;
}

.video-banner.is-fullscreen .video-banner-slide {
    min-height: 100vh;
}

.video-banner.is-medium .video-banner-slide {
    min-height: min(80vh, 760px);
}

.video-banner-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #101010;
}

.video-banner-media,
.video-banner-image-shell,
.video-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-banner-media,
.video-banner-image {
    object-fit: cover;
}

.video-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.52) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.04) 50%, rgba(0, 0, 0, 0.14) 100%);
}

.video-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: min(88vw, 900px);
    padding: 140px 24px 120px;
    text-align: center;
}

.video-banner-eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 19px;
    font-weight: 200;
    /*letter-spacing: 0.48em;*/
   
}

.video-banner-title {
    margin: 0;
    color: #fff;
    font-size: 63px;/*clamp(46px, 8vw, 110px);*/
    
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-family-one);
    letter-spacing: 2.5px;
    line-height: 80px;
      width: 1104px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.video-banner-cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #151515;
    min-width: 276px;
    padding: 0 24px;
}

.video-banner-cta .txt {
    display: inline-block;
    text-align: center;
}

.video-banner-cta .button-arrow {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 16px;
    margin-left: 0;
    opacity: 0;
    color: currentColor;
    overflow: hidden;
    transform: translateX(-6px);
    transition: width 0.3s ease, margin-left 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.video-banner-cta .button-arrow svg {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.video-banner-cta:hover .txt {
    transform: none;
}

.video-banner-cta:hover .button-arrow {
    width: 16px;
    margin-left: 14px;
    opacity: 1;
    transform: translateX(0);
}

.video-banner-content > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition-delay: 0s;
}

.video-banner-slide.is-active .video-banner-content > * {
    opacity: 1;
    transform: translateY(0);
}

.video-banner-slide.is-active .video-banner-title {
    transition-delay: 0.08s;
}

.video-banner-slide.is-active .video-banner-eyebrow {
    transition-delay: 0.16s;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.video-banner-slide.is-active .video-banner-cta {
    transition-delay: 0.24s;
}

body.menu-open .video-banner-slide.is-active .video-banner-title {
    opacity: 0;
    transform: translateY(22px);
    transition-delay: 0s;
}

body.menu-open .video-banner-slide.is-active .video-banner-eyebrow {
    opacity: 0;
    transform: translateY(22px);
    transition-delay: 0.08s;
}

body.menu-open .video-banner-slide.is-active .video-banner-cta {
    opacity: 0;
    transform: translateY(22px);
    transition-delay: 0.16s;
}

.video-banner-loader {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.video-banner-loader-logo {
    position: absolute;
    width: 28px;
    height: 28px;
    background-image: url('../img/overlay-img-x.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.video-banner-loader-spinner {
    position: relative;
    width: 58px;
    height: 58px;
    transform: rotate(-32deg);
    animation: video-banner-spin 1.8s cubic-bezier(0.475, 0.105, 0.5, 0.905) infinite;
}

.video-banner-loader-ring {
    fill: none;
    stroke: rgba(245, 214, 159, 0.92);
    stroke-width: 3;
    stroke-linecap: square;
    stroke-linejoin: round;
    stroke-dasharray: 52 10 52 12;
    stroke-dashoffset: 118;
    transform-origin: center;
    animation: video-banner-loader-dash 1.8s cubic-bezier(0.475, 0.105, 0.5, 0.905) infinite;
}

.video-banner-slide.is-video-loaded .video-banner-loader {
    opacity: 0;
    pointer-events: none;
}

.video-banner-dots {
    position: fixed;
    top: 50%;
    left: 40px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transform: translateY(-50%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.video-banner-dot {
    position: relative;
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(139, 137, 137, 0.9);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-banner-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.video-banner-dot.is-active {
    background: #fff;
    transform: scale(1);
}

.video-banner-dot.is-active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.video-banner-scroll-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    width: 22px;
    height: 72px;
    margin-left: 0;
    overflow: hidden;
    transform: translateX(-50%);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-banner-scroll-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.video-banner-scroll-fall {
    position: absolute;
    top: -16px;
    left: 50%;
    width: 3px;
    height: 30px;
    background: #fff;
    transform: translateX(-50%);
    animation: video-banner-scroll-fall 1.9s ease-in-out infinite;
}

.video-banner.is-single-slide .video-banner-content {
    padding-bottom: 140px;
}

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

@keyframes video-banner-loader-dash {
    0% {
        stroke-dashoffset: 118;
    }

    50% {
        stroke-dashoffset: 46;
    }

    100% {
        stroke-dashoffset: -26;
    }
}

@keyframes video-banner-scroll-fall {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 62px);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .video-banner-dots {
        left: 22px;
        gap: 16px;
    }

    .video-banner-content {
        width: min(92vw, 680px);
        padding: 120px 20px 108px;
    }
}

@media (max-width: 767px) {
    .video-banner.is-medium .video-banner-slide {
        min-height: 62vh;
    }

    .video-banner-dots {
        display: none;
    }

    .video-banner-title {
        font-size: clamp(36px, 12vw, 62px);
    }

    .video-banner-scroll-icon {
        bottom: 0;
    }
}
