.sliders{
    position: relative;
    width: 100%;
    height: auto;
    margin-top: -10px;
}
.sliders .slider{
    width: 100%;
    overflow: hidden;
    height: 600px;
    transition: 1s;
    object-fit: cover;
    object-position: 50% 50%;
}
.sliders .buttons{
    cursor: pointer;
    position: absolute;
    outline: none;
    border: none;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1em;
    background-color: rgba(0,0,0,0.5);
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.sliders .slider_Button_Left{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    left: 5px;
}
.sliders .slider_Button_Right{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    right: 5px;
}
.sliders .buttons:hover{
    background-color: rgba(255,255,255,0.8);
    color:black;
}
@media (max-width:1250px){  
    .sliders .slider{        
        height: 450px;       
    }
}
@media (max-width:1050px){  
    .sliders .slider{        
        height: 350px;       
    }
}
@media (max-width:750px){  
    .sliders .slider{        
        height: 300px;       
    }
}
@media (max-width:500px){  
    .sliders .slider{        
        height: 250px;       
    }
}
@media (max-width:300px){  
    .sliders .slider{        
        height: 200px;       
    }
}
