

.main-slider-homepage {
  position: relative;
  width: 100%;
  overflow: hidden; /* Ensures slides do not display outside the slider */

}

.main-slider-homepage .slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* Smoother transition for sliding */
    will-change: transform; /* Optimizes animations */
}

.main-slider-homepage .slide {
    flex-shrink: 0; /* Prevents slides from shrinking */
    width: 100%; /* Each slide takes full width of the container */
    height: 80vh;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 600px) {
    .main-slider-homepage .slide {
        height: 70vh;
    }
}

.arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    padding: 8px 18px;
    font-size: 25px;
    font-weight: bold;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.6);
    z-index: 2;
    opacity: 0.3;
}

#prev { left: 10px; }
#next { right: 10px; }




  .slideshow-container-testimonials .mySlidesTestimonial {display: none}

  .slideshow-container-testimonials img {vertical-align: middle;}

  /* Slideshow container */
  .slideshow-container-testimonials {
    max-width: 100vw;
    position: relative;
    margin: auto;
  }

  /* Next & previous buttons */
  .slideshow-container-testimonials .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  /* Position the "next button" to the right */
  .slideshow-container-testimonials .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .slideshow-container-testimonials .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }


  

  /* The dots/bullets/indicators */
  .slides-dot-testimonial .dot-slide {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .slides-dot-testimonial .active, .dot-slide:hover {
    background-color: #717171;
  }

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

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

  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }


input::file-selector-button {
font-weight: bold;
color: black;
padding: 0.5em;
border: thin solid grey;
border-radius: 3px;
}
