#swiper-gallery {
    width: 50%;
    position: relative;
}

#swiper-gallery .swiper-container {
    width: 100%;
}

#swiper-gallery .swiper-slide iframe, #swiper-gallery .swiper-slide img {
    margin-bottom: 33px;
    border: 8px solid #12D5CD;
    width: 100%;
    height: auto;
    object-fit: cover;
}

#swiper-gallery .swiper-slide p {
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
    font-family: "MidasEv", "Arial", serif;
    text-align: center;
}

#swiper-gallery .swiper-outter {
    width: 100%;
    max-width: 1054px;
    margin: 0 auto;
}

#swiper-gallery .swiper-button-prev {
    width: 36px;
    height: 44px;
    background-size: 100% auto;
    left: -57px;
    right: auto;
    transform: scale(-1, 1) translateY(-50%);
}

#swiper-gallery .swiper-button-next {
    width: 36px;
    height: 44px;
    background-size: 100% auto;
    left: auto;
    right: -57px;
    transform: translateY(-50%);
}

.swiper-button-next,
.swiper-button-prev {
    z-index: 8;
}

#swiper-gallery .wrap {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

#swiper-gallery .wrap * {
    box-sizing: inherit;
    background-color: transparent;
}

#swiper-gallery .swiper-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#swiper-gallery .swiper-button-prev:hover {
    background-image: url("../assets/icons/next.svg");
}

#swiper-gallery .swiper-button-prev {
    background-image: url("../assets/icons/next-white.svg");
}

#swiper-gallery .swiper-button-next:hover {
    background-image: url("../assets/icons/next.svg");
}

#swiper-gallery .swiper-button-next {
    background-image: url("../assets/icons/next-white.svg");
}

#swiper-gallery .swiper-pagination {
    position: relative;
}

#swiper-gallery .swiper-pagination-bullet {
    background-color: #ffffff !important;
    width: 26px;
    height: 26px;
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,20px);
}

#swiper-gallery .swiper-pagination-bullet-active {
    background-color: #ffffff !important;
}

@media only screen and (max-width: 768px) {
    #swiper-gallery {
        width: 100% !important
    }
    #swiper-gallery .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap,5px);
    }
    #swiper-gallery .swiper-button-prev, #swiper-gallery .swiper-button-next {
        display: none;
    }
    #swiper-gallery .swiper-slide iframe, #swiper-gallery .swiper-slide img {
        height: auto;
        min-height: 300px;
    }
    #swiper-gallery .swiper-slide p {
        font-family: "Arial", serif;
    }
}