.row{
	min-height: 100vh;
}

.description{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #FECF34;
	color: rgb(41, 41, 41);
}

.gallery{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.gallery a{
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 30px;
	color: #FECF34;
}


.gallery-hightlight {
  width: 80%;
  height: 50%;
}

.room-preview {
  display: flex;
  width: 80%;
  border: 2px solid #FECF34;
}
.room-preview img {
  flex-grow: 1;
  height: 150px;
  width: 100px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

img.room-active {
  opacity: 1;
}

.carousel-indicators li {
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin: 0px 10px;
}

.carousel-control-prev-icon{
	background-color: rgba(0, 0, 0, .5);
	padding: 50px 20px;
	border-radius: 10px;
	opacity: 0.6;
}


.carousel-control-next-icon{
	background-color: rgba(0, 0, 0, .5);
	padding: 50px 20px;
	border-radius: 10px;
	opacity: 0.6;
}