/* Hero Slider Styles */
.hero-swiper-container {
    width: 100%;
    height: 100vh;
    max-width: 1440px;
    max-height: 650px;
    position: relative;
}


.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide.hero-slide.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: left;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 18px;
}

.hero-content .hero-title {
    font-family: 'Cormorant SC';
    font-weight: 500;
    font-size: 28px !important;
    line-height: 1.2;
    color: #FDF2ED !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

.hero-content .hero-subtitle {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #FDF2ED !important;
    margin-bottom: 32px !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #bea18c;
}

.wrap_btn_custom_slider_hero {
    width: 180px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    /* padding: 8px 16px; */
    background: #FDF2ED;
    cursor: pointer;
}

.custom_slider_btn_hero {
    width: 100%;
    height: 100%;
}

.custom_slider_btn_hero a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px !important;
    line-height: 1.5;
    color: #40352C !important;
    padding: 0 !important;
    text-decoration: none !important;
}

@media (min-width: 769px) {
    .wrap_btn_custom_slider_hero {
        width: 220px;
        height: 52px;
    }

    .hero-content .hero-title {
        font-size: 64px !important;
        max-width: 950px;
        margin-bottom: 24px !important;
    }

    .hero-content .hero-subtitle {
        font-size: 22px;
        max-width: 650px;
        margin-bottom: 48px !important;
    }

    .hero-content {
        padding: 0 80px;
        max-width: 100%;
    }

    .swiper-slide.hero-slide.hero-slide {
        justify-content: left;
        position: relative;
    }

    .custom_slider_btn_hero a {
        font-size: 24px !important;
    }

}