.single-location-swiper{
    padding-top: 80px;
    padding-bottom: 80px;
    >h2{
        text-align: center;
    }
    >div{
        position: relative;
        margin-top: 40px;
    }
}

.single-location-swiper-container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    .swiper-slide{
        aspect-ratio: 3/2;
        >img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
    }
}

.single-location-swiper-prev,
.single-location-swiper-next{
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.single-location-swiper-prev{
    left: 0;
}
.single-location-swiper-next{
    right: 0;
}

@media screen and (width < 576px) {
    .single-location-swiper{
        padding-top: 60px;
        padding-bottom: 60px;
    }
}