.index {
  margin-top: 50px;
}

.button--index {
  padding: 14px 35px;
}

.intro {
  margin-bottom: 60px;
}

.intro-img {
  height: 500px;
  overflow: hidden;
  border-radius: 5px;
}

.intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.button--read-more {
  padding: 14px 55px;
}

.accomodations {
  margin-bottom: 60px;
}

.rooms-section__top {
  margin-bottom: 30px;
}

.rooms-section__top .title-h2 {
  margin-bottom: 10px;
}

.rooms-section {
  margin-bottom: 60px;
}

.room-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.room-block__img {
  max-width: 540px;
  min-width: 540px;
  height: 350px;
  max-height: 350px;
  overflow: hidden;
  border-radius: 5px;
  margin-right: 30px;
  position: relative;
}

.room-block__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.room-block__textcontent .paragraph-p2 {
  margin-bottom: 35px;
}

.rooms-slider {
  position: relative;
  padding-bottom: 60px;
}

.swiper-pagination {
  bottom: 0px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #c1c1c1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #154683;
}

.reviews-section {
  margin-bottom: 60px;
}

.reviews-slider .swiper-slide {
  height: auto;
}

.reviews-slider .review {
  min-height: unset;
}

.reviews-form {
  margin-bottom: 60px;
}

.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  padding-top: 100px;
  z-index: 10000;
  background: rgba(43, 43, 43, 0.5);
  overflow: auto;
}

.service-modal__body {
  padding-top: 30px;
  padding-bottom: 40px;
  background-color: #ffffff;
  border-radius: 5px;
}

.service-modal__close-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service-modal__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.service-modal__title {
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #154683;
}

.service-modal__img {
  margin-bottom: 20px;
  border-radius: 5px;
}

.service-modal__bullets {
  display: block;
}

.service--index {
  cursor: pointer;
}

.service--index:hover .service__bottom a {
  color: #154683;
}

.service--index:hover .service__bottom svg {
  fill: #154683;
}

.service__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.service__bottom span {
  margin-left: 0;
}

.service__bottom a {
  font-weight: bold;
  font-size: 16px;
  line-height: 130%;
  color: #2b2b2b;
}

.service__bottom a svg {
  width: 8px;
  height: 10px;
}

@media (max-width: 1170px) {
  .intro-img {
    height: 350px;
  }
}

@media (max-width: 991px) {
  .rooms-section__top .paragraph-p1 {
    font-size: 16px;
  }
  .room-block__img {
    min-width: 430px;
    min-height: 320px;
    height: 320px;
  }
  .intro-img {
    height: 500px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .rooms-slider {
    padding-bottom: 0;
  }
  .rooms-slider .swiper-pagination {
    position: static;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .room-block {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .room-block__img {
    min-width: unset;
    min-height: unset;
    height: auto;
    margin-right: 0;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 25px;
  }
  .room-block__img img {
    width: 100%;
    height: auto;
    position: static;
  }
  .room-block .title-h3--list {
    margin-bottom: 5px;
  }
  .room-block .paragraph-p2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .room-block__textcontent {
    margin-bottom: 25px;
  }
  .reviews-slider .review__name {
    font-size: 18px;
  }
  .reviews-slider .review__text {
    font-size: 14px;
  }
  .button--read-more {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px;
    padding: 10px 0;
  }
  .intro,
  .section,
  .accomodations,
  .rooms-section,
  .reviews-section,
  .reviews-form {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .index {
    margin-top: 40px;
  }
  .intro .button--index {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 0;
    width: 100%;
  }
  .intro .paragraph-p2--mb {
    margin-bottom: 25px;
  }
  .intro-img {
    height: 215px;
  }
  .section .paragraph-p3--mb {
    margin-bottom: 20px;
  }
  .advantages {
    margin-bottom: 20px;
  }
  .advantages__item {
    margin-bottom: 10px;
  }
  .services-slider-top {
    margin-bottom: 20px;
  }
  .service {
    padding-bottom: 10px;
  }
  .service__img {
    margin-bottom: 10px;
  }
  .service__name {
    font-size: 16px;
    margin-left: 15px;
  }
  .service-modal {
    padding-bottom: 20px;
    padding-top: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-modal__body {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .service-modal .container-fluid {
    height: 100%;
  }
  .service-modal__close-btn {
    width: 20px;
    height: 20px;
  }
  .service-modal__text {
    font-size: 14px;
  }
  .service--index {
    padding-bottom: 20px;
  }
  .service--index .service__img {
    margin-bottom: 20px;
  }
  .service--index .service__bottom {
    padding-left: 10px;
    padding-right: 10px;
  }
  .service--index .service__bottom a {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  .service-modal {
    padding-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-modal__close-btn {
    right: 15px;
  }
  .service-modal__body {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .service__bottom a,
  .service__bottom span {
    font-size: 14px;
  }
}

@media (max-height: 575px) {
  .service-modal {
    padding-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-modal__body {
    margin-top: 20px;
  }
}
