/* Normalize.css */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

:root {
  --width-base: 1920;
  --width-current: 100vw;
  --width-multiplier: var(--width-current) / var(--width-base);
  --theme-color: #1b4638;
  --active-color: #5dc397;
  --link-color: #40a87b;
  --light-color: #e7f2f1;
  --white-color: #fff;
  --darked-color: #153c2f;
  --dark-color: #1e1e1e;
  --field-color: #696969;
  --border-color: #d0d0d0;
  --error-color: #ff0000;
}

@media (min-width: 320px) {
  :root {
    --width-base: 320;
  }
}

@media (min-width: 768px) {
  :root {
    --width-base: 768;
  }
}

@media (min-width: 1280px) {
  :root {
    --width-base: 1920;
  }
}

a {
  text-decoration: none;
}

.container {
  max-width: calc(1550 * var(--width-multiplier));
  width: 100%;
  margin: 0 auto;
  padding: 0 calc(15 * var(--width-multiplier));
}
._tablet {
  display: none;
}
._mobile-only {
  display: none;
}
.button--bg-transparent {
  background: transparent;
}
.button--green-border {
  color: var(--darked-color);
  border: 1px solid var(--darked-color);
}
@media (max-width: 1279px) {
  .container {
    padding: 0 calc(20 * var(--width-multiplier));
  }
  .viewga-banner {
    background-image: url('/upload/viewga-banner/desk_lines.gif');
    background-position: bottom;
  }
  .viewga-banner .viewga-banner-wrapper {
    min-height: 275px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 calc(12 * var(--width-multiplier));
  }
  .viewga-banner {
    background-image: url('/upload/viewga-banner/mobile_lines.gif');
  }
  .viewga-banner .viewga-banner-wrapper {
    min-height: 313px;
  }
  ._mobile-only {
    display: block;
  }
  ._mobile-only._inline {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  ._tablet {
    display: block;
  }
  ._tablet._inline {
    display: inline-block;
  }
}



.swiper picture,
.swiper img {
  display: block;
  font-size: 0;
  line-height: 0;
}

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

.swiper-button-prev,
.swiper-button-next {
  width: calc(24 * var(--width-multiplier));
  height: calc(24 * var(--width-multiplier));
}

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

.swiper-pagination-bullet {
  margin: 0 calc(8 * var(--width-multiplier)) !important;
  width: calc(10 * var(--width-multiplier));
  height: calc(10 * var(--width-multiplier));
  background-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 0 5.33636px rgba(27, 27, 27, 0.05);
}

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

@media (max-width: 1279px) {
  .swiper-pagination-bullet {
    width: calc(8 * var(--width-multiplier));
    height: calc(8 * var(--width-multiplier));
  }
}

@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: calc(5 * var(--width-multiplier));
    height: calc(5 * var(--width-multiplier));
  }
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

ul {
  padding-inline-start: 0;
}
/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Убираем стрелки для поля ввода с типом number
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
  appearance: none;
  -moz-appearance: textfield;
}

/* Подключение шрифтов с полными названиями */
@font-face {
  font-family: 'Sharp Grotesk DB Cyr Medium 22';
  src: url(../fonts/SharpGroteskDBCyrMedium22/sharp-grotesk-db-cyr-medium-22-regular.woff2) format('woff2'),
    url(../fonts/SharpGroteskDBCyrMedium22/sharp-grotesk-db-cyr-medium-22-regular.woff) format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Sharp Grotesk DB Cyr Book 20';
  src: url(../fonts/SharpGroteskDBCyrBook20/sharp-grotesk-db-cyr-book-20-regular.woff2) format('woff2'),
    url(../fonts/SharpGroteskDBCyrBook20/sharp-grotesk-db-cyr-book-20-regular.woff) format('woff');
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/inter-regular.woff") format("woff"),
    url("../fonts/Inter/inter-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Подключение шрифтов с сокращенными названиями */
@font-face {
  font-family: "Book20";
  src: url("../fonts/SharpGroteskDBCyrBook20/sharp-grotesk-db-cyr-book-20-regular.woff") format("woff"), url("../fonts/SharpGroteskDBCyrBook20/sharp-grotesk-db-cyr-book-20-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Medium22";
  src: url("../fonts/SharpGroteskDBCyrMedium22/sharp-grotesk-db-cyr-medium-22-regular.woff") format("woff"), url("../fonts/SharpGroteskDBCyrMedium22/sharp-grotesk-db-cyr-medium-22-regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Блок Page */
.page {
  font-family: 'Sharp Grotesk DB Cyr Book 20', sans-serif;
  font-weight: 400;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  color: var(--theme-color);
}
._theme-bcgr {
  background-color: var(--theme-color) !important;
}
._dark-color {
  color: var(--darked-color);
}
._grey-bcgr-p {
  background: #F1F4F4;
  padding: 70px 0;
}
.viewga-banner {
  background-image: url('/upload/viewga-banner/desk-xl.gif');
  background-size: cover;
  background-repeat: no-repeat;
}
.viewga-banner .title h2 {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 36px;
  line-height: 47px;
}
.viewga-banner .btn {
  max-width: 149px;
}
.viewga-banner._theme-bcgr .title h2 {
  color: #fff;
}
.viewga-banner .viewga-banner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 343px;
}
/* Блок Header */
.header {
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1520px;
  font-family: 'Sharp Grotesk DB Cyr Medium 22';
}
.h1 {
  font-family: "Medium22", sans-serif;
  font-size: 60px;
  line-height: 80px;
}
.head-block {
  text-align: center;
  color: var(--theme-color);
  margin-bottom: 70px;
}
.head-block .h1 {
  margin-top: 42px;
  margin-left: auto;
  font-weight: 500;
  margin-right: auto;
}
.head-block .head-block_subtitle {
  font-family: "Medium22", sans-serif;
  font-size: 32px;
  line-height: 44px;
}
.head-block .head-block_tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}
.head-block .head-block_tags .tag-item {
  background: #E7F2F1;
  border-radius: 32px;
  font-size: 18px;
  padding: 12px 24px;
  color: var(--darked-color);
}
.head-block_description {
  font-size: 18px;
  line-height: 28px;
  max-width: 1263px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: block;
  box-sizing: border-box;
  padding: 17px;
  min-height: 50px;
  font-family: "Medium22", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  background-color: var(--active-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s;
}
.btn:hover {
  background-color: var(--theme-color);
}
.btn.btn-light {
  background-color: #fff;
  color: var(--theme-color);
}
.btn.btn-light:hover {
  background-color: var(--active-color);
  color: #fff;
}
.text-input {
  display: block;
  border-radius: 4px;
  padding: 0 12px;
  height: 50px;
  line-height: 20px;
  font-size: 14px;
  font-family: 'Inter';
  outline: none;
  border: none;
}
.section-mt {
  margin-top: 70px;
}
.section-mb {
  margin-bottom: 142px;
}
@media (min-width: 1021px) {
  .head-block h1 {
    margin: 0.3em 0;
  }
}

@media (max-width: 1020px) {
  ._grey-bcgr-p {
    padding: 40px 0;
  }
  .h1 {
    font-size: 48px;
    line-height: 58px;
  }
  .head-block {
    margin-bottom: 60px;
  }
  .head-block .h1 {
    max-width: 600px;
    margin-top: 12px;
  }
  .head-block_description {
    font-size: 16px;
    line-height: 24px;
  }
  .head-block .head-block_subtitle {
    font-size: 22px;
    line-height: 28px;
  }
  .head-block .head-block_tags {
    margin-top: 24px;
  }
  .head-block .head-block_tags .tag-item {
    font-size: 14px;
  }
  .btn {
    padding: 14px;
    min-height: 44px;
  }
  .section-mt {
    margin-top: 40px;
  }
  .section-mb {
    margin-bottom: 40px;
  }
  .viewga-banner .title h2 {
    margin-bottom: 24px;
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  ._grey-bcgr-p {
    padding: 24px 0;
  }
  .head-block {
    margin-bottom: 32px;
  }
  .head-block .h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .head-block_description {
    font-size: 12px;
    line-height: 18px;
  }
  .head-block .head-block_subtitle {
    font-size: 12px;
    line-height: 18px;
  }
  .head-block .head-block_tags {
    margin-top: 16px;
    gap: 4px;
  }
  .head-block .head-block_tags .tag-item {
    font-size: 12px;
    padding: 2px 8px;
  }
  .section-mt {
    margin-top: 24px;
  }
  .btn {
    font-size: 12px;
  }
  .viewga-banner .title h2 {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
  }
  .viewga-banner .btn {
    max-width: unset;
  }
  .section-mb {
    margin-bottom: 24px;
  }
}
.header__info {
  display: flex;
  align-items: center;
}

.header__actions {
  display: flex;
  align-items: center;
  position: relative;
}

.header__phone {
  display: block;
  margin-right: 33px;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #446259;
  text-decoration: none;
  transition: .2s;
}

.header__phone:hover {
  color: #5dc397;
}

.header__reserve-button {
  box-sizing: border-box;
  display: block;
  padding: 16px 20px;
  min-width: 185px;
  min-height: 46px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  background: #153c2f;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s;
}

.header__reserve-button:hover {
  background: #5dc397;
}

.header__burger-button {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 43px;
  height: 36px;
  box-shadow: none;
  background: 0 0;
  border: 0;
  margin: 0 0 0 40px;
  padding-left: 0;
  padding-right: 0;
  border: none;
}

.header__burger-button._active {
  gap: 0;
}

.header__burger-button span {
  pointer-events: none;
  display: inline-block;
  width: 100%;
  height: 2px;
  background: var(--theme-color);
  border-radius: 5px;
  transition: .2s;
  transform: rotate(0deg);
  transform-origin: center;
  transition-timing-function: linear;
}

.header__burger-button._active span {
  position: absolute;
  max-width: 18px;
}

.header__burger-button._active span:nth-child(1) {
  transform: rotate(-45deg);
}

.header__burger-button._active span:nth-child(2) {
  scale: 0;
}

.header__burger-button._active span:nth-child(3) {
  transform: rotate(45deg);
}

.mobile-menu {
  display: none;
}

.mobile-menu._active {
  display: flex;
  position: absolute;
  z-index: 5;
  right: 0;
  background: #fff;
  top: 75px;
  flex-direction: column;
  /*border: 1px solid var(--theme-color);*/
  padding: 24px;
  gap: 50px;
  border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 1920px) {
  .header {
    padding-left: 200px;
    padding-right: 200px;
    max-width: 1920px;
  }
}

@media screen and (max-width: 1720px) {
  .header {
    padding-left: 140px;
    padding-right: 140px;
  }

  .header__phone {
    margin-right: 24px;
  }

  .header__reserve-button {
    min-width: 160px;
    font-size: 12px;
    line-height: 12px;
  }
}

@media screen and (max-width: 1520px) {
  .header {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 1020px) {
  .header__reserve-button {
    display: none;
  }

  .mobile-menu._active .header__reserve-button {
    display: block;
  }

  .header__burger-button {
    display: flex;
  }
}

@media screen and (max-width: 880px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 880px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    margin-top: 33px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 768px;
  }
}

@media screen and (max-width: 320px) {
  .header {
    margin-top: 10.34px;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 320px;
  }

  .header::before {
    display: block;
    width: 32px;
    height: 1px;
    content: "";
  }

  .header__burger-button {
    margin-top: -7px;
    width: 33px;
  }
}

/* Блок Logo */
.logo {
  display: block;
  width: 100% !important;
  height: unset !important;
  object-fit: contain;
}

@media screen and (max-width: 320px) {
  .logo {
    width: 64px;
    height: 42px;
  }
}

/* Блок Navigation */
.navigation {
  margin-left: 24px;
}

.navigation__links-list {
  display: flex;
  column-gap: 18.5px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.mobile-menu._active .navigation__links-list {
  flex-direction: column;
  gap: 15px;
}

.navigation__link {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  color: #153c2f;
  transition: .2s;
}

.navigation__link:hover {
  color: #5dc397;
}

@media screen and (max-width: 1720px) {
  .navigation__links-list {
    column-gap: 14px;
  }
}

@media screen and (max-width: 1520px) {
  .navigation__links-list {
    column-gap: 12px;
  }
}

@media screen and (max-width: 1320px) {
  .header__phone {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .navigation__links-item_hidden-lg {
    display: none;
  }
}

@media screen and (max-width: 1020px) {
  .navigation {
    display: none;
  }

  .navigation.mobile-menu-block {
    display: block;
    margin-left: 0;
  }
}


/* Блок Footer */
.footer {
  padding-top: 24px;
  padding-bottom: 60px;
  background-color: #f1f4f4;
}

.footer__actions {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.footer__socials {
  max-width: 488px;
}

.footer__connect-socials {
  margin-bottom: 59px;
}

.footer__title {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Sharp Grotesk DB Cyr Medium 22';
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #1b4638;
}

.footer__title_type_hotel-presentation {
  margin-bottom: 9px;
}

.footer__text {
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 410px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.176px;
  color: #1e1e1e;
}

.footer__text_type_subscribe {
  max-width: 432px;
  margin-bottom: 30px;
  line-height: 130%;
}

.footer__links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 7px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer__link {
  display: block;
  height: 29px;
  transition: .2s;
}

.footer__link:hover svg path {
  fill: #5dc397;
}

.footer__link:hover svg rect {
  stroke: #5dc397;
}

.footer__link_type_vk {
  width: 64px;
}

.footer__link_type_telegram {
  width: 110px;
}

.footer__link_type_youtube {
  display: none;
  width: 102px;
}

.footer__link_type_vc-ru {
  display: none;
  width: 84px;
}

.footer__link_type_ya-dzen {
  display: none;
  width: 133px;
  height: 30px;
}

.custom-map-marker {
  position: absolute;
  left: -15px;
  top: -50px;
}

.icon-map {
  height: 50px;
}

.footer__menu-and-subscribe {
  display: flex;
}

.footer__menu {
  display: flex;
  margin-right: 116px;
}

.footer__menu_hidden-lg {
  display: none;
}

.footer__menu-column-one {
  margin-top: 5px;
  margin-right: 71px;
}

.footer__menu-column-two {
  margin-top: 5px;
}

.footer__menu-links-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.footer__menu-links-item {
  line-height: 1;
}

.footer__menu-link {
  display: block;
  font-family: 'Sharp Grotesk DB Cyr Medium 22';
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-decoration: none;
  color: #366656;
  transition: .2s;
}

.footer__menu-link:hover {
  color: #5dc397;
}

.footer__subscribe {
  max-width: 432px;
}

.footer__subscribe_hidden-lg {
  display: none;
}

.footer__hotel-presentation_hidden-lg {
  display: none;
}

.footer__form {
  display: flex;
  flex-direction: column;
  max-width: 328px;
}

.footer__input {
  box-sizing: border-box;
  margin-bottom: 9px;
  padding: 0 12px;
  height: 50px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #50776a;
  outline: none;
  border: 1px solid #50776a;
  border-radius: 4px;
}

.footer__input::placeholder {
  color: #50776a;
}

.footer__button {
  box-sizing: border-box;
  margin-bottom: 14px;
  padding: 18px 28px;
  min-height: 50px;
  font-family: 'Sharp Grotesk DB Cyr Medium 22';
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #fff;
  background-color: var(--theme-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: .2s;
}

.footer__button:hover {
  background: var(--active-color);
  color: #fff;
}

.footer__button::after {
  display: inline-block;
  margin-left: 10px;
  width: 16px;
  height: 12px;
  content: "";
  background: url(../images/footer/icons/arrow-right.svg) center no-repeat;
  background-size: cover;
}

.footer__button_type_hotel-presentation {
  margin-bottom: 0;
  max-width: 312px;
  width: 100%;
}

.footer__policy {
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Sharp Grotesk DB Cyr Book 20';
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #50776a;
}

.footer__policy-link {
  display: block;
  color: #50776a;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  padding-top: 19px;
  font-family: 'Sharp Grotesk DB Cyr Book 20';
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #8da9a8;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.footer__trademark {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 400px;
}

.footer__made-by {
  margin: 0 2px 0 0;
}

.footer__copyright {
  display: block;
}

@media screen and (max-width: 1580px) {
  .footer__subscribe_hidden-md {
    display: none;
  }

  .footer__hotel-presentation_hidden-md {
    display: none;
  }

  .footer__subscribe_hidden-lg {
    display: block;
  }

  .footer__hotel-presentation_hidden-lg {
    display: block;
  }

  .footer__menu-and-subscribe {
    max-width: 396px;
    width: 100%;
    flex-direction: column;
  }

  .footer__menu {
    margin-right: 0;
    margin-bottom: 55px;
  }

  .footer__menu-column-one {
    margin-top: 0;
  }

  .footer__menu-column-two {
    margin-top: 0;
  }
}

@media screen and (max-width: 1060px) {
  .footer__menu {
    flex-direction: column;
  }

  .footer__menu-column-two {
    margin-top: 10px;
  }

  .footer__menu-and-subscribe {
    max-width: 250px;
  }
}

@media screen and (max-width: 880px) {
  .footer__socials {
    max-width: 330px;
  }

  .footer__title {
    font-size: 15px;
  }

  .footer__text {
    font-size: 14px;
  }

  .footer__text_type_subscribe {
    line-height: 150%;
  }
}

@media screen and (max-width: 800px) {
  .footer__actions {
    padding-bottom: 32px;
  }

  .footer__made-by {
    max-width: 208px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 18px;
  }

  .footer__connect-socials {
    margin-bottom: 24px;
  }

  .footer__title_type_socials {
    margin-bottom: 12px;
    max-width: 298px;
    font-size: 20px;
    line-height: 22px;
  }

  .footer__title_type_subscribe {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer__title_type_hotel-presentation {
    margin-bottom: 9px;
    font-size: 14px;
  }

  .footer__text {
    margin-bottom: 11px;
    max-width: 333px;
    font-size: 13px;
    line-height: 143%;
    letter-spacing: -0.143px;
  }

  .footer__text_type_subscribe {
    max-width: 298px;
  }

  .footer__links-list {
    max-width: 300px;
  }

  .footer__menu-and-subscribe {
    max-width: 312px;
    width: 100%;
    flex-direction: column;
  }

  .footer__menu {
    flex-direction: column;
    margin-left: 7px;
    margin-right: 0;
    margin-bottom: 61px;
  }

  .footer__menu-column-one {
    margin-top: -2px;
  }

  .footer__menu-column-two {
    margin-top: 10px;
  }

  .footer__form {
    max-width: 298px;
  }

  .footer__info {
    padding-top: 19px;
  }

  .footer__made-by {
    max-width: 208px;
  }
}

@media screen and (max-width: 720px) {
  .footer__socials {
    max-width: 290px;
  }

  .footer__title {
    font-size: 15px;
  }

  .footer__menu-and-subscribe {
    max-width: 250px;
  }
}

@media screen and (max-width: 670px) {
  .footer__info {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 16px;
  }

  .footer__trademark {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 630px) {
  .footer__menu_hidden-sm {
    display: none;
  }

  .footer__hotel-presentation_hidden-sm {
    display: none;
  }

  .footer__menu-and-subscribe_hidden-sm {
    display: none;
  }

  .footer__hotel-presentation_hidden-md {
    display: block;
  }

  .footer__menu_hidden-lg {
    display: block;
  }

  .footer__socials {
    max-width: 432px;
  }

  .footer__title {
    max-width: 432px;
    font-size: 18px;
  }

  .footer__connect-socials {
    margin-bottom: 40px;
  }

  .footer__menu {
    margin-bottom: 40px;
  }

  .footer__subscribe {
    margin-bottom: 40px;
  }

  .footer__button_type_hotel-presentation {
    max-width: 298px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 320px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .footer__actions {
    padding-bottom: 40px;
  }

  .footer__connect-socials {
    margin-bottom: 36px;
  }

  .footer__title_type_socials {
    margin-bottom: 10px;
    max-width: 244px;
    font-size: 16px;
    line-height: 22px;
  }

  .footer__subscribe {
    margin-bottom: 36px;
  }

  .footer__title_type_subscribe {
    font-size: 14px;
    line-height: 22px;
  }

  .footer__title_type_hotel-presentation {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer__text {
    margin-bottom: 10px;
  }

  .footer__text_type_socials {
    margin-bottom: 11px;
  }

  .footer__menu {
    margin-left: 0;
    margin-bottom: 36px;
  }

  .footer__info {
    margin-left: -2px;
    padding-top: 15px;
  }

  .footer__trademark {
    max-width: 270px;
  }

  .footer__company {
    display: block;
    margin-top: 8px;
    max-width: 201px;
  }

  .footer__made-by {
    margin-left: 1px;
  }
}
