html,
body {
  height: 100%;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

section {
  overflow: hidden;
}

li,
p,
span {
  line-height: 150%;
}

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

svg,
path,
rect {
  fill: inherit;
  stroke: inherit;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

body {
  font-family: "HelveticaNeueCyr";
}

.absolute-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.no-overflow {
  overflow: hidden;
}

.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.header {
  padding: 15px 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo__img {
  max-width: 65px;
  max-height: 50px;
}

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

.text-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  color: #2b2b2b;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.text-button svg {
  width: 8px;
  height: 14px;
  fill: #2b2b2b;
  margin-left: 10px;
}

.text-button:hover {
  color: #175db5;
}

.text-button:hover svg {
  fill: #175db5;
  margin-left: 14px;
}

.default-button {
  font-size: 16px;
  font-weight: 550;
  color: #ffffff;
  line-height: 140%;
  border-radius: 5px;
  background-color: #154683;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.default-button:hover {
  background-color: #175db5;
}

.nav-menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.nav-menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-menu__item {
  position: relative;
  overflow: hidden;
}

.nav-menu__item a {
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  color: #2b2b2b;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.nav-menu__item a:hover {
  color: #175db5;
}

.nav-menu__item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #175db5;
  position: absolute;
  left: -100%;
  bottom: 0;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.nav-menu__item:not(:last-child) {
  margin-right: 50px;
}

.nav-menu__item--active a {
  color: #175db5;
}

.nav-menu__item:hover a::after {
  left: 0;
}

.nav-menu__addons {
  white-space: nowrap;
}

.text-link {
  font-weight: 550;
  font-size: 16px;
  line-height: 140%;
  color: #154683;
}

.text--accented {
  color: #154683;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 11111;
}

.modal--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-close-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 70px;
  right: 70px;
  cursor: pointer;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 550;
  color: #ffffff;
  line-height: 140%;
  border-radius: 5px;
  background-color: #154683;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.button:hover {
  background-color: #175db5;
}

.button--contact {
  height: 45px;
  padding: 0 35px;
  margin-left: 45px;
}

.footer {
  padding: 25px 0px;
  background-color: #154683;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}

.footer .nav-menu__item a {
  color: #ffffff;
}

.footer .nav-menu__item a::after {
  background-color: #ffffff;
}

.social-medias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-medias__item:hover .social-medias__icon {
  fill: #ffffff;
}

.social-medias__item:not(:last-child) {
  margin-right: 25px;
}

.social-medias__icon {
  width: 25px;
  height: 25px;
  fill: #c1c1c1;
}

.developer {
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  color: #c1c1c1;
  text-align: center;
}

.page-navigation {
  width: auto;
}

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

.page-item {
  margin-right: 15px;
}

.page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 550;
  color: #605f5f;
  line-height: 130%;
  text-align: center;
  border-radius: 5px;
  background-color: #f3f2f2;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.page-link--active {
  background-color: #175db5;
  color: #ffffff;
}

.page-link svg {
  width: 8px;
  height: 14px;
  fill: #605f5f;
}

.page-link:hover {
  color: #ffffff;
  border-radius: 5px;
  background-color: #175db5;
}

.page-link:hover svg {
  fill: #ffffff;
}

.text-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 130%;
  color: #2b2b2b;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.text-button svg {
  width: 8px;
  height: 14px;
  fill: #2b2b2b;
  margin-left: 10px;
}

.text-button:hover {
  color: #175db5;
}

.text-button:hover svg {
  fill: #175db5;
  margin-left: 14px;
}

.title-h1 {
  font-weight: bold;
  font-size: 34px;
  line-height: 130%;
  color: #2b2b2b;
}

.title-h1--mb {
  margin-bottom: 15px;
}

.title-h1--modal {
  margin-bottom: 10px !important;
}

.title-h1--success-modal {
  max-width: 655px;
  margin: 0 auto;
  text-align: center;
}

.title-h2 {
  font-weight: bold;
  font-size: 28px;
  line-height: 130%;
  color: #2b2b2b;
}

.title-h2--blue {
  color: #154683;
  margin-bottom: 25px;
}

.title-h3 {
  font-weight: bold;
  font-size: 24px;
  line-height: 130%;
  color: #2b2b2b;
}

.title-h3--modal {
  text-align: center;
  color: #626262;
  margin-bottom: 50px;
}

.paragraph-p1 {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #605f5f;
}

.paragraph-p2 {
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  color: #605f5f;
}

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

.paragraph-p3 {
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #605f5f;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
}

.advantages__item {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 15px;
  color: #2b2b2b;
}

.advantages__item span {
  color: #154683;
}

.accomodations {
  padding: 40px 0;
  background-color: #f3f2f2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.about-img {
  width: 100%;
  height: 500px;
  overflow: visible;
  position: relative;
  padding-bottom: 50px;
}

.about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 80%;
     object-position: 100% 80%;
  border-radius: 5px;
}

.section {
  margin-bottom: 60px;
}

.about-img-layer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 90%;
  position: absolute;
  bottom: 15px;
  left: -35px;
  background-color: #f3f2f2;
  border-radius: 10px;
  z-index: -1;
  padding-left: 15px;
  padding-bottom: 15px;
}

.img-layer {
  width: 100px;
  height: 80px;
}

.title-h3--mb {
  margin-bottom: 10px;
}

.title-h3--list {
  margin-bottom: 15px;
}

.paragraph-p3--mb {
  margin-bottom: 35px;
}

#accomodations-slider {
  margin-bottom: 30px;
}

#accomodations-thumbs,
#accomodations-slider {
  max-width: 100%;
}

.swiper-nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

.thumbs-button-prev,
.thumbs-button-next {
  cursor: pointer;
}

.thumbs-button-prev svg,
.thumbs-button-next svg {
  width: 36px;
  height: 26px;
  fill: #c1c1c1;
}

.thumbs-button-prev:hover svg,
.thumbs-button-next:hover svg {
  width: 36px;
  height: 26px;
  fill: #154683;
}

.thumbs-button-prev {
  margin-right: 35px;
}

.accomodation-img {
  height: 470px;
  border-radius: 5px;
  overflow: hidden;
}

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

.thumb-img {
  height: 95px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}

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

.form__title {
  text-align: center;
  margin-bottom: 30px;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form__label {
  font-weight: normal;
  font-size: 18px;
  line-height: 120%;
  color: #605f5f;
  margin-bottom: 5px;
}

.form__input {
  height: 50px;
  border: 1px solid rgba(21, 70, 131, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  outline: none;
  padding-left: 15px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 16px;
}

.form__input:focus {
  border: 1px solid #154683;
}

.form__input::-webkit-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  color: rgba(21, 70, 131, 0.6);
}

.form__input:-ms-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  color: rgba(21, 70, 131, 0.6);
}

.form__input::-ms-input-placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  color: rgba(21, 70, 131, 0.6);
}

.form__input::placeholder {
  font-weight: normal;
  font-size: 16px;
  line-height: 120%;
  color: rgba(21, 70, 131, 0.6);
}

.form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  border: none;
  width: 100%;
}

.service {
  padding-bottom: 20px;
  background-color: #f3f2f2;
  border-radius: 5px;
}

.service__img {
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.service__name {
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #154683;
  margin-left: 20px;
}

.services-slider-top {
  position: relative;
  margin-bottom: 35px;
}

.services-slider-top .swiper-nav-buttons {
  position: absolute;
  top: 15%;
  right: 0;
}

.services-slider-top .swiper-nav-buttons {
  margin-top: 0;
}

.review {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px;
  min-height: 210px;
  background-color: #f3f2f2;
  border-radius: 5px;
}

.review__avatar-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 70px;
  height: 70px;
  border: 1px solid #154683;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 30px;
}

.review__avatar {
  width: 62px;
  height: 62px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
}

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

.review__name {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  line-height: 130%;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.review__text {
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  color: #605f5f;
}

.map {
  position: relative;
  height: 420px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.map::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background-color: rgba(0, 0, 0, 0.05);
  cursor: -webkit-grab;
  cursor: grab;
}

.map.map__touched::after {
  z-index: -1;
}

.map iframe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1920px;
  }
}

@media (max-width: 1400px) {
  .nav-menu__item:not(:last-child) {
    margin-right: 40px;
  }
}

@media (max-width: 1170px) {
  .header {
    position: relative;
    z-index: 10;
  }
  .header .header__nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
  }
  .header .header__nav-menu .nav-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .header__nav-menu .nav-menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .header .header__nav-menu .nav-menu__item:last-child {
    margin-bottom: 30px;
  }
  .header .header__nav-menu .nav-menu__addons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .header__nav-menu .nav-menu__addons .text-link {
    margin-bottom: 25px;
  }
  .header .header__nav-menu .nav-menu__addons .button--contact {
    margin-left: 0;
    padding-left: 70px;
    padding-right: 70px;
  }
  .header .header__nav-menu.nav-menu--active {
    top: 0;
  }
  .footer__logo {
    display: none;
  }
  .footer__inner {
    margin-bottom: 40px;
  }
  .footer__nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__nav-menu .nav-menu__list {
    margin-bottom: 30px;
  }
  .burger {
    display: block;
    width: 35px;
    height: 20px;
    position: relative;
    z-index: 1;
  }
  .burger__line {
    width: 100%;
    background-color: #154683;
    height: 2px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .burger__line--1 {
    top: 0;
  }
  .burger__line--2 {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .burger__line--3 {
    bottom: 0;
  }
  .burger.burger--active .burger__line--1 {
    top: 45%;
    -webkit-transform: translateY(-45%) rotate(45deg);
        -ms-transform: translateY(-45%) rotate(45deg);
            transform: translateY(-45%) rotate(45deg);
  }
  .burger.burger--active .burger__line--2 {
    display: none;
  }
  .burger.burger--active .burger__line--3 {
    -webkit-transform: translateY(-45%) rotate(-45deg);
        -ms-transform: translateY(-45%) rotate(-45deg);
            transform: translateY(-45%) rotate(-45deg);
    bottom: 45%;
  }
  .advantages__item {
    font-size: 16px;
  }
  .accomodation-img {
    height: 400px;
  }
  .thumb-img {
    height: 90px;
  }
  .form__field {
    margin-bottom: 30px;
  }
  .about-img {
    height: 390px;
  }
  .modal-close-icon {
    top: 30px;
    right: 30px;
  }
}

@media (max-width: 991px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
  .title-h1 {
    font-size: 22px;
  }
  .title-h2 {
    font-size: 20px;
  }
  .title-h3 {
    font-size: 18px;
  }
  .paragraph-p1 {
    font-size: 18px;
  }
  .paragraph-p2 {
    font-size: 16px;
  }
  .paragraph-p3 {
    font-size: 14px;
  }
  .advantages__item {
    font-size: 14px;
  }
  .accomodation-img {
    height: 240px;
  }
  .thumb-img {
    height: 60px;
  }
  .title-h3--modal {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer__nav-menu .nav-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__nav-menu .nav-menu__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .accomodation-img {
    height: 430px;
  }
  .thumb-img {
    height: 140px;
  }
  .text-button {
    font-size: 16px;
  }
  .rooms {
    margin-top: 40px;
  }
  .form__label {
    font-size: 16px;
  }
  .review__avatar, .review__avatar-wrapper {
    display: none;
  }
  .map {
    height: 225px;
  }
  .about-img {
    height: 100%;
  }
  .modal-close-icon {
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 575px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .accomodations {
    padding: 30px 0;
  }
  .accomodation-img {
    height: 230px;
  }
  .thumb-img {
    height: 60px;
  }
  .text-button {
    font-size: 14px;
  }
  .review {
    padding: 20px;
  }
  .review__name {
    font-size: 18px;
  }
  .review__text {
    font-size: 14px;
  }
  .map {
    height: 180px;
  }
  .about-img-layer {
    height: 80%;
    left: -12px;
    top: 23px;
    padding-left: 5px;
    padding-bottom: 5px;
  }
  .about-img {
    height: 295px;
  }
  .img-layer {
    width: 40px;
    height: 35px;
  }
}
