  .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 15px;
      /* background: #fff; */
      display: grid;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      /* display: block; */
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color:#008B8B;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
      z-index: 1;
    }

    .overlay-text h3, .overlay-text p {
      margin: 0;
      font-size: 2rem; /* Adjust as needed */
    }

    .overlay-text-second {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color:#008B8B;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        z-index: 1;
      }
  
      .overlay-text-second h3 {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 0.9;
        margin: 0;
        font-size: 2rem; /* Adjust as needed */
        font-family: 'Times New Roman', Times, serif;
      }

      .overlay-text-third {
        position: absolute;
        top: 20%;
        left: 73%;
        transform: translate(-50%, -50%);
        text-align: center;
        color:#008B8B;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        z-index: 1;
      }
  
      .overlay-text-third h3 {
        padding-left: 30px;
        padding-right: 50px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 0.9;
        margin: 0;
        font-size: 2rem; /* Adjust as needed */
        font-family: 'Times New Roman', Times, serif;
      }

      .overlay-text-fourth {
        position: absolute;
        top: 40%;
        left: 70%;
        transform: translate(-50%, -50%);
        text-align: center;
        color:#008B8B;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        z-index: 1;
      }
  
      .overlay-text-fourth p {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 0.9;
        margin: 0;
        font-size: 1.5rem; /* Adjust as needed */
        font-family: 'Times New Roman', Times, serif;
      }

/* Adjust font size for smaller screens */
@media (max-width: 768px) {
    .overlay-text h3 {
        font-size: 1.2rem;
    }
    .overlay-text p {
        font-size: 1rem;
    }

    .overlay-text-second h3 {
        line-height: 0.7;
        font-size: 1.2rem;
    }

    .overlay-text-third h3 {
        font-size: 1.2rem;
    }
    .overlay-text-fourth p {
        font-size: 1rem;
    }
}