  @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: R"Raleway", sans-serif;
  }

  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .fs-1,
  .fs-2,
  .fs-3,
  .fs-4,
  .fs-5 {
      font-family: R"Raleway", sans-serif;
  }

  html {
      scroll-behavior: smooth;
  }

  .review-card {
      width: 270px;
      scroll-snap-align: start;
  }

  .carousel-style {
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
  }

  .sipky {
      z-index: 1;
  }

  #scrollToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      border: none;
      background: none;
      cursor: pointer;
      z-index: 9999;
      padding: 0;
      display: none;
      transition: opacity 0.3s ease;
  }


  .main-text h3 {
      text-align: center;
      font-size: 24px;
      margin-bottom: 20px;
  }

  .main-text h4 {
      color: var(--bs-success);
      font-size: 18px;
  }

  .main-text p {
      font-size: 14px;
      padding: 0;
      margin: 0 0 8px 0;
  }

  .facilities svg {
      width: 30px;
      height: 30px;
      fill: var(--bs-warning);
      margin-bottom: 10px;
  }

  .img-wrapper-photo {
      overflow: hidden;
      border-radius: 4px;
  }

  .img-wrapper-photo img {
      transition: transform 0.4s ease;
  }

  .img-wrapper-photo img:hover {
      transform: scale(1.2);
  }

  @media (min-width: 992px) {
      .w-lg-75 {
          width: 75% !important;
      }
  }


  /* lat long */

  .img-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
  }

  .img-wrapper img {
      transition: transform 0.4s ease;
      object-fit: cover;
  }

  .img-wrapper:hover img {
      transform: scale(1.2);
  }

  .overlay {
      position: absolute;
      top: 10%;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1.5));
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: white;
      text-align: center;
      padding: 10px;
  }

  .img-wrapper:hover .overlay {
      opacity: 1;
  }

  .overlay h4 {
      margin-bottom: 5px;
      font-weight: 600;
  }

  .overlay p {
      font-size: 0.9rem;
  }

  .footer {
      margin-top: 200px;
  }

  .svg-foot {
      width: 50px;
      height: 50px;
      fill: #fff;
      transition: fill 0.3s ease;
  }

  .svg-foot:hover {
      fill: rgb(220, 220, 220);
  }


  .svg-nav {
      width: 20px;
      height: 20px;
      fill: #fff;
      transition: fill 0.3s ease;
  }

  .svg-nav:hover {
      fill: rgb(220, 220, 220);
  }

  /* contact form */

  .honeypot {
      position: absolute;
      left: -9999px;
      opacity: 0;
  }

  .required {
      color: #dc3545;
  }

  .contact-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
  }

  .index-h4 h4 {
      font-size: 13px;
  }

