@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/* Базовые стили */
body {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #7A7A7A;
}

body.active {
  overflow: hidden;
}

.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: 100vh;
}

.header-container {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.section__btn {
  max-width: 250px;
  width: 100%;
  margin: 50px auto 0 auto;
}

@media (max-width: 680px) {
  .section__btn-sanatorium {
    display: none;
  }
}

.section__btn-accommodation {
  margin: 0;
}

@media (max-width: 900px) {
  .section__btn-accommodation {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .section__btn {
    max-width: 100%;
    margin-top: 40px;
  }
}

.section__btn a {
  color: #fff;
  text-align: center;
  background: #E0B973;
  border-radius: 10px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: block;
  padding: 20px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.section__btn a:hover {
  background-color: #d29a34;
}

.section__title {
  color: #1D593F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

@media (max-width: 500px) {
  .section__title {
    font-size: 36px;
  }
}

/* Базовые стили */
/* Header======================= */
.header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 30px 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header.active {
  z-index: 4;
}

.header.fixed {
  position: fixed;
  background: #1D593F;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 5;
}

.header-bg {
  position: fixed;
  background: #1D593F;
  top: 0;
  left: 0;
  height: 100px;
  z-index: 5;
}

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

.header__logo {
  position: relative;
  z-index: 4;
}

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

@media (max-width: 1068px) {
  .header__menu {
    display: none;
  }
}

.header__link {
  font-family: 'Montserrat', sans-serif;
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.header__link:hover {
  color: #E0B973;
}

.header__link + .header__link {
  margin-left: 30px;
}

.header__burger {
  display: none;
}

@media (max-width: 1068px) {
  .header__burger {
    display: block;
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 4;
  }
  .header__burger span {
    display: block;
    background-color: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before, .header__burger:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .header__burger.active:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 12px;
  }
  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 12px;
  }
}

.header-mobile {
  display: none;
}

@media (max-width: 1068px) {
  .header-mobile {
    overflow-y: auto;
    position: fixed;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0;
    z-index: 3;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background: #1D593F;
    padding: 120px 20px 40px 20px;
    display: block;
  }
  .header-mobile.active {
    left: 0;
  }
}

.header-mobile__menu-link {
  display: block;
  font-size: 26px;
  line-height: 28px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin-bottom: 35px;
}

@media (max-width: 500px) {
  .header-mobile__menu-link {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* Header======================= */
/* Hero====================== */
.hero {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 250px 0 170px 0;
  min-height: 100vh;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 200px;
  }
}

.hero:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(4, 34, 21, 0.6);
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

@media (max-width: 600px) {
  .hero__content {
    text-align: center;
  }
}

.hero__title {
  letter-spacing: 0.07em;
  font-size: 90px;
  line-height: 100px;
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 400px) {
  .hero__title {
    font-size: 48px;
    line-height: 56px;
  }
}

.hero__text {
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 36px;
}

@media (max-width: 400px) {
  .hero__text {
    font-size: 20px;
    line-height: 26px;
  }
}

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

@media (max-width: 600px) {
  .hero__buttons {
    display: block;
  }
}

.hero__button {
  display: block;
  color: inherit;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: #E0B973;
  border-radius: 10px;
  padding: 20px 0;
  max-width: 250px;
  width: 100%;
  margin-right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero__button:hover {
  background-color: #d29a34;
}

@media (max-width: 600px) {
  .hero__button {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.hero__link {
  display: block;
  color: #E0B973;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
}

.hero__scroll {
  position: absolute;
  bottom: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  z-index: 2;
  -webkit-animation-name: arrow-animation;
          animation-name: arrow-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

.hero__scroll span {
  display: block;
  letter-spacing: 0.07em;
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 15px;
}

.hero__scroll img {
  display: block;
  margin: 0 auto;
}

@-webkit-keyframes arrow-animation {
  0% {
    bottom: 35px;
  }
  100% {
    bottom: 70px;
  }
}

@keyframes arrow-animation {
  0% {
    bottom: 35px;
  }
  100% {
    bottom: 70px;
  }
}

/* Hero====================== */
/* Place=================== */
.place {
  padding: 150px 0;
}

@media (max-width: 900px) {
  .place {
    padding: 50px 0;
  }
}

.place-2 {
  padding-top: 200px;
}

@media (max-width: 680px) {
  .place-2 {
    padding-top: 150px;
  }
}

.place__text {
  font-family: 'Montserrat', sans-serif;
  max-width: 800px;
  text-align: center;
  margin: 0 auto 100px auto;
}

@media (max-width: 500px) {
  .place__text {
    margin-bottom: 40px;
  }
}

@media (max-width: 400px) {
  .place__text {
    font-size: 14px;
  }
}

.place__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}

@media (max-width: 900px) {
  .place__item {
    display: block;
    margin-bottom: 50px;
  }
}

.place__item:last-child {
  margin-bottom: 0;
}

.place__item-content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-right: 90px;
  border-left: 2px solid #E0B973;
  padding: 30px 0 0 30px;
}

@media (max-width: 900px) {
  .place__item-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 680px) {
  .place__item-content {
    padding: 0;
    border-left: none;
  }
}

.place__item-content__description {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 17px;
}

.place__item-content__link {
  font-size: 20px;
  line-height: 20px;
  text-decoration: underline;
  color: #E0B973;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.place__item-content__link:hover {
  color: #d29a34;
}

.place__item-img {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

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

/* Place=================== */
/* Numbers ================*/
.numbers {
  padding: 40px 0;
  background: #E0B973;
}

.numbers__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}

@media (max-width: 767px) {
  .numbers__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.numbers__item {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  text-align: center;
}

@media (max-width: 767px) {
  .numbers__item {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-bottom: 40px;
  }
  .numbers__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .numbers__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 0;
  }
  .numbers__item:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .numbers__item:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}

.numbers__item-title {
  font-size: 60px;
  line-height: 60px;
  font-weight: 900;
  margin-bottom: 20px;
}

@media (max-width: 400px) {
  .numbers__item-title {
    font-size: 48px;
    line-height: 50px;
  }
}

.numbers__item-text {
  font-size: 16px;
  line-height: 31px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 400px) {
  .numbers__item-text {
    font-size: 13px;
    line-height: 15px;
  }
}

/* Numbers ================*/
/* Stock====================== */
.stock {
  padding: 150px 0;
}

@media (max-width: 680px) {
  .stock {
    padding: 100px 0 40px 0;
  }
}

.stock-2 {
  padding-top: 200px;
}

@media (max-width: 680px) {
  .stock-2 {
    padding-top: 150px;
  }
}

.stock__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 70px;
}

@media (max-width: 680px) {
  .stock__wrapper {
    margin-top: 30px;
  }
}

.stock__item {
  -ms-flex-preferred-size: 48.50%;
      flex-basis: 48.50%;
  margin-bottom: 30px;
  padding: 25px;
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  .stock__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .stock__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .stock__item {
    display: block;
    padding: 15px;
  }
}

.stock__item-content {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1024px) {
  .stock__item-content {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    max-width: 400px;
  }
}

@media (max-width: 680px) {
  .stock__item-content {
    margin-left: 0;
    margin-top: 20px;
  }
}

.stock__item-content__title {
  color: #1D593F;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stock__item-content__text {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 30px;
}

.stock__item-content__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

.stock__item-content__bottom-date {
  font-size: 12px;
  line-height: 17px;
  font-family: 'Montserrat', sans-serif;
}

.stock__item-content__link {
  color: #E0B973;
  font-size: 20px;
  line-height: 20px;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.stock__item-img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

@media (max-width: 1024px) {
  .stock__item-img {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}

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

/* Stock====================== */
/* Img--============= */
.img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}

/* Img--============= */
/* Advanatages=================== */
.advantages {
  padding: 150px 0 75px 0;
}

@media (max-width: 680px) {
  .advantages {
    padding: 80px 0 50px 0;
  }
}

.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}

@media (max-width: 900px) {
  .advantages__wrapper {
    display: block;
  }
}

@media (max-width: 680px) {
  .advantages__wrapper {
    margin-top: 40px;
  }
}

.advantages__item {
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  text-align: center;
}

@media (max-width: 900px) {
  .advantages__item + .advantages__item {
    margin-top: 30px;
  }
}

.advantages__header {
  background: #F8F8F8;
  border-radius: 9px 9px 0px 0px;
  padding: 17px 0;
  color: #1D593F;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.advantages__text {
  padding: 30px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 680px) {
  .advantages__text {
    padding: 30px 15px;
  }
}

/* Advanatages=================== */
/* Sanatorium================ */
@media (max-width: 680px) {
  .sub-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: calc(50% - 50vw);
  }
}

.sanatorium {
  padding: 75px 0 60px 0;
}

.sanatorium-2 {
  padding: 200px 0;
}

@media (max-width: 680px) {
  .sanatorium-2 {
    padding: 150px 0 50px 0;
  }
}

.sanatorium__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0;
}

@media (max-width: 680px) {
  .sanatorium__nav {
    overflow-x: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
}

.sanatorium__nav-link {
  display: block;
  color: inherit;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 680px) {
  .sanatorium__nav-link {
    margin-right: 30px;
  }
  .sanatorium__nav-link:nth-child(1) {
    margin-left: 30px;
  }
}

.sanatorium__nav-link + .sanatorium__nav-link {
  margin-left: 30px;
}

@media (max-width: 680px) {
  .sanatorium__nav-link + .sanatorium__nav-link {
    margin-left: 0;
  }
}

.sanatorium__nav-link.active {
  color: #1D593F;
  font-weight: 700;
  text-decoration: underline;
}

.sanatorium__content-block {
  display: none;
}

.sanatorium__content-block.active {
  display: block;
}

.sanatorium__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sanatorium__content-item-2 {
  margin-bottom: 30px;
}

@media (max-width: 680px) {
  .sanatorium__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sanatorium__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

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

@media (max-width: 680px) {
  .sanatorium__item.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sanatorium__item-left {
  margin-right: 30px;
  -ms-flex-preferred-size: 53%;
      flex-basis: 53%;
}

.sanatorium__item-left-2 {
  margin-right: 0;
  margin-left: 30px;
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}

@media (max-width: 680px) {
  .sanatorium__item-left-2 {
    margin-left: 0;
    margin-top: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (max-width: 680px) {
  .sanatorium__item-left {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.sanatorium__item-left img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.sanatorium__item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 47%;
      flex-basis: 47%;
}

.sanatorium__item-right-2 {
  -ms-flex-preferred-size: 53%;
      flex-basis: 53%;
}

@media (max-width: 680px) {
  .sanatorium__item-right-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.sanatorium__item-right-2 .sanatorium__item-img:nth-child(1) {
  margin-bottom: 30px;
}

@media (max-width: 680px) {
  .sanatorium__item-right-2 .sanatorium__item-img:nth-child(1) {
    margin-bottom: 15px;
  }
}

@media (max-width: 680px) {
  .sanatorium__item-img + .sanatorium__item-img {
    margin-top: 20px;
  }
}

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

::-webkit-scrollbar {
  display: none;
}

/* Sanatorium================ */
/* Tobook=========== */
.tobook {
  padding: 60px 0 50px 0;
}

@media (max-width: 680px) {
  .tobook {
    padding: 30px 0;
  }
}

.tobook__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 950px) {
  .tobook__wrapper {
    display: block;
  }
}

.tobook__content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-right: 100px;
}

@media (max-width: 1024px) {
  .tobook__content {
    margin-right: 50px;
  }
}

@media (max-width: 950px) {
  .tobook__content {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.tobook__content-text {
  color: #595959;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 30px;
}

.tobook__form {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 30px rgba(20, 39, 74, 0.05);
          box-shadow: 0px 10px 30px rgba(20, 39, 74, 0.05);
  border-radius: 10px;
}

.tobook__form-header {
  font-family: 'Montserrat', sans-serif;
  padding: 18px;
  background: #E9E9E9;
  -webkit-box-shadow: 0px 0px 30px rgba(46, 56, 90, 0.05);
          box-shadow: 0px 0px 30px rgba(46, 56, 90, 0.05);
  border-radius: 10px 10px 0px 0px;
  color: #595959;
  font-size: 12px;
  line-height: 12px;
  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;
}

.tobook__form-header:before {
  content: '';
  display: block;
  background: url(../img/tobook-icon.svg) center no-repeat;
  width: 25px;
  height: 23px;
  margin-right: 10px;
}

@media (max-width: 500px) {
  .tobook__form-header:before {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
  }
}

.tobook__form-content {
  padding: 30px;
}

.tobook__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .tobook__form-wrapper {
    display: block;
  }
}

.tobook__form-item {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-bottom: 20px;
}

.tobook__form-item__label {
  font-family: 'Montserrat', sans-serif;
  color: #1D593F;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 11px;
}

.tobook__form-item__input {
  background: #FFFFFF;
  border: 1.5px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
  height: 40px;
  display: block;
  width: 100%;
  padding: 15px;
  color: #7A7A7A;
  font-size: 11px;
  line-height: 11px;
  font-family: 'Montserrat', sans-serif;
}

.tobook__form-item__input::-webkit-input-placeholder {
  color: inherit;
}

.tobook__form-item__input:-ms-input-placeholder {
  color: inherit;
}

.tobook__form-item__input::-ms-input-placeholder {
  color: inherit;
}

.tobook__form-item__input::placeholder {
  color: inherit;
}

.tobook__form-item__input-calendar {
  position: relative;
  text-transform: uppercase;
}

.tobook__form-button {
  font-family: 'Montserrat', sans-serif;
  display: block;
  background: #1D593F;
  -webkit-box-shadow: 0px 0px 25px rgba(39, 60, 114, 0.15);
          box-shadow: 0px 0px 25px rgba(39, 60, 114, 0.15);
  border-radius: 7px;
  width: 100%;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 12px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tobook__form-button:hover {
  background-color: #103324;
}

input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input[type=date] {
  background: url("../img/calendar-icon.svg") no-repeat 94% 50%;
}

/* Tobook=========== */
/* Contacts================== */
.contacts {
  padding: 65px 0 150px 0;
}

@media (max-width: 680px) {
  .contacts {
    padding: 50px 0 60px 0;
  }
}

.contacts-2 {
  padding-top: 200px;
}

@media (max-width: 680px) {
  .contacts-2 {
    padding-top: 150px;
  }
}

.contacts__title {
  color: #1D593F;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contacts__subtitle {
  color: #1D593F;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 15px;
}

@media (max-width: 680px) {
  .contacts__subtitle {
    margin-top: 40px;
  }
}

.contacts__text {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 100px;
}

@media (max-width: 680px) {
  .contacts__text {
    margin-bottom: 40px;
  }
}

.contacts__text span {
  display: block;
  font-weight: 700;
}

.contacts__text p {
  margin-bottom: 25px;
}

.contacts__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 900px) {
  .contacts__wrapper {
    display: block;
  }
}

.contacts__content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  margin-right: 70px;
}

@media (max-width: 900px) {
  .contacts__content {
    margin-right: 0;
    margin-bottom: 60px;
  }
}

.contacts__content-map iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 280px;
}

.contacts__content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  color: #1D593F;
  line-height: 22px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 500px) {
  .contacts__content-link {
    font-size: 14px;
  }
}

.contacts__content-link:before {
  content: '';
  display: block;
  width: 24px;
  height: 30px;
  margin-right: 10px;
}

.contacts__content-link.contacts__content-link-1:before {
  background: url(../img/contacts-link-1.svg) center no-repeat;
}

.contacts__content-link.contacts__content-link-2:before {
  background: url(../img/contacts-link-2.svg) center no-repeat;
}

.contacts__content-link.contacts__content-link-3:before {
  background: url(../img/contacts-link-2.svg) center no-repeat;
}

.contacts__content-link.contacts__content-link-4:before {
  background: url(../img/contacts-link-3.svg) center no-repeat;
}

.contacts__form {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.contacts__form-item {
  margin-bottom: 20px;
}

.contacts__form-item__label {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 5px;
}

.contacts__form-item__input {
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 7px;
  display: block;
  height: 50px;
  width: 100%;
  padding: 20px;
  font-size: 14px;
  line-height: 17px;
  color: #7A7A7A;
}

.contacts__form-item__input::-webkit-input-placeholder {
  color: inherit;
}

.contacts__form-item__input:-ms-input-placeholder {
  color: inherit;
}

.contacts__form-item__input::-ms-input-placeholder {
  color: inherit;
}

.contacts__form-item__input::placeholder {
  color: inherit;
}

.contacts__form-item__input.textarea {
  height: 100%;
  resize: none;
}

.contacts__form-button {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  background: #1D593F;
  border-radius: 7px;
  padding: 14px 0;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts__form-button:hover {
  background-color: #103324;
}

/* Contacts================== */
/* Footer===================== */
.footer {
  padding: 64px 0;
  background: #333333;
  margin-top: auto;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 600px) {
  .footer__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 20px;
  }
}

.footer__item {
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  color: #fff;
}

.footer__item:nth-child(1) {
  margin-right: 80px;
}

@media (max-width: 900px) {
  .footer__item:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer__item:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
}

.footer__item-address {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 22px;
}

.footer__item-menu__link {
  font-family: 'Montserrat', sans-serif;
  display: block;
  color: #F7F7F7;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.footer__item-menu__link:hover {
  color: #E0B973;
}

.footer__item-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

.footer__item-social:hover span {
  color: #E0B973;
}

.footer__item-social:hover .footer__item-social__icon {
  fill: #E0B973;
}

.footer__item-social span {
  font-family: 'Montserrat', sans-serif;
  color: #F7F7F7;
  font-size: 16px;
  line-height: 31px;
  margin-left: 20px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.footer__item-social__icon {
  display: block;
  fill: white;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.footer__item-title {
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 30px;
}

.footer__item-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.footer__item-form__input {
  border: 2px solid #E0B973;
  height: 50px;
  max-width: 280px;
  width: 100%;
  display: block;
  padding: 20px;
  background: none;
  font-size: 16px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  border-right: none;
}

.footer__item-form__input::-webkit-input-placeholder {
  color: inherit;
}

.footer__item-form__input:-ms-input-placeholder {
  color: inherit;
}

.footer__item-form__input::-ms-input-placeholder {
  color: inherit;
}

.footer__item-form__input::placeholder {
  color: inherit;
}

.footer__item-form__button {
  background: #E0B973;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__item-form__button:hover {
  background-color: #d7a449;
}

/* Footer===================== */
/* Стили других страниц */
/* News-Card======== */
.news-card {
  padding: 200px 0 100px 0;
}

@media (max-width: 680px) {
  .news-card {
    padding: 150px 0 50px 0;
  }
}

.news-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-card__content {
  margin-right: 80px;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}

@media (max-width: 1024px) {
  .news-card__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
}

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

.news-card__content-date {
  font-size: 12px;
  line-height: 17px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 15px;
  margin-bottom: 28px;
}

.news-card__content-text {
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif;
}

.news-card__content-text p {
  margin-bottom: 30px;
}

.news-card__sidebar {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 30px rgba(20, 39, 74, 0.05);
          box-shadow: 0px 10px 30px rgba(20, 39, 74, 0.05);
  border-radius: 10px;
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  padding: 20px;
}

@media (max-width: 1024px) {
  .news-card__sidebar {
    display: none;
  }
}

.news-card__sidebar-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #E0B973;
  padding-bottom: 10px;
}

.news-card__sidebar-item__img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.news-card__sidebar-item__img img {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}

.news-card__sidebar-item__content {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  margin-left: 15px;
}

.news-card__sidebar-item__content-title {
  color: #1D593F;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.news-card__sidebar-item__content-text {
  font-size: 14px;
  line-height: 17px;
  font-family: 'Montserrat', sans-serif;
}

/* News-Card======== */
/* Buy================== */
.buy {
  padding: 200px 0 150px 0;
}

@media (max-width: 680px) {
  .buy {
    padding: 150px 0 100px 0;
  }
}

.buy__item {
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-top: 25px;
  padding: 30px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

@media (max-width: 680px) {
  .buy__item {
    padding: 20px;
  }
}

.buy__item:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1D593F;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.buy__item:hover {
  background-image: url(../img/buy-item-bg.png);
}

.buy__item:hover:after {
  opacity: 0.8;
}

.buy__item:hover .buy__item-content {
  color: #fff;
}

.buy__item:hover .buy__item-content__btn {
  opacity: 1;
}

.buy__item-content {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #1D593F;
}

.buy__item-content__title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 680px) {
  .buy__item-content__title {
    font-size: 25px;
    line-height: 25px;
  }
}

.buy__item-content__info {
  font-size: 20px;
  line-height: 25px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 680px) {
  .buy__item-content__info {
    font-size: 16px;
    line-height: 20px;
  }
}

.buy__item-content__info span {
  font-weight: 700;
  display: block;
}

.buy__item-content__btn {
  max-width: 200px;
  width: 100%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 680px) {
  .buy__item-content__btn {
    display: none;
  }
}

.buy__item-content__btn a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  background: #E0B973;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  padding: 20px 0;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.buy__item-content__btn a:hover {
  background-color: #d7a449;
}

/* Buy================== */
/* Treatment==================== */
.treatment {
  padding: 200px 0 150px 0;
}

@media (max-width: 680px) {
  .treatment {
    padding: 150px 0 50px 0;
  }
}

.treatment__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0;
}

@media (max-width: 680px) {
  .treatment__wrapper {
    margin-top: 25px;
  }
}

.treatment__item {
  -ms-flex-preferred-size: 48.50%;
      flex-basis: 48.50%;
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .treatment__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .treatment__item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .treatment__item {
    display: block;
    padding: 10px;
  }
}

.treatment__item-img {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.treatment__item-img img {
  display: block;
  max-width: 100%;
  width: 100%;
  border-radius: 15px;
}

.treatment__item-content {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  margin-left: 20px;
}

@media (max-width: 680px) {
  .treatment__item-content {
    margin-left: 0;
    margin-top: 15px;
  }
}

.treatment__item-content__title {
  color: #1D593F;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.treatment__item-content__text {
  font-family: 'Montserrat', sans-serif;
}

.treatment__description {
  font-family: 'Montserrat', sans-serif;
}

.treatment__description p {
  margin-bottom: 30px;
}

/* Treatment==================== */
/* Price================= */
.price {
  padding: 200px 0 150px 0;
}

@media (max-width: 680px) {
  .price {
    padding: 150px 0 50px 0;
  }
}

.price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0 80px 0;
}

@media (max-width: 680px) {
  .price__wrapper {
    margin: 25px 0 30px 0;
  }
}

.price__wrapper-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0 70px 0;
}

@media (max-width: 680px) {
  .price__wrapper-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
}

.price__item {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .price__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.price__item-2 {
  margin-right: 30px;
}

@media (max-width: 680px) {
  .price__item-2 {
    margin-right: 0;
  }
}

.price__item-header {
  text-align: center;
  color: #1D593F;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  padding: 15px 0;
  border-bottom: 1px solid #E0B973;
}

.price__item-content {
  padding: 30px;
  text-align: center;
}

.price__item-content__info {
  margin-bottom: 20px;
}

.price__item-content__info-date {
  font-size: 14px;
  line-height: 14px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
}

.price__item-content__info-price {
  color: #1D593F;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.price__description {
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 1024px) {
  .price__description {
    display: none;
  }
}

.price__description p {
  margin-bottom: 30px;
}

.price__description p span {
  font-weight: 700;
}

/* Price================= */
/* Accommodation======================== */
.accommodation {
  padding: 200px 0 120px 0;
}

@media (max-width: 680px) {
  .accommodation {
    padding: 100px 0 100px 0;
  }
}

.accommodation__header {
  background-image: url(../img/accommodation-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px 60px;
  color: #fff;
  border-radius: 15px;
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto 30px auto;
}

@media (max-width: 680px) {
  .accommodation__header {
    max-width: 100%;
    border-radius: 0;
    padding: 45px 20px;
  }
}

.accommodation__header:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 15px;
  background: rgba(4, 34, 21, 0.6);
}

@media (max-width: 680px) {
  .accommodation__header:before {
    border-radius: 0;
  }
}

.accommodation__header-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.accommodation__header-text {
  font-family: 'Montserrat', sans-serif;
  max-width: 470px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.accommodation__item {
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 20px;
}

.accommodation__item-top {
  padding: 16px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 680px) {
  .accommodation__item-top {
    padding: 10px;
  }
}

.accommodation__item-top.active {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0B973;
}

.accommodation__item-top.active .accommodation__item-top__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 680px) {
  .accommodation__item-top.active {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.accommodation__item-top__left-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  color: #1D593F;
  margin-bottom: 5px;
}

@media (max-width: 680px) {
  .accommodation__item-top__left-title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 2;
  }
}

.accommodation__item-top__left-subtitle {
  font-size: 20px;
  line-height: 20px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 680px) {
  .accommodation__item-top__left-subtitle {
    font-size: 16px;
    line-height: 16px;
  }
}

.accommodation__item-top__icon {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accommodation__item-content {
  display: none;
  padding: 0 30px 15px 30px;
}

@media (max-width: 680px) {
  .accommodation__item-content {
    padding: 10px;
  }
}

.accommodation__item-content__title {
  font-family: 'Montserrat', sans-serif;
  color: #1D593F;
  font-weight: 700;
}

.accommodation__item-content__text {
  color: #1D593F;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 40px;
  margin-top: 5px;
}

@media (max-width: 680px) {
  .accommodation__item-content__text {
    margin-bottom: 20px;
  }
}

.accommodation__item-content__table {
  border: 1px solid #E0B973;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  margin-top: 20px;
}

.accommodation__item-content__table-header {
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #E0B973;
  border-radius: 10px;
}

@media (max-width: 680px) {
  .accommodation__item-content__table-header {
    padding: 20px 10px;
  }
}

.accommodation__item-content__table-header__item {
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 18px;
  -ms-flex-preferred-size: 18%;
      flex-basis: 18%;
  text-align: center;
}

.accommodation__item-content__table-header__item:nth-child(3) {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

@media (max-width: 768px) {
  .accommodation__item-content__table-header__item {
    font-size: 10px;
    line-height: 10px;
  }
}

.accommodation__item-content__table-wrapper {
  padding: 15px 30px;
}

@media (max-width: 680px) {
  .accommodation__item-content__table-wrapper {
    padding: 15px 10px;
  }
}

.accommodation__item-content__table-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E0B973;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.accommodation__item-content__table-items:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.accommodation__item-content__table-item {
  color: #1D593F;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  -ms-flex-preferred-size: 18%;
      flex-basis: 18%;
  text-align: center;
}

.accommodation__item-content__table-item:nth-child(3) {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

@media (max-width: 768px) {
  .accommodation__item-content__table-item {
    font-size: 12px;
    line-height: 12px;
  }
}

.accommodation__item-content__footer {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 900px) {
  .accommodation__item-content__footer {
    display: block;
  }
}

.accommodation__item-content__footer-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 900px) {
  .accommodation__item-content__footer-images {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
  }
}

@media (max-width: 680px) {
  .accommodation__item-content__footer-images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.accommodation__item-content__footer-images__item {
  display: block;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .accommodation__item-content__footer-images__item {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
  }
}

@media (max-width: 680px) {
  .accommodation__item-content__footer-images__item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (max-width: 400px) {
  .accommodation__item-content__footer-images__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media (max-width: 900px) {
  .accommodation__item-content__footer-images__item img {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}

/* Accommodation======================== */
/* Text=================== */
.text {
  padding: 200px 0 120px 0;
}

@media (max-width: 680px) {
  .text {
    padding: 150px 0 100px 0;
  }
}

.text__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .text__item {
    display: block;
    margin-bottom: 0;
  }
  .text__item:nth-child(2) {
    display: none;
  }
}

.text__item:last-child {
  margin-bottom: 0;
}

.text__item-title {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  color: #1D593F;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .text__item-title {
    margin-bottom: 20px;
  }
}

.text__item-description {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-family: 'Montserrat', sans-serif;
}

.text__item-description p {
  margin-bottom: 30px;
}

/* Text=================== */
/* Modal================ */
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(1, 4, 3, 0.9);
  top: 0;
  left: 0;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  z-index: 20;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
}

.modal:target {
  opacity: 1;
  visibility: visible;
}

.modal__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 10px;
}

.modal__content {
  max-width: 800px;
  width: 100%;
  position: relative;
}

.modal__content-close {
  position: absolute;
  right: -30px;
  top: -30px;
  z-index: 2;
}

@media (max-width: 900px) {
  .modal__content-close {
    top: -40px;
    right: -5px;
  }
}

.fotorama img {
  display: block;
}

.fotorama__stage {
  margin-bottom: 30px;
}

.fotorama__nav__frame {
  margin-right: 20px;
}

@media (max-width: 500px) {
  .fotorama__nav__frame {
    margin-right: 10px;
  }
}

.fotorama__wrap {
  width: 100%;
}

/* Modal================ */
