.org-list .swiper{
    width: 100%;
}
.org-list .swiper-wrapper{
    /* gap: 12px; */
}
.swiper-interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}
.swiper-buttons{
    display: flex;
    width: auto;
    height: 100%;
    gap: 4px;
}
.swiper-buttons .swiper-button-prev, .swiper-buttons .swiper-button-next{
    position: relative ;
    width: 60px;
    height: 60px;
    margin-top: 0;
    left: auto;
    right: auto;
}
.swiper-buttons .swiper-button-prev::after, .swiper-buttons .swiper-button-next::after{
    content: none;
}
.swiper .swiper-interface .swiper-pagination{
    position: relative;
    width: auto;
    bottom: auto;
    top: auto;
    
}
.swiper .swiper-pagination-bullet{
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid var(--new-third-gray-color);
    opacity: 1;
    
}
.swiper .swiper-pagination-bullet-active{
    background-color: var(--new-third-gray-color);
}
@media (max-width:768px) {
    .swiper-interface{
        margin-top: 20px;
    }
}