.sbc-fullscreen-hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.sbc-fullscreen-hero-slide {
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.sbc-fullscreen-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.35);
}

.sbc-fullscreen-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 0 80px;
}

.sbc-hero-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.sbc-hero-title {
    margin: 0 0 24px;
    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
}

.sbc-hero-description {
    margin: 0 0 34px;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}

.sbc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 40px;
    background: #9D2142;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
}

.sbc-hero-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    opacity: 0.9;
}

.sbc-hero-prev,
.sbc-hero-next {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbc-hero-prev:hover,
.sbc-hero-next:hover {
    background: rgba(0, 0, 0, 0.75);
}

.sbc-hero-prev {
    left: 30px;
}

.sbc-hero-next {
    right: 30px;
}

.sbc-hero-pagination {
    position: absolute;
    left: 80px !important;
    bottom: 40px !important;
    z-index: 20;
    width: auto !important;
}

.sbc-hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.45;
}

.sbc-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-subtitle,
.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-title,
.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-description,
.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-btn {
    animation: sbcHeroFadeUp 0.9s ease both;
}

.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-title {
    animation-delay: 0.15s;
}

.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-description {
    animation-delay: 0.3s;
}

.sbc-fullscreen-hero-slider .swiper-slide-active .sbc-hero-btn {
    animation-delay: 0.45s;
}

@keyframes sbcHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .sbc-hero-title {
        font-size: 52px;
    }

    .sbc-fullscreen-hero-content {
        padding: 0 50px;
    }
}

@media (max-width: 767px) {

    .sbc-fullscreen-hero-slider,
    .sbc-fullscreen-hero-slide {
        height: 80vh;
    }

    .sbc-fullscreen-hero-content {
        padding: 0 25px;
        max-width: 100%;
    }

    .sbc-hero-title {
        font-size: 34px;
    }

    .sbc-hero-description {
        font-size: 15px;
    }

    .sbc-hero-prev,
    .sbc-hero-next {
        width: 42px;
        height: 42px;
    }

    .sbc-hero-prev {
        left: 12px;
    }

    .sbc-hero-next {
        right: 12px;
    }

    .sbc-hero-pagination {
        left: 25px !important;
        bottom: 25px !important;
    }
}