.room {}
.room-title {
  margin-bottom: 10px;

  font-size: 18px;
}

.room-gallerygroup {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: row;

  width: 100%;
}

.room-gallerygroup-col {
  position: relative;
  display: flex;
  gap: 5px;

  align-items: flex-start;
  justify-content: flex-start;

  flex-direction: column;

  width: calc((100% - 5px) / 2);
  min-width: calc((100% - 5px) / 2);
}

.room-gallerygroup-item {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;
  height: 100px;
  min-height: 100px;

  background: rgba(0, 0, 0, 0.1);
}
.room-gallerygroup-item img {
  position: relative;
  display: flex;

  flex-direction: row;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}


.room-gallerygroup-iconbutton {
  position: absolute;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  left: 20px;
  bottom: 20px;

  width: 40px;
  height: 40px;

  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;

  text-decoration: none;

  color: white;

  background: rgba(0, 0, 0, 0.7);
  transition: 0.3s all ease-out;
}


.room-pheading,
.room-p {
  text-align: justify;
}
.room-pheading {
  margin-top: 30px;
  margin-bottom: 5px;

  font-size: 16px;
  font-weight: 700;

  color: black;
}
.room-p {
  margin-bottom: 5px;

  line-height: 1.7;

  font-size: 16px;
  font-weight: 500;

  color: rgba(0, 0, 0, 0.5);
}

.room-buttons {
  position: relative;
  display: flex;
  gap: 10px;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin-top: 20px;

  width: 100%;
}
.room-button {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  width: 100%;
  height: 50px;

  padding: 0 20px;

  text-decoration: none;

  border-radius: 4px;

  font-size: 14px;
  font-weight: 700;

  color: rgba(var(--color-brand-blue-rgb), 1);
  background: rgba(var(--color-brand-yellow-rgb), 1);
}
