@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Math&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
.amenities-hero {
  height: 500px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/img/background-1.jpg);
}
.amenities-hero p {
  font-size: 3rem;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.amenities-container {
  margin: 40px 0;
  padding: 20px;
}
.amenities-container .amenity {
  display: flex;
  gap: 60px;
  width: 100%;
  margin: 40px 0;
}
.amenities-container .amenity .image {
  height: 400px;
  width: 50%;
}
.amenities-container .amenity .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.amenities-container .amenity .description {
  width: 40%;
  line-height: 2.2;
}
.amenities-container .amenity .description .title {
  font-family: "Zalando Sans Expanded", sans-serif;
  margin-bottom: 10px;
  font-size: 1.5rem;
  position: relative;
  width: 65px;
  text-align: center;
}
.amenities-container .amenity .description .title::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ba1f1f;
}
.amenities-container .amenity .description .weight-lifting {
  width: 200px;
}
.amenities-container .amenity .description .classes,
.amenities-container .amenity .description .aqua-center {
  width: 205px;
}
.amenities-container .amenity .description .cycling {
  width: 105px;
}

/*-------MEDIA QUERIES---------*/
@media (max-width: 768px) {
  .amenities-container .amenity {
    flex-direction: column;
  }
  .amenities-container .amenity .image {
    height: 400px;
    width: 100%;
  }
  .amenities-container .amenity .description {
    width: 100%;
    margin-bottom: 10px;
  }
  .amenities-container .amenity .description .title {
    margin-top: -45px;
  }
}/*# sourceMappingURL=amenities.css.map */