/* ====================================================
# brands-carousel
==================================================== */
.photo {
    background-color: #fbfbfb;
}

.photo-box {
    position: relative;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.big-photo {
    max-height: 580px;
}

.small-photo {
    max-height: 120px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color);
}

@media (max-width:991px) {
    .big-photo {
        max-height: 350px;
    }

    .small-photo {
        max-height: 60px;
    }
}

@media (max-width:550px) {
    .big-photo {
        max-height: 210px;
    }

    .small-photo {
        max-height: none;
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }
}