/* ------------------------------
        facilities-room
-------------------------------- */
.facilities-room {
  text-align: center;
}

.facilities-room .heading-title {
  font-size: 50px;
}

.facilities-room .img {
  width: 688px;
  margin: 126px auto 0;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  /* transition: opacity 800ms 400ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms 400ms linear; */
}

.facilities-room .img.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 767px) {
  .facilities-room .heading-title {
    font-size: 24px;
  }

  .facilities-room .img {
    width: calc(292 * var(--basic-width));
    margin: 50px auto 0;
  }
}

/* ------------------------------
          living-room
          kitchen
          bedroom
-------------------------------- */

.living-room,
.kitchen,
.bedroom {
  margin-top: 70px;
  text-align: center;
}

.living-room .description,
.kitchen .description,
.bedroom .description {
  font-size: 16px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(1.5625vw) translateZ(0);
  transition: opacity 800ms 400ms cubic-bezier(0.2, 0.5, 0.4, 1), transform 800ms 400ms linear;
}

.living-room .description.show,
.kitchen .description.show,
.bedroom .description.show {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 767px) {
  .living-room {
    margin-top: 40px;
  }

  .kitchen,
  .bedroom {
    margin-top: 60px;
  }

  .living-room .description,
  .kitchen .description,
  .bedroom .description {
    margin-top: 20px;
  }
}


