.room-title {
  position: relative;
}

.room-title .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.room-title .text * {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.room-title .text p {
  letter-spacing: 3px;
  font-weight: 500;
  margin: 0;
}

.room-intro {
  display: flex;
  align-items: center;
}

.room-intro .text {
  margin: 0 0 40px 100px;
}

.divider-banner {
  width: 100%;
  height: 300px;
  background-attachment: fixed;
}

.room-name {
  text-align: center;
  margin: 60px 0 80px;
}

.room-name h2 {
  font-weight: 500;
  margin-bottom: 10px;
}

.room-name p {
  font-size: var(--font-size-16);
  line-height: 1.6;
}

.room-name .hashtag {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.room-name .hashtag li {
  color: var(--color-primary);
  font-weight: 600;
  margin-right: 10px;
}

.room-name .hashtag li:last-child {
  margin-right: 0;
}

.room-name .hashtag li::before {
  content: "#";
  margin-right: 2px;
}

.room-name p.subtitle {
  letter-spacing: 8px;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.other-rooms {
  background-color: #f9f9f9;
}

.other-rooms .grid {
  grid-gap: 40px;
  row-gap: 60px;
}

.other-rooms .preview-card .image {
  overflow: hidden;
  position: relative;
}

.other-rooms .preview-card .image img {
  transition: all 0.4s ease-in-out;
  display: block;
}

.other-rooms .preview-card:hover .image img {
  transform: scale(1.1);
}

.other-rooms .preview-card:hover .text h5 {
  color: var(--color-primary);
}

.other-rooms .preview-card .text {
  margin-top: 15px;
}

.other-rooms .preview-card .text * {
  text-align: center;
}

.other-rooms .preview-card .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.other-rooms .preview-card .text h5 {
  font-family: "SUIT", sans-serif;
  font-weight: 600;
}

.room-preview .preview-card .image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.room-preview .preview-card .image::before {
  content: "";
  display: block;
  padding-bottom: 65%;
}

.room-preview .preview-card .image .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.room-preview .preview-card:hover .image .bg {
  transform: scale(1.1);
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
  .room-intro {
    flex-direction: column;
  }

  #fullSlider.slider .slider-contents {
    height: 100% !important;
  }

  .other-rooms .grid {
    row-gap: 40px;
  }
}
