.fcbs-slider,
.fcbs-slider * {
    box-sizing: border-box;
}

.fcbs-slider {
    position: relative;
    width: 100%;
    height: var(--fcbs-height, 760px);
    min-height: 420px;
    overflow: hidden;
    background: #050505;
    color: var(--fcbs-text, #fff);
    isolation: isolate;
    touch-action: pan-y;
    contain: layout paint;
}

.fcbs-slider .fcbs-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.22, .9, .25, 1);
    will-change: transform;
}

.fcbs-slider .fcbs-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fcbs-slider .fcbs-bg,
.fcbs-slider .fcbs-bg-inner,
.fcbs-slider .fcbs-media,
.fcbs-slider .fcbs-overlay {
    position: absolute;
    inset: 0;
}

.fcbs-slider .fcbs-bg {
    z-index: 0;
    background: #070707;
}

.fcbs-slider .fcbs-bg-inner,
.fcbs-slider .fcbs-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fcbs-slider .fcbs-bg-inner {
    z-index: 1;
    opacity: .92;
    transform: scale(1.02);
}

.fcbs-slider .fcbs-media {
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcbs-slider .fcbs-video {
    display: block;
    background: transparent;
}

.fcbs-slider .fcbs-video.is-blocked,
.fcbs-slider .fcbs-video.has-error {
    opacity: 0;
}

.fcbs-slider.fcbs-grayscale .fcbs-bg-inner,
.fcbs-slider.fcbs-grayscale .fcbs-media {
    filter: grayscale(100%);
}

.fcbs-slider .fcbs-overlay {
    z-index: 3;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.24) 100%),
        rgba(0,0,0,var(--fcbs-overlay, .56));
}

.fcbs-slider.fcbs-no-overlay .fcbs-overlay {
    display: none;
    background: transparent;
}

.fcbs-slider.fcbs-kenburns .fcbs-slide.is-active .fcbs-bg-inner,
.fcbs-slider.fcbs-kenburns .fcbs-slide.is-active .fcbs-media {
    animation: fcbsSliderZoom 7800ms ease-out both;
}

@keyframes fcbsSliderZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.095); }
}

.fcbs-slider .fcbs-content-wrap {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    width: min(1180px, calc(100% - 220px));
    height: 100%;
    margin: 0 auto;
    padding: 80px 0 var(--fcbs-content-bottom, 104px);
}

.fcbs-slider .fcbs-align-left .fcbs-content-wrap {
    justify-content: flex-start;
}

.fcbs-slider .fcbs-align-center .fcbs-content-wrap {
    justify-content: center;
    text-align: center;
}

.fcbs-slider .fcbs-align-right .fcbs-content-wrap {
    justify-content: flex-end;
    text-align: right;
}

.fcbs-slider .fcbs-v-top .fcbs-content-wrap {
    align-items: flex-start;
}

.fcbs-slider .fcbs-v-center .fcbs-content-wrap {
    align-items: center;
}

.fcbs-slider .fcbs-v-bottom .fcbs-content-wrap {
    align-items: flex-end;
}

.fcbs-slider .fcbs-text-left {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.fcbs-slider .fcbs-text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fcbs-slider .fcbs-text-right {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.fcbs-slider .fcbs-buttons-left {
    justify-content: flex-start;
}

.fcbs-slider .fcbs-buttons-center {
    justify-content: center;
}

.fcbs-slider .fcbs-buttons-right {
    justify-content: flex-end;
}

.fcbs-slider .fcbs-content {
    width: min(100%, var(--fcbs-content-width, 560px));
    max-width: 100%;
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 620ms ease, transform 620ms ease;
}

.fcbs-slider .fcbs-slide.is-active .fcbs-content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 160ms;
}

.fcbs-slider .fcbs-kicker {
    margin: 0 0 14px;
    color: var(--fcbs-accent, #c7ad7f);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .24em;
    line-height: 1.1;
    text-transform: uppercase;
}

.fcbs-slider .fcbs-title {
    max-width: 780px;
    margin-top: 0;
    margin-bottom: 0;
    color: inherit;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: var(--fcbs-title-size, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.fcbs-slider .fcbs-description {
    max-width: 520px;
    margin-top: 24px;
    margin-bottom: 0;
    color: rgba(255,255,255,.86);
    font-size: var(--fcbs-description-size, 16px);
    font-weight: 400;
    line-height: 1.75;
}

.fcbs-slider .fcbs-align-center .fcbs-description {
    margin-left: auto;
    margin-right: auto;
}

.fcbs-slider .fcbs-align-right .fcbs-description {
    margin-left: auto;
}

.fcbs-slider .fcbs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.fcbs-slider .fcbs-align-center .fcbs-actions:not(.fcbs-buttons-left):not(.fcbs-buttons-center):not(.fcbs-buttons-right) {
    justify-content: center;
}

.fcbs-slider .fcbs-align-right .fcbs-actions:not(.fcbs-buttons-left):not(.fcbs-buttons-center):not(.fcbs-buttons-right) {
    justify-content: flex-end;
}

.fcbs-slider .fcbs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: var(--fcbs-button-padding, 14px 24px);
    border: 1px solid transparent;
    border-radius: var(--fcbs-button-radius, 0px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.fcbs-slider .fcbs-button:hover,
.fcbs-slider .fcbs-button:focus-visible {
    transform: translateY(-2px);
    text-decoration: none !important;
}

.fcbs-slider .fcbs-button.primary {
    background: var(--fcbs-btn-bg, #c7ad7f);
    color: var(--fcbs-btn-text, #fff);
}

.fcbs-slider .fcbs-button.secondary {
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.06);
    color: var(--fcbs-text, #fff);
    backdrop-filter: blur(8px);
}

.fcbs-slider .fcbs-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.22);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
    backdrop-filter: blur(10px);
}

.fcbs-slider .fcbs-arrow:hover,
.fcbs-slider .fcbs-arrow:focus-visible {
    background: rgba(0,0,0,.42);
    transform: translateY(-50%) scale(1.04);
}

.fcbs-slider .fcbs-prev {
    left: 28px;
}

.fcbs-slider .fcbs-next {
    right: 28px;
}

.fcbs-slider .fcbs-arrow span {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.fcbs-slider .fcbs-prev span {
    transform: rotate(-45deg) translate(2px, 2px);
}

.fcbs-slider .fcbs-next span {
    transform: rotate(135deg) translate(2px, 2px);
}

.fcbs-slider .fcbs-dots {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.fcbs-slider .fcbs-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    opacity: .88;
    transition: width .2s ease, background .2s ease, border-color .2s ease;
}

.fcbs-slider .fcbs-dot.is-active {
    width: 22px;
    border-color: var(--fcbs-accent, #c7ad7f);
    background: var(--fcbs-accent, #c7ad7f);
}

.fcbs-slider.is-dragging .fcbs-track {
    transition: none;
}

.fcbs-slider.fcbs-effect-slide-fade .fcbs-slide {
    opacity: .32;
    transition: opacity var(--fcbs-speed, 720ms) ease;
}

.fcbs-slider.fcbs-effect-slide-fade .fcbs-slide.is-active {
    opacity: 1;
}

.fcbs-slider.fcbs-effect-soft-push .fcbs-track {
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1);
}

.fcbs-slider.fcbs-effect-soft-push .fcbs-slide .fcbs-content,
.fcbs-slider.fcbs-effect-soft-push .fcbs-slide .fcbs-bg {
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1), opacity var(--fcbs-speed, 720ms) ease;
}

.fcbs-slider.fcbs-effect-soft-push .fcbs-slide.is-before .fcbs-bg {
    transform: translateX(4%) scale(1.04);
}

.fcbs-slider.fcbs-effect-soft-push .fcbs-slide.is-after .fcbs-bg {
    transform: translateX(-4%) scale(1.04);
}

.fcbs-slider.fcbs-effect-scale-slide .fcbs-slide {
    opacity: .62;
    transform: scale(.94);
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1), opacity var(--fcbs-speed, 720ms) ease;
}

.fcbs-slider.fcbs-effect-scale-slide .fcbs-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.fcbs-slider.fcbs-effect-parallax .fcbs-slide .fcbs-bg-inner,
.fcbs-slider.fcbs-effect-parallax .fcbs-slide .fcbs-media {
    transform: translateX(7%) scale(1.08);
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1);
}

.fcbs-slider.fcbs-effect-parallax .fcbs-slide.is-before .fcbs-bg-inner,
.fcbs-slider.fcbs-effect-parallax .fcbs-slide.is-before .fcbs-media {
    transform: translateX(-7%) scale(1.08);
}

.fcbs-slider.fcbs-effect-parallax .fcbs-slide.is-active .fcbs-bg-inner,
.fcbs-slider.fcbs-effect-parallax .fcbs-slide.is-active .fcbs-media {
    transform: translateX(0) scale(1.02);
}

.fcbs-slider.fcbs-effect-coverflow {
    perspective: 1300px;
}

.fcbs-slider.fcbs-effect-coverflow .fcbs-track {
    transform-style: preserve-3d;
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1);
}

.fcbs-slider.fcbs-effect-coverflow .fcbs-slide {
    opacity: .54;
    transform: rotateY(16deg) scale(.9);
    transform-origin: center center;
    transition: transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1), opacity var(--fcbs-speed, 720ms) ease;
}

.fcbs-slider.fcbs-effect-coverflow .fcbs-slide.is-after {
    transform: rotateY(-16deg) scale(.9);
}

.fcbs-slider.fcbs-effect-coverflow .fcbs-slide.is-active {
    opacity: 1;
    transform: rotateY(0) scale(1);
}

.fcbs-slider.fcbs-effect-vertical .fcbs-track {
    display: flex;
    flex-direction: column;
}

.fcbs-slider.fcbs-effect-fade .fcbs-track,
.fcbs-slider.fcbs-effect-zoom .fcbs-track,
.fcbs-slider.fcbs-effect-blur-fade .fcbs-track,
.fcbs-slider.fcbs-effect-clip-reveal .fcbs-track,
.fcbs-slider.fcbs-effect-cards .fcbs-track,
.fcbs-slider.fcbs-effect-flip .fcbs-track,
.fcbs-slider.fcbs-effect-cinematic .fcbs-track {
    display: block;
    position: relative;
    transform: none !important;
    transition: none !important;
}

.fcbs-slider.fcbs-effect-fade .fcbs-slide,
.fcbs-slider.fcbs-effect-zoom .fcbs-slide,
.fcbs-slider.fcbs-effect-blur-fade .fcbs-slide,
.fcbs-slider.fcbs-effect-clip-reveal .fcbs-slide,
.fcbs-slider.fcbs-effect-cards .fcbs-slide,
.fcbs-slider.fcbs-effect-flip .fcbs-slide,
.fcbs-slider.fcbs-effect-cinematic .fcbs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--fcbs-speed, 720ms) ease, transform var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1), filter var(--fcbs-speed, 720ms) ease, clip-path var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1);
}

.fcbs-slider.fcbs-effect-fade .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-zoom .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-blur-fade .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-clip-reveal .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-cards .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-flip .fcbs-slide.is-active,
.fcbs-slider.fcbs-effect-cinematic .fcbs-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.fcbs-slider.fcbs-effect-zoom .fcbs-slide {
    transform: scale(1.035);
}

.fcbs-slider.fcbs-effect-zoom .fcbs-slide.is-active {
    transform: scale(1);
}

.fcbs-slider.fcbs-effect-blur-fade .fcbs-slide {
    filter: blur(18px);
    transform: scale(1.035);
}

.fcbs-slider.fcbs-effect-blur-fade .fcbs-slide.is-active {
    filter: blur(0);
    transform: scale(1);
}

.fcbs-slider.fcbs-effect-clip-reveal .fcbs-slide {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
}

.fcbs-slider.fcbs-effect-clip-reveal.is-backward .fcbs-slide {
    clip-path: inset(0 0 0 100%);
}

.fcbs-slider.fcbs-effect-clip-reveal .fcbs-slide.is-active {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.fcbs-slider.fcbs-effect-cards .fcbs-slide {
    transform: translate3d(44px, 0, 0) scale(.94) rotate(1.2deg);
    filter: saturate(.85);
}

.fcbs-slider.fcbs-effect-cards .fcbs-slide.is-prev,
.fcbs-slider.fcbs-effect-cards .fcbs-slide.is-before {
    transform: translate3d(-44px, 0, 0) scale(.94) rotate(-1.2deg);
}

.fcbs-slider.fcbs-effect-cards .fcbs-slide.is-active {
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
    filter: saturate(1);
}

.fcbs-slider.fcbs-effect-flip {
    perspective: 1400px;
}

.fcbs-slider.fcbs-effect-flip .fcbs-slide {
    transform: rotateY(18deg) scale(.96);
    transform-origin: center center;
    backface-visibility: hidden;
}

.fcbs-slider.fcbs-effect-flip.is-backward .fcbs-slide {
    transform: rotateY(-18deg) scale(.96);
}

.fcbs-slider.fcbs-effect-flip .fcbs-slide.is-active {
    transform: rotateY(0) scale(1);
}

.fcbs-slider.fcbs-effect-cinematic .fcbs-slide {
    transform: scale(1.08);
    filter: brightness(.78) saturate(.8);
}

.fcbs-slider.fcbs-effect-cinematic .fcbs-slide.is-active {
    transform: scale(1);
    filter: brightness(1) saturate(1);
}

.fcbs-slider.fcbs-effect-cinematic .fcbs-slide.is-active .fcbs-content {
    animation: fcbsContentCinematic var(--fcbs-speed, 720ms) cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes fcbsContentCinematic {
    from {
        opacity: 0;
        transform: translate3d(0, 42px, 0) scale(.98);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 767px) {
    .fcbs-slider {
        height: var(--fcbs-mobile-height, 620px);
        min-height: 480px;
    }

    .fcbs-slider .fcbs-content-wrap {
        width: min(calc(100% - 128px), 520px);
        align-items: center;
        padding: 64px 0 var(--fcbs-content-bottom-mobile, 94px);
    }

    .fcbs-slider .fcbs-align-right .fcbs-content-wrap,
    .fcbs-slider .fcbs-align-center .fcbs-content-wrap,
    .fcbs-slider .fcbs-align-left .fcbs-content-wrap {
        justify-content: center;
    }

    .fcbs-slider .fcbs-kicker {
        margin-bottom: 12px;
        font-size: 10px;
    }

    .fcbs-slider .fcbs-title {
        font-size: var(--fcbs-title-mobile, 32px);
        line-height: 1.12;
    }

    .fcbs-slider .fcbs-description {
        max-width: 340px;
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .fcbs-slider .fcbs-actions {
        margin-top: 24px;
    }

    .fcbs-slider .fcbs-actions:not(.fcbs-buttons-left):not(.fcbs-buttons-center):not(.fcbs-buttons-right),
    .fcbs-slider .fcbs-align-center .fcbs-actions:not(.fcbs-buttons-left):not(.fcbs-buttons-center):not(.fcbs-buttons-right),
    .fcbs-slider .fcbs-align-right .fcbs-actions:not(.fcbs-buttons-left):not(.fcbs-buttons-center):not(.fcbs-buttons-right) {
        justify-content: center;
    }

    .fcbs-slider .fcbs-button {
        min-height: 44px;
        padding: var(--fcbs-button-padding-mobile, 13px 20px);
        font-size: 10px;
    }

    .fcbs-slider .fcbs-arrow {
        width: 42px;
        height: 42px;
        background: rgba(0,0,0,.18);
    }

    .fcbs-slider .fcbs-prev {
        left: 12px;
    }

    .fcbs-slider .fcbs-next {
        right: 12px;
    }

    .fcbs-slider .fcbs-dots {
        bottom: 26px;
    }

    .fcbs-slider .fcbs-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 70%, rgba(0,0,0,.28) 100%),
            rgba(0,0,0,var(--fcbs-overlay, .56));
    }
}


@media (max-width: 767px) {
    .fcbs-slider.fcbs-no-overlay .fcbs-overlay {
        display: none;
        background: transparent;
    }
}
