.glider-contain .glider-prev{
    left: 50px;
    top: calc(50% - 50px);
    z-index: 999;
    background: rgb(91, 91, 87);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    margin: auto;
    transition: 200ms;
    
}
.glider-contain .glider-prev:hover{
    transform: scale(1   .25);
    background: rgb(120, 120, 115);
}
.glider-contain .glider-next{
    right: 50px;
    top:  calc(50% - 50px);
    z-index: 999;
    background: rgb(91, 91, 87);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    margin: auto;
    transition: 200ms;
}
.glider-contain .glider-next:hover{
    transform: scale(1.25);
    background: rgb(120, 120, 115);
}
.slider-container__item{
    display: flex;
}