.slider{
  width:100%;
  height:90vh; /* Desktop height */
  position:relative;
  overflow:hidden;
}

.slides{
  display:flex;
  height:100%;
  transition:transform 0.6s ease-in-out;
}

.slide{
  min-width:100%;
  height:100%;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Arrows */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:35px;
  color:#fff;
  background:rgba(0,0,0,0.5);
  padding:10px 18px;
  cursor:pointer;
  border-radius:50%;
  user-select:none;
  z-index:10;
}

.left{ left:20px; }
.right{ right:20px; }

/* Dots */
.dots{
  position:absolute;
  bottom:25px;
  width:100%;
  text-align:center;
}

.dot{
  height:12px;
  width:12px;
  margin:0 6px;
  display:inline-block;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}

.dot.active{
  background:#fff;
}

/* Mobile Responsive */
@media(max-width:768px){
  .slider{
    height:60vh;
  }
  .arrow{
    font-size:25px;
    padding:8px 14px;
  }
}