@charset "UTF-8";
.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  display: none;
}

@font-face {
  font-family: 'OnestRegular';
  src: url("../fonts/OnestRegular.ttf");
  src: local("☺"), url("../fonts/OnestRegular.woff") format("woff"), url("../fonts/OnestRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'OnestMedium';
  src: url("../fonts/OnestMedium.ttf");
  src: local("☺"), url("../fonts/OnestMedium.woff") format("woff"), url("../fonts/OnestMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

.button {
  width: 300px;
  height: 80px;
  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;
  color: #ffffff;
  background-color: #589aff;
  border-radius: 10px;
  text-transform: uppercase;
  font-family: 'OnestMedium';
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .button {
    width: 300px;
    height: 70px;
  }
}




.button_travel {

  height: 80px;
  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;
  color: #ffffff;
  background-color: #589aff;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-transform: uppercase;
  font-family: 'OnestMedium';
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .button_travel {

    height: 70px;
  }
}





.button_form {
  width: 250px;
  height: 70px;
}

@media (max-width: 767.98px) {
  .button_form {
    width: 100%;
  }
}

.button::before {
  /*content: '';*/
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#88b7ff), to(#63a1ff));
  background-image: linear-gradient(180deg, #88b7ff 0%, #63a1ff 100%);
  position: absolute;
  top: 0;
  border-radius: 10px;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button::after {
  /*content: '';*/
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#9ec4ff), to(#3f89fb));
  background-image: linear-gradient(180deg, #9ec4ff 0%, #3f89fb 100%);
  position: absolute;
  top: 0;
  border-radius: 10px;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button span {
  position: relative;
  z-index: 1;
}

.button_border {
  background-color: inherit;
  border: 1px solid #757575;
  color: #757575;
}

.button_border::before {
  display: none;
}

.button_border::after {
  display: none;
}

.button_border:hover {
  border: 1px solid #589aff;
  color: #589aff;
}

.button:hover::before,
.button:focus::before {
  opacity: 0;
  visibility: hidden;
}

.button:hover::after,
.button:focus::after {
  opacity: 1;
  visibility: visible;
}

.title {
  font-weight: 400;
  font-size: 60px;
  line-height: 131%;
  color: #575757;
  text-transform: uppercase;
}

.title span {
  color: #589aff;
}

@media (max-width: 991.98px) {
  .title {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .title {
    font-size: 30px;
  }
}

.mintitle {
  font-weight: 400;
  font-size: 40px;
  line-height: 131%;
  color: #575757;
  text-transform: uppercase;
}

.mintitle3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 131%;
  color: #575757;
  text-transform: uppercase;
}

.mintitle span {
  color: #589aff;
}

.mintitle3 span {
  color: #589aff;
}

@media (max-width: 767.98px) {
  .mintitle {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .mintitle3 {
    font-size: 20px;
  }
}

.mintitle2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 131%;
  color: #575757;
  text-transform: uppercase;
  margin-top: 50px;
}

.mintitle2 span {
  color: #589aff;
}

@media (max-width: 767.98px) {
  .mintitle2 {
    font-size: 30px;
    margin-top: 130px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.pagination__item {
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #589aff;
  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;
  position: relative;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .pagination__item {
    width: 40px;
    height: 40px;
  }
}

.pagination__item img {
  position: relative;
  z-index: 2;
}

.pagination__item::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: #589aff;
  position: absolute;
  top: 0;
  border-radius: 50%;
  right: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__item::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#88b7ff), to(#63a1ff));
  background-image: linear-gradient(180deg, #88b7ff 0%, #63a1ff 100%);
  position: absolute;
  top: 0;
  border-radius: 50%;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__item:hover::before {
  opacity: 0;
  visibility: hidden;
}

.pagination__item:hover::after {
  opacity: 1;
  visibility: visible;
}

.map-section {
  height: 100%;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .map-section {
    width: 100%;
    height: 250px;
  }
}

.breadgrumbs {
  color: #ababab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 70px;
}

@media (max-width: 967.98px) {
  .breadgrumbs {
    margin-bottom: 30px;
    font-size: 12px;
  }
}

.breadgrumbs__link {
  color: #ababab;
}

.breadgrumbs__line {
  padding: 0 3px;
}

.cost {
  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;
}

.cost__title {
  font-size: 20px;
  line-height: 131%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cost__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .cost__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.cost__item {
  padding: 20px;
  border: 1px solid #589aff;
  border-radius: 20px;
}

.cost__name {
  font-size: 14px;
  margin-bottom: 10px;
}

.cost__value {
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  color: #589aff;
  font-family: 'OnestMedium';
}

.costlife {
  padding: 100px 0px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .costlife {
    padding: 40px 0px;
  }
}

@media (max-width: 991.98px) {
  .costlife .cost {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 50px;
  }
}

.costlife .cost__title {
  font-size: 30px;
}

@media (max-width: 991.98px) {
  .costlife .cost__title {
    font-size: 25px;
  }
}

.costlife .cost__title span {
  color: #589aff;
}

.costlife__text {
  margin-bottom: 24px;
}

.camping-list {
  padding: 100px 0px;
}

.camping-list .list__column {
  grid-area: auto;
}

.camping-list .list__column:nth-child(1) {
  grid-area: auto;
}

.camping-list .list__column:nth-child(2) {
  grid-area: auto;
}

.camping-list .list__container {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
}

@media (max-width: 991.98px) {
  .camping-list .list__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
  }
}

._label-wallet {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

._checkbox-wallet {
  display: none;
}

._fake-wallet {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  background-color: inherit;
  position: relative;
  border: 1px solid #589aff;
  margin-right: 10px;
}

._fake-wallet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 10px;
  height: 10px;
  background-color: #589aff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

._checkbox-wallet:checked + ._fake-wallet::before {
  opacity: 1;
}

._wallet-chectext {
  margin-left: 7px;
  font-size: 14px;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  /*line-height: 1;*/
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

.wrapper {
  overflow: hidden;
  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%;
}

body {
  font-family: 'OnestRegular';
  color: #575757;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  height: 100%;
}

body.lock {
  overflow: hidden;
}

body._lock {
  overflow: hidden;
}

body._lock::after {
  content: '';
  background: #273750;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

[class*='__container'] {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px;
}

.header {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

@media (max-width: 767.98px) {
  .header {
    border-bottom: 1px solid #f5f9ff;
  }
}

@media (max-width: 479.98px) {
  .header {
    position: fixed;
    background-color: #ffffff;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

@media (max-width: 991.98px) {
  .header__socials {
    padding-left: 50px;
  }
}

@media (max-width: 767.98px) {
  .header__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
}

.header__social {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header__social:hover {
  opacity: 0.8;
}

@media (max-width: 991.98px) {
  .menu__body {
    right: -100%;
    -webkit-transition: right 0.8s;
    transition: right 0.8s;
    position: fixed;
    width: 50vw;
    height: 100vh;
    top: 0;
    overflow: auto;
    padding: 120px 10px 175px 80px;
    background-color: #589aff;
    z-index: 9;
    padding-left: 30px;
    padding-right: 30px;
    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;
  }
  .menu__body._active {
    right: 0;
  }
}

@media (max-width: 767.98px) {
  .menu__body {
    width: 100vw;
    text-align: center;
    padding: 100px 10px 10px 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.menu__list {
  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;
  gap: 30px;
}

@media (max-width: 991.98px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 50px;
  }
}

@media (max-width: 767.98px) {
  .menu__list {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    margin-bottom: 60px;
  }
}

.menu__link {
  font-family: 'OnestMedium';
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  position: relative;
}

.menu__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25px;
  width: 0%;
  height: 1px;
  background: #ffffff;
  -webkit-transition: 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__link:hover::before {
  width: 100%;
}

@media (max-width: 991.98px) {
  .header__burger {
    display: block;
    position: absolute;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
    right: 35px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
  .header__burger {
    right: 25px;
  }
}

@media (max-width: 991.98px) {
  .header__burger::after {
    content: '';
    background-color: #f5f9ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header__burger::before {
    content: 'Меню';
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    font-family: 'OnestMedium';
    position: absolute;
    top: 50%;
    right: 30px;
    text-transform: uppercase;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media (max-width: 991.98px) and (max-width: 767.98px) {
  .header__burger::before {
    color: #589aff;
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {
  .header__burger span {
    z-index: 2;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #589aff;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .header__burger._active span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 8px;
  }
  .header__burger._active span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 8px;
  }
  .header__burger._active::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .header-logo {
    display: none;
  }
}

.header-logo-mob {
  display: none;
}

@media (max-width: 767.98px) {
  .header-logo-mob {
    display: block;
  }
}

.header-room {
  border-bottom: 2px solid #f5f9ff;
}

.header-room .header-logo {
  display: none;
}

.header-room .header-logo-mob {
  display: block;
  width: 80px;
  height: 55px;
}

.header-room .menu__link {
  color: #757575;
}

.header-room .menu__link::before {
  background-color: #757575;
}

@media (max-width: 767.98px) {
  .header-room .menu__link {
    color: #ffffff;
  }
}

.main {
  height: 100vh;
  max-width: 100vw;
  position: relative;
}

@media (max-height: 660px) and (min-width: 767px) {
  .main {
    height: 800px;
  }
}

@media (max-width: 767.98px) {
  .main {
    width: 100%;
    max-width: 100%;
    padding-top: 180px;
    height: 100%;
  }
}

.main__bg {
  height: 100vh;
  width: 100%;
}

@media (max-height: 660px) and (min-width: 767px) {
  .main__bg {
    height: 800px;
  }
}

@media (max-width: 767.98px) {
  .main__bg {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .main__container {
    width: 100%;
    max-width: 100%;
  }
}

.main__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (max-height: 750px) {
  .main__content {
    top: 60%;
  }
}

@media (max-width: 767.98px) {
  .main__content {
    position: static;
    -webkit-transform: none;
            transform: none;
    top: 0;
  }
}

.main__title {
  font-weight: 500;
  font-size: 80px;
  line-height: 110%;
  font-family: 'OnestMedium';
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .main__title {
    font-size: 40px;
    color: #575757;
  }
  .main__title span {
    color: #589aff;
  }
}

.main__subtitle {
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  max-width: 450px;
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .main__subtitle {
    font-size: 14px;
    color: #575757;
    max-width: 240px;
  }
}

.main__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .main__button {
    margin-bottom: 60px;
  }
}

@media (max-width: 767.98px) {
  .main__yandex {
    display: none;
  }
}

.mob-main {
  display: none;
}

@media (max-width: 767.98px) {
  .mob-main {
    display: block;
  }
}

.mob-main__bg {
  width: 100%;
  max-width: 500px;
}

.mob-main__bg img {
  width: 100%;
  max-width: 500px;
}

.mob-main__yandex {
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 40px;
  left: 20px;
}

.mob-main__yandex img {
  width: 140px;
  height: 140px;
}

.footer {
  background-color: #273750;
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.5fr 190px;
      grid-template-columns: 1fr 1.5fr 190px;
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
  grid-column-gap: 90px;
  grid-row-gap: 80px;
  padding-bottom: 40px;
}

@media (max-width: 991.98px) {
  .footer__top {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (auto)[3];
        grid-template-rows: repeat(3, auto);
    grid-row-gap: 45px;
  }
}

@media (max-width: 767.98px) {
  .footer__top {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[6];
        grid-template-rows: repeat(6, auto);
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-area: 1 / 2 / 2 / 4;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2 / 3 / 3 / 4;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(4) {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 5 / 1 / 6 / 2;
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(5) {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 6 / 1 / 7 / 2;
  }
}

@media (max-width: 991.98px) {
  .footer__column:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 3 / 3 / 4 / 4;
  }
}

@media (max-width: 767.98px) {
  .footer__column:nth-child(6) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 4 / 1 / 5 / 2;
  }
}

.footer__item:not(:last-child) {
  margin-bottom: 30px;
}

.footer__name {
  font-size: 14px;
  line-height: 18px;
  color: #ababab;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer__value {
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767.98px) {
  .footer__menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 65px;
  }
}

.footer__link {
  font-size: 14px;
  line-height: 18px;
  color: #ababab;
  text-transform: uppercase;
}

.footer__link a {
  color: #ababab;
}

.footer__link:not(:last-child) {
  margin-bottom: 30px;
}

.footer__item-menu {
  color: #ababab;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          /*align-items: center;*/
  gap: 20px;
}

.footer__social {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__social:hover {
  opacity: 0.8;
}

.footer__adres {
  max-width: 185px;
}

.footer__yandex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.footer__yandex:hover {
  opacity: 0.8;
}

.footer__line {
  width: 100%;
  height: 1px;
  background-color: #f5f9ff;
  opacity: 0.1;
}

.footer__bottom {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 130px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__copy {
  text-transform: uppercase;
  color: rgba(173, 173, 173, 0.49);
  font-weight: 400;
  font-size: 12px;
}

.footer__policy {
  font-size: 12px;
  line-height: 15px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-transform: uppercase;
  color: rgba(173, 173, 173, 0.49);
}

.footer__years {
  font-size: 12px;
  text-transform: uppercase;
  color: #757575;
}

.why {
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .why {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.why__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .why__title {
    margin-bottom: 40px;
  }
}

.why__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

@media (max-width: 991.98px) {
  .why__body {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
        grid-template-rows: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .why__body {
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (auto)[4];
        grid-template-rows: repeat(4, auto);
  }
}

.why__bigitem {
  padding: 30px 30px 40px 30px;
  background-color: #ffffff;
  border-radius: 20px;
}

.why__bigitem:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 3 / 2;
}

@media (max-width: 991.98px) {
  .why__bigitem:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media (max-width: 767.98px) {
  .why__bigitem:nth-child(1) {
    grid-area: auto;
  }
}

.why__bigitem:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1 / 3 / 3 / 4;
}

@media (max-width: 991.98px) {
  .why__bigitem:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 4 / 3;
  }
}

@media (max-width: 767.98px) {
  .why__bigitem:nth-child(4) {
    grid-area: auto;
  }
}

.why__image {
  width: 100%;
  height: 130px;
  margin-bottom: 30px;
}

.why__image img {
  width: 100%;
  height: 130px;
  border-radius: 20px;
  max-width: 300px;
}

.why__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #589aff;
  text-transform: uppercase;
  font-family: 'OnestMedium';
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .why__name {
    font-size: 18px;
  }
}

.why__text {
  font-size: 16px;
  line-height: 150%;
}

.why__text span {
  font-weight: 500;
  font-family: 'OnestMedium';
}

@media (max-width: 767.98px) {
  .why__text {
    font-size: 14px;
  }
}

.why__item {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 29px 29px 29px 38px;
}

.why__item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 2 / 3;
}

@media (max-width: 991.98px) {
  .why__item:nth-child(2) {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media (max-width: 767.98px) {
  .why__item:nth-child(2) {
    grid-area: auto;
  }
}

.why__item:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2 / 2 / 3 / 3;
}

@media (max-width: 991.98px) {
  .why__item:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media (max-width: 767.98px) {
  .why__item:nth-child(3) {
    grid-area: auto;
  }
}

.why__item .why__text {
  max-width: 216px;
}

.rooms {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767.98px) {
  .rooms {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.rooms__top {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 767.98px) {
  .rooms__top {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .rooms__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .rooms__title {
    margin-bottom: 40px;
  }
}

.rooms__block {
  margin: 0 auto;
  min-width: 0;
  overflow: hidden;
}

.rooms__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 0;
}

.rooms__item {
  padding: 40px 30px;
  background-color: #f5f9ff;
  border-radius: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 30px);
          flex: 0 0 calc(33.333% - 30px);
}

@media (max-width: 1190px) {
  .rooms__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 767.98px) {
  .rooms__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.rooms__name {
  font-size: 30px;
  line-height: 130%;
  color: #589aff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.rooms__name2 {
  font-size: 24px;
  line-height: 130%;
  color: #589aff;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .rooms__name {
    font-size: 25px;
    margin-bottom: 20px;
  }
}

.rooms__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.rooms__advantages:not(:last-child) {
  margin-bottom: 15px;
}

.rooms__icon {
  margin-right: 10px;
  width: 20px;
}

.rooms__value {
  font-size: 15px;
  line-height: 131%;
  color: #575757;
}

.rooms__buttons {
  margin-top: 60px;
}

.rooms__buttons .button_border {
  margin-bottom: 15px;
}

.swiper__container {
  padding: 0px 0px;
}

.discounts {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .discounts {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.discounts__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .discounts__title {
    margin-bottom: 40px;
  }
}

.discounts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 991.98px) {
  .discounts__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 479.98px) {
  .discounts__body {
    display: block;
  }
}

.discounts__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 15px);
          flex: 0 1 calc(50% - 15px);
}

@media (max-width: 479.98px) {
  .discounts__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.discounts__item img {
  width: 100%;
  height: 270px;
  border-radius: 20px;
}

@media (max-width: 479.98px) {
  .discounts__item img {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .discounts__item img {
    height: 100%;
  }
}

@media (max-width: 479.98px) {
  .discounts__item img {
    height: 100%;
  }
}






.discounts__item2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 15px);
          flex: 0 1 calc(50% - 15px);
}

@media (max-width: 479.98px) {
  .discounts__item2:not(:last-child) {
    margin-bottom: 30px;
  }
}

.discounts__item2 img {
  width: 100%;
  height: 270px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

@media (max-width: 479.98px) {
  .discounts__item2 img {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .discounts__item2 img {
    height: 100%;
  }
}

@media (max-width: 479.98px) {
  .discounts__item2 img {
    height: 100%;
  }
}





.discounts__booking {
  border-radius: 20px;
  border: 1px solid #589aff;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 15px);
          flex: 0 1 calc(50% - 15px);
  padding: 50px;
}

@media (max-width: 991.98px) {
  .discounts__booking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 767.98px) {
  .discounts__booking {
    display: block;
    padding: 30px;
  }
}

.discounts__text {
  font-size: 25px;
  line-height: 131%;
  color: #575757;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .discounts__text {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .discounts__text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@media (max-width: 479.98px) {
  .discounts__pc {
    display: none;
  }
}

.discounts__mob {
  display: none;
}

@media (max-width: 479.98px) {
  .discounts__mob {
    display: block;
  }
}

.servise {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 767.98px) {
  .servise {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.servise__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .servise__title {
    margin-bottom: 40px;
  }
}

.servise__body2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1170px) {
  .servise__body2 {
    gap: 5px;
  }
}





.servise__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

@media (max-width: 1170px) {
  .servise__body {
    gap: 30px;
  }
}






.servise__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 32px);
          flex: 0 1 calc(20% - 32px);
  padding: 50px 5px 30px 30px;
  border: 1px solid #589aff;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .servise__item:nth-child(10) {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .servise__item:nth-child(10) {
    display: block;
  }
}

@media (max-width: 1170px) {
  .servise__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(25% - 23px);
            flex: 0 1 calc(25% - 23px);
  }
}

@media (max-width: 991.98px) {
  .servise__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33% - 18px);
            flex: 0 1 calc(33% - 18px);
  }
}

@media (max-width: 767.98px) {
  .servise__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 15px);
            flex: 0 1 calc(50% - 15px);
    padding: 25px 5px 25px 25px;
  }
}



.servise__item2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(20% - 32px);
          flex: 0 1 calc(30% - 32px);
  padding: 5px 5px 5px 15px;
  border: 1px solid #589aff;
  border-radius: 10px;
}

@media (max-width: 991.98px) {
  .servise__item2:nth-child(10) {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .servise__item2:nth-child(10) {
    display: block;
  }
}

@media (max-width: 1170px) {
  .servise__item2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(25% - 23px);
            flex: 0 1 calc(25% - 23px);
  }
}

@media (max-width: 991.98px) {
  .servise__item2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33% - 18px);
            flex: 0 1 calc(33% - 18px);
  }
}

@media (max-width: 767.98px) {
  .servise__item2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 15px);
            flex: 0 1 calc(100% - 15px);
    padding: 5px 5px 5px 15px;
  }
}







.servise__icon {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .servise__icon {
    width: 30px;
    height: 30px;
  }
  .servise__icon img {
    width: 30px;
    height: 30px;
  }
}

.servise__name {
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

@media (max-width: 767.98px) {
  .servise__name {
    font-size: 12px;
  }
}

.camping {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .camping {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 479.98px) {
  .camping {
    padding-bottom: 0px;
  }
}

.camping__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}

@media (max-width: 991.98px) {
  .camping__container {
    gap: 30px;
  }
}

@media (max-width: 767.98px) {
  .camping__container {
    display: block;
  }
}

.camping__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.camping__title {
  font-size: 45px;
  margin-bottom: 30px;
  line-height: 131%;
}

@media (max-width: 991.98px) {
  .camping__title {
    font-size: 30px;
  }
}

@media (max-width: 767.98px) {
  .camping__title {
    font-size: 25px;
  }
}

.camping__text {
  font-size: 18px;
  line-height: 150%;
  color: #575757;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .camping__text {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .camping__text {
    font-size: 14px;
  }
}

.camping__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

@media (max-width: 767.98px) {
  .camping__right {
    display: none;
  }
}

@media (max-width: 479.98px) {
  .camping__right {
    height: 100%;
  }
}

.camping__right img {
  width: 100%;
  max-height: 580px;
}

@media (max-width: 479.98px) {
  .camping__right img {
    height: 100%;
  }
}

@media (max-width: 991.98px) {
  .camping__right img {
    height: 430px;
  }
}

@media (max-width: 479.98px) {
  .camping__right img {
    height: 100%;
    max-height: 100%;
  }
}

.camping__mob {
  display: none;
}

@media (max-width: 479.98px) {
  .camping__mob {
    display: block;
    margin-top: 50px;
  }
}

.camping__mob img {
  width: 100%;
  height: 320px;
}

@media (max-width: 479.98px) {
  .camping__mob img {
    height: 100%;
    max-height: 100%;
  }
}

@media (max-width: 991.98px) {
  .camping__img-pc {
    display: none;
  }
}

.camping__img-tablet {
  display: none;
}

@media (max-width: 991.98px) {
  .camping__img-tablet {
    display: block;
  }
}

.gallery {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 767.98px) {
  .gallery {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.gallery__top {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 767.98px) {
  .gallery__top {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .gallery__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

@media (max-width: 767.98px) {
  .gallery__title {
    margin-bottom: 40px;
  }
}

.gallery__block {
  margin: 0 auto;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
}

.gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 0;
  border-radius: 20px;
}

.gallery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (max-width: 767.98px) {
  .gallery__item {
    display: none;
    gap: 0;
  }
}

.gallery__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 20px);
          flex: 0 1 calc(33.333% - 20px);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.gallery__card img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
}

@media (max-width: 1170px) {
  .gallery__card img {
    height: 100%;
  }
}

.gallery__card:hover {
  opacity: 0.8;
}

@media (max-width: 767.98px) {
  .gallery__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media (max-width: 479.98px) {
  .gallery__card {
    padding: 0px 8px;
  }
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #273750b4;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: -1;
  z-index: 442;
}

.popup.open {
  z-index: 442;
  opacity: 1;
  visibility: visible;
}

.popup__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: 30px 10px 30px 10px;
}

@media (max-width: 479.98px) {
  .popup__body {
    padding: 10px 0px;
  }
}

.popup-gallery {
  position: relative;
  max-width: 1440px;
  max-height: 765px;
}

.popup-gallery__image {
  padding-bottom: 30px;
  width: 100%;
  height: 100%;
}

.popup-gallery__image img {
  /*width: 1140px;*/
  height: 775px;
  border-radius: 20px;
}

@media (max-width: 1170px) {
  .popup-gallery__image img {
    width: 100%;
    height: 100%;
  }
}

.popup-gallery__error {
  font-size: 12px;
  color: #589aff;
  margin-bottom: 10px;
  display: none;
}

.popup-gallery__title {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
}

.popup-gallery__subtitle {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 30px;
}

.popup-gallery__btn {
  margin-bottom: 20px;
  width: 100%;
}

.popup-gallery__copy {
  text-align: center;
  font-size: 12px;
}

.popup-gallery__copy a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.popup-gallery__input {
  margin-bottom: 20px;
  background-color: #f2f6fa;
}

.popup-gallery__input input {
  background-color: #f2f6fa;
}

.popup-gallery__name {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 30px;
}

.popup-gallery__thanks {
  text-align: center;
  display: none;
}

.popup-gallery__thanks_ver {
  display: block;
}

.close-popup {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.close-popup:hover {
  opacity: 0.8;
}

.contacts {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .contacts {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contacts__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .contacts__title {
    margin-bottom: 40px;
  }
}

.contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}

@media (max-width: 991.98px) {
  .contacts__body {
    display: block;
  }
}

.contacts__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

@media (max-width: 991.98px) {
  .contacts__left {
    margin-bottom: 70px;
  }
}

.contacts__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}

.contacts__item:not(:last-child) {
  margin-bottom: 55px;
}

@media (max-width: 767.98px) {
  .contacts__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.contacts__name {
  font-size: 20px;
  line-height: 150%;
  color: #589aff;
  font-family: 'OnestMedium';
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contacts__value {
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

.contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contacts__text {
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 110px;
}

@media (max-width: 767.98px) {
  .contacts__socials {
    margin-bottom: 20px;
  }
}

.contacts__social {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contacts__social:hover {
  opacity: 0.8;
}

.contacts__button_first {
  margin-bottom: 20px;
}

.map {
  overflow: hidden;
}

.apartment {
  padding-top: 160px;
  padding-bottom: 150px;
}

.apartment__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991.98px) {
  .apartment__body {
    gap: 50px;
  }
}

@media (max-width: 767.98px) {
  .apartment__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.apartment__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.apartment__big {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  cursor: pointer;
}

.apartment__big img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .apartment__big img {
    min-height: 430px;
  }
  .apartment__big2 img {

  }
  
}

@media (max-width: 767.98px) {
  .apartment__big img {
    min-height: 100%;
  }
  .apartment__big2 img {

  }
}

.apartment__big:hover {
  opacity: 0.9;
}

.apartment__smalls {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 767.98px) {
  .apartment__smalls {
    margin-top: 20px;
    gap: 15px;
  }
}

.apartment__small {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  position: relative;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  cursor: pointer;
}

.apartment__small:hover {
  opacity: 0.9;
}

.apartment__small img {
  width: 100%;
  border-radius: 20px;
}

.apartment__small::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../img/icons/loop.svg");
}

@media (max-width: 767.98px) {
  .apartment__small::after {
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}

.apartment__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.apartment__title {
  font-size: 30px;
  line-height: 131%;
  color: #575757;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .apartment__title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

.apartment__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 131%;
  font-family: 'OnestMedium';
  color: #589aff;
  margin-bottom: 44px;
}

@media (max-width: 767.98px) {
  .apartment__price {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.apartment__wallet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.apartment__wallet img {
  margin-right: 10px;
}

.apartment__paragraphs {
  font-size: 16px;
  line-height: 150%;
  color: #575757;
  margin-bottom: 120px;
}

@media (max-width: 991.98px) {
  .apartment__paragraphs {
    margin-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .apartment__paragraphs {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.apartment__paragraph:not(:last-child) {
  margin-bottom: 20px;
}

.apartament-camping__title {
  margin-bottom: 30px;
}

.apartament-camping .apartment__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 767.98px) {
  .apartament-camping .apartment__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.apartament-camping .apartment__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.apartament-camping .apartment__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.apartament-camping .apartment__paragraphs {
  margin-bottom: 50px;
}

.apartament-camping__name {
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 30px;
}

.price {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #f5f9ff;
}

@media (max-width: 767.98px) {
  .price {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.price__container {
  width: 100%;
}

.price__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .price__title {
    margin-bottom: 40px;
  }
}

.price__content {
  width: 100%;
  overflow-x: auto;
}

.price__table {

  border-radius: 20px;
  border-spacing: 0;
  padding-bottom: 10px;
}

@media (max-width: 479.98px) {
  .price__table {

  }
}

.price__row:first-child {
  background: -webkit-gradient(linear, left top, left bottom, from(#88b7ff), to(#63a1ff));
  background: linear-gradient(180deg, #88b7ff 0%, #63a1ff 100%);
  border-spacing: 0;
}

.price__head {
  padding: 10px 10px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #589aff;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #f5f9ff;
  font-family: 'OnestRegular';
  text-align: center;
}

@media (max-width: 479.98px) {
  .price__head {
    font-size: 10px;
    text-align: left;
  }
}

.price__head_1 {
  font-weight: 400;
  font-family: 'OnestRegular';
  font-size: 20px;
  color: #f5f9ff;
  padding: 25px 30px;
  border-radius: 20px 0px 0px 0px;
  width: 35%;
  text-align: center;
}

@media (max-width: 479.98px) {
  .price__head_1 {
    font-size: 10px;
  }
}

.price__head_5 {
  border-radius: 0px 20px 0px 0px;
}

.price__body {
  padding: 10px 10px;
  border-width: 0 1px 1px 0;
  border-color: #589aff;
  border-style: solid;
  text-align: center;
}

@media (max-width: 479.98px) {
  .price__body {
    font-size: 10px;
  }
}

.price__body_1 {

  width: 35%;
  text-align: left;

  line-height: 131%;

  border-width: 0px 1px 1px 1px;
}

@media (max-width: 479.98px) {
  .price__body_1 {
    font-size: 10px;
  }
}

.price__body_2 {
  border-radius: 0px 0px 0px 20px;
}

.price__body_3 {
  border-radius: 0px 0px 20px 0;
}

.price__note {
  margin-top: 40px;
  font-size: 16px;
  line-height: 150%;
  color: #575757;
}

@media (max-width: 479.98px) {
  .price__note {
    max-width: 180px;
    font-size: 12px;
  }
}

.list {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 767.98px) {
  .list {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.list__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: auto auto auto;
      grid-template-rows: auto auto auto;
  gap: 25px;
}

@media (max-width: 991.98px) {
  .list__container {
    -ms-grid-columns: (auto)[1];
        grid-template-columns: repeat(1, auto);
  }
}

.list__column:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 4 / 2;
}

@media (max-width: 991.98px) {
  .list__column:nth-child(1) {
    grid-area: auto;
  }
}

.list__column:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 3 / 3;
}

@media (max-width: 991.98px) {
  .list__column:nth-child(2) {
    grid-area: auto;
  }
}

.list__column:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 3 / 2 / 4 / 3;
}

@media (max-width: 991.98px) {
  .list__column:nth-child(3) {
    grid-area: auto;
  }
}

@media (max-width: 991.98px) {
  .list__column {
    grid-area: auto;
  }
}

._column-list {
  border-radius: 20px;
  background-color: #f5f9ff;
  padding: 40px;
}

@media (max-width: 767.98px) {
  ._column-list {
    padding: 40px 20px;
  }
}

._title-list {
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 130%;
}

@media (max-width: 767.98px) {
  ._title-list {
    font-size: 23px;
  }
}

._item-list {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  line-height: 150%;
  color-scheme: #575757;
}

._item-list:not(:last-child) {
  margin-bottom: 15px;
}

._item-list::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#88b7ff), to(#63a1ff));
  background: linear-gradient(180deg, #88b7ff 0%, #63a1ff 100%);
  border-radius: 30px;
  left: 0;
  top: 0;
}

@media (max-width: 767.98px) {
  ._item-list::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 767.98px) {
  ._item-list {
    font-size: 12px;
  }
}

.food {
  background-color: #f5f9ff;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 767.98px) {
  .food {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.food__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 100px;
}

@media (max-width: 991.98px) {
  .food__body {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .food__body {
    margin-bottom: 50px;
  }
}

.food__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

@media (max-width: 991.98px) {
  .food__left {
    margin-bottom: 40px;
  }
}

.food__title {
  margin-bottom: 30px;
}

.food__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  max-width: 435px;
}

.food__text p:not(:last-child) {
  margin-bottom: 20px;
}

.food__text p span {
  font-family: 'OnestMedium';
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .food__text {
    font-size: 14px;
  }
}

.food__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.food__right img {
  width: 100%;
}

@media (max-width: 767.98px) {
  .food__right {
    display: none;
  }
}

.food__mob {
  display: none;
}

@media (max-width: 767.98px) {
  .food__mob {
    display: block;
    margin-bottom: 50px;
  }
  .food__mob img {
    width: 100%;
  }
}

.food .cost {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0px 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 175px;
}

@media (max-width: 991.98px) {
  .food .cost {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.howtoget {
  padding-top: 160px;
  padding-bottom: 150px;
}

@media (max-width: 767.98px) {
  .howtoget {
    padding-bottom: 100px;
  }
}

.howtoget__breadgrumbs {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .howtoget__breadgrumbs {
    margin-bottom: 40px;
  }
}

.howtoget__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}

@media (max-width: 991.98px) {
  .howtoget__container {
    display: block;
  }
}

.howtoget__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

@media (max-width: 991.98px) {
  .howtoget__left {
    margin-bottom: 70px;
  }
}

.howtoget__title {
  margin-bottom: 40px;
}

.howtoget__item {
  margin-bottom: 30px;
}

.howtoget__name {
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.howtoget__name span {
  color: #589aff;
}

@media (max-width: 767.98px) {
  .howtoget__name {
    font-size: 18px;
  }
}

.howtoget__text {
  font-size: 16px;
  line-height: 150%;
  padding-left: 30px;
  position: relative;
}

.howtoget__text a {
  color: #589aff;
}

.howtoget__text::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#88b7ff), to(#63a1ff));
  background: linear-gradient(180deg, #88b7ff 0%, #63a1ff 100%);
  border-radius: 30px;
  left: 0;
  top: 0;
}

@media (max-width: 767.98px) {
  .howtoget__text::before {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 767.98px) {
  .howtoget__text {
    font-size: 14px;
  }
}

.booking {
  padding-top: 110px;
  padding-bottom: 50px;
}

@media (max-width: 767.98px) {
  .booking {
    padding-bottom: 100px;
  }
}

.booking__breadgrumbs {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .booking__breadgrumbs {
    margin-bottom: 40px;
  }
}

.booking__title {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .booking__title {
    font-size: 23px;
    margin-bottom: 20px;
  }
}

.booking__title3 {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .booking__title3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.booking__body {
  padding: 70px;
  background-color: #f5f9ff;
  border-radius: 20px;
}

@media (max-width: 767.98px) {
  .booking__body {
    padding: 30px 15px;
  }
}

.booking__heading {
  font-size: 30px;
  line-height: 131%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .booking__heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 991.98px) {
  .form__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__buttons {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991.98px) {
  .form__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 390px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}

@media (max-width: 767.98px) {
  .form__inputs {
    width: 100%;
  }
}

.form__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 30px);
          flex: 0 1 calc(50% - 30px);
}

.form__label_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.form__name {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 130%;
}

.form__name span {
  font-size: 14px;
}

@media (max-width: 767.98px) {
  .form__name {
    font-size: 14px;
  }
}

.form__select {
  cursor: pointer;
  width: 390px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  position: relative;
}

.form__select::-ms-expand {
  display: none;
}

@media (max-width: 767.98px) {
  .form__select {
    width: 100%;
  }
}

.form__date {
  cursor: pointer;
  width: 390px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  position: relative;
}

.form__date::-ms-expand {
  display: none;
}

@media (max-width: 767.98px) {
  .form__date {
    width: 100%;
  }
}

.form__inputtext input {
  width: 340px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
}

.form__inputtext2 input {
  width: 340px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .form__inputtext input {
    width: 100%;
  }
}

select::-ms-expand {
  display: none;
}

.select {
  position: relative;
  width: 390px;
  height: 70px;
}

.select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 3px solid #589aff;
  border-right: 3px solid #589aff;
  margin-right: 14px;
  -webkit-transform: rotate(135deg) translate(-50%);
          transform: rotate(135deg) translate(-50%);
}

@media (max-width: 767.98px) {
  .select {
    width: 100%;
  }
}

input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0;
}

input[type='date'] {
  position: relative;
}

input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
}

input[type='date']::-webkit-inner-spin-button,
input[type='date']::-webkit-clear-button {
  z-index: -10;
}

input[type='date']::-webkit-input-placeholder {
  z-index: 99;
}

input[type='date']:placeholder {
  z-index: 99;
}

/*input[type='date']:not(.has-value):before {*/
/*  content: attr(placeholder);*/
/*  width: 100%;*/
/*}*/

input[type='date']:not(:valid):before {
  content: attr(placeholder);
  width: 100%;
}

.has-value {
  cursor: pointer;
  width: 390px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
}

@media (max-width: 767.98px) {
  .has-value {
    width: 100%;
  }
}

.date {
  width: 390px;
  height: 70px;
  position: relative;
}

.date::before {
  content: '';
  position: absolute;
  background-image: url("../img/icons/calendar.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767.98px) {
  .date {
    width: 100%;
  }
}

input[type='date'] {
  cursor: pointer;
  width: 390px;
  height: 70px;
  border: 1px solid #589aff;
  border-radius: 10px;
  background-color: inherit;
  font-size: 15px;
  color: #575757;
  padding-left: 28px;
}

@media (max-width: 767.98px) {
  input[type='date'] {
    width: 100%;
  }
}
