.main-swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
    width: 3rem;
    height: 3rem;
    background-color: var(--e-global-color-secondary);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.main-swiper .swiper-button-next:after,
.main-swiper .swiper-button-prev:after {
    font-size: 1.5em;
    color: #fff;
    text-align: center;
    line-height: 1;
}

.main-swiper .swiper-slide {
    height: 45rem;
    position: relative;
    max-height: 45rem;
}

.thumb-swiper .swiper-slide {
    height: 10rem;
    position: relative;
    max-height: 10rem;
}

.main-swiper .swiper-slide img,
.thumb-swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-swiper .swiper-slide img {
    object-fit: fill;
}

.thumb-swiper {
    width: 100%;
}

.thumb-swiper .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
}

.thumb-swiper .swiper-slide:not(.swiper-slide-thumb-active):hover {
    opacity: 0.8;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--tertiary-color-blue);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .main-swiper {
        margin-bottom: 0;
        height: 30rem;
    }
}