.swiper {
    overflow: clip;
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    padding-bottom: 1px;
}

.swiper-wrapper>.swiper-slide {
    height: auto;
    overflow: clip;
}

.big-gallery.swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper.big-gallery {
    height: 445px;
}

.swiper.small-gallery {
    height: 115px;
}

.swiper.big-gallery {
    height: 109px;
}

.small-gallery .swiper-slide img {
    width: auto;
    height: 100%;
}

.small-gallery .swiper-slide {
    opacity: 0.8;
}

.small-gallery .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper.container {
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.swiper-pagination {
    position: inherit;
}

.swiper-pagination.swiper-pagination-fraction,
.swiper-pagination.swiper-pagination-fraction span {
    color: var(--WHITE);
}

.swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    border-radius: 38px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0.5rem) !important;
}

.swiper-pagination-bullet:first-child {
    margin-left: 0 !important;
}

.swiper-pagination-bullet:last-child {
    margin-right: 0 !important;
}

.swiper-pagination--white>.swiper-pagination-bullet {
    background: var(--PRIMARY-DARK)
}

.swiper-pagination--white>.swiper-pagination-bullet-active {
    background: var(--WHITE)
}

.swiper-pagination--default>.swiper-pagination-bullet {
    background: var(--DEFAULT)
}

.swiper-pagination--default>.swiper-pagination-bullet-active {
    background: var(--PRIMARY)
}

.swiper-slide {
    transition: opacity 0.3s ease;
}

.swiper-slide-not-active {
    opacity: 0.5;
}

.swiper-slide-not-active a,
.swiper-slide-not-active .swiper-button {
    pointer-events: none;
}

.button.swiper-button {
    width: 60px;
    padding: 0;
}

.swiper-button:first-child {
    margin-right: 10px;
}

.swiper-button svg {
    width: 100%;
}

.swiper-button.swiper-button--circle {
    border-radius: 50px;
    height: 34px;
    width: 34px;
    border: 1px solid var(--WHITE);
    background-color: var(--WHITE);
    transition: border 0s;
}

.swiper-button--circle svg {
    height: 10px;
    fill: var(--BLACK)
}

@media (hover: hover) {
    .swiper-button--circle:hover svg {
        fill: var(--WHITE)
    }

    .swiper-button--circle:hover {
        border: 1px solid var(--PRIMARY);
        background-color: var(--PRIMARY);
    }

}

.swiper-button--circle:active svg {
    fill: var(--PRIMARY)
}

.swiper-button--circle:active {
    border: 1px solid var(--PRIMARY-DARK);
    background-color: var(--PRIMARY-DARK);
}

@media (min-width: 1200px) {
    .swiper.big-gallery {
        height: 445px;
    }

    .swiper.container {
        padding: 0;
        max-width: 100% !important;
        width: auto;
        margin-right: 0;
        margin-left: calc((100vw - var(--MAX-CONTAINER-WIDTH) - 25px)/2);
    }
}

@media (max-width: 768px) {
    @media (max-width: 576px) {
        .swiper.big-gallery {
            height: 190px;
        }

        .swiper.small-gallery {
            height: 45px;
        }
    }

    .swiper-controls {
        max-width: 380px;
    }

    .swiper-controls>div {
        width: 100%;
    }
}