.block-slider{
    padding: 5rem 0;
    background-color: black;
}

.block-slider h3{
    text-align: center;
    color: #A2A093;
    margin-bottom: 5rem;
}

.swiper-slide {
    background: #eee;
    text-align: center;
    width: 100%;
    aspect-ratio: 1 / 1.5;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.swiper-slide__inner{
    z-index: 1;
    color: white;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    opacity: 1;
    transition: opacity 0.4s ease;
    padding: 0 2rem;
}

@media screen and (min-width: 992px) {
    .swiper-slide__inner{
        opacity: 0;
    }
}


.swiper-slide:hover .swiper-slide__inner{
    opacity: 1;
}

.swiper-slide__title{
    color: white;
    font-weight: 500;
    font-size: 1.4rem;
    font-family: "Playfair Display", serif;
}

.swiper-pagination{
    margin-top: 3rem;
}

.swiper{
    position: relative;
    padding-bottom: 5rem;
}

.swiper__fade{
    position: absolute;
    top: 0;
    width: 3rem;
    height: 100%;
    z-index: 1;
}

.swiper__fade--left{
    left: 0;
    background-image: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.swiper__fade--right{
    right: 0;
    background-image: linear-gradient(to left, rgba(0,0,0,0.5), transparent);
}

.swiper .swiper-pagination{
    position: absolute;
    bottom: 1rem;
}

.swiper-pagination-bullet{
    background-color: white;
    width: .8rem;
    height: .8rem;
    margin: 0 1rem;
}


