*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

.swiper-isolated *,
.swiper-isolated *::before,
.swiper-isolated *::after {
    all: revert;
    box-sizing: border-box;
}


html,
body {
    height: 100%;
}


.carousel-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    max-height: 200px;
    max-width: 100%;
}

.carousel-slider .swiper-slide {
    width: auto;
    height: auto;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
}

.carousel-slider .swiper-slide {
    border-radius: 25px;
}

.carousel-slider .swiper-slide.swiper-slide-next,
.carousel-slider .swiper-slide.swiper-slide-prev {

}

.carousel-slider .swiper-slide.swiper-slide-active {

    box-shadow: 0 0 25px 2px rgba(255, 255, 255, 0.7);
}

.carousel-slider .item-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;

    /* Allow image to be full size */
    width: auto;
    height: auto;
}

.slider-images {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 500px;
    min-width: 250px;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Force exact size at desktop */
@media (min-width: 1024px) {
    .slider-images {
        width: 500px;
        height: 500px;
    }
}

body.preloader-active {
    overflow: hidden;
    height: 100vh;
}