.rz_slider_container {
height: 900px;
display: grid;
place-items: center;
}
.rz_slider {
width: 100%;
height: 100%;
position: relative;
overflow: hidden; }
.rz_slide {
display: none;
width: 100%;
height: auto;
position: absolute;
transition: all 2s;
}
.rz_slide img {
width: 100%;
height: 650px;
object-fit: cover;
}
.rz_btn {
display: none;
position: absolute;
width: 40px;
height: 40px;
padding: 10px;
border: none;
border-radius: 50%;
z-index: 10px;
cursor: pointer;
background-color: #fff;
font-size: 18px;
}
.rz_btn:active {
transform: scale(1.1);
}
.rz_btn-prev {
top: 45%;
left: 2%;
}
.rz_btn-next {
top: 45%;
right: 2%;
}