.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;

}

.sliderimg {
    height: 55vh;
    width: 100%;
    object-fit: cover;
    border: 4px solid #CB9A2B;
}

.each-desc {
    font-family: 'Optima Regular';
    font-size: 14px;
    letter-spacing: 0.5px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    width: 100%;
    padding: 10px;
    color: #fff;
    opacity: 0;
}

.box-sld {
    position: relative;
}

.box-sld::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50vh;
    background: linear-gradient(to top, #372B21, transparent);
    opacity: 0;
    transition: 0.2s ease-in-out;

}

.swiper-slide-active .each-desc {
    opacity: 1;
}

.swiper-slide-active .box-sld::before {
    opacity: 0.8;
}

.swiper-pagination {
    /* display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center; */
}

.btnPrev {
    position: absolute;
    bottom: 10px;
    left: 36%;
    /* transform: translateY(-139%); */
    background-size: auto !important;
    background-size: contain !important;
    width: 32px !important;
    height: 32px !important;
    padding: 5px;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
}

.btnPrev i {
    display: none;
}


.btnNext {
    position: absolute;
    bottom: 10px;
    right: 36%;
    /* transform: translateY(-139%); */
    padding: 5px;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
    background-size: auto !important;
    background-size: contain !important;
    width: 32px !important;
    height: 32px !important;
}

.btnNext i {
    display: none;
}

.btnNext:before,
.btnPrev:before {
    color: #fff;
    font-family: 'simedarbyproperty' !important;
    content: "\eb09";
    display: none;
    font-size: 32px;
    display: contents;
    background-image: none;
}

.btnPrev:before {
    transform: rotate(180deg);
    display: block;
}

.btnNext::after,
.btnPrev::after {
    content: "";
}

.swiper-pagination .swiper-pagination-bullet {
    border: 3px solid #CB9A2B;
    width: 14px;
    height: 14px;
    opacity: 1;
    background: #fff;
}

.swiper-pagination .swiper-pagination-bullet-active {
    border: 3px solid #fff;
    background: #CB9A2B;
}

.max-wrapper {
    max-width: 80vw;
    margin: auto;
}

.elmimg {
    height: 90vh;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .swiper-slide {
        background-position: center;
        background-size: cover;

        padding: 0 10px;

    }

    .max-wrapper {
        max-width: 100%;
        margin: auto;
    }

    .btnNext {
        right: 13%;
    }

    .btnPrev {
        left: 13%;
    }

    .sliderimg {
        object-position: center;
        height: 32vh;
    }

    .each-desc {
        font-size: 9px;
        max-width: 40ch;
    }
    .elmimg {
    height: auto;
    }
}