* {
      box-sizing: border-box;
    }
    .slider {
      position: relative;
      width: 100%;
      height: 660px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease;
    }
    .slide.active {
      opacity: 1;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for the desired opacity */
      z-index: 1; /* Ensure the overlay is above the image but below the text */
    }
    .content {
      position: absolute;
      top: 80%;
      left: 10%;
      transform: translateY(-50%);
      text-align: left;
      color: #fff;
      z-index: 2; /* Ensure the text is above the overlay */
    }
    .title {
      font-size: 3.5em;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 0.9em;
    }
    .text {
      font-size: 24px;
      margin-bottom: 20px;
    }