.rooms-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.rooms-wrapper__item {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .rooms-wrapper__item {
    display: grid;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .rooms-wrapper__item {
    display: grid;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .rooms-wrapper__item {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.rooms-wrapper__item-content {
  display: grid;
  gap: 20px;
}
.rooms-wrapper__item-content img {
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
}
.rooms-wrapper__item-content .wrapper {
  font-family: "Open Sans Condensed", serif;
  font-size: 20px;
}
.rooms-wrapper__item-content .wrapper .title {
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin: 0;
  padding: 0;
}
.rooms-wrapper__item-content .wrapper .text {
  font-weight: 300;
  color: var(--black);
  text-align: center;
}
