* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 2500px;
    /* max-width: 100%; */

    position: relative;
    margin: auto;

  }
 
  .container img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .slide {
    display: none;

  }
  .slider-button{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(243, 240, 240);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .dots-container{
    position: absolute;
    left:  50%;
    transform: translateX(-50%);
    bottom: 1rem;
  }
  #prevBtn{
    left:0;
    
  }
  #nextBtn{
    right:0;
  }
  .slider-button:hover{
    background-color: rgba(0,0,0,0.8);
  }
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dot:hover {
    background-color: #b75d5d;
  }
  .dots-container .activeDot{
    background-color: rgb(212, 102, 80);
  }

  /* Fading animation */
.slide {
  animation-name: slide;
  animation-duration: 1.5s;
}

@keyframes slide {
  from {opacity: .4}
  to {opacity: 1}
      

}

@media (max-width:650px) {
  .slide img{
      width: 100%;
      height: auto;
      object-fit: cover;
  
  
  }
}