@charset "UTF-8";
.before, .btn-touch::before, .footer__soial-title::before, .menu__bg::before, .nav__search-control::before, .nav__list li a span::before, .nav__list li a span::after, .section-one .section__bg::before, .btn-scroll::before, .section-two .section__bg::before, .event__img::before, .event__img::after, .events__block-img__link::before, .section-four .section__bg::before, .section-six .section__bg::before, .view__menu-block::after, .view__menu-img::before, .section-seven .section__bg::before {
  content: "";
  display: block;
  position: absolute; }

.d-block, .wrapper__container, .wrapper__section, .header, .header__search-control input, .footer, .footer__container, .footer__nav-list li a, .nav__content, .nav__content-header, .nav__search-control input, .nav__list li, .nav__list li a, .section, .section__content, .block__title-head, .mission__text, .mission__view, .mission__img-block, .mission__img-main, .events__content, .events__block, .events__block-img, .events__block-img__link, .event__title, .event__desk, .events__block-more, .events__container, .place__content, .place__block, .place__block-text, .place__block-action, .components__content, .view__menu, .view__menu-content, .view__menu-block, .view__menu-img, .view__menu-title, .seven__content, .seven__block-content, .map__block, .map__block-info, .map__block-info__title, .map__block-info__txt, .map__block-action, .review__list, .review__block-author, .review__block-content, .review__block-author__name, .read__reviews {
  display: block;
  float: left;
  width: 100%; }

.d-flex, .header__content, .footer__content-top, .footer__nav-list, .footer__content-bottom, .nav__content-container, .nav__search-form, .nav__content-body, .nav__list, .nav__social-list, .nav__btn-list, .nav__btn-list li a, .block__title, .block__title-container, .block__title-block, .block__title-content, .block__title-scroll, .mission__content, .mission__info, .events__block-img__content, .view__menu-action, .review__item, .review__block-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 100%; }

.img-responsive {
  max-width: 100%;
  display: block;
  height: auto; }

/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/georgia-webfont.woff2") format("woff2"), url("../fonts/georgia-webfont.woff") format("woff");
  font-family: "georgiaregular";
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

/*! 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 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 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 {
  -webkit-box-sizing: content-box;
          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 */
  -webkit-text-decoration: underline dotted;
          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 {
  -webkit-box-sizing: border-box;
          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"] {
  -webkit-box-sizing: border-box;
          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; }

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

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

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

a, li, button, input, textarea {
  outline: none !important; }

.clear {
  clear: both; }

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

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "georgiaregular", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #221B15;
  color: #FFF7EE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-family: "georgiaregular", sans-serif; }

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

p {
  font-size: 1.14583vw;
  line-height: 1.875vw;
  margin: 0 0 1.5625vw;
  font-family: "georgiaregular", sans-serif;
  color: #FFF7EE; }
  p:last-child {
    margin-bottom: 0; }
  p a {
    text-decoration: underline; }
    .has-hover p a:not([disabled]):hover {
      text-decoration: none; }
  @media (max-width: 1365px) {
    p {
      font-size: 22px;
      line-height: 36px;
      margin: 0 0 30px; } }
  @media (max-width: 767px) {
    p {
      font-size: 21px;
      line-height: 35px;
      margin-bottom: 20px; } }
  @media (max-width: 427px) {
    p {
      font-size: 4.90654vw;
      line-height: 8.17757vw;
      margin-bottom: 4.6729vw; } }

a,
button {
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer; }

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0; }

h2, .h2 {
  font-size: 6.25vw;
  line-height: 7.08333vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff;
  font-weight: 400; }
  h2 span.is-orange, .h2 span.is-orange {
    color: #F5D5B4; }
  @media (max-width: 1365px) {
    h2, .h2 {
      font-size: 100px;
      line-height: 114px; } }
  @media (max-width: 1023px) {
    h2, .h2 {
      font-size: 80px; } }
  @media (max-width: 767px) {
    h2, .h2 {
      font-size: 65px;
      line-height: 74px; } }
  @media (max-width: 427px) {
    h2, .h2 {
      font-size: 15.18692vw;
      line-height: 17.28972vw; } }

h3, .h3 {
  font-size: 3.64583vw;
  line-height: 4.16667vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff;
  font-weight: 400; }
  h3 span.is-orange, .h3 span.is-orange {
    color: #F5D5B4; }
  @media (max-width: 1365px) {
    h3, .h3 {
      font-size: 100px;
      line-height: 114px; } }
  @media (max-width: 1023px) {
    h3, .h3 {
      font-size: 80px; } }
  @media (max-width: 767px) {
    h3, .h3 {
      font-size: 60px;
      line-height: 68px; } }
  @media (max-width: 427px) {
    h3, .h3 {
      font-size: 14.01869vw;
      line-height: 15.88785vw; } }

svg {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

fieldset {
  margin: 0;
  border: 0;
  padding: 0; }

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

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .btn__content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 100%;
    color: currentColor;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 100%; }

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 1364px) {
  .for-desktop {
    display: none !important; } }

@media (max-width: 1365px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 767px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 1365px) {
  .for-mobile {
    display: none !important; } }

@media (max-width: 1023px) {
  .for-mobile {
    display: none !important; } }

@media (max-width: 1365px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.wrapper {
  position: relative; }

.wrapper__section {
  overflow: hidden; }

.container {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 87.86458vw; }
  @media (max-width: 1365px) {
    .container {
      max-width: 100%;
      padding-left: 117px;
      padding-right: 117px; } }
  @media (max-width: 1023px) {
    .container {
      padding-left: 25px;
      padding-right: 25px; } }
  @media (max-width: 427px) {
    .container {
      padding-left: 5.84112vw;
      padding-right: 5.84112vw; } }

.xs-visible {
  display: none !important; }

@media (max-width: 1365px) {
  .sm-hidden {
    display: none !important; } }

@media (min-width: 1366px) {
  .sm-visible {
    display: none !important; } }

picture {
  width: 100%;
  height: 100%; }

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2100;
  height: 3.64583vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: background 0.25s;
  -o-transition: background 0.25s;
  transition: background 0.25s; }
  .header.is-fixed {
    background: #150D0A; }
  @media (max-width: 1365px) {
    .header {
      height: 70px; } }
  @media (max-width: 767px) {
    .header {
      height: 51px; } }

.htmlFix .header.is-fixed {
  background: none; }

.header__content {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.header__content-left {
  padding-right: 0.52083vw;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.header__content-touch {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%; }

.btn-touch {
  height: 100%;
  width: 4.11458vw;
  background: #F5D5B4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative; }
  .btn-touch img {
    width: 1.35417vw;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s; }
  .btn-touch::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../images/icons/svg/icon-close.svg") no-repeat center;
    background-size: 0.83333vw;
    opacity: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s; }
  .btn-touch.is-active img {
    opacity: 0; }
  .btn-touch.is-active::before {
    opacity: 1; }
  @media (max-width: 1365px) {
    .btn-touch {
      width: 79px; }
      .btn-touch img {
        width: 26px; }
      .btn-touch::before {
        background-size: 16px; } }
  @media (max-width: 767px) {
    .btn-touch {
      width: 50px; }
      .btn-touch img {
        width: 22px; }
      .btn-touch::before {
        background-size: 22px; } }

.header__content-logo {
  padding-left: 1.77083vw;
  height: 100%; }
  .header__content-logo a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .header__content-logo a img {
      width: 7.34375vw; }
  @media (max-width: 1365px) {
    .header__content-logo {
      padding-left: 34px; }
      .header__content-logo a img {
        width: 141px; } }
  @media (max-width: 767px) {
    .header__content-logo {
      padding-left: 20px; }
      .header__content-logo a img {
        width: 100px; } }
  @media (max-width: 427px) {
    .header__content-logo {
      padding-left: 15px; } }

.header__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }

.header__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 1.51042vw 0 1.45833vw; }
  .header__social-list li {
    height: 100%; }
    .header__social-list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 2.03125vw;
      height: 100%; }
      .header__social-list li a svg {
        width: 1.19792vw;
        fill: #fff;
        opacity: 0.5;
        -webkit-transition: all 0.25s;
        -o-transition: all 0.25s;
        transition: all 0.25s; }
      .has-hover .header__social-list li a:not([disabled]):hover svg {
        opacity: 1;
        fill: #F5D5B4; }

.header__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  width: 5.10417vw;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  .header__search.is-active {
    width: 17.55208vw; }
    .header__search.is-active .header__search-btn {
      opacity: 0;
      visibility: hidden;
      z-index: -5;
      -webkit-transform: translateX(5.10417vw);
          -ms-transform: translateX(5.10417vw);
              transform: translateX(5.10417vw); }
    .header__search.is-active .header__search-form {
      width: 17.5vw;
      z-index: 2;
      visibility: visible;
      opacity: 1; }

.header__search-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.10417vw;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .header__search-btn svg {
    width: 1.25vw;
    fill: #fff;
    opacity: 0.5;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }
  .has-hover .header__search-btn:not([disabled]):hover svg {
    opacity: 1;
    fill: #F5D5B4; }

.header__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  width: 5.10417vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-5.10417vw);
      -ms-transform: translateX(-5.10417vw);
          transform: translateX(-5.10417vw);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -5; }

.header__search-btn__action {
  width: 2.96875vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
  background: none;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0; }
  .header__search-btn__action svg {
    width: 1.25vw;
    fill: #fff;
    opacity: 0.5;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }
  .has-hover .header__search-btn__action:not([disabled]):hover svg {
    opacity: 1;
    fill: #F5D5B4; }

.header__search-control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  height: 100%; }
  .header__search-control input {
    height: 100%;
    border: 0 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background: none !important;
    padding: 0 1.04167vw;
    font-size: 0.9375vw;
    line-height: 0.9375vw;
    font-family: "georgiaregular", sans-serif;
    font-weight: 400;
    color: #fff; }

.header__whatsapp {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%; }
  @media (max-width: 1023px) {
    .header__whatsapp {
      display: none; } }

.header__whatsapp-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #fff;
  padding-left: 1.875vw;
  padding-right: 2.5vw;
  font-size: 0.9375vw;
  line-height: 1.04167vw;
  font-family: "georgiaregular", sans-serif;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  white-space: nowrap; }
  @media (max-width: 1365px) {
    .header__whatsapp-btn {
      padding-left: 36px;
      padding-right: 36px;
      font-size: 18px;
      line-height: 20px; } }
  .has-hover .header__whatsapp-btn:not([disabled]):hover {
    color: #221B15;
    background: #F5D5B4; }
    .has-hover .header__whatsapp-btn:not([disabled]):hover .header__whatsapp-btn__icon svg {
      fill: #221B15; }

.header__whatsapp-btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .header__whatsapp-btn__icon svg {
    width: 1.19792vw;
    fill: #F5D5B4;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }
    @media (max-width: 1365px) {
      .header__whatsapp-btn__icon svg {
        width: 22px; } }

.header__whatsapp-btn__text {
  display: block;
  padding-left: 0.83333vw; }
  @media (max-width: 1365px) {
    .header__whatsapp-btn__text {
      padding-left: 16px; } }

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

.header__reservation, .header__phone {
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1); }

.header__reservation-link, .header__phone-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  color: #fff;
  font-size: 0.9375vw;
  line-height: 1.04167vw;
  font-family: "georgiaregular", sans-serif;
  white-space: nowrap; }
  .has-hover .header__reservation-link:not([disabled]):hover, .has-hover .header__phone-link:not([disabled]):hover {
    color: #221B15;
    background: #F5D5B4; }
  .header__reservation-link.is-active, .header__phone-link.is-active {
    color: #221B15;
    background: #F5D5B4; }
  @media (max-width: 1365px) {
    .header__reservation-link, .header__phone-link {
      font-size: 18px;
      line-height: 20px; } }

.header__reservation-link {
  padding-right: 2.1875vw;
  padding-left: 2.03125vw; }
  @media (max-width: 1365px) {
    .header__reservation-link {
      padding: 0 41px; } }
  @media (max-width: 427px) {
    .header__reservation-link {
      padding: 0 20px; } }

.header__phone-link {
  padding-right: 1.92708vw;
  padding-left: 1.77083vw; }
  @media (max-width: 1365px) {
    .header__phone-link {
      padding: 0 18px 0 37px; } }

.footer {
  margin-top: 3.22917vw;
  margin-bottom: 3.54167vw; }
  @media (max-width: 1365px) {
    .footer {
      margin-top: 100px;
      margin-bottom: 93px; } }
  @media (max-width: 767px) {
    .footer {
      margin-top: 49px;
      margin-bottom: 32px; } }
  @media (max-width: 427px) {
    .footer {
      margin-top: 11.4486vw;
      margin-bottom: 7.47664vw; } }

.footer__container {
  border: 1px solid #F5D5B4;
  padding: 2.03125vw 2.60417vw 1.14583vw; }
  @media (max-width: 1365px) {
    .footer__container {
      padding: 46px 0 31px; } }
  @media (max-width: 767px) {
    .footer__container {
      padding: 41px 0 46px; } }
  @media (max-width: 427px) {
    .footer__container {
      padding: 9.57944vw 0 10.74766vw; } }

.footer__content-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.14583vw; }
  @media (max-width: 1365px) {
    .footer__content-top {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 0 48px 32px; } }
  @media (max-width: 767px) {
    .footer__content-top {
      padding: 0 23px 28px; } }
  @media (max-width: 427px) {
    .footer__content-top {
      padding: 0 5.37383vw 6.54206vw; } }

.footer__logo {
  width: 7.34375vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.15625vw; }
  .footer__logo img {
    width: 100%; }
  @media (max-width: 1365px) {
    .footer__logo {
      width: 141px;
      padding-top: 8px; } }
  @media (max-width: 767px) {
    .footer__logo {
      padding-top: 0;
      width: 100%; }
      .footer__logo img {
        width: 100px; } }
  @media (max-width: 427px) {
    .footer__logo img {
      width: 23.36449vw; } }

.footer__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 1.92708vw;
  padding-right: 2.23958vw;
  padding-top: 0.57292vw; }
  @media (max-width: 1365px) {
    .footer__nav {
      display: block;
      width: 100%;
      float: left;
      padding: 0;
      margin-top: 34px; } }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .footer__nav {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; } }
  @media (max-width: 767px) {
    .footer__nav {
      margin-top: 30px; } }
  @media (max-width: 427px) {
    .footer__nav {
      margin-top: 7.00935vw; } }

@media (max-width: 1365px) {
  .footer__nav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.footer__nav-list li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  display: block;
  position: relative; }
  @media (min-width: 1366px) {
    .footer__nav-list li:not(:last-child)::before {
      content: "";
      display: block;
      position: absolute;
      right: -0.10417vw;
      top: 50%;
      background: #D9D9D9;
      width: 0.20833vw;
      height: 0.20833vw;
      border-radius: 50%;
      margin-top: 0.05208vw; } }
  .footer__nav-list li a {
    font-size: 0.9375vw;
    line-height: 1.04167vw;
    color: #fff;
    font-family: "georgiaregular", sans-serif;
    white-space: nowrap;
    text-align: center; }
    .has-hover .footer__nav-list li a:not([disabled]):hover {
      color: #F5D5B4; }
    @media (max-width: 1365px) {
      .footer__nav-list li a {
        font-size: 18px;
        line-height: 20px;
        position: relative;
        text-align: left;
        padding: 13.5px 0 13px 23px; }
        .footer__nav-list li a::before {
          content: "";
          display: block;
          position: absolute;
          left: 0;
          top: 50%;
          margin-top: -2px;
          width: 4px;
          height: 4px;
          border-radius: 50%;
          background: #D9D9D9; } }
    @media (max-width: 767px) {
      .footer__nav-list li a {
        padding: 13px 0 13px 14px; } }
    @media (max-width: 427px) {
      .footer__nav-list li a {
        padding: 3.03738vw 0 3.03738vw 3.27103vw;
        font-size: 4.20561vw;
        line-height: 4.6729vw; } }
  @media (max-width: 1365px) {
    .footer__nav-list li {
      width: 25%; } }
  @media (max-width: 767px) {
    .footer__nav-list li {
      width: 50%; } }

.footer__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .footer__action li:not(:last-child) {
    margin-right: 1.35417vw; }
    @media (max-width: 1365px) {
      .footer__action li:not(:last-child) {
        margin-right: 33px; } }
    @media (max-width: 767px) {
      .footer__action li:not(:last-child) {
        margin-right: 0; } }
  @media (max-width: 767px) {
    .footer__action li {
      width: 50%; }
      .footer__action li:first-child {
        padding-right: 36px; } }
  @media (max-width: 767px) {
    .footer__action li:first-child {
      padding-right: 8.41121vw; } }
  @media (max-width: 1365px) {
    .footer__action {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      min-width: 1px;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }
  @media (max-width: 767px) {
    .footer__action {
      margin-top: 13px; } }
  @media (max-width: 427px) {
    .footer__action {
      margin-top: 3.03738vw; } }

.footer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.05208vw 1.97917vw 0;
  font-family: "georgiaregular", sans-serif;
  font-weight: 400;
  font-size: 0.9375vw;
  line-height: 1.04167vw;
  color: #F5D5B4;
  border: 1px solid #F5D5B4;
  border-radius: 5.20833vw;
  white-space: nowrap;
  height: 2.29167vw; }
  @media (max-width: 1365px) {
    .footer-btn {
      height: 44px;
      border-radius: 100px;
      font-size: 18px;
      line-height: 20px;
      padding: 1px 40px 0; }
      .footer-btn.footer-btn__reservation {
        padding-left: 32px;
        padding-right: 32px; } }
  @media (max-width: 767px) {
    .footer-btn {
      width: 100%;
      padding: 1px 10px 0;
      text-align: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .footer-btn.footer-btn__reservation {
        padding: 1px 10px 0; } }
  @media (max-width: 427px) {
    .footer-btn {
      height: 10.28037vw;
      font-size: 4.20561vw;
      line-height: 4.6729vw;
      padding: 0.23364vw 2.33645vw 0; }
      .footer-btn.footer-btn__reservation {
        padding: 1 2.33645vw 0; } }
  .has-hover .footer-btn:not([disabled]):hover {
    background: #F5D5B4;
    color: #170F0C; }
  .footer-btn.is-active {
    background: #F5D5B4;
    color: #170F0C; }
    .has-hover .footer-btn.is-active:not([disabled]):hover {
      background: transparent;
      color: #F5D5B4; }

.footer__content-bottom {
  padding-top: 0.98958vw; }
  @media (min-width: 1366px) {
    .footer__content-bottom {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 1365px) {
    .footer__content-bottom {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 52px 48px 0; } }
  @media (max-width: 767px) {
    .footer__content-bottom {
      padding: 14px 23px 0; } }

.footer-text {
  font-size: 0.72917vw;
  line-height: 0.83333vw;
  font-family: "georgiaregular", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap; }
  @media (max-width: 1365px) {
    .footer-text {
      white-space: normal;
      font-size: 14px;
      line-height: 16px; } }
  @media (max-width: 767px) {
    .footer-text {
      font-size: 15px;
      line-height: 17px; } }
  @media (max-width: 427px) {
    .footer-text {
      font-size: 3.50467vw;
      line-height: 3.97196vw; } }

@media (max-width: 1365px) {
  .footer__copy {
    display: block;
    width: 100%;
    float: left;
    text-align: center;
    margin-bottom: 22px; } }

@media (max-width: 767px) {
  .footer__copy {
    text-align: left;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 14px;
    margin-bottom: 26px; } }

@media (max-width: 427px) {
  .footer__copy {
    margin-top: 3.27103vw;
    margin-bottom: 6.07477vw; } }

.footer__time {
  text-align: center; }
  @media (max-width: 1365px) {
    .footer__time {
      display: block;
      width: 100%;
      float: left;
      margin-bottom: 20px; } }
  @media (max-width: 767px) {
    .footer__time {
      text-align: left;
      margin-bottom: 0;
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; } }

.footer__soial {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1365px) {
    .footer__soial {
      width: 100%;
      float: left;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media (max-width: 767px) {
    .footer__soial {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.footer__soial-title {
  padding-right: 5.88542vw;
  position: relative; }
  .footer__soial-title::before {
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    width: calc(5.88542vw - 2.29167vw);
    right: 1.14583vw;
    top: 0.26042vw; }
  @media (max-width: 1365px) {
    .footer__soial-title {
      padding-right: 94px; }
      .footer__soial-title::before {
        width: 69px;
        right: 5px;
        top: 50%;
        margin-top: -.5px; } }
  @media (max-width: 767px) {
    .footer__soial-title {
      font-size: 16px;
      line-height: 18px;
      padding-right: 72px; }
      .footer__soial-title::before {
        width: 54px;
        right: 4px; } }
  @media (max-width: 427px) {
    .footer__soial-title {
      font-size: 3.73832vw;
      line-height: 4.20561vw;
      padding-right: 16.82243vw; }
      .footer__soial-title::before {
        width: 12.61682vw;
        right: 0.93458vw; } }

.footer__soial-review__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .footer__soial-review__list li svg {
    opacity: 0.2;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    @media (min-width: 1366px) {
      .footer__soial-review__list li svg {
        width: 1.19792vw; } }
  @media (min-width: 1366px) {
    .footer__soial-review__list li:not(:last-child) {
      margin-right: 1.40625vw; } }
  .has-hover .footer__soial-review__list li a:not([disabled]):hover svg {
    opacity: 1; }
  @media (max-width: 1365px) {
    .footer__soial-review__list li a {
      width: 67px;
      height: 67px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .footer__soial-review__list li a.footer__soial-link__inst svg {
        width: 31px; }
      .footer__soial-review__list li a.footer__soial-link__tg svg {
        width: 30px; }
      .footer__soial-review__list li a.footer__soial-link__fb svg {
        width: 30px; }
      .footer__soial-review__list li a.footer__soial-link__wp svg {
        width: 32px; } }
  @media (max-width: 767px) {
    .footer__soial-review__list li a {
      width: 57px;
      height: 57px; }
      .footer__soial-review__list li a.footer__soial-link__inst svg {
        width: 33px; }
      .footer__soial-review__list li a.footer__soial-link__tg svg {
        width: 33px; }
      .footer__soial-review__list li a.footer__soial-link__fb svg {
        width: 30px; }
      .footer__soial-review__list li a.footer__soial-link__wp svg {
        width: 34px; } }
  @media (max-width: 427px) {
    .footer__soial-review__list li a {
      width: 13.31776vw;
      height: 13.31776vw; }
      .footer__soial-review__list li a.footer__soial-link__inst svg {
        width: 7.71028vw; }
      .footer__soial-review__list li a.footer__soial-link__tg svg {
        width: 7.71028vw; }
      .footer__soial-review__list li a.footer__soial-link__fb svg {
        width: 7.00935vw; }
      .footer__soial-review__list li a.footer__soial-link__wp svg {
        width: 7.94393vw; } }

.htmlFix {
  overflow-x: hidden !important; }
  @media (max-width: 1365px) {
    .htmlFix {
      overflow-y: hidden !important; } }

@media (max-width: 1365px) {
  .navFix {
    position: fixed !important;
    visibility: visible;
    -webkit-animation: none 0s ease 0s 1 normal none running;
            animation: none 0s ease 0s 1 normal none running;
    overflow: visible !important; } }

.menu__container {
  display: none;
  top: 0;
  position: fixed;
  bottom: 0;
  height: 100%;
  max-height: 100% !important;
  min-height: 100%;
  width: 100%;
  z-index: 2000;
  left: 0; }
  .menu__container.is-active .menu__bg, .menu__container.is-active .nav__content-container {
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0); }

.menu__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateZ(0) translateX(100%);
          transform: translateZ(0) translateX(100%);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
  background: #0C0B0B; }
  .menu__bg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover; }
  .menu__bg::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(359.72deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
    background: linear-gradient(90.28deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
    z-index: 1; }

.nav__content {
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2147483647; }

.nav__content-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-top: 3.64583vw;
  -webkit-transform: translateZ(0) translateX(100%);
          transform: translateZ(0) translateX(100%);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s; }
  @media (max-width: 1365px) {
    .nav__content-container {
      padding: 110px 0 0; } }
  @media (max-width: 767px) {
    .nav__content-container {
      padding-top: 82px; } }

.nav__content-header {
  padding: 0 117px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none; }
  @media (max-width: 1365px) {
    .nav__content-header {
      display: block; } }
  @media (max-width: 1023px) {
    .nav__content-header {
      padding: 0 25px; } }
  @media (max-width: 767px) {
    .nav__content-header {
      padding: 0 14px; } }

.nav__search-form {
  background: rgba(255, 255, 255, 0.1);
  height: 50px; }

.nav__search-btn {
  width: 48px;
  border: 0 !important;
  -webkit-box-shadow: 0 !important;
          box-shadow: 0 !important;
  background: none !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .nav__search-btn svg {
    width: 20px;
    fill: rgba(255, 255, 255, 0.5); }

.nav__search-control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  height: 100%;
  position: relative; }
  .nav__search-control::before {
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    width: 1px;
    height: 31px;
    top: 50%;
    margin-top: -15.5px; }
  .nav__search-control input {
    border: 0 !important;
    -webkit-box-shadow: 0 !important;
            box-shadow: 0 !important;
    background: none !important;
    height: 100%;
    padding: 0 15px;
    font: 400 18px/18px "georgiaregular", sans-serif;
    color: rgba(255, 255, 255, 0.49); }

.nav__content-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (min-width: 1920px) and (max-height: 660px) and (min-height: 500px) {
    .nav__content-body {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      height: 100%;
      display: block;
      overflow: auto; } }
  @media screen and (min-width: 1024px) and (max-width: 1365px) and (max-height: 639px) and (min-height: 400px) {
    .nav__content-body {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  @media screen and (min-width: 320px) and (max-width: 767px) and (max-height: 699px) and (min-height: 300px) {
    .nav__content-body {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

@media screen and (min-width: 1024px) and (max-width: 1365px) and (max-height: 639px) and (min-height: 400px) {
  .nav__content-scroll {
    height: calc(var(--vh) - 217px);
    overflow-y: auto; } }

@media screen and (min-width: 768px) and (max-width: 1023px) and (max-height: 699px) and (min-height: 300px) {
  .nav__content-scroll {
    height: calc(var(--vh) - 277px);
    overflow-y: auto; } }

@media screen and (min-width: 320px) and (max-width: 767px) and (max-height: 699px) and (min-height: 300px) {
  .nav__content-scroll {
    height: calc(var(--vh) - 249px);
    overflow-y: auto; } }

.nav__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .nav__list li a {
    font-weight: 400;
    font-family: "Roboto Slab", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 2.08333vw;
    line-height: 5.10417vw; }
    @media screen and (min-width: 1921px) and (max-height: 1600px) {
      .nav__list li a {
        font-size: 1.30208vw;
        line-height: 2.60417vw; }
        .nav__list li a span::before, .nav__list li a span::after {
          width: 0.15625vw !important;
          height: 0.15625vw !important;
          margin-top: 0vw !important; } }
    .nav__list li a span {
      display: inline-block;
      position: relative;
      -webkit-animation-fill-mode: both;
              animation-fill-mode: both;
      opacity: 0; }
      .nav__list li a span::before, .nav__list li a span::after {
        -webkit-transition: all 0.25s;
        -o-transition: all 0.25s;
        transition: all 0.25s;
        background: #F5D5B4;
        width: 0.26042vw;
        height: 0.26042vw;
        margin-top: 0.15625vw;
        border-radius: 50%;
        top: 50%;
        opacity: 0; }
      .nav__list li a span::before {
        left: -1.61458vw; }
      .nav__list li a span::after {
        right: -1.61458vw; }
    .has-hover .nav__list li a:not([disabled]):hover {
      color: #F5D5B4; }
      .has-hover .nav__list li a:not([disabled]):hover span::before, .has-hover .nav__list li a:not([disabled]):hover span::after {
        opacity: 1; }
    .nav__list li a.is-active {
      color: #F5D5B4; }
      .nav__list li a.is-active span::before, .nav__list li a.is-active span::after {
        opacity: 1; }
    @media (max-width: 1365px) {
      .nav__list li a {
        font-size: 40px;
        line-height: 98px; }
        .nav__list li a span::before, .nav__list li a span::after {
          width: 5px;
          height: 5px;
          margin-top: 3px; }
        .nav__list li a span::before {
          left: -31px; }
        .nav__list li a span::after {
          right: -31px; } }
    @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 999px) and (min-height: 500px) {
      .nav__list li a {
        line-height: 68px; } }
  @media (max-width: 767px) {
    .nav__list li a {
      font-size: 32px;
      line-height: 88px; } }
  @media screen and (max-width: 767px) and (min-width: 320px) and (max-width: 767px) and (max-height: 849px) and (min-height: 700px) {
    .nav__list li a {
      line-height: 68px; } }
  @media (max-width: 767px) {
      .nav__list li a span::before, .nav__list li a span::after {
        margin-top: 0; }
      .nav__list li a span::before {
        left: -21px; }
      .nav__list li a span::after {
        right: -21px; } }

.tracking-1, .nav__content-container.is-show .nav__list li a span.nav__link-anime-1 {
  -webkit-animation: fadeInRight .2s linear .2s forwards;
          animation: fadeInRight .2s linear .2s forwards; }

.tracking-2, .nav__content-container.is-show .nav__list li a span.nav__link-anime-2 {
  -webkit-animation: fadeInRight .2s linear .4s forwards;
          animation: fadeInRight .2s linear .4s forwards; }

.tracking-3, .nav__content-container.is-show .nav__list li a span.nav__link-anime-3 {
  -webkit-animation: fadeInRight .2s linear .6s forwards;
          animation: fadeInRight .2s linear .6s forwards; }

.tracking-4, .nav__content-container.is-show .nav__list li a span.nav__link-anime-4 {
  -webkit-animation: fadeInRight .2s linear .8s forwards;
          animation: fadeInRight .2s linear .8s forwards; }

.tracking-5, .nav__content-container.is-show .nav__list li a span.nav__link-anime-5 {
  -webkit-animation: fadeInRight .2s linear 1s forwards;
          animation: fadeInRight .2s linear 1s forwards; }

.tracking-6, .nav__content-container.is-show .nav__list li a span.nav__link-anime-6 {
  -webkit-animation: fadeInRight .2s linear 1.2s forwards;
          animation: fadeInRight .2s linear 1.2s forwards; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.nav__content-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none; }
  @media (max-width: 1023px) {
    .nav__content-footer {
      display: block;
      width: 100%; } }

.nav__social-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: calc( (var(--vh) - 850px) / 3); }
  @media screen and (min-width: 1024px) and (max-width: 1365px) and (max-height: 999px) and (min-height: 640px) {
    .nav__social-list {
      margin-top: calc( (var(--vh) - 640px) / 3); } }
  @media screen and (min-width: 1024px) and (max-width: 1365px) and (max-height: 639px) and (min-height: 400px) {
    .nav__social-list {
      margin-top: 0; } }
  @media (max-width: 1023px) {
    .nav__social-list {
      margin-top: calc( (var(--vh) - 900px) / 3); } }
  @media screen and (min-width: 768px) and (max-width: 1023px) and (max-height: 999px) and (min-height: 700px) {
    .nav__social-list {
      margin-top: calc( (var(--vh) - 700px) / 3); } }
  @media screen and (min-width: 768px) and (max-width: 1023px) and (max-height: 699px) and (min-height: 300px) {
    .nav__social-list {
      margin-top: 0; } }
  @media (max-width: 767px) {
    .nav__social-list {
      margin-top: calc( (var(--vh) - 840px) / 3); } }
  @media screen and (min-width: 320px) and (max-width: 767px) and (max-height: 849px) and (min-height: 700px) {
    .nav__social-list {
      margin-top: calc( (var(--vh) - 700px) / 3); } }
  @media screen and (min-width: 320px) and (max-width: 767px) and (max-height: 699px) and (min-height: 300px) {
    .nav__social-list {
      margin-top: 0; } }
  .nav__social-list li:not(:last-child) {
    margin-right: 1px; }
  .nav__social-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 57px;
    height: 57px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  @media (min-width: 1366px) {
    .nav__social-list {
      display: none; } }

.nav__btn-list li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .nav__btn-list li:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .nav__btn-list li a {
    height: 100%;
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 10px 16px;
    font-size: 18px;
    line-height: 18px; }
    @media (max-width: 427px) {
      .nav__btn-list li a {
        font-size: 4.20561vw;
        line-height: 4.20561vw; } }

@media (min-width: 1024px) {
  .nav__btn-list {
    display: none; } }

.nav__btn-icon {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px; }
  @media (max-width: 427px) {
    .nav__btn-icon {
      margin-right: 1.63551vw;
      width: 5.14019vw; } }

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.nav__content-container:not(.is-show) .nav__search-form, .nav__content-container:not(.is-show) .nav__social-list li, .nav__content-container:not(.is-show) .nav__btn-list li {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0; }

.nav__content-container.is-show .nav__search-form {
  -webkit-animation: fadeInDown .2s linear .2s backwards;
          animation: fadeInDown .2s linear .2s backwards; }

.nav__content-container.is-show .nav__social-list li.nav__social-item__inst {
  -webkit-animation: zoomIn .2s linear 1.2s backwards;
          animation: zoomIn .2s linear 1.2s backwards; }

.nav__content-container.is-show .nav__social-list li.nav__social-item__fb {
  -webkit-animation: zoomIn .2s linear 1.4s backwards;
          animation: zoomIn .2s linear 1.4s backwards; }

.nav__content-container.is-show .nav__btn-list li.nav__btn-item__whatsapp {
  -webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4s backwards;
          animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4s backwards; }

.nav__content-container.is-show .nav__btn-list li.nav__btn-item__phone {
  -webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s backwards;
          animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s backwards; }

h1 span:not(.is-orange), h2 span:not(.is-orange), h3 span:not(.is-orange) {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: 1.3s;
  -o-transition: 1.3s;
  transition: 1.3s;
  display: inline-block; }

.page-container:not(.is-loaded) .btn-menu, .page-container:not(.is-loaded) .btn-arrow__menu, .page-container:not(.is-loaded) .btn-scroll, .page-container:not(.is-loaded) .btn-touch, .page-container:not(.is-loaded) .header__content-logo, .page-container:not(.is-loaded) .header__social-list li:first-child, .page-container:not(.is-loaded) .header__social-list li:last-child, .page-container:not(.is-loaded) .header__search-btn, .page-container:not(.is-loaded) .header__whatsapp-btn, .page-container:not(.is-loaded) .header__whatsapp-btn, .page-container:not(.is-loaded) .header__reservation-link, .page-container:not(.is-loaded) .header__phone-link {
  opacity: 0; }

.is-loaded .btn-touch {
  -webkit-animation: fade-in-left 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) backwards;
          animation: fade-in-left 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) backwards; }

.is-loaded .header__content-logo {
  -webkit-animation: fade-in-top 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards;
          animation: fade-in-top 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.2s backwards; }

.is-loaded .header__social-list li:first-child {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s backwards; }

.is-loaded .header__social-list li:last-child {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.5s backwards; }

.is-loaded .header__search-btn {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.is-loaded .header__whatsapp-btn {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.7s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.7s backwards; }

.is-loaded .header__reservation-link {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s backwards; }

.is-loaded .header__phone-link {
  -webkit-animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: scale-in-center 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.is-loaded .btn-menu {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards; }

.is-loaded .btn-arrow__menu {
  -webkit-animation: fade-in-left 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards;
          animation: fade-in-left 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards; }

.is-loaded .btn-scroll {
  -webkit-animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards;
          animation: fade-in-bottom 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s backwards; }

.is-loaded .block__title-head span, .is-loaded h1 span:not(.is-orange) {
  -webkit-transform: rotateY(0);
          transform: rotateY(0); }

h2.is-animated span:not(.is-orange), h3.is-animated span:not(.is-orange) {
  -webkit-transform: rotateY(0);
          transform: rotateY(0); }

.lamp-img:not(.is-animated) {
  opacity: 0; }

.mission__text:not(.is-animated) {
  opacity: 0; }

.mission__info-icon:not(.is-animated) {
  opacity: 0; }

.mission__info-block__number:not(.is-animated) {
  opacity: 0; }

.mission__info-block__text:not(.is-animated) {
  opacity: 0; }

.mission__view:not(.is-animated) {
  opacity: 0; }

.place__block-action:not(.is-animated) {
  opacity: 0; }

.mission__img-block:not(.is-animated) {
  opacity: 0; }

.mission__img-asparagus:not(.is-animated) {
  opacity: 0; }

.mission__img-dish:not(.is-animated) {
  opacity: 0; }

.events__col:not(.is-animated) {
  opacity: 0; }

.place__block-text:not(.is-animated) {
  opacity: 0; }

.hand-img:not(.is-animated) {
  opacity: 0; }

.section-five:not(.is-loaded) .component__img {
  opacity: 0; }

.view__menu-col:not(.is-animated) .view__menu-title {
  opacity: 0; }

.view__menu-action:not(.is-animated) {
  opacity: 0; }

.review__item:not(.is-animated) {
  opacity: 0; }

.map__block:not(.is-animated) {
  opacity: 0; }

.map__block-info:not(.is-animated) {
  opacity: 0; }

.map__block-action:not(.is-animated) {
  opacity: 0; }

.read__reviews:not(.is-animated) {
  opacity: 0; }

.footer:not(.is-animated) {
  opacity: 0; }

.section__bg picture.is-animated {
  -webkit-animation: 2s ease 0s 1 normal none running kenburns-top;
          animation: 2s ease 0s 1 normal none running kenburns-top; }

.lamp-img.is-animated {
  -webkit-animation: fade-in-left 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) backwards;
          animation: fade-in-left 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) backwards; }

.mission__text.is-animated, .place__block-text.is-animated {
  -webkit-animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s backwards;
          animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s backwards; }

.mission__info-icon.is-animated {
  -webkit-animation: zoomIn .3s linear 0.4s backwards;
          animation: zoomIn .3s linear 0.4s backwards; }

.mission__info-block__number.is-animated {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.mission__info-block__text.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.mission__view.is-animated, .place__block-action.is-animated {
  -webkit-animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.mission__img-block.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.mission__img-asparagus.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.mission__img-dish.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.events__col.is-animated:first-child {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.events__col.is-animated:nth-child(2) {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.events__col.is-animated:nth-child(3) {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.hand-img.is-animated {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.component__img.img1.is-animated, .section-five.is-loaded .component__img.img1 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.component__img.img2.is-animated, .section-five.is-loaded .component__img.img2 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.25s backwards; }

.component__img.img3.is-animated, .section-five.is-loaded .component__img.img3 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.3s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.3s backwards; }

.component__img.img4.is-animated, .section-five.is-loaded .component__img.img4 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.35s backwards; }

.component__img.img5.is-animated, .section-five.is-loaded .component__img.img5 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4s backwards; }

.component__img.img6.is-animated, .section-five.is-loaded .component__img.img6 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.45s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.45s backwards; }

.component__img.img7.is-animated, .section-five.is-loaded .component__img.img7 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards; }

.component__img.img8.is-animated, .section-five.is-loaded .component__img.img8 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.55s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.55s backwards; }

.component__img.img9.is-animated, .section-five.is-loaded .component__img.img9 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s backwards; }

.component__img.img10.is-animated, .section-five.is-loaded .component__img.img10 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.65s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.65s backwards; }

.component__img.img11.is-animated, .section-five.is-loaded .component__img.img11 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.7s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.7s backwards; }

.component__img.img12.is-animated, .section-five.is-loaded .component__img.img12 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.75s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.75s backwards; }

.component__img.img13.is-animated, .section-five.is-loaded .component__img.img13 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards; }

.component__img.img14.is-animated, .section-five.is-loaded .component__img.img14 {
  -webkit-animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.85s backwards;
          animation: scale-in-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 1.85s backwards; }

.component__img img {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: rotateIt3;
          animation: rotateIt3;
  -webkit-animation-duration: 90s;
          animation-duration: 90s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; }

.view__menu-col-1.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.view__menu-col-1.is-animated .view__menu-title {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.view__menu-col-2.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.view__menu-col-2.is-animated .view__menu-title {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.view__menu-col-3.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.view__menu-col-3.is-animated .view__menu-title {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards; }

.view__menu-col-4.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards; }

.view__menu-col-4.is-animated .view__menu-title {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards; }

.view__menu-col-5.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s backwards; }

.view__menu-col-5.is-animated .view__menu-title {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 2.1s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 2.1s backwards; }

.view__menu-action.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 2.2s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 2.2s backwards; }

.review__item.is-animated:first-child {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.review__item.is-animated:nth-child(2) {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.review__item.is-animated:nth-child(3) {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.map__block.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s backwards; }

.map__block-info.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s backwards; }

.map__block-action.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.read__reviews.is-animated {
  -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards;
          animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s backwards; }

.footer.is-animated {
  -webkit-animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards;
          animation: fade-in-bottom 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2s backwards; }

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.fade-in {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.bounce-left {
  -webkit-animation: bounce-left 0.8s both;
  animation: bounce-left 0.8s both; }

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both; }

@-webkit-keyframes rotateIt3 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotateIt3 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1; } }

@keyframes bounce-left {
  0% {
    -webkit-transform: translateX(-48px);
    transform: translateX(-48px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 1; }
  24% {
    opacity: 1; }
  40% {
    -webkit-transform: translateX(-26px);
    transform: translateX(-26px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  65% {
    -webkit-transform: translateX(-13px);
    transform: translateX(-13px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  82% {
    -webkit-transform: translateX(-6.5px);
    transform: translateX(-6.5px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  93% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1; } }

@-webkit-keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    transform-origin: top; } }

@keyframes kenburns-top {
  0% {
    -webkit-transform: scale(1.25) translateY(-15px);
    transform: scale(1.25) translateY(-15px);
    -webkit-transform-origin: 50% 16%;
    transform-origin: 50% 16%; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: top;
    transform-origin: top; } }

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0; }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
    opacity: 1; } }

.section {
  position: relative; }

.section__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden; }
  .section__bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }

.section__content {
  position: relative;
  z-index: 5; }

.section-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: var(--vh); }
  .section-one .container {
    height: 100%; }
  @media (max-width: 1365px) {
    .section-one .section__bg img {
      -o-object-position: top;
         object-position: top; } }

.section-one .section__bg::before {
  left: 0;
  top: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(51.56%, rgba(34, 27, 21, 0.57)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 51.56%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 51.56%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%; }
  @media (max-width: 1365px) {
    .section-one .section__bg::before {
      background: -webkit-gradient(linear, left top, right top, color-stop(78.41%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(40.77%, rgba(34, 27, 21, 0.81)), to(rgba(0, 0, 0, 0.5)));
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 78.41%, rgba(0, 0, 0, 0.2) 100%), -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.81) 40.77%, rgba(0, 0, 0, 0.5) 100%);
      background: linear-gradient(90deg, rgba(0, 0, 0, 0) 78.41%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.81) 40.77%, rgba(0, 0, 0, 0.5) 100%); } }
  @media (max-width: 767px) {
    .section-one .section__bg::before {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(40.64%, rgba(34, 27, 21, 0.57)), color-stop(72.18%, rgba(0, 0, 0, 0.78)));
      background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 40.64%, rgba(0, 0, 0, 0.78) 72.18%);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 40.64%, rgba(0, 0, 0, 0.78) 72.18%); } }

.block__title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  padding: 5.3125vw 0;
  position: relative; }
  @media (max-width: 1365px) {
    .block__title {
      padding: 70px 0 9.01099vw; } }
  @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
    .block__title {
      padding: 70px 0 1.4652vw; } }
  @media (max-width: 767px) {
    .block__title {
      padding: 51px 0 11.42857vw; } }
  @media (max-width: 427px) {
    .block__title {
      padding: 11.91589vw 0; } }

.block__title-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

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

@media (max-width: 1365px) {
  .block__title-block__left {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 1px;
    padding-right: 40px; } }

@media (max-width: 767px) {
  .block__title-block__left {
    padding-right: 0;
    width: 100%; } }

@media (max-width: 1365px) {
  .block__title-block__right {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

@media (max-width: 767px) {
  .block__title-block__right {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2.14286vw;
    margin-bottom: 10vw; } }

@media (max-width: 427px) {
  .block__title-block__right {
    margin-top: 2.4vw;
    margin-bottom: 7.2vw; } }

.block__title-head {
  font-size: 4.42708vw;
  line-height: 4.42708vw;
  font-family: "georgiaregular", sans-serif;
  letter-spacing: 0.015em;
  color: #fff;
  margin-bottom: 1.77083vw; }
  .block__title-head span {
    display: inline-block;
    -webkit-transition: 1.3s;
    -o-transition: 1.3s;
    transition: 1.3s;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg); }
  @media (max-width: 1365px) {
    .block__title-head {
      font-size: 6.22711vw;
      line-height: 6.22711vw;
      margin-bottom: 1.31868vw; } }
  @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
    .block__title-head {
      font-size: 4.7619vw;
      line-height: 4.7619vw;
      margin-bottom: 0.7326vw; } }
  @media (max-width: 767px) {
    .block__title-head {
      font-size: 9.82143vw;
      line-height: 14.10714vw;
      margin-bottom: 1.42857vw; } }
  @media (max-width: 427px) {
    .block__title-head {
      font-size: 10vw;
      line-height: 14vw;
      margin-bottom: 1vw; } }

.block__title-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media (max-width: 1365px) {
    .block__title-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.block__title-content__left {
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .block__title-content__left h1 {
    font-size: 4.84375vw;
    line-height: 4.84375vw;
    font-family: "georgiaregular", sans-serif;
    text-transform: uppercase;
    color: #F5D5B4;
    font-weight: 400; }
    .block__title-content__left h1 span.is-txt {
      display: block;
      text-transform: none;
      font-family: "georgiaregular", sans-serif;
      color: #fff;
      font-size: 4.42708vw;
      line-height: 4.42708vw;
      margin-top: 0.9375vw; }
    .block__title-content__left h1 .is-txt-main {
      display: inline-block; }
  @media (max-width: 1365px) {
    .block__title-content__left h1 {
      font-size: 6.81319vw;
      line-height: 8.20513vw; }
      .block__title-content__left h1 span.is-txt {
        font-size: 6.22711vw;
        line-height: 8.35165vw;
        margin-top: 0; } }
  @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
    .block__title-content__left h1 {
      font-size: 7.12891vw;
      line-height: 8.00781vw; }
      .block__title-content__left h1 span.is-txt {
        font-size: 6.34766vw;
        line-height: 6.34766vw; } }
  @media (max-width: 767px) {
    .block__title-content__left h1 {
      font-size: 11.25vw;
      line-height: 13.03571vw; }
      .block__title-content__left h1 span.is-txt {
        font-size: 9.82143vw;
        line-height: 14.10714vw; } }
  @media (max-width: 427px) {
    .block__title-content__left h1 {
      font-size: 11.6vw;
      line-height: 14vw; }
      .block__title-content__left h1 span.is-txt {
        font-size: 10vw;
        line-height: 14vw; } }

.block__title-content__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 7.1875vw;
  margin-top: -1.40625vw; }

.btn-menu {
  border-radius: 50%;
  width: 10.57292vw;
  height: 10.57292vw;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.25vw;
  line-height: 1.40625vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff; }
  @media (max-width: 1365px) {
    .btn-menu {
      width: 18.9011vw;
      height: 18.9011vw;
      font-size: 2.05128vw;
      line-height: 2.34432vw;
      margin-top: 0.21978vw; } }
  @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
    .btn-menu {
      width: 14.87179vw;
      height: 14.87179vw;
      font-size: 1.75824vw;
      line-height: 1.97802vw; } }
  @media (max-width: 767px) {
    .btn-menu {
      margin-top: 0;
      width: 27.67857vw;
      height: 27.67857vw;
      font-size: 4.28571vw;
      line-height: 4.82143vw; } }
  @media (max-width: 427px) {
    .btn-menu {
      width: 31vw;
      height: 31vw;
      font-size: 4.8vw;
      line-height: 5.4vw; } }

.btn-menu__icon {
  width: 2.1875vw;
  margin-bottom: 1.01563vw; }
  .btn-menu__icon img {
    width: 100%; }
  @media (max-width: 1365px) {
    .btn-menu__icon {
      width: 4.68864vw;
      margin-bottom: 1.53846vw; } }
  @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
    .btn-menu__icon {
      margin-bottom: 1.9043vw;
      width: 4.10156vw; } }
  @media (max-width: 767px) {
    .btn-menu__icon {
      width: 5.71429vw;
      margin-bottom: 2.67857vw; } }
  @media (max-width: 427px) {
    .btn-menu__icon {
      width: 6.4vw;
      margin-bottom: 3vw; } }

.block__title-scroll {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*
 @include desktop {
  width: auto;
  // margin: 0 auto;
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: vw(123, 1365);
  margin-left: vw(-40, 1365);
 }
 @media screen and (min-width: 768px) and (max-width: 1365px) and (max-height: 1100px) and (min-height: 650px) {
  bottom: vw(20, 1365);
 }
 // new
 @include mobile {
  margin-left: vw(-30, 560);
  bottom: vw(64, 560);
 }
 // new
 @include mobile_sm {
  margin-left: vw(-30, 500);
  bottom: vw(64, 428);
 }
 */ }

.btn-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 4.16667vw;
  height: 4.16667vw;
  background: rgba(245, 213, 180, 0.05);
  border-radius: 50%;
  position: relative;
  z-index: 2; }
  .btn-scroll::before {
    border-radius: 50%;
    width: 2.91667vw;
    height: 2.91667vw;
    background: #F5D5B4;
    top: 50%;
    left: 50%;
    margin-top: -1.45833vw;
    margin-left: -1.45833vw; }
  @media (max-width: 1365px) {
    .btn-scroll {
      width: 5.86081vw;
      height: 5.86081vw; }
      .btn-scroll::before {
        width: 4.10256vw;
        height: 4.10256vw;
        margin-top: -2.05128vw;
        margin-left: -2.05128vw; } }
  @media (max-width: 767px) {
    .btn-scroll {
      width: 10.71429vw;
      height: 10.71429vw; }
      .btn-scroll::before {
        width: 7.5vw;
        height: 7.5vw;
        margin-top: -3.75vw;
        margin-left: -3.75vw; } }
  @media (max-width: 427px) {
    .btn-scroll {
      width: 12vw;
      height: 12vw; }
      .btn-scroll::before {
        width: 8.4vw;
        height: 8.4vw;
        margin-top: -4.2vw;
        margin-left: -4.2vw; } }

.btn-scroll__icon {
  position: relative;
  z-index: 2;
  width: 1.35417vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.20833vw; }
  .btn-scroll__icon img {
    width: 100%; }
  @media (max-width: 1365px) {
    .btn-scroll__icon {
      width: 1.90476vw;
      margin-top: 0.21978vw; } }
  @media (max-width: 767px) {
    .btn-scroll__icon {
      width: 3.39286vw;
      margin-top: 0.71429vw; } }
  @media (max-width: 427px) {
    .btn-scroll__icon {
      width: 3.8vw;
      margin-top: 0.8vw; } }

.btn-arrow__menu {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5.67708vw; }
  .btn-arrow__menu img {
    width: 100%; }
  @media (max-width: 1365px) {
    .btn-arrow__menu {
      position: relative;
      width: 12.45421vw;
      top: -1.90476vw; } }
  @media (max-width: 767px) {
    .btn-arrow__menu {
      top: 0;
      width: 27.67857vw; } }
  @media (max-width: 427px) {
    .btn-arrow__menu {
      top: 0;
      width: 31vw; } }

@media (max-width: 1365px) {
  .block__btn-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    float: left;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; } }

.inline-block {
  display: inline-block; }

.section-two {
  z-index: 3;
  padding-top: 5.83333vw;
  padding-bottom: 5.78125vw; }
  @media (max-width: 1365px) {
    .section-two {
      padding-top: 99px;
      padding-bottom: 123px; } }
  @media (max-width: 767px) {
    .section-two {
      padding-top: 51px;
      padding-bottom: 63px; } }
  @media (max-width: 427px) {
    .section-two {
      padding-top: 11.91589vw;
      padding-bottom: 14.71963vw; } }

.section-two .section__bg::before {
  left: 0;
  top: 0;
  z-index: 3;
  background: -o-linear-gradient(359.72deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
  background: linear-gradient(90.28deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
  width: 100%;
  height: 100%; }

.lamp-img {
  position: absolute;
  left: 0;
  top: -2.1875vw;
  z-index: 3;
  width: 23.75vw; }
  @media (min-width: 1366px) {
    .lamp-img {
      height: 26.51042vw; } }
  .lamp-img img {
    width: 100%; }
    @media (min-width: 1366px) {
      .lamp-img img {
        height: 100%; } }
  @media (max-width: 1365px) {
    .lamp-img {
      left: -19px;
      top: -141px;
      width: 456px; } }
  @media (max-width: 767px) {
    .lamp-img {
      width: 130px;
      left: 0;
      top: -97px; } }
  @media (max-width: 427px) {
    .lamp-img {
      width: 30.37383vw;
      left: 0;
      top: -22.66355vw; } }

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

.mission__content-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-right: 11.71875vw;
  padding-top: 3.07292vw; }
  .mission__content-left h2 {
    margin-bottom: 2.8125vw; }
  @media (max-width: 1365px) {
    .mission__content-left {
      width: 100%;
      padding-right: 0;
      padding-top: 0;
      margin-bottom: 121px; }
      .mission__content-left h2 {
        margin-bottom: 86px; } }
  @media (max-width: 767px) {
    .mission__content-left {
      margin-bottom: 63px; }
      .mission__content-left h2 {
        margin-bottom: 36px; }
        .mission__content-left h2 span.is-orange {
          display: block;
          width: 100%; } }
  @media (max-width: 427px) {
    .mission__content-left {
      margin-bottom: 14.71963vw; }
      .mission__content-left h2 {
        margin-bottom: 8.41121vw; } }

.mission__text {
  margin-bottom: 5.15625vw; }
  @media (max-width: 1365px) {
    .mission__text {
      margin-bottom: 99px; } }
  @media (max-width: 767px) {
    .mission__text {
      margin-bottom: 51px; } }
  @media (max-width: 427px) {
    .mission__text {
      margin-bottom: 11.91589vw; } }

.mission__content-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 29.0625vw; }
  @media (max-width: 1365px) {
    .mission__content-right {
      width: 100%;
      max-width: 790px;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .mission__content-right {
      max-width: 378px; } }
  @media (max-width: 427px) {
    .mission__content-right {
      max-width: 88.31776vw; } }

.mission__info {
  margin-bottom: 3.54167vw;
  padding-right: 7.70833vw; }
  @media (max-width: 1365px) {
    .mission__info {
      padding-right: 0;
      margin-bottom: 102px; } }
  @media (max-width: 767px) {
    .mission__info {
      margin-bottom: 47px; } }
  @media (max-width: 427px) {
    .mission__info {
      margin-bottom: 10.98131vw; } }

.mission__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -0.52083vw;
  margin-left: -0.52083vw;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  @media (max-width: 1365px) {
    .mission__info-list {
      margin-right: -10px;
      margin-left: -10px;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 767px) {
    .mission__info-list {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      margin: 0; } }

.mission__info-item {
  padding-right: 0.52083vw;
  padding-left: 0.52083vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.14583vw;
  line-height: 1.875vw;
  font-family: "georgiaregular", sans-serif;
  color: #FFF7EE; }
  @media (min-width: 1366px) {
    .mission__info-item {
      width: 50%; } }
  @media (max-width: 1365px) {
    .mission__info-item {
      padding-right: 10px;
      padding-left: 10px;
      font-size: 22px;
      line-height: 36px; } }
  @media (max-width: 767px) {
    .mission__info-item {
      width: 100%;
      padding: 0;
      font-size: 21px;
      line-height: 35px; }
      .mission__info-item:not(:last-child) {
        margin-bottom: 29px; } }
  @media (max-width: 427px) {
    .mission__info-item {
      font-size: 4.90654vw;
      line-height: 8.17757vw; }
      .mission__info-item:not(:last-child) {
        margin-bottom: 6.7757vw; } }

.mission__info-icon {
  margin-right: 1.19792vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.20833vw; }
  .mission__info-icon.icon-rating img {
    width: 2.65625vw; }
  .mission__info-icon.icon-reviews img {
    width: 4.42708vw; }
  @media (max-width: 1365px) {
    .mission__info-icon {
      margin-right: 23px;
      padding-top: 5px; }
      .mission__info-icon.icon-rating img {
        width: 51px; }
      .mission__info-icon.icon-reviews img {
        width: 85px; } }
  @media (max-width: 767px) {
    .mission__info-icon {
      margin-right: 0;
      width: 88px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
      .mission__info-icon.icon-reviews img {
        width: 72px; } }
  @media (max-width: 427px) {
    .mission__info-icon {
      width: 20.56075vw; }
      .mission__info-icon.icon-rating img {
        width: 11.91589vw; }
      .mission__info-icon.icon-reviews img {
        width: 16.82243vw; } }

.mission__info-block {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.mission__info-block__number {
  font-size: 1.66667vw;
  line-height: 1.92708vw;
  color: #F5D5B4;
  margin-bottom: 0.10417vw; }
  @media (max-width: 1365px) {
    .mission__info-block__number {
      font-size: 32px;
      line-height: 37px;
      margin-bottom: 3px; } }
  @media (max-width: 767px) {
    .mission__info-block__number {
      margin-bottom: 2px; } }
  @media (max-width: 427px) {
    .mission__info-block__number {
      font-size: 7.47664vw;
      line-height: 8.64486vw;
      margin-bottom: 0.46729vw; } }

.mission__info-block__text {
  white-space: nowrap; }

.btn-orange {
  display: block;
  float: left;
  font-size: 1.04167vw;
  line-height: 1.71875vw;
  font-family: "georgiaregular", sans-serif;
  color: #F5D5B4;
  font-weight: 400; }
  .btn-orange span {
    display: inline-block;
    border-bottom: 1px solid;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s; }
  .has-hover .btn-orange:not([disabled]):hover span {
    border-color: transparent; }
  @media (max-width: 1365px) {
    .btn-orange {
      font-size: 20px;
      line-height: 33px; } }
  @media (max-width: 427px) {
    .btn-orange {
      font-size: 4.6729vw;
      line-height: 7.71028vw; } }

.mission__img-block {
  background: rgba(245, 213, 180, 0.1);
  padding-top: 0.9375vw;
  padding-bottom: 0.9375vw;
  position: relative; }
  @media (max-width: 1365px) {
    .mission__img-block {
      padding: 24px 27px 24px 0;
      background: none; }
      .mission__img-block::before {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        width: calc(100% - 27px);
        height: 100%;
        background: rgba(245, 213, 180, 0.1); } }
  @media (max-width: 767px) {
    .mission__img-block {
      padding: 24px 24px 24px 0; }
      .mission__img-block::before {
        width: calc(100% - 24px); } }
  @media (max-width: 427px) {
    .mission__img-block {
      padding: 5.60748vw 5.60748vw 5.60748vw 0; }
      .mission__img-block::before {
        width: calc(100% - 5.60748vw); } }

.mission__img-main {
  position: relative;
  overflow: hidden;
  left: -0.9375vw;
  padding-bottom: 125.63%; }
  .mission__img-main picture {
    display: block; }
  .mission__img-main img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    float: left;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  .mission__img-main img {
    /*
  width: vw(558, 1920);
  
  @media(min-width: 1366px) {
   height:  vw(701, 1920);
  }
  */ }
  @media (max-width: 1365px) {
    .mission__img-main {
      left: 0;
      padding-bottom: 106.881%; } }
  @media (max-width: 767px) {
    .mission__img-main {
      padding-bottom: 131.243%; } }

.mission__img-asparagus {
  position: absolute;
  bottom: -0.41667vw;
  z-index: 1;
  width: 9.0625vw; }
  @media (min-width: 1366px) {
    .mission__img-asparagus {
      left: -10.52083vw; } }
  .mission__img-asparagus img {
    width: 100%; }
  @media (max-width: 1365px) {
    .mission__img-asparagus {
      bottom: -76px;
      width: 174px;
      right: 49px; } }
  @media (max-width: 1023px) {
    .mission__img-asparagus {
      right: 102px; } }
  @media (max-width: 767px) {
    .mission__img-asparagus {
      width: 115px;
      bottom: -68px;
      right: 46px; } }
  @media (max-width: 427px) {
    .mission__img-asparagus {
      width: 26.86916vw;
      bottom: -15.88785vw;
      right: 10.74766vw; } }

.mission__img-dish {
  position: absolute;
  z-index: 2;
  bottom: -12.34375vw;
  width: 29.53125vw; }
  @media (min-width: 1366px) {
    .mission__img-dish {
      left: -14.375vw; } }
  .mission__img-dish img {
    width: 100%; }
  @media (max-width: 1365px) {
    .mission__img-dish {
      bottom: -304px;
      width: 567px;
      right: -273px; } }
  @media (max-width: 1023px) {
    .mission__img-dish {
      right: -220px; } }
  @media (max-width: 767px) {
    .mission__img-dish {
      width: 395px;
      right: -175px;
      bottom: -237px; } }
  @media (max-width: 427px) {
    .mission__img-dish {
      width: 92.28972vw;
      right: -40.88785vw;
      bottom: -55.37383vw; } }

.section-three {
  background: #1D110D;
  padding-top: 6.77083vw;
  padding-bottom: 8.33333vw; }
  .section-three .section__bg::before {
    display: none !important; }
  @media (max-width: 1365px) {
    .section-three {
      padding-top: 106px;
      padding-bottom: 83px; } }
  @media (max-width: 767px) {
    .section-three {
      padding-top: 52px;
      padding-bottom: 43px; } }
  @media (max-width: 427px) {
    .section-three {
      padding-top: 12.14953vw;
      padding-bottom: 10.04673vw; } }

.events__content h2 {
  margin-bottom: 1.30208vw; }

@media (max-width: 1365px) {
  .events__content h2 {
    margin-bottom: 97px; } }

@media (max-width: 767px) {
  .events__content h2 {
    margin-bottom: 42px; }
    .events__content h2 span.is-orange {
      display: block; } }

@media (max-width: 427px) {
  .events__content h2 {
    margin-bottom: 9.81308vw; } }

.events__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -1.04167vw;
  margin-left: -1.04167vw; }
  @media (max-width: 1365px) {
    .events__row {
      margin-right: -21px;
      margin-left: -21px; } }
  @media (max-width: 767px) {
    .events__row {
      margin-right: -13.5px;
      margin-left: -13.5px; } }
  @media (max-width: 427px) {
    .events__row {
      margin-right: -3.15421vw;
      margin-left: -3.15421vw; } }

.events__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.33333333%;
  padding-left: 1.04167vw;
  padding-right: 1.04167vw; }
  @media (max-width: 1365px) {
    .events__col {
      padding-left: 21px;
      padding-right: 21px;
      width: 833px;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }
  @media (max-width: 1023px) {
    .events__col {
      width: 701px; } }
  @media (max-width: 767px) {
    .events__col {
      padding-left: 13.5px;
      padding-right: 13.5px;
      width: 378px; } }
  @media (max-width: 427px) {
    .events__col {
      padding-left: 3.15421vw;
      padding-right: 3.15421vw;
      width: 88.31776vw; } }

.events__block-img {
  margin-bottom: 1.92708vw; }
  @media (max-width: 1365px) {
    .events__block-img {
      margin-bottom: 109px; } }
  @media (max-width: 767px) {
    .events__block-img {
      margin-bottom: 51px; } }
  @media (max-width: 427px) {
    .events__block-img {
      margin-bottom: 11.91589vw; } }

.event__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2; }
  .event__img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }
  .event__img::before, .event__img::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 1; }
  .event__img::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(48.24%, rgba(0, 0, 0, 0)), color-stop(81.09%, rgba(0, 0, 0, 0.7))), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 48.24%, rgba(0, 0, 0, 0.7) 81.09%), -o-linear-gradient(bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48.24%, rgba(0, 0, 0, 0.7) 81.09%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }
  .event__img::after {
    opacity: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(55.52%, rgba(0, 0, 0, 0)), color-stop(81.09%, rgba(0, 0, 0, 0.7)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 55.52%, rgba(0, 0, 0, 0.7) 81.09%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.52%, rgba(0, 0, 0, 0.7) 81.09%); }

.events__block-img__link {
  overflow: hidden;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 1.14583vw;
  line-height: 1.875vw;
  font-family: "georgiaregular", sans-serif;
  color: #FFF7EE;
  padding-bottom: 81.957%; }
  .events__block-img__link::before {
    background: rgba(245, 213, 180, 0.1);
    height: 100%;
    left: 0;
    top: 0;
    width: calc(100% - 0.98958vw);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  @media (min-width: 1366px) {
    .has-hover .events__block-img__link:not([disabled]):hover::before {
      -webkit-transform: translateX(0.98958vw);
          -ms-transform: translateX(0.98958vw);
              transform: translateX(0.98958vw); }
    .has-hover .events__block-img__link:not([disabled]):hover .event__img {
      width: calc(100% - 0.98958vw);
      height: calc(100% - 1.97917vw);
      -webkit-transform: translateY(0.98958vw);
          -ms-transform: translateY(0.98958vw);
              transform: translateY(0.98958vw); }
      .has-hover .events__block-img__link:not([disabled]):hover .event__img::before {
        background: -webkit-gradient(linear, left top, left bottom, color-stop(55.52%, rgba(0, 0, 0, 0)), color-stop(81.09%, rgba(0, 0, 0, 0.7)));
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 55.52%, rgba(0, 0, 0, 0.7) 81.09%);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.52%, rgba(0, 0, 0, 0.7) 81.09%); }
    .has-hover .events__block-img__link:not([disabled]):hover .events__block-img__content {
      height: calc(100% - 1.97917vw);
      -webkit-transform: translateY(0.98958vw);
          -ms-transform: translateY(0.98958vw);
              transform: translateY(0.98958vw); } }
  @media (max-width: 1365px) {
    .events__block-img__link {
      padding-bottom: 101.518%;
      font-size: 22px;
      line-height: 36px; }
      .events__block-img__link::before {
        width: 100%; } }
  @media (max-width: 767px) {
    .events__block-img__link {
      padding-bottom: 161.54%;
      font-size: 21px;
      line-height: 35px; } }
  @media (max-width: 427px) {
    .events__block-img__link {
      font-size: 4.90654vw;
      line-height: 8.17757vw; } }

.event__title {
  font-size: 2.1875vw;
  line-height: 2.5vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff;
  margin-bottom: 0.88542vw; }
  @media (max-width: 1365px) {
    .event__title {
      font-size: 42px;
      line-height: 48px;
      margin-bottom: 17px; } }
  @media (max-width: 767px) {
    .event__title {
      margin-bottom: 16px; } }
  @media (max-width: 427px) {
    .event__title {
      font-size: 9.81308vw;
      line-height: 11.21495vw;
      margin-bottom: 3.73832vw; } }

@media (max-width: 1365px) {
  .event__desk {
    max-width: 67%; } }

@media (max-width: 767px) {
  .event__desk {
    max-width: 100%; } }

.events__block-img__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding-left: 2.5vw;
  padding-right: 1.97917vw;
  padding-top: 1.77083vw;
  padding-bottom: 1.61458vw;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  @media (max-width: 1365px) {
    .events__block-img__content {
      padding: 30px 50px 49px; } }
  @media (max-width: 767px) {
    .events__block-img__content {
      padding: 25px 21px 43px 25px; } }
  @media (max-width: 427px) {
    .events__block-img__content {
      padding: 5.84112vw 4.90654vw 10.04673vw 5.84112vw; } }

@media (max-width: 1365px) {
  .events__container {
    padding-bottom: 20px;
    overflow-y: auto;
    width: calc(100% + 117px); } }

@media (max-width: 1023px) {
  .events__container {
    width: calc(100% + 25px); } }

.section-four {
  padding-top: 6.77083vw;
  padding-bottom: 8.28125vw; }
  @media (max-width: 1365px) {
    .section-four {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-top: 106px;
      padding-bottom: 123px;
      min-height: var(--vh);
      overflow: hidden; }
      .section-four .container {
        height: 100%; } }
  @media (max-width: 767px) {
    .section-four {
      padding-top: 52px;
      padding-bottom: 66px;
      overflow: visible; } }
  @media (max-width: 427px) {
    .section-four {
      padding-top: 12.14953vw;
      padding-bottom: 15.42056vw; } }

.section-four .section__bg::before {
  left: 0;
  top: 0;
  z-index: 3;
  background: -o-linear-gradient(359.93deg, rgba(0, 0, 0, 0.3) 50.27%, rgba(0, 0, 0, 0) 99.99%), -o-linear-gradient(bottom, rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.71));
  background: linear-gradient(90.07deg, rgba(0, 0, 0, 0.3) 50.27%, rgba(0, 0, 0, 0) 99.99%), linear-gradient(0deg, rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.71));
  width: 100%;
  height: 100%; }

@media (max-width: 1365px) {
  .place__content {
    height: 100%; } }

@media (min-width: 1366px) {
  .place__block {
    max-width: 46.35417vw; } }

.place__block h2 {
  margin-bottom: 2.29167vw; }
  .place__block h2 .is-txt {
    display: inline-block; }

@media (max-width: 1365px) {
  .place__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%; }
    .place__block h2 {
      margin-bottom: 89px; } }

@media (max-width: 767px) {
  .place__block h2 {
    margin-bottom: 36px; }
    .place__block h2 .inline-block {
      line-height: 0; } }

@media (max-width: 427px) {
  .place__block h2 {
    margin-bottom: 8.41121vw; } }

.place__block-text {
  padding-bottom: 2.60417vw; }
  @media (min-width: 1366px) {
    .place__block-text {
      min-height: 16.66667vw; } }
  @media (max-width: 1365px) {
    .place__block-text {
      padding-bottom: 50px;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; } }
  @media (max-width: 427px) {
    .place__block-text {
      padding-bottom: 11.68224vw; } }

.hand-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44.47917vw;
  z-index: 3; }
  .hand-img img {
    width: 100%; }
  @media (max-width: 1365px) {
    .hand-img {
      width: 617px; } }
  @media (max-width: 767px) {
    .hand-img {
      width: 230px;
      bottom: -19px; } }
  @media (max-width: 427px) {
    .hand-img {
      width: 53.73832vw; } }

.components__content {
  padding-top: 7.8125vw;
  padding-bottom: 29.63542vw;
  position: relative;
  z-index: 2; }
  @media (min-width: 1366px) {
    .components__content h2 {
      line-height: 6.25vw; } }
  @media (max-width: 1365px) {
    .components__content {
      padding-top: 91px;
      padding-bottom: 150px;
      min-height: 1366px; }
      .components__content h2 div {
        white-space: nowrap; } }
  @media (max-width: 767px) {
    .components__content {
      padding-top: 50px;
      padding-bottom: 50px;
      min-height: 926px; }
      .components__content h2 {
        font-size: 60px;
        line-height: 68px; }
        .components__content h2 div {
          white-space: normal; } }
  @media (max-width: 427px) {
    .components__content {
      padding-top: 11.68224vw;
      padding-bottom: 11.68224vw;
      min-height: 216.35514vw; }
      .components__content h2 {
        font-size: 14.01869vw;
        line-height: 15.88785vw; } }

.component__img {
  display: block;
  position: absolute; }
  .component__img picture {
    width: 100%; }
  .component__img img {
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .component__img.img1 {
    left: -2.65625vw;
    top: 41.25vw;
    width: 4.375vw; }
    @media (max-width: 1365px) {
      .component__img.img1 {
        width: 84px;
        left: -136px;
        top: 952px; } }
    @media (max-width: 1023px) {
      .component__img.img1 {
        left: -44px; } }
    @media (max-width: 767px) {
      .component__img.img1 {
        width: 37px;
        top: 544px;
        left: -40px; } }
    @media (max-width: 427px) {
      .component__img.img1 {
        width: 8.64486vw;
        top: 127.1028vw;
        left: -9.34579vw; } }
  .component__img.img2 {
    left: -3.38542vw;
    top: 18.02083vw;
    width: 31.71875vw; }
    @media (max-width: 1365px) {
      .component__img.img2 {
        width: 555px;
        top: 299px;
        left: -348px; } }
    @media (max-width: 1023px) {
      .component__img.img2 {
        left: -258px; } }
    @media (max-width: 767px) {
      .component__img.img2 {
        left: -108px;
        top: 245px;
        width: 344px; } }
    @media (max-width: 427px) {
      .component__img.img2 {
        left: -25.23364vw;
        top: 57.24299vw;
        width: 80.37383vw; } }
  .component__img.img3 {
    top: 18.17708vw;
    left: 18.38542vw;
    width: 3.48958vw; }
    @media (max-width: 1365px) {
      .component__img.img3 {
        width: 67px;
        top: 277px;
        left: 35%; } }
    @media (max-width: 767px) {
      .component__img.img3 {
        top: 231px;
        width: 37px;
        left: 46%; } }
    @media (max-width: 427px) {
      .component__img.img3 {
        top: 53.97196vw;
        width: 8.64486vw; } }
  .component__img.img4 {
    top: 35.20833vw;
    left: 36.14583vw;
    width: 5.05208vw; }
    @media (max-width: 1365px) {
      .component__img.img4 {
        left: 1%;
        top: 1047px;
        width: 97px; } }
    @media (max-width: 767px) {
      .component__img.img4 {
        width: 62px;
        left: -7px;
        top: 731px; } }
    @media (max-width: 427px) {
      .component__img.img4 {
        width: 14.48598vw;
        left: -1.63551vw;
        top: 170.79439vw; } }
  .component__img.img5 {
    top: 40.20833vw;
    left: 46.14583vw;
    width: 5.20833vw; }
    @media (max-width: 1365px) {
      .component__img.img5 {
        width: 100px;
        left: 25%;
        top: 1144px; } }
    @media (max-width: 1023px) {
      .component__img.img5 {
        left: 14%; } }
    @media (max-width: 767px) {
      .component__img.img5 {
        top: 808px;
        left: 56px;
        width: 65px; } }
    @media (max-width: 427px) {
      .component__img.img5 {
        top: 188.78505vw;
        left: 13.08411vw;
        width: 15.18692vw; } }
  .component__img.img6 {
    top: 20.20833vw;
    left: 43.02083vw;
    width: 14.63542vw; }
    @media (max-width: 1365px) {
      .component__img.img6 {
        top: 639px;
        left: 22%;
        width: 319px; } }
    @media (max-width: 767px) {
      .component__img.img6 {
        width: 180px;
        top: 523px;
        left: 44px; } }
    @media (max-width: 427px) {
      .component__img.img6 {
        width: 42.05607vw;
        top: 122.19626vw;
        left: 10.28037vw; } }
  .component__img.img7 {
    top: 15.05208vw;
    left: 53.59375vw;
    width: 2.08333vw; }
    @media (max-width: 1365px) {
      .component__img.img7 {
        top: 418px;
        left: 41.5%;
        width: 40px; } }
    @media (max-width: 767px) {
      .component__img.img7 {
        width: 29px;
        top: 142px;
        left: inherit;
        right: 8px; } }
    @media (max-width: 427px) {
      .component__img.img7 {
        width: 6.7757vw;
        top: 33.17757vw;
        right: 1.86916vw; } }
  .component__img.img8 {
    top: 20.41667vw;
    left: 65.57292vw;
    width: 1.875vw; }
    @media (max-width: 1365px) {
      .component__img.img8 {
        width: 36px;
        top: 555px;
        left: inherit;
        right: 215px; } }
    @media (max-width: 1023px) {
      .component__img.img8 {
        right: 307px; } }
    @media (max-width: 767px) {
      .component__img.img8 {
        width: 23px;
        right: 111px;
        top: 506px; } }
    @media (max-width: 427px) {
      .component__img.img8 {
        width: 5.37383vw;
        right: 25.93458vw;
        top: 118.2243vw; } }
  .component__img.img9 {
    top: 9.63542vw;
    left: 68.64583vw;
    width: 0.57292vw; }
    @media (max-width: 1365px) {
      .component__img.img9 {
        width: 11px;
        left: inherit;
        right: 136px;
        top: 298px; } }
    @media (max-width: 1023px) {
      .component__img.img9 {
        right: 272px; } }
    @media (max-width: 767px) {
      .component__img.img9 {
        width: 8px;
        right: 103px;
        top: 274px; } }
    @media (max-width: 427px) {
      .component__img.img9 {
        width: 1.86916vw;
        right: 24.06542vw;
        top: 64.01869vw; } }
  .component__img.img10 {
    top: 20.625vw;
    left: 75.72917vw;
    width: 1.51042vw; }
    @media (max-width: 1365px) {
      .component__img.img10 {
        width: 29px;
        left: inherit;
        top: 626px;
        right: 54px; } }
    @media (max-width: 1023px) {
      .component__img.img10 {
        right: 146px; } }
    @media (max-width: 767px) {
      .component__img.img10 {
        right: 83px;
        top: 600px;
        width: 20px; } }
    @media (max-width: 427px) {
      .component__img.img10 {
        right: 19.39252vw;
        top: 140.18692vw;
        width: 4.6729vw; } }
  .component__img.img11 {
    top: -5.67708vw;
    right: -6.19792vw;
    width: 25.9375vw; }
    @media (max-width: 1365px) {
      .component__img.img11 {
        width: 460px;
        right: -260px;
        top: 178px; } }
    @media (max-width: 1023px) {
      .component__img.img11 {
        right: -168px; } }
    @media (max-width: 767px) {
      .component__img.img11 {
        top: 280px;
        width: 368px;
        right: -202px; } }
    @media (max-width: 427px) {
      .component__img.img11 {
        top: 65.42056vw;
        width: 85.98131vw;
        right: -47.19626vw; } }
  .component__img.img12 {
    top: 24.94792vw;
    right: 0vw;
    width: 26.51042vw; }
    @media (max-width: 1365px) {
      .component__img.img12 {
        right: -90px;
        top: 905px;
        width: 509px; } }
    @media (max-width: 1023px) {
      .component__img.img12 {
        right: 2px; } }
    @media (max-width: 767px) {
      .component__img.img12 {
        width: 340px;
        right: -104px;
        top: 631px; } }
    @media (max-width: 427px) {
      .component__img.img12 {
        width: 79.43925vw;
        right: -24.29907vw;
        top: 147.42991vw; } }
  .component__img.img13 {
    top: 41.5625vw;
    right: -2.44792vw;
    width: 5.10417vw; }
    @media (max-width: 1365px) {
      .component__img.img13 {
        right: -136px;
        top: 1220px;
        width: 98px;
        height: 98px; } }
    @media (max-width: 1023px) {
      .component__img.img13 {
        right: -44px; } }
    @media (max-width: 767px) {
      .component__img.img13 {
        width: 65px;
        right: -31px;
        top: 962px; } }
    @media (max-width: 427px) {
      .component__img.img13 {
        width: 15.18692vw;
        right: -7.24299vw;
        top: 224.76636vw; } }
  .component__img.img14 {
    top: 23.33333vw;
    right: 4.73958vw;
    width: 0.88542vw; }
    @media (max-width: 1365px) {
      .component__img.img14 {
        width: 17px;
        right: -60px;
        top: 678px; } }
    @media (max-width: 767px) {
      .component__img.img14 {
        display: none; } }

.section-six {
  padding-top: 7.86458vw;
  padding-bottom: 6.45833vw; }
  @media (max-width: 1365px) {
    .section-six {
      padding-top: 89px;
      padding-bottom: 102px; } }
  @media (max-width: 767px) {
    .section-six {
      padding-top: 41px;
      padding-bottom: 63px; } }
  @media (max-width: 427px) {
    .section-six {
      padding-top: 9.57944vw;
      padding-bottom: 14.71963vw; } }

.section-six .section__bg::before {
  left: 0;
  top: 0;
  z-index: 3;
  background: -o-linear-gradient(359.72deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
  background: linear-gradient(90.28deg, #120D0C 0.24%, rgba(18, 13, 12, 0) 54.61%, #120D0C 99.77%);
  width: 100%;
  height: 100%; }

.view__menu h2 {
  margin-bottom: 1.19792vw; }

@media (max-width: 1365px) {
  .view__menu h2 {
    margin-bottom: 88px; } }

@media (max-width: 767px) {
  .view__menu h2 {
    font-size: 60px;
    line-height: 68px;
    margin-bottom: 48px; } }

@media (max-width: 427px) {
  .view__menu h2 {
    font-size: 14.01869vw;
    line-height: 15.88785vw;
    margin-bottom: 11.21495vw; } }

@media (max-width: 1365px) {
  .view__menu-content {
    padding-bottom: 20px;
    overflow-y: auto;
    width: calc(100% + 117px); } }

@media (max-width: 1023px) {
  .view__menu-content {
    width: calc(100% + 25px); } }

.view__menu-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -1.51042vw;
  margin-left: -1.51042vw; }
  @media (max-width: 1365px) {
    .view__menu-row {
      margin-right: -21px;
      margin-left: -21px; } }
  @media (max-width: 767px) {
    .view__menu-row {
      margin-right: -12px;
      margin-left: -12px; } }
  @media (max-width: 427px) {
    .view__menu-row {
      margin-right: -2.80374vw;
      margin-left: -2.80374vw; } }

.view__menu-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  padding-right: 1.51042vw;
  padding-left: 1.51042vw; }
  @media (max-width: 1365px) {
    .view__menu-col {
      padding-right: 21px;
      padding-left: 21px;
      width: 573px;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }
  @media (max-width: 767px) {
    .view__menu-col {
      width: 378px;
      padding-right: 12px;
      padding-left: 12px; } }
  @media (max-width: 427px) {
    .view__menu-col {
      width: 88.31776vw;
      padding-right: -2.80374vw;
      padding-left: -2.80374vw; } }

.view__menu-block {
  position: relative;
  font-size: 2.1875vw;
  line-height: 2.5vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff;
  white-space: nowrap; }
  .view__menu-block::after {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: rgba(245, 213, 180, 0.1);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
  @media (min-width: 1366px) {
    .has-hover .view__menu-block:not([disabled]):hover .view__menu-img {
      -webkit-transform: translateX(-0.98958vw);
          -ms-transform: translateX(-0.98958vw);
              transform: translateX(-0.98958vw);
      width: calc(100% + 0.98958vw); }
    .has-hover .view__menu-block:not([disabled]):hover .view__menu-title {
      -webkit-transform: translateX(-0.98958vw);
          -ms-transform: translateX(-0.98958vw);
              transform: translateX(-0.98958vw); }
    .has-hover .view__menu-block:not([disabled]):hover::after {
      width: calc(100% + 0.98958vw);
      height: calc(100% + 1.97917vw);
      -webkit-transform: translateY(-0.98958vw);
          -ms-transform: translateY(-0.98958vw);
              transform: translateY(-0.98958vw); } }
  @media (max-width: 1365px) {
    .view__menu-block {
      font-size: 42px;
      line-height: 48px; } }
  @media (max-width: 427px) {
    .view__menu-block {
      font-size: 9.81308vw;
      line-height: 11.21495vw; } }

.view__menu-img {
  overflow: hidden;
  padding-bottom: 147.09%;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2; }
  .view__menu-img::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  .view__menu-img img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left; }
  .view__menu-img picture {
    display: block;
    position: absolute;
    left: 0;
    top: 0; }
  @media (max-width: 1365px) {
    .view__menu-img {
      padding-bottom: 151.225%; } }

.view__menu-title {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding-top: 1.77083vw;
  padding-left: 2.5vw;
  padding-right: 1.66667vw;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  @media (max-width: 1365px) {
    .view__menu-title {
      padding: 45px 50px; } }
  @media (max-width: 767px) {
    .view__menu-title {
      padding: 45px 24px; } }
  @media (max-width: 427px) {
    .view__menu-title {
      padding: 10.51402vw 5.60748vw; } }

.view__menu-action {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.91667vw; }
  .view__menu-action .btn-orange {
    font-size: 1.25vw;
    line-height: 2.08333vw; }
  @media (max-width: 1365px) {
    .view__menu-action {
      margin-top: 73px; }
      .view__menu-action .btn-orange {
        font-size: 24px;
        line-height: 40px; } }
  @media (max-width: 767px) {
    .view__menu-action {
      margin-top: 29px;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  @media (max-width: 427px) {
    .view__menu-action {
      margin-top: 6.7757vw; } }

.section-seven {
  background: #1D110D;
  padding-top: 6.30208vw; }
  @media (max-width: 1365px) {
    .section-seven {
      padding-top: 84px; }
      .section-seven .section__bg img {
        -o-object-position: bottom;
           object-position: bottom; } }
  @media (max-width: 767px) {
    .section-seven {
      padding-top: 52px; } }
  @media (max-width: 427px) {
    .section-seven {
      padding-top: 12.14953vw; } }

.section-seven .section__bg::before {
  left: 0;
  top: 0;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(51.56%, rgba(34, 27, 21, 0.57)), to(rgba(0, 0, 0, 0.5)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 51.56%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(34, 27, 21, 0.57) 51.56%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%; }
  @media (max-width: 1365px) {
    .section-seven .section__bg::before {
      display: none; } }

.seven__content h3 {
  margin-bottom: 2.03125vw; }

@media (max-width: 1365px) {
  .seven__content h3 {
    margin-bottom: 77px; }
    .seven__content h3 span {
      display: inline-block; } }

@media (max-width: 767px) {
  .seven__content h3 {
    margin-bottom: 35px; } }

@media (max-width: 427px) {
  .seven__content h3 {
    margin-bottom: 8.17757vw; } }

@media (min-width: 1366px) {
  .seven__block-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -1.64063vw;
    margin-left: -1.64063vw; } }

@media (max-width: 1365px) {
  .seven__block-row {
    display: block;
    float: left;
    width: 100%;
    margin: 0; } }

@media (min-width: 1366px) {
  .seven__col {
    padding-right: 1.64063vw;
    padding-left: 1.64063vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; } }

@media (max-width: 1365px) {
  .seven__col {
    display: block;
    float: left;
    width: 100%;
    padding: 0; } }

@media (min-width: 1366px) {
  .seven__block-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; } }

.seven__block-left {
  width: 59%;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  @media (max-width: 1365px) {
    .seven__block-left {
      display: block;
      float: left;
      width: 100%;
      margin-bottom: 89px; } }
  @media (max-width: 767px) {
    .seven__block-left {
      margin-bottom: 53px; } }
  @media (max-width: 427px) {
    .seven__block-left {
      margin-bottom: 12.38318vw; } }

.seven__block-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px; }
  @media (max-width: 1365px) {
    .seven__block-right {
      display: block;
      float: left;
      width: 100%; } }

.map__block {
  height: 21.71875vw;
  background: rgba(255, 255, 255, 0.5); }
  @media (max-width: 1365px) {
    .map__block {
      height: 792px; } }
  @media (max-width: 767px) {
    .map__block {
      height: 465px; } }
  @media (max-width: 427px) {
    .map__block {
      height: 108.64486vw; } }

.map__block-info {
  border: 2px solid #F5D5B4;
  padding-left: 1.40625vw;
  padding-right: 1.40625vw;
  padding-top: 1.25vw;
  padding-bottom: 1.14583vw;
  margin-bottom: 3.28125vw; }
  @media (max-width: 1365px) {
    .map__block-info {
      padding: 24px 27px 22px;
      margin-bottom: 104px; } }
  @media (max-width: 767px) {
    .map__block-info {
      margin-bottom: 55px;
      padding: 22px 27px 24px; } }
  @media (max-width: 427px) {
    .map__block-info {
      margin-bottom: 12.85047vw;
      padding: 5.14019vw 6.30841vw 5.60748vw; } }

.map__block-info__title {
  margin-bottom: 0.52083vw;
  font-size: 1.25vw;
  line-height: 1.40625vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff; }
  @media (max-width: 1365px) {
    .map__block-info__title {
      font-size: 24px;
      line-height: 27px;
      margin-bottom: 10px; } }
  @media (max-width: 767px) {
    .map__block-info__title {
      margin-bottom: 3px; } }
  @media (max-width: 427px) {
    .map__block-info__title {
      margin-bottom: 0.70093vw;
      font-size: 5.60748vw;
      line-height: 6.30841vw; } }

.map__block-info__txt p {
  font-weight: 400;
  font-size: 0.9375vw;
  line-height: 1.5625vw; }
  @media (max-width: 1365px) {
    .map__block-info__txt p {
      font-size: 18px;
      line-height: 30px; } }
  @media (max-width: 427px) {
    .map__block-info__txt p {
      font-size: 4.20561vw;
      line-height: 7.00935vw; } }

.map__block-action .btn-orange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375vw;
  line-height: 1.5625vw; }
  @media (min-width: 1366px) {
    .map__block-action .btn-orange img {
      width: 0.78125vw;
      margin-top: 0.3125vw;
      margin-right: 0.72917vw; } }
  @media (max-width: 1365px) {
    .map__block-action .btn-orange {
      font-size: 18px;
      line-height: 30px; }
      .map__block-action .btn-orange img {
        width: 15px;
        margin-right: 14px;
        margin-top: 6px; } }
  @media (max-width: 427px) {
    .map__block-action .btn-orange {
      font-size: 4.20561vw;
      line-height: 7.00935vw; }
      .map__block-action .btn-orange img {
        width: 3.50467vw;
        margin-right: 3.27103vw;
        margin-top: 1.40187vw; } }

.review__list {
  margin-bottom: 3.28125vw; }
  @media (max-width: 1365px) {
    .review__list {
      margin-bottom: 104px; } }
  @media (max-width: 767px) {
    .review__list {
      margin-bottom: 38px; } }
  @media (max-width: 427px) {
    .review__list {
      margin-bottom: 8.8785vw; } }

.review__item {
  border: 1px solid #F5D5B4;
  padding-top: 1.35417vw;
  padding-left: 1.77083vw;
  padding-bottom: 1.25vw;
  padding-right: 1.875vw; }
  .review__item:not(:last-child) {
    margin-bottom: 0.78125vw; }
  @media (max-width: 1365px) {
    .review__item {
      padding: 32px 41px 30px 48px; }
      .review__item:not(:last-child) {
        margin-bottom: 28px; } }
  @media (max-width: 767px) {
    .review__item {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 49px 23px 38px; }
      .review__item:not(:last-child) {
        margin-bottom: 26px; } }
  @media (max-width: 427px) {
    .review__item {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      padding: 11.4486vw 5.37383vw 8.8785vw; }
      .review__item:not(:last-child) {
        margin-bottom: 6.07477vw; } }

.review__block-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 7.39583vw;
  padding-right: 0.52083vw;
  padding-top: 0.41667vw;
  padding-bottom: 0.46875vw; }
  @media (max-width: 1365px) {
    .review__block-left {
      width: 147px;
      padding: 10px 10px 13px 0; } }
  @media (max-width: 767px) {
    .review__block-left {
      width: 100%;
      padding: 0;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      margin-bottom: 13px; } }
  @media (max-width: 427px) {
    .review__block-left {
      margin-bottom: 3.03738vw; } }

.review__block-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px; }
  .review__block-right p {
    font-size: 0.83333vw;
    line-height: 1.51042vw;
    color: #fff; }
    @media (min-width: 1366px) {
      .review__block-right p {
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
        -webkit-line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical; } }
    @media (max-width: 1365px) {
      .review__block-right p {
        font-size: 22px;
        line-height: 39px; } }
    @media (max-width: 767px) {
      .review__block-right p {
        font-size: 16px;
        line-height: 29px; } }
    @media (max-width: 427px) {
      .review__block-right p {
        font-size: 3.73832vw;
        line-height: 6.7757vw; } }

.review__block-author {
  margin-bottom: 0.41667vw; }
  .review__block-author img {
    border-radius: 50%;
    width: 2.29167vw; }
  @media (max-width: 1365px) {
    .review__block-author {
      margin-bottom: 22px; }
      .review__block-author img {
        width: 59px; } }
  @media (max-width: 767px) {
    .review__block-author {
      width: 50px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-bottom: 0; }
      .review__block-author img {
        width: 100%; } }
  @media (max-width: 427px) {
    .review__block-author {
      width: 11.68224vw; } }

@media (max-width: 767px) {
  .review__block-content {
    padding-left: 22px;
    padding-top: 1px; } }

@media (max-width: 427px) {
  .review__block-content {
    padding-left: 5.14019vw; } }

.review__block-author__name {
  font-size: 0.83333vw;
  line-height: 1.35417vw;
  font-family: "georgiaregular", sans-serif;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 0.36458vw; }
  @media (max-width: 1365px) {
    .review__block-author__name {
      white-space: normal;
      margin-bottom: 10px;
      font-size: 18px;
      line-height: 22px; } }
  @media (max-width: 767px) {
    .review__block-author__name {
      margin-bottom: 8px; } }
  @media (max-width: 427px) {
    .review__block-author__name {
      font-size: 4.20561vw;
      line-height: 5.14019vw;
      margin-bottom: 1.86916vw; } }

.review__block-stars {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .review__block-stars img {
    width: 0.83333vw; }
    .review__block-stars img:not(:last-child) {
      margin-right: 0.10417vw; }
    @media (max-width: 1365px) {
      .review__block-stars img {
        width: 21px; }
        .review__block-stars img:not(:last-child) {
          margin-right: 3px; } }
    @media (max-width: 767px) {
      .review__block-stars img {
        width: 16px; }
        .review__block-stars img:not(:last-child) {
          margin-right: 2px; } }
    @media (max-width: 427px) {
      .review__block-stars img {
        width: 3.73832vw; } }

.read__reviews .btn-orange {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375vw;
  line-height: 1.5625vw; }
  @media (max-width: 1365px) {
    .read__reviews .btn-orange {
      font-size: 18px;
      line-height: 30px; } }
  @media (max-width: 427px) {
    .read__reviews .btn-orange {
      font-size: 4.20561vw;
      line-height: 7.00935vw; } }

/*# sourceMappingURL=main.css.map */
