.cgs-carousel{
    width:100%;
    position:relative;
    overflow:hidden;
}

.cgs-carousel.swiper{
    overflow:hidden;
}

.cgs-carousel .swiper-wrapper{
    display:flex;
    align-items:stretch;
    width:100%;
    height:100%;
    box-sizing:border-box;
}

.cgs-carousel .swiper-slide{
    flex-shrink:0;
    width:100%;
    height:auto;
    position:relative;
    transition-property:transform;
    box-sizing:border-box;
}

.cgs-carousel.ccc-equal-height
.swiper-wrapper{
    align-items:stretch;
}

.cgs-carousel.ccc-equal-height
.swiper-slide{
    display:flex;
    height:auto;
}

.cgs-carousel .swiper-button-next,
.cgs-carousel .swiper-button-prev{
    width:40px;
    height:40px;
}

.cgs-carousel .swiper-pagination{
    position:relative;
    margin-top:20px;
}

/*
|--------------------------------------------------------------------------
| PAGINATION
|--------------------------------------------------------------------------
*/

.cgs-carousel .swiper-pagination{
    position:relative;
    margin-top:24px;
    text-align:center;
    z-index:10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.cgs-carousel .swiper-pagination-bullet{
    display: block;
    width:14px;
    height:14px;
    background:rgba(0, 0, 0, 0.2);
    opacity:1;
    margin:0 10px;
    border-radius: 999px;
    cursor: pointer;
    transition:all 0.3s ease;
}

.cgs-carousel .swiper-pagination-bullet-active{
    background:#000000;
    transform:scale(1.6);
}