:root {
    --swiper-navigation-size: 24px;
}

.crop-swiper-wrapper {
    position: relative;
    width: 100%;
    /*
    border-radius: 12px;
    overflow: hidden;
    */
}

.crop-swiper-wrapper .image-wrapper{
    position: relative;
    overflow: hidden;
}

.crop-swiper-wrapper .image-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, .3));
}

.crop-swiper-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio: var(--crop-swiper-aspect-ratio, 1);
    transition: all .5s ease-in-out;
}

/*
.crop-swiper-wrapper .swiper-slide:hover img{
    transform: scale(1.06);
}
*/

.crop-swiper-wrapper .swiper-button-prev, 
.crop-swiper-wrapper .swiper-button-next {
    color: #fff;
    width: 30px;
    height: 60px;
    top: 50%;
    margin-top: -30px;
}

.crop-swiper-wrapper a{
    text-decoration: none;
}

.crop-swiper-wrapper .content-wrapper{
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translate(-50%, 0%);
    text-align: center;
}

.crop-swiper-wrapper h3{
    text-align: center;
    text-decoration: none;
    margin: 0;
    
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.crop-swiper-wrapper .slide-button{
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    margin: 15px auto 0;
    color: #fff;
    padding: 10px 20px;
    border: #fff solid 1px;
    display: inline-block;
    background-color: rgba(0,0,0,.3);
}

.crop-swiper-wrapper .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    top: auto;
    bottom: 10px;
}

.crop-swiper-wrapper .swiper-pagination-bullet {
    opacity: .6;
}


.crop-swiper-wrapper .swiper-pagination-bullet {
    background: #fff;
}

.crop-swiper-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #c39917;
}

@media (max-width:767px){
    
    .crop-swiper-wrapper .content-wrapper{
        bottom: 50px;
    }
    .crop-swiper-wrapper img {
        aspect-ratio: 1;
    }
    
    .crop-swiper-wrapper h3{
        font-size: 28px;
    }
}