.sliderContainer {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    margin: auto;
    background-color: #1c1c1e;
}

.swiper {
    width: 100%;
    box-sizing: border-box;
}

.firsSwiper .swiper-wrapper.gallery {
    height: 70vh;
}

.firsSwiper {
    overflow: hidden;
}

.thumbsSwiper {
    padding: 25px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #1c1c1e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper .title{
    font-size: 1.5em;
    margin-bottom: 2em;
}

.swiper-slide img {
    display: block;
    width: 100%;
    margin: 0;
    object-fit: cover;
    height: 100%;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    color: #FFFFFF;
}

.swiper-button-next, .swiper-button-prev, .swiper-rtl .swiper-button-next, .swiper-rtl .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(108, 99, 255, .7);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-family: swiper-icons;
    font-size: 20px;
    color: #FFFFFF;
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, #75B530);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 5%);
}

@media screen and (max-width: 768px) {
    .sliderContainer {
        width: 100%;
    }

    .sliderContainer {
        padding: 0;
    }
}

@media screen and (max-width: 576px) {
    .desktop {
        display: none!important;
    }

    .swiper-slide {
        margin: 0;
    }

    .firsSwiper .swiper-wrapper.gallery{
        height: 40vh;
    }
}