.slideshow-containers1 {
    position: relative;
    height: 40vh; /* Adjust height to leave space for the features section */
    overflow: hidden;
    width: 80%;
    margin-left: 10%;
    border-radius: 10px;
    margin-top: 30px;
  }
  
  .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: opacity 1s ease-in-out;
      opacity: 0;
  }
  .slide.active {
      opacity: 1;
  }