.custom-slider { display: none; }
.slide-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}
.prev, .next {
  cursor: pointer;
  position: absolute;        
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(253, 253, 253);
  font-size: 30px;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.6s ease;
}
.prev{ left: 0px; }
.next { right: -5px; }
.prev:hover, .next:hover {
  background-color: rgba(170, 169, 169, 0.5);
}
.slide-text {
  position: absolute;
  color: #ffffff;
  font-size: 25px;
  padding: 15px;
  bottom: -53px;
  width: 100%;
  text-align: center;
}
.slide-index {
  color: #ffffff;
  font-size: 13px;
  padding: 15px;
  position: absolute;
  top: 0;
}
.slide-img{ 
    margin: 30px 50px;
  width: 80%; 
  height: 400px;
  object-fit: cover;
  object-position: center;
 }
.slide-dot{ 
  text-align: center; 
  margin-top: 15px;
}
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #999999;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover { background-color: #ffffff; }
.fade {
  animation-name: fade;
  animation-duration: 1s;
}
@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
}
@media (max-width: 500px) {
  .slide-index {
    margin-left: -124px;
  }
  .prev {
    margin-left: -30px;
  }
  .next { right: -30px; }
  .slide-img {
    margin: 30px 30px;
  }
  .logo {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 2rem;
  }
}