/** Pagination Bullet **/
.sw {
    position: relative;
}
.sw-pb {
    padding-bottom: clamp(48px, 5vw, 70px);
}
.next-prev {
    position: absolute;
    width: clamp(68px, 8vw, 90px);
    height: clamp(32px, 3vw, 40px);
    display: flex;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
    bottom: 0;
}
.swiper-button-next,
.swiper-button-prev {
    width: clamp(32px, 3vw, 40px);
    height: clamp(32px, 3vw, 40px);
    background: var(--gray2);
    border-radius: 50%;
    color: var(--black);
    position: inherit;
    bottom: 0;
    top: auto;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: auto;
    left: 0;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: 0;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color1);
    color: white;
}
.swiper-button-next:after {
    content: '\e8f8' !important;
    font-family: 'icomoon';
    font-size: 1rem;
    color: var(--color5);
}
.swiper-button-prev:after {
    content: '\e918' !important;
    font-family: 'icomoon';
    font-size: 1rem;
    color: var(--color5);
}
/** pagination **/
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto !important;
    top: calc(100% + 20px) !important;
    gap: 4px;
}
.swiper-pagination-bullet {
    width: clamp(8px, 2vw, 12px);
    height: clamp(8px, 2vw, 12px);
    background: var(--gray2);
    opacity: 1 !important;
    position: relative;
    transition: 0.4s;
    border-radius: 100px;
    margin: 0 !important;
}
.swiper-pagination-bullet-active {
    background: var(--color2);
    width: clamp(22px, 3vw, 32px);
}
/**  **/
@media only screen and (min-width: 768px) {
    .sw-lightgallery {
        padding-inline: clamp(12px, 3vw, 34px);
    }
}
.sw-lightgallery .swiper-button-prev,
.sw-lightgallery .swiper-button-next {
    top: calc(50% + 22px) !important;
    bottom: auto;
    transform: translateY(-50%);
    position: absolute;
}
.sw-lightgallery .swiper-button-next {
    left: 16px !important;
    right: auto !important;
}
.sw-lightgallery .swiper-button-prev {
    right: 16px !important;
    left: auto !important;
}
.sw-lightgallery {
    & .gallery_item a {
        position: relative;
        margin: auto;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }
    & .gallery_item img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0 !important;
        transition: 0.4s;
    }
}
@media screen and (max-width: 768px) {
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 12px;
    }
    .sw-lightgallery .swiper-button-next {
        right: calc(100% - 16px) !important;
        left: auto !important;
    }
    .sw-lightgallery .swiper-button-prev {
        left: calc(100% - 16px) !important;
        right: auto !important;
    }
}
@media only screen and (max-width: 540px) {
}