.inclusive-service {
  width: 180px;
  padding: 5px;
  margin: 5px;
  background-color: #F4F3F3;
  display: flex;
  flex-direction: column;
  height: 110px;
  justify-content: center;
  align-items: center;
}

.inclusive-service i {
  color: #aac930;
  font-size: 35px;
}

.inclusive-service span {
  font-size: 14px;
}


@media (min-width: 1149px) {
  .inclusive-service span {
    font-size: 16px;
  }
}

.hotel_gallery {
  display: flex;
  overflow: hidden;
  height: 450px;
}

.hotel_gallery_column {
  width: 50%;
}

/* .hotel_gallery_img_container {
  height: 100%;
  width: 100%;
} */

.hotel_gallery_column.right {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.img_container {
  width: 50%;
  height: 50%;
}

.hotel_gallery img.hotel_gallery_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 3px;
}

.hotel_gallery a {
  height: 100%;
  width: 100%;
}

.gallery_btn_cd a {
  font-size: 17px;
  font-weight: bold;
  background-color: #A9C311;
  padding: 10px 15px;
  border-radius: 3px;
  color: #fff;
}

.gallery_btn_cd {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (min-width: 768px) {
  .hotel_gallery_mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .hotel_gallery {
    display: none;
  }
}

/* Slideshow container */
.hotel_gallery_mobile {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: 56vw;
  max-height: 56vw;
}

/* Hide the images by default */
.hotel_gallery_slide {
  height: 100%;
  width: 100%;
  display: none;
}

.hotel_gallery_slide img.hotel_gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: #ffffffdd;
  color: #333333;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* map */
#map {
  height: 500px;
  margin-top: 50px;
  margin-bottom: 50px;
  z-index: 0;
}

#map .hotel-marker-icon .hotel-marker-image {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 75px;
  border: solid 3px #ffffff;
  transform: translate(-50%, -50%);
}