.slide-section {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1;
}
.slide-section::after {
    content: '';
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white-color));
    bottom: -1px;
    content: '';
    height: 25%;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.slide-section-item-content {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide-section-item-content p {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--white-color);
    position: absolute;
    bottom: 28%;
    max-width: 35%;
    text-align: left;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 60px 8px rgba(0, 0, 0, .15);
}
.slide-section-item-content b {
    font-weight: 900;
}

/* custom swiper */
.slide-section .swiper {
    width: 100%;
    height: 100%;
}

.slide-section .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
}

.slide-section .swiper-pagination {
    position: absolute;
    top: 8px !important;
    width: auto;
    right: 0;
    text-align: right;
    height: fit-content;
}
.slide-section .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #E0B3B8;
    opacity: 1;
    transition: width .3s ease;
    border-radius: 20px;
}
.slide-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 80px;
    background-color: #990012;
}

@media (max-width: 1400px) {
    .slide-section-item-content p {
        font-size: 40px;
    }
}
@media (max-width: 1200px) {
    .slide-section {
        aspect-ratio: 5 / 2;
    }
    .slide-section-item-content p {
        font-size: 32px;
    }
} 

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    .slide-section {
        aspect-ratio: 2 / 1;
    }
}

@media (max-width: 576px) {
    .slide-section {
        aspect-ratio: 5 / 4;
    }
    .slide-section-item-content p {
        font-size: 28px;
        max-width: 60%;
    }
}

