.swiper {
    width: 100%;
    height: 100%;
}

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

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

.mySwiperMain {
    margin-bottom: 16px;
}


.mySwiperThumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.75;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mySwiperThumbs .swiper-slide:hover {
    width: 25%;
    height: 100%;
    opacity: 1;
}

.mySwiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
}


.swiper-button-next,
.swiper-button-prev {
    background-color: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mySwiperMain:hover .swiper-button-next,
.mySwiperMain:hover .swiper-button-prev {
    visibility: visible;
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: white;
    font-size: 16px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-weight: 600;
}