/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:visited {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

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

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

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}

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

button, input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  min-height: 100vh;
  /* sticky footer */
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* sticky footer */
  display: flex;
  /* sticky footer */
  flex-direction: column;
  /* sticky footer */
  font-family: 'Inter', sans-serif;
  color: #757575;
  font-size: 16px;
  line-height: 1.6875;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body > * {
  flex-shrink: 0;
  /* sticky footer */
}

/* Grid styles */
.container {
  max-width: 1240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}
.container--fluid {
  max-width: unset;
}
.container--no-padding {
  padding: 0;
}
@media (max-width: 1199px) {
  .container {
    width: 900px;
  }
}
@media (max-width: 899px) {
  .container {
    width: 600px;
  }
}
@media (max-width: 599px) {
  .container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Utility */
.none {
  display: none !important;
}

.visually-hidden {
  opacity: 0;
  visibility: hidden;
  width: 0px;
  height: 0px;
  display: block;
  margin-left: -10000px;
  background: transparent;
  font-size: 0;
}

/* Sticky Footer */
.footer {
  margin-top: auto;
  /* sticky footer */
}

.header {
  position: relative;
  color: #FFF;
  /* Mobile XS*/
}

.header__img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  border-radius: 9px;
  /* Mobile XS*/
}
.header__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 530px;
  object-fit: cover;
}
@media (max-width: 599px) {
  .header__img {
    height: 250px;
  }
}

.header__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(77.29% 77.29% at 28.75% 82%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.header__content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .header__content {
    left: 15px;
  }
}

.header__hotel {
  margin-bottom: 10px;
  /* Mobile XS*/
}
.header__hotel p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .header__hotel p {
    font-size: 19px;
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .header__hotel {
    margin-bottom: 5px;
  }
}

.header__hotel-adress {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: #f5f5f5;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .header__hotel-adress {
    font-size: 12px;
  }
}

.header__wrapper {
  position: relative;
}

.header__button,
.header__button-anchor {
  position: absolute;
  right: 45px;
  bottom: -30px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .header__button,
  .header__button-anchor {
    bottom: -35px;
    right: 50%;
    transform: translateX(50%);
  }
}

.header__button-anchor a {
  display: flex;
  justify-content: center;
}



.about__wrapper {
  display: flex;
  /* Mobile */
}
@media (max-width: 899px) {
  .about__wrapper {
    flex-direction: column;
  }
}

.about__left-text {
  padding: 45px;
  margin-bottom: 20px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07);
  border-radius: 9px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .about__left-text {
    padding-top: 20px;
    padding-bottom: 35px;
  }
}
@media (max-width: 899px) {
  .about__left-text {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}

.about__left-title {
  margin-bottom: 25px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .about__left-title {
    margin-bottom: 20px;
  }
}

.about__left-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  /* Tablet */
  /* Mobile XS*/
  color: #525252;
}
.about__left-desc p {
  margin-bottom: 25px;
  /* Mobile */
}
.about__left-desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 899px) {
  .about__left-desc p {
    margin-bottom: 15px;
  }
}
@media (max-width: 1199px) {
  .about__left-desc {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .about__left-desc {
    font-size: 12px;
  }
  .dopmesto {
    font-size: 12px;
}
}

.about__left-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 312px;
  border-radius: 9px;
  /* Mobile */
}
.about__left-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 312px;
  object-fit: cover;
  /* Mobile */
}
@media (max-width: 899px) {
  .about__left-img img {
    height: 200px;
  }
}
@media (max-width: 899px) {
  .about__left-img {
    height: 200px;
    margin-bottom: 10px;
  }
}


.about__right-top {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 326px;
  height: 282px;
  border-radius: 9px;
  /* Mobile */
  /* Mobile XS*/
}
.about__right-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 326px;
  height: 282px;
  object-fit: cover;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .about__right-top img {
    width: 315px;
    height: 200px;
  }
}
@media (max-width: 599px) {
  .about__right-top img {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 899px) {
  .about__right-top {
    width: 315px;
    height: 200px;
    margin-bottom: 0;
  }
}
@media (max-width: 599px) {
  .about__right-top {
    width: 200px;
    height: 200px;
    margin-bottom: 0;
  }
}

.about__right-btm {
  position: relative;
  overflow: hidden;
  width: 326px;
  height: 418px;
  border-radius: 9px;
  /* Mobile */
  /* Mobile XS*/
}
.about__right-btm img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 326px;
  height: 418px;
  object-fit: cover;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .about__right-btm img {
    width: 250px;
    height: 200px;
  }
}
@media (max-width: 599px) {
  .about__right-btm img {
    width: 120px;
    height: 200px;
  }
}
@media (max-width: 899px) {
  .about__right-btm {
    width: 250px;
    height: 200px;
  }
}
@media (max-width: 599px) {
  .about__right-btm {
    width: 120px;
    height: 200px;
  }
}

.about-blog {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .about-blog {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.about-blog__wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 45px;
  padding-right: 40px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07);
  border-radius: 9px;
  /* Mobile */
}
@media (max-width: 899px) {
  .about-blog__wrapper {
    padding: calc(20px + 23 * ((100vw - 375px) / 1530));
  }
}

.about-blog__title {
  margin-bottom: 25px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .about-blog__title {
    margin-bottom: 20px;
  }
}

.about-blog__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #525252;
  /* Mobile */
  /* Mobile XS*/
}
.about-blog__text p {
  margin-bottom: 25px;
  /* Mobile XS*/
}
.about-blog__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  .about-blog__text p {
    margin-bottom: 15px;
  }
}
@media (max-width: 899px) {
  .about-blog__text {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .about-blog__text {
    font-size: 14px;
  }
}

.rooms {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.rooms__title {
  margin-bottom: 40px;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .rooms__title {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .rooms__title {
    text-align: left;
    margin-bottom: 30px;
  }
}

.rooms__row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rooms__row-4 {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    justify-items: center;
  }
}
@media (max-width: 899px) {
  .rooms__row-4 {
    grid-template-columns: 1fr;
  }
}

.rooms__row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rooms__row-3 {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    justify-items: center;
  }
}
@media (max-width: 899px) {
  .rooms__row-3 {
    grid-template-columns: 1fr;
  }
}

.rooms__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rooms__row-2 {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    justify-items: center;
  }
}
@media (max-width: 899px) {
  .rooms__row-2 {
    grid-template-columns: 1fr;
  }
}

.rooms__row-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 20px;
}

.rooms__row-card-price {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #989898;
}
.rooms__row-card-price span {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #434343;
}

.rooms__row-4-card {
  display: flex;
  flex-direction: column;
  width: 290px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.12);
  border-radius: 11px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms__row-4-card {
    width: 100%;
  }
}

.rooms__row-4-card-img {
  position: relative;
  overflow: hidden;
  width: 290px;
  height: 204px;
  border-radius: 11px 11px 0 0;
  /* Mobile XS*/
}
.rooms__row-4-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms__row-4-card-img img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .rooms__row-4-card-img {
    width: 100%;
  }
}

.rooms__row-4-card-img a img {
  transition: all 0.5s;
}
.rooms__row-4-card-img a img:hover {
  opacity: 0.7;
}

.rooms__row-4-card-desc {
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 30px;
}

.rooms__row-4-card-text {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #555555;
}
.rooms__row-4-card-text a {
  transition: all 0.5s;
}
.rooms__row-4-card-text a:hover {
  color: #2D9CDB;
}

.rooms__row-3-card {
  display: flex;
  flex-direction: column;
  width: 385px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.12);
  border-radius: 11px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms__row-3-card {
    width: 100%;
  }
}

.rooms__row-3-card-img {
  position: relative;
  overflow: hidden;
  width: 385px;
  height: 214px;
  border-radius: 11px 11px 0 0;
  /* Mobile XS*/
}
.rooms__row-3-card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 385px;
  object-fit: cover;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms__row-3-card-img img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .rooms__row-3-card-img {
    width: 100%;
  }
}

.rooms__row-3-card-img a img {
  transition: all 0.5s;
}
.rooms__row-3-card-img a img:hover {
  opacity: 0.7;
}

.rooms__row-3-card-desc {
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 40px;
  padding-right: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rooms__row-3-card-desc {
    padding-bottom: 20px;
  }
}

.rooms__row-3-card-text {
  margin-bottom: 45px;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.1;
  color: #555555;
  /* Mobile XS*/
}
.rooms__row-3-card-text a {
  transition: all 0.5s;
}
.rooms__row-3-card-text a:hover {
  color: #2D9CDB;
}
@media (max-width: 599px) {
  .rooms__row-3-card-text {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.rooms__row-2-card {
  display: flex;
  flex-direction: row-reverse;
  width: 595px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  /* Mobile */
}
@media (max-width: 899px) {
  .rooms__row-2-card {
    flex-direction: column;
    width: 100%;
  }
}

.rooms__row-2-card-img {
  position: relative;
  overflow: hidden;
  width: 308px;
  height: 352px;
  border-radius: 0 18px 18px 0;
  /* Mobile */
}
.rooms__row-2-card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 308px;
  height: 352px;
  object-fit: cover;
  /* Mobile */
}
@media (max-width: 899px) {
  .rooms__row-2-card-img img {
    width: 100%;
    height: 214px;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 899px) {
  .rooms__row-2-card-img {
    width: 100%;
    height: 214px;
    border-radius: 18px 18px 0 0;
  }
}

.rooms__row-2-card-img a img {
  transition: all 0.5s;
}
.rooms__row-2-card-img a img:hover {
  opacity: 0.7;
}

.rooms__row-2-card-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 40px;
  padding-left: 30px;
  padding-bottom: 35px;
  padding-right: 30px;
  /* Mobile */
}
@media (max-width: 899px) {
  .rooms__row-2-card-desc {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 25px;
    padding-right: 40px;
  }
}

.rooms__row-2-card-text {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.1;
  color: #555555;
  width: 230px;
  /* Mobile */
}
.rooms__row-2-card-text a {
  transition: all 0.5s;
}
.rooms__row-2-card-text a:hover {
  color: #2D9CDB;
}
@media (max-width: 899px) {
  .rooms__row-2-card-text {
    font-size: 18px;
    width: auto;
    margin-bottom: 30px;
  }
}
.rooms__row-1-card:first-child {
    margin-top: 0px;
}
.rooms__row-1-card {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 415px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  margin-top: 40px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rooms__row-1-card {
    justify-content: space-between;
  }
}
@media (max-width: 899px) {
  .rooms__row-1-card {
    flex-direction: column;
    width: 100%;
  }
}

.rooms__row-1-card-img {
  position: relative;
  overflow: hidden;
  width: 800px;
  height: 415px;
  border-radius: 0 18px 18px 0;
  /* Tablet */
  /* Mobile */
}
.rooms__row-1-card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 415px;
  object-fit: cover;
  /* Mobile */
}
@media (max-width: 899px) {
  .rooms__row-1-card-img img {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 1199px) {
  .rooms__row-1-card-img {
    width: 480px;
  }
}
@media (max-width: 899px) {
  .rooms__row-1-card-img {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
}

.rooms__row-1-card-img a img {
  transition: all 0.5s;
}
.rooms__row-1-card-img a img:hover {
  opacity: 0.7;
}

.rooms__row-1-card-desc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 50px;
  padding-left: 45px;
  padding-bottom: 60px;
  padding-right: 80px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rooms__row-1-card-desc {
    padding-left: 25px;
    padding-right: 20px;
  }
}
@media (max-width: 899px) {
  .rooms__row-1-card-desc {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 25px;
    padding-right: 40px;
  }
}

.rooms__row-1-card-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: #555555;
  width: 290px;
  /* Mobile */
}
.rooms__row-1-card-text a {
  transition: all 0.5s;
}
.rooms__row-1-card-text a:hover {
  color: #2D9CDB;
}
@media (max-width: 899px) {
  .rooms__row-1-card-text {
    font-size: 18px;
    width: auto;
    margin-bottom: 30px;
  }
}

.rest {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rest {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.rest__title {
  margin-bottom: 50px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rest__title {
    margin-bottom: 20px;
  }
}

.rest__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .rest__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 899px) {
  .rest__row {
    display: flex;
    flex-direction: column;
  }
}

.rest__card {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 25px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  /* Mobile XS*/
}
.rest__card-comment {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: 8px;
}
@media (max-width: 599px) {
  .rest__card {
    padding: calc(20px + 23 * ((100vw - 375px) / 1530));
  }
}

.rest__card-row {
  display: flex;
  align-items: center;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rest__card-row {
    justify-content: flex-start;
  }
}

.rest__card-img {
  margin-right: 25px;
  overflow: hidden;
  /* Mobile XS*/
}
.rest__card-img img {
  width: 60px;
  height: 60px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rest__card-img img {
    margin-right: 20px;
    width: 40px;
    height: 40px;

  }
}
@media (max-width: 599px) {
  .rest__card-img {
    width: 50px;
    height: 50px;
	flex: 0 0 auto;
  }
}

.rest__card-text {
  width: 190px;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  color: #434343;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .rest__card-text {
    font-size: 17px;
    width: auto;
  }
}

.gallery {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .gallery {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.gallery__title {
  margin-bottom: 40px;
  width: 900px;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .gallery__title {
    width: auto;
  }
}
@media (max-width: 599px) {
  .gallery__title {
    margin-bottom: 20px;
  }
}

.gallery__row {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .gallery__row {
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .gallery__row {
    margin-bottom: 10px;
  }
}

.gallery__item-1,
.gallery__item-4 {
  position: relative;
  overflow: hidden;
  width: 800px;
  height: 383px;
  border-radius: 12px;
  /* Tablet */
  /* Mobile XS*/
}
.gallery__item-1 img,
.gallery__item-4 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 383px;
  object-fit: cover;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .gallery__item-1 img,
  .gallery__item-4 img {
    width: 750px;
    height: 333px;
  }
}
@media (max-width: 599px) {
  .gallery__item-1 img,
  .gallery__item-4 img {
    width: 150px;
    height: 180px;
  }
}
@media (max-width: 1199px) {
  .gallery__item-1,
  .gallery__item-4 {
    width: 750px;
    height: 333px;
  }
}
@media (max-width: 599px) {
  .gallery__item-1,
  .gallery__item-4 {
    width: 150px;
    height: 180px;
  }
}

.gallery__item-1 {
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .gallery__item-1 {
    margin-right: 20px;
  }
}
@media (max-width: 599px) {
  .gallery__item-1 {
    margin-right: 10px;
  }
}

.gallery__item-4 {
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .gallery__item-4 {
    margin-left: 20px;
  }
}
@media (max-width: 599px) {
  .gallery__item-4 {
    margin-left: 10px;
  }
}

.gallery__item-2,
.gallery__item-3 {
  position: relative;
  overflow: hidden;
  width: 390px;
  height: 383px;
  border-radius: 12px;
  /* Tablet */
  /* Mobile XS*/
}
.gallery__item-2 img,
.gallery__item-3 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 390px;
  height: 383px;
  object-fit: cover;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .gallery__item-2 img,
  .gallery__item-3 img {
    width: 340px;
    height: 333px;
  }
}
@media (max-width: 599px) {
  .gallery__item-2 img,
  .gallery__item-3 img {
    width: 215px;
    height: 180px;
  }
}
@media (max-width: 1199px) {
  .gallery__item-2,
  .gallery__item-3 {
    width: 340px;
    height: 333px;
  }
}
@media (max-width: 599px) {
  .gallery__item-2,
  .gallery__item-3 {
    width: 215px;
    height: 180px;
  }
}

.gallery__button {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.video {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .video {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.video__title {
  margin-bottom: 45px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .video__title {
    margin-bottom: 20px;
  }
}

.video__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Mobile */
}
@media (max-width: 899px) {
  .video__row {
    flex-direction: column;
  }
}

.video__desc {
  width: 500px;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .video__desc {
    width: 450px;
  }
}
@media (max-width: 599px) {
  .video__desc {
    width: auto;
  }
}

.video__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #525252;
  /* Tablet */
  /* Mobile XS*/
}
.video__text p {
  margin-bottom: 10px;
}
.video__text p:last-child {
  margin-bottom: 0;
  /* Mobile */
}
@media (max-width: 899px) {
  .video__text p:last-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .video__text {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .video__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.video__pleer {
  width: 400px;
  /* Mobile */
}
@media (max-width: 899px) {
  .video__pleer {
    width: auto;
  }
}

.video-h2 {
  font-weight: 500;
  font-size: 102px;
  line-height: 1.1;
  color: #434343;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .video-h2 {
    font-size: 56px;
  }
}
@media (max-width: 599px) {
  .video-h2 {
    font-size: 26px;
  }
}

.how {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .how {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.how__row {
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 80px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  /* Mobile */
}
@media (max-width: 899px) {
  .how__row {
    flex-direction: column-reverse;
  }
}

.how__row-reverse {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 80px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  /* Mobile */
}
@media (max-width: 899px) {
  .how__row-reverse {
    flex-direction: column;
  }
}

.how__text {
  padding-top: 45px;
  padding-left: 45px;
  padding-bottom: 45px;
  width: 600px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .how__text {
    padding-left: 25px;
    width: 400px;
  }
}
@media (max-width: 899px) {
  .how__text {
    padding: calc(20px + 23 * ((100vw - 375px) / 1530));
    width: auto;
  }
}

.how__text-reverse {
  padding-top: 45px;
  padding-bottom: 45px;
  padding-right: 45px;
  width: 600px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .how__text-reverse {
    width: 400px;
    padding-right: 25px;
  }
}
@media (max-width: 899px) {
  .how__text-reverse {
    padding: calc(20px + 23 * ((100vw - 375px) / 1530));
    width: auto;
  }
}

.how__title {
  margin-bottom: 25px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .how__title {
    margin-bottom: 20px;
  }
}

.how__desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #525252;
  /* Tablet */
  /* Mobile XS*/
}
.how__desc p {
  margin-bottom: 25px;
  /* Mobile */
}
.how__desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 899px) {
  .how__desc p {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .how__desc {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  .how__desc {
    font-size: 14px;
  }
}

.how__img {
  position: relative;
  overflow: hidden;
  width: 490px;
  border-radius: 0 16px 16px 0;
  /* Tablet */
  /* Mobile */
}
.how__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 490px;
  height: 100%;
  object-fit: cover;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .how__img img {
    width: 450px;
  }
}
@media (max-width: 899px) {
  .how__img img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .how__img {
    width: 450px;
  }
}
@media (max-width: 899px) {
  .how__img {
    width: auto;
    height: 200px;
    border-radius: 12px 12px 0px 0px;
  }
}

.how__img-reverse {
  position: relative;
  overflow: hidden;
  width: 490px;
  border-radius: 16px 0 0 16px;
  /* Tablet */
  /* Mobile */
}
.how__img-reverse img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 490px;
  height: 100%;
  object-fit: cover;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .how__img-reverse img {
    width: 450px;
  }
}
@media (max-width: 899px) {
  .how__img-reverse img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .how__img-reverse {
    width: 450px;
  }
}
@media (max-width: 899px) {
  .how__img-reverse {
    width: auto;
    height: 200px;
    border-radius: 0 0 12px 12px;
  }
}

.reviews {
  padding-top: 40px;
  padding-bottom: 40px;
}

.reviews__title {
  margin-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__title {
    margin-bottom: 20px;
  }
  .reviews {
    padding-top: 20px;
    padding-bottom: 20px;
}
}

.reviews__row {
  margin-bottom: 40px;
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .reviews__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 899px) {
  .reviews__row {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
  .reviews__row iframe {
    width: 100%!important;
  }
}
@media (max-width: 599px) {
  .reviews__row {
    margin-bottom: 30px;
  }
}

.reviews__card {
  padding-top: 30px;
  padding-left: 30px;
  padding-bottom: 35px;
  padding-right: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__card {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.reviews__card-content {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__card-content {
    margin-bottom: 25px;
  }
}
.reviews__google {
    color: #4285f4;
    font-weight: 500;
    margin-right: 5px;
    background: #fff;
    padding: 0px 7px;
    border-radius: 50%;
    font-size: 13px;
}
.reviews__yandex {
    color: #ff0303;
    font-weight: 500;
    margin-right: 5px;
    background: #fff;
    padding: 0px 7px;
    border-radius: 50%;
    font-size: 13px;
}
.reviews__other {
    color: #ff9900;
    font-weight: 500;
    margin-right: 5px;
    background: #fff;
    padding: 0px 6px;
    border-radius: 50%;
    font-size: 13px;
}
.reviews__figure {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #efefef;
    border-radius: 53px;
    width: fit-content;
  /* Mobile XS*/
}
.reviews__figure img {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
.reviews__figure p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #757575;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__figure p {
    font-size: 14px;
  }
}
@media (max-width: 599px) {
  .reviews__figure {
    margin-bottom: 20px;
  }
}

.reviews__text {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.25;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.button-reviews-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    color: #2F80ED;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .button-reviews-text {
    font-size: 14px;
  }
}

.reviews__user {
  display: flex;
  align-items: center;
}

.reviews__user-img {
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.reviews__user-img img {
  width: 42px;
  height: 42px;
}

.reviews__user-info {
  display: flex;
  flex-direction: column;
}

.reviews__user-name {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__user-name {
    font-size: 15px;
  }
}

.reviews__user-data {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .reviews__user-data {
    font-size: 12px;
  }
}

.reviews__button {
  display: flex;
  justify-content: center;
}

.address {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .address {
    padding-top: 17px;
    padding-bottom: 40px;
  }
}

.map {
  position: relative;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  div#YMapsID {
    height: 300px!important;
}
}

.map-xs {
  display: none;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .map-xs {
    display: block;
  }
}

.address__desc {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 45px;
  padding-right: 50px;
  width: 470px;
  border-radius: 20px 0 0 0;
  background: #FFFFFF;
  box-shadow: -13.3333px -14.2222px 53.3333px rgba(0, 0, 0, 0.08);
}

.address__title {
  margin-bottom: 15px;
}

.address__title--mobile {
  margin-bottom: 10px;
}

.address__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #5c5c5c;
}

.address__text--mobile {
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #5c5c5c;
  width: 330px;
}

.contacts {
  padding-top: 40px;
  padding-bottom: 40px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .contacts {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}

.contacts__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .contacts__row {
    flex-direction: column;
  }
}
@media (max-width: 599px) {
  .contacts__row {
    align-items: flex-start;
  }
}

.contacts__title {
  margin-right: 40px;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .contacts__title {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .contacts__title {
    margin-bottom: 15px;
  }
}

.contacts__social {
  display: flex;
  justify-content: space-between;
  /* Mobile */
}
.contacts__social a {
  margin-right: 10px;
}
.contacts__social a:last-child {
  margin-right: 0;
}
@media (max-width: 899px) {
  .contacts__social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 15px;
  }
}

.contacts__social-item {
  margin-right: 15px;
  display: flex;
  align-items: center;
  background: rgba(238, 238, 238, 0.32);
  backdrop-filter: blur(4.13296px);
  border-radius: 77px;
}
.contacts__social-item:hover {
    opacity: 0.7;
}
.contacts__social-item img {
  width: 48px;
  height: 48px;
}

.contacts__social-text {
  padding-right: 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
  color: #6D6D6D;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .contacts__social-text {
    font-size: 14px;
  }
}

.contacts__social-icon {
  margin-right: 10px;
}

.go-back {
  padding-top: 20px;
  /* Mobile */
}
@media (max-width: 899px) {
  .go-back {
    padding-top: 5px;
  }
}

.go-back__link {
  background: #2F80ED;
  border-radius: 9px;
  width: 155px;
  height: 35px;
  font-weight: 500;
  font-size: 16px;
  line-height: 35px;
  color: #FFFFFF;
  text-align: center;
  transition: all 0.5s;
}
.go-back__link:hover {
  background: #205ba7;
}

.inner {
  padding-top: 20px;
  padding-bottom: 40px;
}

.inner__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Mobile */
}
@media (max-width: 899px) {
  .inner__row {
    flex-direction: column;
    align-items: center;
  }
}

.inner__content {
  width: 800px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .inner__content {
    width: 550px;
  }
}
@media (max-width: 899px) {
  .inner__content {
    width: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .inner__content {
    width: 100%;
  }
}

.inner__title {
  margin-bottom: 40px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .inner__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 899px) {
  .inner__title {
    margin-bottom: 20px;
  }
}

.inner__slider {
  position: relative;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .inner__slider {
    width: 570px;
  }
}
@media (max-width: 599px) {
  .inner__slider {
    width: 340px;
  }
}

.inner__slider-item {
  cursor: pointer;
}

.inner__slider-item img {
  border-radius: 9px;
}

.slider-for {
  margin-right: -5px;
  margin-left: -5px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .slider-for {
    margin-right: -3px;
    margin-left: -3px;
  }
}

.slick-slide {
  padding-right: 5px;
  padding-left: 5px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .slick-slide {
    padding-right: 3px;
    padding-left: 3px;
  }
}

.sprite-next,
.sprite-prev {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  top: 35%;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .sprite-next,
  .sprite-prev {
    top: 30%;
  }
}

.sprite-prev {
  right: 15px;
  /* Mobile XS*/
}
.sprite-prev img {
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .sprite-prev img {
    width: 50px;
  }
}
@media (max-width: 599px) {
  .sprite-prev {
    right: 2px;
  }
}

.sprite-next {
  left: 15px;
  /* Mobile XS*/
}
.sprite-next img {
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .sprite-next img {
    width: 50px;
  }
}
@media (max-width: 599px) {
  .sprite-next {
    left: 2px;
  }
}

.inner__about {
  margin-bottom: 20px;
  padding-top: 25px;
  padding-left: 25px;
  padding-bottom: 35px;
  padding-right: 20px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 35.5556px rgba(0, 0, 0, 0.11);
  border-radius: 15px;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .inner__about {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 10px;
  }
}
@media (max-width: 599px) {
  .inner__about {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.inner__about-row-top {
  margin-bottom: 40px;
  /* Mobile */
}
.inner__about-row-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: unset;
}
.inner__about-row-top li {
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #2F80ED;
}
.inner__about-row-top li:last-child {
  margin-right: 0;
}
.inner__about-row-top li span {
  color: #333333;
  margin-left: 10px;
}
@media (max-width: 899px) {
  .inner__about-row-top {
    margin-bottom: 30px;
  }
}

.inner__about-content {
  display: flex;
  justify-content: space-between;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .inner__about-content {
    flex-direction: column;
  }
}
@media (max-width: 899px) {
  .inner__about-content {
    flex-direction: column;
  }
}

.inner__about-content-left {
  width: 355px;
  margin-right: 40px;
  /* Tablet */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .inner__about-content-left {
    width: auto;
  }
}
@media (max-width: 599px) {
  .inner__about-content-left {
    margin-right: 0;
  }
}

.inner__about-content-desc {
  margin-bottom: 40px;
}

.inner__about-content-title {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #4A4A4A;
}

.inner__about-content-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.25;
  color: #545454;
}

.inner__about-content-price {
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .inner__about-content-price {
    margin-bottom: 40px;
  }
}
@media (max-width: 899px) {
  .inner__about-content-price {
    margin-bottom: 40px;
  }
}

.inner__about-content-price-table {
  width: 100%;
}
.inner__about-content-price-table thead {
  text-align: left;
}
.inner__about-content-price-table thead tr {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #8D9399;
}
.inner__about-content-price-table tbody td {
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
  color: #545454;
  border-bottom: 1px solid #CACACA;
}
table.inner__about-content-price-table th {
    font-weight: 500;
    color: #8b8b8b;
    font-size: 16px;
}

.inner__about-content-right {
  width: 360px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .inner__about-content-right {
    width: auto;
  }
}

.inner__about-content-right-list thead {
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  /* identical to box height */
  color: #4A4A4A;
}
.inner__about-content-right-list li {
  margin-bottom: 20px;
  margin-right:10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #2F80ED;
  /* Mobile XS*/
}
.inner__about-content-right-list li span {
  color: #545454;
    font-weight: 400;
}
@media (max-width: 599px) {
  .inner__about-content-right-list li {
    font-size: 13px;
  }
}

.inner__rules {
  padding-top: 25px;
  padding-left: 25px;
  padding-bottom: 30px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 35.5556px rgba(0, 0, 0, 0.11);
  border-radius: 15px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .inner__rules {
    padding-left: 15px;
  }
}

.inner__rules-title {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #4A4A4A;
}

.inner__rules-table {
  margin-bottom: 40px;
  text-align: left;
  width: 100%;
  /* Mobile */
}
.inner__rules-table thead {
  margin-bottom: 10px;
}
.inner__rules-table thead tr th {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #8b8b8b;
}
.inner__rules-table tbody tr td {
  padding-top: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #545454;
}
@media (max-width: 899px) {
  .inner__rules-table {
    display: none;
  }
}

table.inner__rules-table--mobile {
  border-spacing: 45px 0;
  margin-left: -45px;
}

.inner__rules-table--mobile {
  display: none;
  margin-bottom: 20px;
  text-align: left;
  width: 100%;
  /* Mobile */
}
.inner__rules-table--mobile thead {
  margin-bottom: 10px;
}
.inner__rules-table--mobile thead tr th {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #6D6D6D;
}
.inner__rules-table--mobile tbody tr td {
  padding-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #5b5b5b;
}
@media (max-width: 899px) {
  .inner__rules-table--mobile {
    display: block;
  }
}

.inner__rules-list {
  padding-left: 20px;
}
.inner__rules-list ul {
  display: flex;
  flex-wrap: wrap;
  list-style: unset;
}
.inner__rules-list li {
  margin-right: 55px;
  margin-bottom: 15px;
  color: #2F80ED;
}
.inner__rules-list li span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: #6D6D6D;
}

.inner__rules-special {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
  display: inline-block;
  background: #FFE69A;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #6D6D6D;
}
.inner__rules-special span {
  font-weight: 500;
}

.sticky {
  position: sticky;
  top: 15px;
  width: 390px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .sticky {
    width: 300px;
  }
}
@media (max-width: 899px) {
  .sticky {
    width: 100%;
  }
}

.sticky__contacts {
  margin-bottom: 20px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 35.5556px rgba(0, 0, 0, 0.11);
  border-radius: 9px;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .sticky__contacts {
    padding: 20px;
  }
}
@media (max-width: 599px) {
  .sticky__contacts {
    padding-left: 15px;
  }
}

@media (max-width: 899px) {
  .sticky__contacts-row {
    margin-bottom: 30px;
  }
}

.sticky__contacts-name {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  color: #7D7D7D;
  /* Mobile */
}
.sticky__contacts-row:first-child {
    margin-top: 0px;
}
.sticky__contacts-row {
    margin-top: 30px;
}
@media (max-width: 899px) {
  .sticky__contacts-name {
    margin-bottom: 5px;
  }
}

.sticky__contacts-tel {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #5A5A5A;
  /* Tablet */
  /* Mobile */
}
.sticky__contacts-tel a:hover, .sticky__contacts-link a:hover {
    color: #2f80ed;
}
@media (max-width: 1199px) {
  .sticky__contacts-tel {
    font-size: 20px;
  }
}
@media (max-width: 899px) {
  .sticky__contacts-tel {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.sticky__contacts-social {
  display: flex;
}

.sticky__contacts-link {
  margin-right: 30px;
  /* Tablet */
  /* Mobile */
}
.sticky__contacts-link:last-child {
  margin-right: 0;
}
.sticky__contacts-link a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: #5A5A5A;
  /* Tablet */
  /* Mobile */
}
.sticky__contacts-link a img {
  margin-right: 10px;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .sticky__contacts-link a img {
    margin-right: 5px;
    width: 30px;
  }
}
@media (max-width: 899px) {
  .sticky__contacts-link a img {
    margin-right: 7px;
    width: 25px;
  }
}
@media (max-width: 1199px) {
  .sticky__contacts-link a {
    font-size: 15px;
  }
}
@media (max-width: 899px) {
  .sticky__contacts-link a {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .sticky__contacts-link {
    margin-right: 20px;
  }
}
@media (max-width: 899px) {
  .sticky__contacts-link {
    margin-right: 30px;
  }
}

.sticky__contacts-link a img {
  width: 20px;
  height: 20px;
}

.footer {
  padding-bottom: 40px;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__left {
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .footer__left {
    margin-bottom: 15px;
  }
}

.logo {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.1;
  color: #434343;
}

.footer__left-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.1;
  color: #808080;
}

.footer__right {
  color: #808080;
  text-align: right;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .footer__right {
    text-align: left;
  }
}

.booking,
.confidential {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
}
.booking a,
.confidential a {
  text-decoration-line: underline;
}

.booking {
  margin-bottom: 10px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .booking {
    margin-bottom: 5px;
  }
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .nav {
    display: none;
  }
}
@media (max-width: 599px) {
  .nav {
    display: none;
  }
}

.nav--inner {
  border-bottom: 2px solid #DDDDDD;
}

.nav__row {
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #5A5A5A;
}
.menu ul {
  display: flex;
}
.menu li {
  margin-right: 40px;
  transition: all 0.5s;
}
.menu li:last-child {
  margin-right: 0;
}
.menu li:hover {
  color: #000;
}

.tel {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  text-align: right;
  color: #5A5A5A;
}
.tel a {
  transition: all 0.5s;
}
.tel a:hover {
  color: #205ba7;
}

.nav-mobile {
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07);
  border-radius: 0px 0px 9px 9px;
  /* Mobile */
}
@media (max-width: 899px) {
  .nav-mobile {
    display: flex;
    margin-bottom: 15px;
  }
}

.nav-mobile__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mobile__social {
  display: flex;
  align-items: center;
}
.nav-mobile__social a {
  margin-right: 10px;
}
.nav-mobile__social a:last-child {
  margin-right: 0;
}

.nav-mobile__social-icon {
  width: 36px;
}

.nav-icon {
  cursor: pointer;
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

.menu-mobile--active {
  display: block;
  opacity: 1;
  z-index: 100;
}

.menu-mobile__wrapper {
  padding-top: 40px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-mobile__close {
  position: absolute;
  top: 30px;
  left: 20px;
}
.menu-mobile__close img {
  width: 30px;
}

.menu-mobile__top {
  margin-bottom: 90px;
  text-align: center;
}
.menu-mobile__top p {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.1;
  color: #898989;
}
.menu-mobile__top span {
  font-weight: 500;
  font-size: 35px;
  line-height: 1.1;
  color: #5A5A5A;
}

p.menu-mobile__adress {
  margin-top: 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #939393;
}

.menu-mobile__nav {
  margin-bottom: 150px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #5A5A5A;
}
.menu-mobile__nav ul {
  text-align: center;
}
.menu-mobile__nav ul li {
  margin-bottom: 50px;
}
.menu-mobile__nav ul li:last-child {
  margin-bottom: 0;
}

.menu-mobile__social a {
  margin-right: 10px;
}
.menu-mobile__social a:last-child {
  margin-right: 0;
}
.menu-mobile__social a img {
  width: 36px;
  height: 36px;
}

h1 {
  font-weight: 500;
  font-size: 50px;
  line-height: 1.1;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  h1 {
    font-size: 35px;
  }
}

h1.h1-inner {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  color: #434343;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  h1.h1-inner {
    font-size: 35px;
  }
}
@media (max-width: 899px) {
  h1.h1-inner {
    font-size: 25px;
  }
}

h2 {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.1;
  color: #434343;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  h2 {
    font-size: 26px;
  }
}

.button-blue,
.button-blue-div {
    background: #2F80ED;
    border-radius: 9px;
    width: 360px;
    height: 60px;
    font-weight: 500;
    font-size: 22px;
    line-height: 58px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    transition: all 0.5s;
  /* Mobile XS*/
}
.button-blue:hover,
.button-blue-div:hover {
  background: #205ba7;
}
@media (max-width: 599px) {
  .button-blue,
  .button-blue-div {
    width: 290px;
    height: 60px;
    font-size: 20px;
    line-height: 60px;
  }
}

.button-blue-div {
  display: flex;
  justify-content: center;
}

.button-blue--popup {
  background: #2F80ED;
  border-radius: 10px;
  width: 100%;
  height: 90px;
  font-weight: 500;
  font-size: 25px;
  line-height: 90px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  transition: all 0.5s;
  /* Mobile */
}
.button-blue--popup:hover {
  background: #205ba7;
}
@media (max-width: 899px) {
  .button-blue--popup {
    height: 75px;
    font-size: 20px;
    line-height: 75px;
  }
}

.button-blue--sticky__contacts,
.button-blue--sticky-form {
  background: #2F80ED;
  border-radius: 9px;
  width: 100%;
  height: 60px;
  font-weight: 500;
  font-size: 18px;
  line-height: 60px;
  color: #FFFFFF;
  transition: all 0.5s;
}
.button-blue--sticky__contacts:hover,
.button-blue--sticky-form:hover {
  background: #205ba7;
}

.popup-booking,
.popup-booking-inner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-booking-active {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.popup-booking__content {
  position: relative;
  padding: 25px;
  width: 440px;
  background: #FFFFFF;
  box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  z-index: 110;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .popup-booking__content {
    width: 355px;
    padding: 20px;
  }
}
@media (max-width: 599px) {
  .popup-booking__content {
    width: 320px;
  }
  .address__desc {display:none}
  }

.popup-booking__close,
.popup-booking-inner__close {
  position: absolute;
  top: -10%;
  right: -10%;
  cursor: pointer;
  /* Mobile */
}
@media (max-width: 899px) {
  .popup-booking__close,
  .popup-booking-inner__close {
    right: 0;
  }
}

.popup-booking__content-wrapper {
  display: flex;
  flex-direction: column;
}

.form__row form {
  display: flex;
  flex-direction: column;
}
.form__row input {
  margin-bottom: 15px;
  width: 388px;
  height: 90px;
  padding-left: 30px;
  background: #E0E6ED;
  border-radius: 10px;
  /* Mobile */
  /* Mobile XS*/
}
.form__row input::placeholder {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: #929292;
  /* Mobile */
}
@media (max-width: 899px) {
  .form__row input::placeholder {
    font-size: 18px;
  }
}
@media (max-width: 899px) {
  .form__row input {
    width: 315px;
    height: 75px;
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .form__row input {
    width: 100%;
  }
}
.form__row textarea {
  margin-bottom: 15px;
  padding-top: 30px;
  padding-left: 30px;
  background: #E0E6ED;
  border-radius: 10px;
  resize: none;
  outline: none;
  /* Mobile */
}
.form__row textarea::placeholder {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: #929292;
  /* Mobile */
}
@media (max-width: 899px) {
  .form__row textarea::placeholder {
    font-size: 18px;
  }
}
@media (max-width: 899px) {
  .form__row textarea {
    margin-bottom: 10px;
  }
}

.popup-booking__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
}

.popup-reviews {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-reviews-active {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.popup-reviews__content {
  position: relative;
  padding: 25px;
  width: 650px;
  background: #FFFFFF;
  box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  z-index: 110;
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 899px) {
  .popup-reviews__content {
    width: 355px;
    padding: 20px;
  }
}
@media (max-width: 599px) {
  .popup-reviews__content {
    width: 320px;
    padding: 10px;
  }
}

.popup-reviews__close {
  position: absolute;
  top: -15%;
  right: -7%;
  cursor: pointer;
  /* Mobile */
}
@media (max-width: 899px) {
  .popup-reviews__close {
    right: 0;
  }
}

.popup-reviews__user-row {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__user-row {
    flex-direction: column;
    align-items: center;
  }
}

.popup-reviews__user-img {
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
  /* Mobile XS*/
}
.popup-reviews__user-img img {
  width: 58px;
  height: 58px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__user-img img {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 599px) {
  .popup-reviews__user-img {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.popup-reviews__user-wrapper {
  margin-right: 20px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__user-wrapper {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.popup-reviews__user-name {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__user-name {
    font-size: 20px;
  }
}

.popup-reviews__user-date {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__user-date {
    font-size: 14px;
    text-align: center;
  }
}

.popup-reviews__figure {
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: #E0E0E0;
  border-radius: 53px;
  width: 115px;
  /* Mobile XS*/
}
.popup-reviews__figure img {
  margin-right: 10px;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__figure img {
    margin-right: 5px;
  }
}
.popup-reviews__figure p {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  color: #757575;
  /* Mobile XS*/
}
@media (max-width: 599px) {
  .popup-reviews__figure p {
    font-size: 18px;
  }
}
@media (max-width: 599px) {
  .popup-reviews__figure {
    width: 90px;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

.popup-reviews__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  /* Mobile XS*/
}
.popup-reviews__text p {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .popup-reviews__text {
    font-size: 14px;
  }
}

.popup-reviews__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 100;
}

.sticky__form {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 35.5556px rgba(0, 0, 0, 0.11);
  border-radius: 9px;
  /* Mobile XS*/
}
.sticky__form form {
  display: flex;
  flex-direction: column;
}
.sticky__form form label {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #6D6D6D;
}
@media (max-width: 599px) {
  .sticky__form {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.input-sticky {
  margin-bottom: 15px;
  padding-left: 15px;
  border-radius: 9px;
  border: 2px solid #E0E6ED;
  width: 100%;
  height: 60px;
  font-weight: 500;
  font-size: 19px;
  line-height: 80px;
  color: #545454;
}
.input-sticky::placeholder {
  color: #545454;
}

.input-wrapper-row {
  display: flex;
  justify-content: space-between;
}

.input-wrapper.input-wrapper--date {
  width: 170px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS*/
}
@media (max-width: 1199px) {
  .input-wrapper.input-wrapper--date {
    width: 120px;
  }
}
@media (max-width: 899px) {
  .input-wrapper.input-wrapper--date {
    width: 260px;
  }
}
@media (max-width: 599px) {
  .input-wrapper.input-wrapper--date {
    width: 150px;
  }
}

.input-date input {
  width: 130px;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  color: #545454;
  /* Tablet */
  /* Mobile */
  /* Mobile XS*/
}
.input-date input::placeholder {
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  color: #545454;
  /* Tablet */
  /* Mobile */
}
@media (max-width: 1199px) {
  .input-date input::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 899px) {
  .input-date input::placeholder {
    font-size: 19px;
  }
}
@media (max-width: 1199px) {
  .input-date input {
    width: 90px;
  }
}
@media (max-width: 899px) {
  .input-date input {
    width: 150px;
  }
}
@media (max-width: 599px) {
  .input-date input {
    width: 130px;
  }
}

.input-wrapper {
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 9px;
  border: 2px solid #E0E6ED;
  width: 100%;
  height: 60px;
}
.input-wrapper div span {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #545454;
}
.input-wrapper div p {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  color: #7D7D7D;
}

/* input type number */
.input-number {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  box-sizing: border-box;
  border-radius: 6px;
  color: #424348;
  font-size: 16px;
  text-align: center;
  width: calc(33px * 3);
}

.input-number__input {
  width: 32px;
  height: 32px;
  border: none;
  padding: 8px;
  text-align: center;
}

.input-number__minus,
.input-number__plus {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  color: #2F80ED;
  border: 2px solid #E0E6ED;
  border-radius: 50%;
}

/* /input type number */

br
{   content: "A" !important;
    display: block !important;
    margin-bottom: 1em !important;
}
h2.adress-h2 {
    font-size: 32px;
}
p.rest__card-text-sm {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}
.price-month {
    font-size: 16px;
}
.dopmesto {
    font-size: 14px;
    font-weight: 400;
}
.datepicker.hasDatepicker::placeholder, .input-sticky::placeholder {
    color: #8c8c8c;
    font-size: 16px;
    font-weight:400;
}
sup {
    font-size: 8px;
    font-weight: 600;
}
/*# sourceMappingURL=main.css.map */


.roditelskoe_okno {
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    display: none;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 100;
    transition: all 0.8s ease 0s;
    position: fixed;
    top: 0;
    left: 0;
  }
  .okno {
    position: relative;
    min-height: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    z-index: 10000;
  }
  .telo-okna {
    width: 100%;
    max-width: 650px;
    border-radius: 10px;
    padding: calc(25px + 10 * ((100vw - 375px) / 1530));
    overflow: hidden;
    box-shadow: 0px 14px 40px rgb(0 0 0 / 11%);
    transition: all 0.5s ease 0s;
  }
.innerpage .header__button {
    display: none;
}
.innerpage .header {
     padding-bottom:0px;
 }
.rating-slash {
    padding: 0 2px;
}
.close-plis {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s;
}
/* ============== About ================= */
.about {
  padding-top: 16px;
  padding-bottom: calc(34px + 14 * ((100vw - 375px) / 1530));
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 326px;
  grid-gap: calc(10px + 18 * ((100vw - 375px) / 1530));
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: calc(10px + 12 * ((100vw - 375px) / 1530));
  max-height: 722px;
}

.about__content {
  background: #FFFFFF;
  box-shadow: 0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07);
  border-radius: calc(12px + -3 * ((100vw - 375px) / 1530));
  padding: calc(20px + 23 * ((100vw - 375px) / 1530));
}

.about__title {
  font-weight: 500;
  font-size: calc(26px + 18 * ((100vw - 375px) / 1530));
  line-height: 110%;
  color: #434343;
  margin-bottom: calc(19px + 6 * ((100vw - 375px) / 1530));
}

.about__text {
  font-weight: 400;
  font-size: calc(14px + 4 * ((100vw - 375px) / 1530));
  line-height: 125%;
  color: #525252;
}

.about__text p:not(:last-child) {
  margin-bottom: calc(20px + 5 * ((100vw - 375px) / 1530));
}

.about__img {
  flex-grow: 1;
  border-radius: calc(12px + -3 * ((100vw - 375px) / 1530));
  overflow: hidden;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: calc(10px + 12 * ((100vw - 375px) / 1530));
  max-height: 722px;
}

@media (max-width: 899px) {

  .about__inner {
    grid-template-columns: auto;
  }

  .about__right {
    flex-direction: row-reverse;
  }

  .about__img {
    height: 250px;
  }
}

@media (max-width: 599px) {
  .about__img {
    height: 200px;
  }
}

/* ============== About ================= */

/* =========================== Swiper ========================== */
.slider {
  border-radius: calc(4px + 5 * ((100vw - 375px) / 1530));
  overflow: hidden;
  margin-bottom: 26px;
}

.slider .swiper-slide {
  border-radius: calc(4px + 5 * ((100vw - 375px) / 1530));
  overflow: hidden;
}

.slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.slider .swiper-slide img:hover
{
    opacity:0.9;
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
  width: calc(28px + 16 * ((100vw - 375px) / 1530));
  height: calc(28px + 16 * ((100vw - 375px) / 1530));
  background: #2F80ED;
  box-shadow: 0px 3.55556px 12.4444px rgba(47, 128, 237, 0.25);
  border-radius: 50%;
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 5));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.swiper-button-prev {
  left: 15px !important;
}

.swiper-button-next {
  right: 15px !important;
}

.slider .swiper-button-prev img,
.slider .swiper-button-next img {
  width: calc(15px + 5 * ((100vw - 375px) / 1530));
  height: calc(12px + 4 * ((100vw - 375px) / 1530));
}

.slider:hover .swiper-button-next,
.slider:hover .swiper-button-prev {
  opacity: 0.7;
  visibility: visible;
}

.slider .swiper-button-prev:hover,
.slider .swiper-button-next:hover {
  opacity: 1;
  visibility: visible;
}

.slider .swiper-button-next::after,
.slider .swiper-button-prev::after {
  display: none;
}

.slider img {
  width: 100%;
  height: 100%;
}

.slider__main {
  height: calc(204px + 254 * ((100vw - 375px) / 1530));
  border-radius: calc(4px + 5 * ((100vw - 375px) / 1530));
  filter: drop-shadow(0px 12.4444px 53.3333px rgba(0, 0, 0, 0.07));
  margin-bottom: calc(10px + 10 * ((100vw - 375px) / 1530));
  overflow: hidden;

}

.slider__thumbs {
  height: calc(36px + 44 * ((100vw - 375px) / 1530));
  border-radius: calc(4px + 5 * ((100vw - 375px) / 1530));
  overflow: hidden;
}

.policy {
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    line-height: 120%;
    margin-top: 10px;
}
/* =========================== Swiper ========================== */

.footer__center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__center img {
    width: 90px;
    vertical-align: middle;
    display: inline-block;
}

.footer__center img:hover {
    opacity: 0.6;
}

.made {
    font-size: 14px;
    margin-right: 3px;
}

.made-img {
    margin-bottom: 3px;
}
.input-wrapper-row2 {
    display: flex;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 161px;
    grid-template-columns: 2fr 2fr 1fr 1fr 200px;
    grid-gap: calc(20px + 8 * ((100vw - 390px) / 1530));
    padding: calc(20px + 4 * ((100vw - 390px) / 1530));
    flex-direction: row;
    align-items: center;
}

.data-zaezd {
    position: relative;
}
.data-zaezd label {
    cursor: auto;
}

.input-wrapper2 {
    margin-bottom: 15px;
    padding-left: 18px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    border-radius: 9px;
    border: 2px solid #E0E6ED;
    width: 100%;
    height: 60px;
}
.input-number2 {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-sizing: border-box;
    border-radius: 6px;
    color: #424348;
    font-size: 16px;
    text-align: center;
    width: 100%;
}


.input-wrapper-button2 {
    margin-top: 10px;
    justify-content: space-between;
    align-items: center;
    border-radius: 9px;
    height: 60px;
    align-content: flex-end;
}
@media (max-width: 599px){
.input-wrapper2.input-wrapper--date {
    width: 150px;
}
}
@media (max-width: 899px){
.input-wrapper2.input-wrapper--date {
    width: 260px;
}
}
@media (max-width: 1199px){
.input-wrapper2.input-wrapper--date {
    width: 120px;
}
}
.input-wrapper2.input-wrapper--date {
    width: 100%;
}
@media (max-width: 599px){
.input-date2 input {
    width: 130px;
}
}
@media (max-width: 899px){
.input-date2 input {
    width: 150px;
}
}
@media (max-width: 1199px){
.input-date2 input {
    width: 90px;
}
}
.input-date2 input {
    width: 200px;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.2;
    color: #545454;
}
@media (max-width: 575.98px){
.input-wrapper-row2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
}
@media (max-width: 1199.98px){
.input-wrapper-row2 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr fr;
}
}

.sticky__form2 {
    padding-left: 20px;
    padding-right: 20px;
    background: #FFFFFF;
    box-shadow: 0px 12.4444px 35.5556px rgba(0, 0, 0, 0.11);
    border-radius: 9px;
    margin-top: 20px;
}
@media (max-width: 575.98px){
.data-zaezd {
    margin: 0 5px;
}
.people {
    display: inline-flex;
}
    .input-wrapper-row2 {
        grid-gap: inherit;
        padding: 15px 0;
    }
}
@media (min-width: 575.98px){
.people {
    display: contents;
}
}
#ui-datepicker-div {
    z-index:999!important;
}

.width100 {
width:100%;
}