.slider-multi-swipe {
    position: relative;
    perspective: 1400px;
    width: 65%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    transform-style: preserve-3d;
}

.btn-dots-slide {
    position: relative;
    top: 100%;
    left: 50%;
    margin: 46px 10px 0 0;
    transform: translateX(-57px);
    cursor: pointer;
    width: 12px;
    height: 12px;
}
.btn-dots-slide::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #999999;
    border-radius: 50%;
}
.btn-dots-slide:checked::before {
    width: 16px;
    height: 16px;
    top: -2.2px;
    left: -1.7px;
    background-color: #C0FE71;
}
.btn-dots-slide:nth-child(5) {
    margin-right: 0px;
}
.slider-multi-swipe label,
.slider-multi-swipe label img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 400ms ease;
}
.slider-multi-swipe label img {
    border-radius: 40px;
    object-fit: cover;
}



/* Slider Functionality */

/* Active Slide */
#s1:checked~#slide1,
#s2:checked~#slide2,
#s3:checked~#slide3,
#s4:checked~#slide4,
#s5:checked~#slide5 {
    box-shadow: 0 13px 26px rgba(0, 0, 0, 0.3), 0 12px 6px rgba(0, 0, 0, 0.2);
    transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked~#slide2,
#s2:checked~#slide3,
#s3:checked~#slide4,
#s4:checked~#slide5,
#s5:checked~#slide1 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(25%, 0, -300px);
}


/* Next to Next Slide */
#s1:checked~#slide3,
#s2:checked~#slide4,
#s3:checked~#slide5,
#s4:checked~#slide1,
#s5:checked~#slide2 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transform: translate3d(50%, 0, -600px);
}

/* Previous to Previous Slide */
#s1:checked~#slide4,
#s2:checked~#slide5,
#s3:checked~#slide1,
#s4:checked~#slide2,
#s5:checked~#slide3 {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transform: translate3d(-50%, 0, -600px);
}

/* Previous Slide */
#s1:checked~#slide5,
#s2:checked~#slide1,
#s3:checked~#slide2,
#s4:checked~#slide3,
#s5:checked~#slide4 {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), 0 2px 2px rgba(0, 0, 0, 0.2);
    transform: translate3d(-25%, 0, -300px);
}


.navigation-slide-controler {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    width: 200px;
    z-index: -1;
    margin: -26px auto 0px;
    display: block;
}
.slide-navigate{
    cursor: pointer;
}
.previous-icon-slide {
    margin-right: 136px;
}

/*---------------breakpoint--------------*/
@media (max-width: 1199px) {    
    .slider-multi-swipe{
        height:305px;
    }
}
@media (max-width: 991px) {
    .slider-multi-swipe{
        height:230px;
    }
    .slider-multi-swipe label img{
        border-radius: 30px;
    }
}
@media (max-width: 767px) {
    .slider-multi-swipe {
        height: 120px;
    }
    
    .slider-multi-swipe label img{
        border-radius: 15px;
    }
    
}

