/* Hero Banner Styles - Bottom Centered Text */
.hero-banner-area {
    position: relative;
    width: 100%;
}

.hero-banner-slider {
    width: 100%;
}

.hero-banner-slide {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner-slide__bg img,
.hero-banner-slide__bg picture {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    object-position: center;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .hero-banner-slide {
        min-height: 600px;
    }
}

@media (max-width: 991px) {
    .hero-banner-slide {
        min-height: 450px;
    }
}

@media (max-width: 767px) {
    .hero-banner-slide {
        /* Let the hero banner cover the available viewport height on mobile, 
           minus the header offset. Setting a min-height ensures it doesn't get too small */
        min-height: 500px;
        height: calc(100vh - 120px);
    }
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px 80px 20px;
    max-width: 800px;
}

@media (max-width: 767px) {
    .hero-banner-content {
        padding: 0 15px 50px 15px;
    }
}

.hero-banner-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .hero-banner-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
}

.hero-banner-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1199px) {
    .hero-banner-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .hero-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hero-banner-title {
        font-size: 18px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
}

.hero-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.hero-banner-btn:hover {
    background-color: rgba(60, 60, 60, 0.9);
    color: #fff;
}

@media (max-width: 767px) {
    .hero-banner-btn {
        padding: 10px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }
}

.hero-banner-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
}

.hero-banner-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-banner-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
}