.slider-container {
    width: 100%;
    position: relative;
    margin: 0px;
  }
  
  .slide {
    width: 100%;
    display: none;
    margin: 0px;
  }
  
  .slide-image {
    width: 100%;
    height: 80vh;
    object-fit: contain;
 
    margin: 0px;
  }

  
  .slider-nav {
      width: 100%;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 80vh;
  }
    
  @media only screen and (max-width: 600px) {
  .slide-image {
    width: 100%;
    height: 30vh;
    object-fit: contain;
 
    margin: 0px;
  }
  .slider-nav {
      width: 100%;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 30vh;
  }
}
  .slider-nav-btn {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.226);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
    position: absolute;
    left: 0;
    margin-left: 30px;
  }
  .slider-nav-btn-pre {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.226);
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
  
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
    float: right;
    right: 0;
    position: absolute;
  }
  .slider-nav-btn:hover {
    background-color: white;
    color: black;
  }
  
  .dot-container {
    position: absolute;
    bottom: 1rem;
    left: 0;
    z-index: 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    background-color: rgba(211, 211, 211, 0.226);
    border-radius: 50%;
    display: inline-block;
    transition: ease 0.3s;
  }
  .active,
  .dot:hover {
    background-color: white;
  }
  
  .fade {
    animation-name: fade;
    animation-duration: 1s;
  }
  @keyframes fade {
    from {
      opacity: 0.8;
    }
    to {
      opacity: 1;
    }
  }