@charset "UTF-8";
/* 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/Playfair/PlayfairDisplay-Black.woff2") format("woff2"), url("../fonts/Playfair/PlayfairDisplay-Black.woff") format("woff");
  font-family: "Playfair";
  font-weight: 900;
  font-style: normal; }

@font-face {
  src: url("../fonts/Playfair/PlayfairDisplay-Bold.woff2") format("woff2"), url("../fonts/Playfair/PlayfairDisplay-Bold.woff") format("woff");
  font-family: "Playfair";
  font-weight: 700;
  font-style: normal; }

@font-face {
  src: url("../fonts/Playfair/PlayfairDisplay-SemiBold.woff2") format("woff2"), url("../fonts/Playfair/PlayfairDisplay-SemiBold.woff") format("woff");
  font-family: "Playfair";
  font-weight: 600;
  font-style: normal; }

@font-face {
  src: url("../fonts/Playfair/PlayfairDisplay-Medium.woff2") format("woff2"), url("../fonts/Playfair/PlayfairDisplay-Medium.woff") format("woff");
  font-family: "Playfair";
  font-weight: 500;
  font-style: normal; }

@font-face {
  src: url("../fonts/Playfair/PlayfairDisplay-Regular.woff2") format("woff2"), url("../fonts/Playfair/PlayfairDisplay-Regular.woff") format("woff");
  font-family: "Playfair";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/Golos/golos-text_bold.woff2") format("woff2"), url("../fonts/Golos/golos-text_bold.woff") format("woff");
  font-family: "Golos Text", sans-serif;
  font-weight: 700;
  font-style: normal; }

@font-face {
  src: url("../fonts/Golos/golos-text_regular.woff2") format("woff2"), url("../fonts/Golos/golos-text_regular.woff") format("woff");
  font-family: "Golos Text", sans-serif;
  font-weight: 400;
  font-style: normal; }

/*! 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 {
  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 {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

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

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif; }
  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%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "Golos Text";
  color: #0D0D0D; }

main {
  flex: 1; }

p {
  margin: 0; }

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

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

svg {
  display: block;
  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: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .btn__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    color: currentColor;
    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: 86.11111vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1240px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 2.66667vmin;
      padding-right: 2.66667vmin; } }

input {
  outline: none; }

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

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

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

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

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

@media (min-width: 576px) and (max-width: 1024px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 1025px) {
  .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 */
::-moz-selection {
  color: #fff;
  background-color: #987e52; }
::selection {
  color: #fff;
  background-color: #987e52; }

.hero {
  display: flex;
  min-height: 100vh; }
  .hero__aside {
    flex-basis: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__aside {
        display: none; } }
    @media (max-width: 575px) {
      .hero__aside {
        display: none; } }
  .hero__logo {
    width: 5.55556vw;
    margin-left: 3.33333vw;
    margin-top: 3.33333vw; }
    @media (min-width: 1800px) {
      .hero__logo {
        width: 120px;
        margin-left: 80px;
        margin-top: 80px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__logo {
        margin-left: 0;
        margin-top: 0;
        width: 8.37696vw; } }
    @media (max-width: 575px) {
      .hero__logo {
        margin-left: 0;
        margin-top: 0;
        width: 12.8vmin; } }
  .hero__main {
    flex-basis: 75%;
    background-color: #B0976D;
    padding: 0 8.33%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__main {
        flex-basis: 100%;
        padding: 0 2.6178vw; } }
    @media (max-width: 575px) {
      .hero__main {
        flex-basis: 100%;
        padding: 0 5.33333vmin;
        justify-content: flex-start; } }
  .hero__header {
    padding-top: 3.47222vw;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 1800px) {
      .hero__header {
        padding-top: 50px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__header {
        padding: 1.04712vw 2.6178vw;
        margin: 0 -2.6178vw;
        background-color: #fff; } }
    @media (max-width: 575px) {
      .hero__header {
        padding: 2.13333vmin 5.33333vmin;
        margin: 0 -5.33333vmin;
        background-color: #fff; } }
  .hero__nav {
    text-transform: uppercase;
    padding-left: 3.33333vw; }
    .hero__nav ul {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1.66667vw;
      font-size: 1.11111vw; }
      .hero__nav ul li a:hover {
        color: #B0976D; }
      @media (min-width: 1800px) {
        .hero__nav ul {
          gap: 32px;
          font-size: 16px; } }
    @media (min-width: 1800px) {
      .hero__nav {
        padding-left: 80px; } }
  .hero__contact {
    display: flex;
    align-items: center;
    gap: 1.11111vw;
    font-size: 1.11111vw;
    color: #fff; }
    .hero__contact svg {
      width: 1.66667vw;
      height: 1.66667vw;
      color: #fff; }
      @media (min-width: 1800px) {
        .hero__contact svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .hero__contact svg {
          width: 3.14136vw;
          height: 3.14136vw;
          color: #B0976D; } }
      @media (max-width: 575px) {
        .hero__contact svg {
          width: 6.4vmin;
          height: 6.4vmin;
          color: #B0976D; } }
    .hero__contact ul {
      display: flex;
      gap: 2.22222vw; }
      @media (min-width: 1800px) {
        .hero__contact ul {
          gap: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .hero__contact ul {
          gap: 2.09424vw; } }
      @media (max-width: 575px) {
        .hero__contact ul {
          gap: 4.26667vmin;
          display: block; } }
    @media (max-width: 575px) {
      .hero__contact--add {
        display: none; } }
    @media (min-width: 1800px) {
      .hero__contact {
        gap: 16px;
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__contact {
        gap: 2.09424vw;
        font-size: 2.09424vw;
        color: #0D0D0D; } }
    @media (max-width: 575px) {
      .hero__contact {
        gap: 4.26667vmin;
        font-size: 4.26667vmin;
        color: #0D0D0D; } }
  .hero__center {
    color: #fff;
    position: relative;
    z-index: 1; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__center {
        margin: 10.4712vw 0; } }
    @media (max-width: 575px) {
      .hero__center {
        margin: 17.06667vmin 0;
        padding-bottom: 32.8vmin; } }
  .hero__image {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    top: -2.22222vw;
    width: 23.61111vw;
    border-radius: 0 11.11111vw 0 11.11111vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; }
    @media (min-width: 1800px) {
      .hero__image {
        top: -52px;
        width: 479px;
        border-radius: 0 250px 0 250px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__image {
        top: -4.18848vw;
        width: 31.41361vw;
        border-radius: 0 15.70681vw 0 15.70681vw; } }
    @media (max-width: 575px) {
      .hero__image {
        width: 44.53333vmin;
        height: 59.73333vmin;
        border-radius: 0 23.2vmin 0 23.2vmin;
        top: auto;
        bottom: 0; } }
  .hero__title {
    font-size: 4.86111vw;
    margin-bottom: 2.77778vw;
    line-height: 100%;
    font-weight: 600;
    font-family: "Playfair", serif;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .hero__title {
        font-size: 100px;
        margin-bottom: 54px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__title {
        font-size: 5.2356vw;
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .hero__title {
        font-size: 8.8vmin;
        margin-bottom: 8.53333vmin; } }
  .hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 11.11111vw;
    height: 11.11111vw;
    border: 1px solid #fff; }
    .hero__scroll svg {
      width: 4.44444vw;
      height: 4.44444vw; }
      @media (min-width: 1800px) {
        .hero__scroll svg {
          width: 100px;
          height: 100px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .hero__scroll svg {
          width: 6.28272vw;
          height: 6.28272vw; } }
      @media (max-width: 575px) {
        .hero__scroll svg {
          width: 12.8vmin;
          height: 12.8vmin; } }
    .hero__scroll:hover {
      background-color: #fff;
      color: #B0976D; }
    @media (min-width: 1800px) {
      .hero__scroll {
        width: 240px;
        height: 240px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .hero__scroll {
        width: 15.70681vw;
        height: 15.70681vw; } }
    @media (max-width: 575px) {
      .hero__scroll {
        width: 26.66667vmin;
        height: 26.66667vmin; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .hero {
      min-height: auto; } }
  @media (max-width: 575px) {
    .hero {
      min-height: 137.86667vmin; } }

.catalog {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2px;
  position: relative;
  overflow: hidden; }
  .catalog__item {
    flex-basis: 25%;
    border: 1px solid #D9D9D9;
    margin-left: -1px;
    margin-top: -1px;
    min-height: 50vh; }
    .catalog__item.fc-mixer-end {
      -webkit-animation: fcMixerEnd 600ms;
              animation: fcMixerEnd 600ms; }
    @media (max-width: 575px) {
      .catalog__item:nth-child(2n) {
        border-right: none; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .catalog__item {
        flex-basis: 50%;
        min-height: auto; } }
    @media (max-width: 575px) {
      .catalog__item {
        flex-basis: 50%;
        max-width: 50%;
        min-height: auto; } }
  @media (max-width: 575px) {
    .catalog {
      padding-left: 0; } }

.filters {
  display: flex;
  gap: 1px;
  background-color: #404040; }
  .filters__item {
    flex-grow: 1;
    color: #fff;
    background: none;
    padding: 0;
    border: none;
    flex-basis: 100%;
    height: 5.55556vw;
    font-size: 1.11111vw;
    background-color: #0D0D0D; }
    .filters__item.mixitup-control-active {
      background-color: #987e52;
      font-weight: 500; }
    .filters__item:hover:not(.mixitup-control-active) {
      color: #B0976D; }
    @media (min-width: 1800px) {
      .filters__item {
        height: 80px;
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filters__item {
        height: 8.37696vw;
        font-size: 2.09424vw;
        flex-basis: calc(25% - 1px); } }
    @media (max-width: 575px) {
      .filters__item {
        height: 12.8vmin;
        font-size: 3.2vmin;
        flex-basis: calc(25% - 1px); } }
    .filters__item[data-filter="all"] {
      flex-basis: calc(25% - 1px);
      flex-shrink: 0; }
      @media (min-width: 576px) and (max-width: 1024px) {
        .filters__item[data-filter="all"] {
          flex-basis: 100%; } }
      @media (max-width: 575px) {
        .filters__item[data-filter="all"] {
          flex-basis: 100%; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filters {
      flex-wrap: wrap; } }
  @media (max-width: 575px) {
    .filters {
      flex-wrap: wrap; } }

.product {
  padding: 2.22222vw;
  transition: all .3s ease-out;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .product:hover {
    z-index: 2;
    border-color: #B0976D; }
  .product__title {
    font-family: "Playfair";
    font-size: 1.66667vw;
    line-height: 100%;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1800px) {
      .product__title {
        font-size: 24px;
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__title {
        font-size: 3.14136vw;
        margin-bottom: 1.57068vw; } }
    @media (max-width: 575px) {
      .product__title {
        font-size: 4.26667vmin;
        margin-bottom: 3.2vmin; } }
  .product__subtitle {
    font-size: 0.83333vw;
    font-style: italic;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1800px) {
      .product__subtitle {
        font-size: 12px;
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__subtitle {
        font-size: 1.57068vw;
        margin-bottom: 1.57068vw; } }
    @media (max-width: 575px) {
      .product__subtitle {
        font-size: 2.66667vmin;
        margin-bottom: 1.6vmin; } }
  .product__stars {
    display: flex; }
  .product__star svg {
    width: 1.11111vw;
    height: 1.11111vw; }
    @media (min-width: 1800px) {
      .product__star svg {
        width: 16px;
        height: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__star svg {
        width: 2.09424vw;
        height: 2.09424vw; } }
    @media (max-width: 575px) {
      .product__star svg {
        width: 4.26667vmin;
        height: 4.26667vmin; } }
  .product__chars {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.22222vw; }
    @media (min-width: 1800px) {
      .product__chars {
        gap: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__chars {
        gap: 4.18848vw; } }
    @media (max-width: 575px) {
      .product__chars {
        gap: 8.53333vmin; } }
  .product__char {
    font-size: 0.97222vw;
    display: flex;
    align-items: center;
    gap: 0.83333vw; }
    .product__char span {
      width: 2.22222vw;
      height: 2.22222vw;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid #B0976D; }
      @media (min-width: 1800px) {
        .product__char span {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__char span {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .product__char span {
          width: 6.4vmin;
          height: 6.4vmin;
          transform: scale(0.8); } }
    .product__char--bottle svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .product__char--bottle svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__char--bottle svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .product__char--bottle svg {
          width: 5.33333vmin;
          height: 5.33333vmin; } }
    .product__char--percent svg {
      width: 0.83333vw;
      height: 0.83333vw; }
      @media (min-width: 1800px) {
        .product__char--percent svg {
          width: 12px;
          height: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__char--percent svg {
          width: 1.57068vw;
          height: 1.57068vw; } }
      @media (max-width: 575px) {
        .product__char--percent svg {
          width: 3.2vmin;
          height: 3.2vmin; } }
    @media (min-width: 1800px) {
      .product__char {
        font-size: 14px;
        gap: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__char {
        font-size: 1.83246vw;
        gap: 1.57068vw; } }
    @media (max-width: 575px) {
      .product__char {
        font-size: 2.66667vmin;
        gap: 1.06667vmin; } }
  .product__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 13.88889vw; }
    .product__image img {
      max-height: 100%; }
    @media (min-width: 1800px) {
      .product__image {
        height: 230px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__image {
        height: 30.10471vw; } }
    @media (max-width: 575px) {
      .product__image {
        height: 61.33333vmin; } }
  @media (min-width: 1800px) {
    .product {
      padding: 46px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .product {
      padding: 3.14136vw; } }
  @media (max-width: 575px) {
    .product {
      padding: 4.26667vmin;
      gap: 3.2vmin; } }

.company {
  background-color: #B0976D;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0 8.33%;
  color: #fff; }
  .company__container {
    display: flex;
    align-items: center; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .company__container {
        align-items: flex-start; } }
    @media (max-width: 575px) {
      .company__container {
        align-items: flex-start; } }
  .company__image {
    flex-basis: 25%;
    position: relative;
    z-index: 1;
    border-radius: 11.11111vw 0 11.11111vw 0;
    overflow: hidden; }
    @media (min-width: 1800px) {
      .company__image {
        border-radius: 250px 0 250px 0; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .company__image {
        border-radius: 10.4712vw 0 10.4712vw 0; } }
    @media (max-width: 575px) {
      .company__image {
        display: none; } }
  .company__content {
    margin-left: 8.33%;
    flex-basis: 66.66%; }
    @media (max-width: 575px) {
      .company__content {
        margin-left: 0;
        flex-basis: 100%; } }
  .company__heading {
    font-family: "Playfair", serif;
    font-size: 2.77778vw;
    line-height: 100%;
    margin-bottom: 2.22222vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .company__heading {
        font-size: 48px;
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .company__heading {
        font-size: 4.18848vw;
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .company__heading {
        font-size: 8.53333vmin;
        margin-bottom: 6.4vmin; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .company {
      min-height: auto;
      padding: 10.4712vw 2.6178vw; } }
  @media (max-width: 575px) {
    .company {
      min-height: auto;
      padding: 17.06667vmin 5.33333vmin; } }

.typography {
  font-size: 0.97222vw;
  line-height: 150%; }
  .typography p {
    margin-bottom: 1em; }
  @media (min-width: 1800px) {
    .typography {
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .typography {
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .typography {
      font-size: 3.73333vmin; } }

.contacts {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 2.77778vw;
  background-color: #957B51;
  padding: 6.94444vw 8.33%;
  color: #fff;
  font-size: 1.11111vw; }
  @media (min-width: 1800px) {
    .contacts {
      gap: 40px;
      padding: 100px 8.33%;
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contacts {
      gap: 5.2356vw;
      padding: 10.4712vw 2.6178vw;
      font-size: 2.09424vw;
      flex-direction: column; } }
  @media (max-width: 575px) {
    .contacts {
      gap: 10.66667vmin;
      padding: 17.06667vmin 5.33333vmin;
      font-size: 4.26667vmin;
      flex-direction: column; } }

.contact__subtitle {
  font-family: "Playfair", serif;
  margin-bottom: 0.41667vw;
  font-weight: 500;
  font-size: 1.11111vw; }
  @media (min-width: 1800px) {
    .contact__subtitle {
      margin-bottom: 6px;
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contact__subtitle {
      margin-bottom: 0.78534vw;
      font-size: 2.09424vw; } }
  @media (max-width: 575px) {
    .contact__subtitle {
      margin-bottom: 1.6vmin;
      font-size: 4.26667vmin; } }

.contact__title {
  font-size: 1.66667vw;
  line-height: 150%; }
  @media (min-width: 1800px) {
    .contact__title {
      font-size: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contact__title {
      font-size: 3.14136vw; } }
  @media (max-width: 575px) {
    .contact__title {
      font-size: 6.4vmin; } }

.footer {
  background-color: #0D0D0D;
  text-align: center;
  padding: 1.66667vw 0;
  font-size: 0.83333vw;
  color: #808080; }
  .footer__copyright {
    margin-bottom: 0.41667vw; }
    @media (min-width: 1800px) {
      .footer__copyright {
        margin-bottom: 6px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__copyright {
        margin-bottom: 0.78534vw; } }
    @media (max-width: 575px) {
      .footer__copyright {
        margin-bottom: 1.6vmin; } }
  .footer a:hover {
    color: #fff; }
    .footer a:hover span {
      color: orange; }
  @media (min-width: 1800px) {
    .footer {
      padding: 24px 0;
      font-size: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .footer {
      padding: 3.14136vw 0;
      font-size: 1.57068vw; } }
  @media (max-width: 575px) {
    .footer {
      padding: 6.4vmin 0;
      font-size: 2.66667vmin; } }

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

@keyframes fcMixerEnd {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

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