@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/Gotham/GothamProRBlack.woff2") format("woff2"),
  url("../fonts/Gotham/GothamProRBlack.woff") format("woff");
  font-family: "Gotham";
  font-weight: 900;
  font-display: swap;
  font-style: normal; }

@font-face {
  src: url("../fonts/Gotham/GothamProRBold.woff2") format("woff2"),
  url("../fonts/Gotham/GothamProRBold.woff") format("woff");
  font-family: "Gotham";
  font-weight: 700;
  font-display: swap;
  font-style: normal; }
@font-face {
  src:
  url("../fonts/Gotham/GothamProRMedium.woff2") format("woff2"),
  url("../fonts/Gotham/GothamProRMedium.woff") format("woff");
  font-family: "Gotham";
  font-weight: 500;
  font-display: swap;
  font-style: normal; }

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

@font-face {
  src: url("../fonts/Gotham/GothamProRLight.woff2") format("woff2"),
  url("../fonts/Gotham/GothamProRLight.woff") format("woff");
  font-family: "Gotham";
  font-weight: 300;
  font-display: swap;
  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 {
  -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; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  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;
  -webkit-box-sizing: border-box;
          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: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  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;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      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: 1.15;
  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%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            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;
  -webkit-box-sizing: border-box;
          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;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            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: 1.15;
  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;
    -webkit-box-sizing: border-box;
            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 {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

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

html {
  /*position: relative;*/
  /*overflow-x: hidden;*/
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: -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;
  font-family: "Gotham", sans-serif;
  color: #171717; }

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

p {
  margin: 0; }

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

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

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: 86.11111vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1240px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 3.125vmin;
      padding-right: 3.125vmin; } }

input {
  outline: none; }

.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 */
@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: 1024px) {
  .for-desktop {
    display: none !important; } }

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

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

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

@media (min-width: 992px) 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 */
.header {
  margin-bottom: 5.41667vw;
  padding-top: 2.08333vw;
  position: relative;
  max-width: 100%; }
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 1024px) {
      .header__container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .header__logo img {
    width: 15.48611vw;
    height: 4.51389vw; }
    @media (min-width: 1800px) {
      .header__logo img {
        width: 223px;
        height: 65px; } }
    @media (max-width: 1024px) {
      .header__logo img {
        width: 45.9375vmin;
        height: 13.75vmin; } }
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .header__right {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.04167vw;
    margin-right: 7.98611vw; }
    .header__nav a {
      margin-right: 1.31944vw; }
      .header__nav a:hover {
        color: #B0B0B0; }
      @media (min-width: 1800px) {
        .header__nav a {
          margin-right: 19px; } }
      @media (max-width: 1024px) {
        .header__nav a {
          margin-right: 0;
          font-size: 5.625vmin;
          font-weight: 700;
          width: 100%;
          margin-bottom: 11.25vmin; } }
    @media (min-width: 1800px) {
      .header__nav {
        font-size: 15px;
        margin-right: 115px; } }
    @media (max-width: 1024px) {
      .header__nav {
        font-size: 4.6875vmin;
        margin-right: 0;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-top: 18.125vmin;
        width: 100%;
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 12.5vmin;
        z-index: 99;
        padding-left: 4.6875vmin;
        padding-right: 4.6875vmin;
        background-color: #fff; }
        .header__nav.is-active {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
  .header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .header__wrap {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        padding-top: 1.875vmin; } }
  .header__insta:hover {
    color: #B0B0B0; }
  .header__insta svg {
    width: 1.52778vw;
    height: 1.52778vw; }
    @media (min-width: 1800px) {
      .header__insta svg {
        width: 22px;
        height: 22px; } }
    @media (max-width: 1024px) {
      .header__insta svg {
        width: 6.25vmin;
        height: 6.25vmin; } }
  @media (max-width: 1024px) {
    .header__insta {
      display: none; }
      .header__insta.is-active {
        display: block; } }
  .header__lng {
    font-size: 1.04167vw;
    margin-left: 1.18056vw; }
    @media (min-width: 1800px) {
      .header__lng {
        font-size: 15px;
        margin-left: 17px; } }
    @media (max-width: 1024px) {
      .header__lng {
        font-size: 4.6875vmin;
        margin-left: 4.6875vmin;
        display: none; }
        .header__lng.is-active {
          display: block; } }
  .header__btn-menu {
    margin-left: 3.125vmin;
     }
    .header__btn-menu svg {
      width: 5.625vmin;
      height: 5.625vmin; }
    .header__btn-menu-close {
      display: none; }
      .header__btn-menu-close svg {
        margin-top: 2px;
        margin-right: 2px;
        width: 4.375vmin;
        height: 4.375vmin; }
    .header__btn-menu.is-active {
      margin-top: 0; }
      .header__btn-menu.is-active .header__btn-menu-open {
        display: none; }
      .header__btn-menu.is-active .header__btn-menu-close {
        display: block; }
  @media (min-width: 1800px) {
    .header {
      margin-bottom: 80px;
      padding-top: 30px; } }
  @media (max-width: 1024px) {
    .header {
      margin-bottom: 54px;
      padding-top: 3.125vmin;
      position: relative;
      z-index: 100; } }

.overlay {
  position: absolute;
  top: 10%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .overlay.is-active {
    visibility: visible;
    opacity: 1; }
  @media (min-width: 1025px) {
    .overlay {
      visibility: hidden !important;
      opacity: 0 !important; } }
  @media (min-width: 1800px) {
    .overlay {
      visibility: hidden !important;
      opacity: 0 !important; } }

body.menu-open {
  overflow: hidden;
  height: 100vh; }
  @media (min-width: 1025px) {
    body.menu-open {
      position: relative !important; } }
  @media (min-width: 1800px) {
    body.menu-open {
      position: relative !important; } }

.footer {
  margin-top: var(--pb-с);
  border-top: 1px solid #EFEFEF;
  padding: 3.81944vw 0;
  font-size: 1.04167vw; }
  .footer__container {
    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; }
    @media (max-width: 1024px) {
      .footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .footer__menu {
    color: #8B8B8B; }
    .footer__menu a {
      margin-left: 1.25vw; }
      .footer__menu a:hover {
        color: #171717; }
      @media (min-width: 1800px) {
        .footer__menu a {
          margin-left: 18px; } }
      @media (max-width: 1024px) {
        .footer__menu a {
          margin-left: 0;
          margin-right: 6.25vmin;
          margin-bottom: 2.5vmin;
          display: inline-block; } }
  @media (max-width: 1024px) {
    .footer__copyright {
      margin-bottom: 5.625vmin; } }
  @media (min-width: 1800px) {
    .footer {
      margin-top: 70px;
      padding: 55px 0;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .footer {
      margin-top: 11.25vmin;
      padding: 12.5vmin 0 9.375vmin;
      font-size: 4.0625vmin; } }

.shedule-block {
  margin-bottom: 5.55556vw; }
  .shedule-block__wrapper {
    position: relative;
    overflow: hidden; }
  .shedule-block__title {
    margin-top: 0;
    margin-bottom: 2.77778vw;
    font-size: 1.80556vw;
    line-height: 1.15;
    margin-bottom: 3.33333vw; }
    @media (min-width: 1800px) {
      .shedule-block__title {
        margin-bottom: 40px;
        font-size: 26px;
        margin-bottom: 48px; } }
  @media (min-width: 1800px) {
    .shedule-block {
      margin-bottom: 80px; } }
  @media (max-width: 1024px) {
    .shedule-block {
      display: none; } }

.shedule {
  margin-bottom: 1.52778vw; }
  .shedule:first-child .shedule__header + .shedule__item .shedule__cell:after {
    display: none !important; }
  .shedule__header {
    border-right: 1px solid #EFEFEF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .shedule__header + .shedule__item .shedule__cell:after {
      content: "";
      position: absolute;
      left: -0.06944vw;
      bottom: 100%;
      top: -5.55556vw;
      width: 0.06944vw;
      background-color: #EFEFEF; }
      @media (min-width: 1800px) {
        .shedule__header + .shedule__item .shedule__cell:after {
          left: -1px;
          top: -80px;
          width: 1px; } }
    @media (min-width: 1800px) {
      .shedule__header {
        margin-bottom: 10px; } }
  .shedule__th {
    width: 100%;
    padding-bottom: 0.69444vw; }
    .shedule__th--name {
      width: 29.16667vw;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      font-size: 1.04167vw; }
      @media (min-width: 1800px) {
        .shedule__th--name {
          width: 420px;
          font-size: 15px; } }
    .shedule__th--quarter {
      font-size: 0.90278vw;
      color: #B0B0B0;
      position: relative;
      background-color: #fff;
      z-index: 2; }
      .shedule__th--quarter:after {
        content: "";
        position: absolute;
        left: -0.06944vw;
        bottom: 0;
        top: -6.94444vw;
        width: 0.13889vw;
        background-color: #fff;
        z-index: 2; }
        @media (min-width: 1800px) {
          .shedule__th--quarter:after {
            left: -1px;
            top: -150px;
            width: 2px; } }
      @media (min-width: 1800px) {
        .shedule__th--quarter {
          font-size: 13px; } }
    @media (min-width: 1800px) {
      .shedule__th {
        padding-bottom: 10px; } }
  .shedule__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .shedule__item:hover .shedule__name {
      color: #171717; }
    .shedule__item:hover .shedule__active {
      background-color: #171717; }
  .shedule__name {
    width: 29.16667vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 0.90278vw;
    color: #B0B0B0;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    min-height: 1.66667vw;
    line-height: 1.9; }
    @media (min-width: 1800px) {
      .shedule__name {
        width: 420px;
        font-size: 13px;
        min-height: 24px; } }
  .shedule__cell {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    height: 1.66667vw;
    border-right: 1px solid #EFEFEF;
    position: relative; }
    .shedule__cell:last-child:after {
      content: "";
      position: absolute;
      right: -0.06944vw;
      bottom: 0;
      top: -6.94444vw;
      width: 0.06944vw;
      background-color: #E0E0E0; }
      @media (min-width: 1800px) {
        .shedule__cell:last-child:after {
          right: -1px;
          top: -100px;
          width: 1px; } }
    .shedule__cell--quarter:after {
      content: "";
      position: absolute;
      left: -0.06944vw;
      bottom: 0;
      top: -10.41667vw;
      width: 0.06944vw;
      background-color: #E0E0E0; }
      @media (min-width: 1800px) {
        .shedule__cell--quarter:after {
          left: -1px;
          top: -150px;
          width: 1px; } }
    @media (min-width: 1800px) {
      .shedule__cell {
        height: 24px; } }
  .shedule__active {
    height: 1.52778vw;
    border-radius: 2.5vw;
    background-color: #EFEFEF;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    position: relative;
    z-index: 1; }
    .shedule__active--last {
      margin-left: 50%; }
    .shedule__active--half {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      width: 50%; }
    .shedule__active--100 {
      width: 100%; }
    .shedule__active--200 {
      width: 200%; }
    .shedule__active--300 {
      width: 300%; }
    .shedule__active--750 {
      width: 750%; }
    @media (min-width: 1800px) {
      .shedule__active {
        height: 22px;
        border-radius: 36px; } }
  @media (min-width: 1800px) {
    .shedule {
      margin-bottom: 22px; } }

.title-h1 {
  /*font-size: 1.80556vw;*/
  font-size: 26px;
  margin-top: 0;
  /* line-height: 1.15;*/
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2.77778vw; }
  @media (min-width: 1800px) {
    .title-h1 {

      /* line-height: 1.15;*/
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .title-h1 {
      /* line-height: 1.15;*/
      margin-bottom: 6.25vmin; } }

.title-h2 {
  font-size: 1.80556vw;
  margin-top: 0;
   line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2.77778vw; }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 26px;
       line-height: 1.15;
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .title-h2 {
      font-size: 5.9375vmin;
       line-height: 1.15;
      margin-bottom: 6.25vmin; } }

a.link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  a.link:hover {
    color: #B0B0B0; }
  a.link:after {
    content: "";
    display: inline-block;
    width: 0.69444vw;
    height: 0.69444vw;
    margin-left: 0.20833vw;
    background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
    background-size: 0.69444vw; }
    @media (min-width: 1800px) {
      a.link:after {
        width: 10px;
        height: 10px;
        margin-left: 3px;
        background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
        background-size: 10px; } }
    @media (max-width: 1024px) {
      a.link:after {
        width: 3.125vmin;
        height: 3.125vmin;
        margin-left: 0.9375vmin;
        background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
        background-size: 3.125vmin; } }

.link-block a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .link-block a:hover {
    color: #B0B0B0; }
  .link-block a:after {
    content: "";
    display: inline-block;
    width: 0.69444vw;
    height: 0.69444vw;
    margin-left: 0.20833vw;
    background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
    background-size: 0.69444vw; }
    @media (min-width: 1800px) {
      .link-block a:after {
        width: 10px;
        height: 10px;
        margin-left: 3px;
        background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
        background-size: 10px; } }
    @media (max-width: 1024px) {
      .link-block a:after {
        width: 3.125vmin;
        height: 3.125vmin;
        margin-left: 0.9375vmin;
        background: url(../images/sprites/svg/arrow-up.svg) no-repeat center center;
        background-size: 3.125vmin; } }

.btn-slider {
  width: 2.08333vw;
  height: 2.08333vw;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
  padding: 0;
  border: none;
  background-color: transparent;
  opacity: .8; }
  .btn-slider:hover {
    opacity: 1; }
  .btn-slider--prev {
    left: 1.38889vw; }
    @media (min-width: 1800px) {
      .btn-slider--prev {
        left: 20px; } }
    @media (max-width: 1024px) {
      .btn-slider--prev {
        left: 3.125vmin; } }
  .btn-slider--next {
    right: 1.38889vw; }
    @media (min-width: 1800px) {
      .btn-slider--next {
        right: 20px; } }
    @media (max-width: 1024px) {
      .btn-slider--next {
        right: 3.125vmin; } }
  @media (min-width: 1800px) {
    .btn-slider {
      width: 30px;
      height: 30px; } }
  @media (max-width: 1024px) {
    .btn-slider {
      width: 9.375vmin;
      height: 9.375vmin;
      display: none; } }

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.48611vw; }
  .slick-dots button {
    display: none; }
  .slick-dots li {
    width: 0.41667vw;
    height: 0.41667vw;
    margin-left: 0.15vw;
    margin-right: 0.15vw;
    border-radius: 50%;
    background-color: #C4C4C4;
    cursor: pointer; }
    .slick-dots li.slick-active {
      background-color: #171717; }
    @media (min-width: 1800px) {
      .slick-dots li {
        width: 6px;
        height: 6px; } }
    @media (max-width: 1024px) {
      .slick-dots li {
        width: 6px;
        height: 6px;
        margin-left: 0.7vw;
        margin-right: 0.7vw; } }
  @media (min-width: 1800px) {
    .slick-dots {
      margin-top: 7px; } }
  @media (max-width: 1024px) {
    .slick-dots {
      margin-top: 2.1875vmin; } }

.accord__title {
  font-size: 1.80556vw;
   line-height: 1.15;
  margin-bottom: 2.29167vw;
  font-weight: 700; }
  @media (min-width: 1800px) {
    .accord__title {
      font-size: 26px;
       line-height: 1.15;
      margin-bottom: 33px; } }
  @media (max-width: 1024px) {
    .accord__title {
      font-size: 5.9375vmin;
       line-height: 1.15;
      margin-bottom: 3.125vmin; } }

.accord__subtitle {
  font-size: 1.04167vw;
  line-height: 1.52778vw;
  padding-bottom: 1.66667vw;
  border-bottom: 1px solid #171717; }
  @media (min-width: 1800px) {
    .accord__subtitle {
      font-size: 15px;
      line-height: 22px;
      padding-bottom: 24px; } }
  @media (max-width: 1024px) {
    .accord__subtitle {
      font-size: 4.0625vmin;
       line-height: 1.15;
      padding-bottom: 6.25vmin; } }

.accord__totalblock {
  padding-top: var(--pb-d);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-top: 1px solid #171717; }
  .accord__totalblock-title {
    font-size: 1.80556vw;
     line-height: 1.15;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .accord__totalblock-title {
        font-size: 26px;
         line-height: 1.15; } }
    @media (max-width: 1024px) {
      .accord__totalblock-title {
        font-size: 5vmin;
         line-height: 1.15; } }
  @media (min-width: 1800px) {
    .accord__totalblock {
      padding-top: 16px; } }

.total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 2.6vw; }
  .total__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .total__top {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .total__top {
        margin-bottom: 1.25vmin;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .total__oldprice {
    font-size: 1.04167vw;
    font-weight: 500;
    color: #B0B0B0;
    text-decoration: line-through;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .total__oldprice {
        font-size: 15px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .total__oldprice {
        font-size: 4.0625vmin;
        margin-right: 3.125vmin; }
      .total__discount {
        line-height: 1.66667vw;
      }
    }
  .total__discount {
    font-size: 0.86806vw;
    line-height: 1.466667vw;
    background-color: #F2F2F2;
    border-radius: 2.08333vw;
    padding-left: 0.69444vw;
    padding-right: 0.97222vw;
    height: 1.52778vw; }
    @media (min-width: 1800px) {
      .total__discount {
        font-size: 12.5px;
        border-radius: 30px;
        line-height: 24px;
        padding-left: 10px;
        padding-right: 14px;
        height: 22px; } }
    @media (max-width: 1024px) {
      .total__discount {
        font-size: 3.4375vmin;
         line-height: 1.15;
        border-radius: 9.375vmin;
        padding-left: 1.5625vmin;
        padding-right: 1.5625vmin;
        height: auto; } }
  .total__price {
    font-size: 1.73611vw;
    font-weight: 500;
    padding-right: 0.8vw; }
    @media (min-width: 1800px) {
      .total__price {
        font-size: 25px;
        padding-right: 0; } }
    @media (max-width: 1024px) {
      .total__price {
        font-size: 5.9375vmin; } }
  @media (max-width: 1024px) {
    .total {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      padding-right: 4.93889vw;
    } }

.accordeon__subtitle {
  white-space: nowrap; }

.accordeon dl {
  margin: 0;
  border-bottom: 1px solid #EFEFEF; }
  .accordeon dl:last-child {
    border-bottom: none; }

.accordeon dt {
  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;
  padding-top: 20px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  padding-right: 3.47222vw;
  position: relative;
  cursor: pointer; }
  .accordeon dt:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.38889vw;
    height: 1.38889vw;
    -webkit-transform: translate(0, -50%) rotate(0);
        -ms-transform: translate(0, -50%) rotate(0);
            transform: translate(0, -50%) rotate(0);
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    background: url(../images/sprites/svg/plus-accordeon.svg) no-repeat center center;
    background-size: 1.38889vw;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    @media (min-width: 1800px) {
      .accordeon dt:after {
        width: 20px;
        height: 20px;
        background-size: 20px; } }
    @media (max-width: 1024px) {
      .accordeon dt:after {
        width: 4.6875vmin;
        height: 4.6875vmin;
        background-size: 4.6875vmin; } }
  .accordeon dt.active:after {
    -webkit-transform: translate(0, -50%) rotate(45deg);
        -ms-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg); }
  @media (min-width: 1800px) {
    .accordeon dt {
      padding-top: 20px;
      padding-bottom: 14px;
      font-size: 16px;
      padding-right: 50px; } }
  @media (max-width: 1024px) {
    .accordeon dt {
      padding-top: 20px;
      padding-bottom: 14px;
      font-size: 16px;
      padding-right: 7.5vmin; } }

.accordeon dd {
  padding-right: 2.77778vw;
  margin-left: 0;
  font-size: 0.90278vw;
  padding-bottom:  var(--pb-g); }
  @media (min-width: 1800px) {
    .accordeon dd {
      font-size: 13px;
      padding-right: 40px;
      padding-bottom: var(--pb-g) - 7px); } }
  @media (max-width: 1024px) {
    .accordeon dd {
      font-size: 4.0625vmin;
      padding-right: 0;
      padding-bottom: var(--pb-g); } }

.price-table__tr {
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 0.48611vw;
  z-index: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .price-table__tr:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.41667vw;
    z-index: -1;
    border-bottom: 1px dashed #EFEFEF; }
    @media (min-width: 1800px) {
      .price-table__tr:after {
        bottom: 6px; } }
    @media (max-width: 1024px) {
      .price-table__tr:after {
        display: none; } }
  @media (min-width: 1800px) {
    .price-table__tr {
      margin-bottom: 7px; } }
  @media (max-width: 1024px) {
    .price-table__tr {
      margin-bottom: 2.1875vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.price-table__label {
  height: 1.52778vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 2.5vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-left: 0.69444vw;
  padding-right: 0.69444vw;
  margin-left: 0.41667vw;
  background-color: #F2F2F2; }
  @media (min-width: 1800px) {
    .price-table__label {
      height: 22px;
      border-radius: 36px;
      padding-left: 10px;
      padding-right: 10px;
      margin-left: 6px; } }
  @media (max-width: 1024px) {
    .price-table__label {
      height: 6.25vmin;
      border-radius: 11.25vmin;
      padding-left: 2.1875vmin;
      padding-right: 2.1875vmin;
      margin-left: 3.125vmin; } }

.print__offer-discount {
  background-color: #F2F2F2; !important;
  height: 1.52778vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 2.5vw;
  padding: 0 0.69444vw;
  font-weight: 400;
}

.price-table__name {
  background-color: #fff;
  padding-right: 0.69444vw;
  max-width: 50%; }
  @media (min-width: 1800px) {
    .price-table__name {
      padding-right: 10px; } }
  @media (max-width: 1024px) {
    .price-table__name {
      padding-right: 0;
      width: 100%;
      max-width: 56.25vmin; } }

.price-table__value {
  background-color: #fff;
  padding-left: 0.69444vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap; }
  @media (min-width: 1800px) {
    .price-table__value {
      padding-left: 10px; } }
  @media (max-width: 1024px) {
    .price-table__value {
      padding-left: 0;
      width: 100%;
      white-space: nowrap; } }

@media (max-width: 1024px) {
  .price-table {
    font-size: 3.4375vmin; } }

.calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.90278vw; }
  .calc__item--multipl {
    color: #B0B0B0;
    margin-left: 0.625vw;
    margin-right: 0.48611vw; }
    @media (min-width: 1800px) {
      .calc__item--multipl {
        margin-left: 9px;
        margin-right: 7px; } }
    @media (max-width: 1024px) {
      .calc__item--multipl {
        margin-left: 2.8125vmin;
        margin-right: 0.625vmin; } }
  .calc__item--equal {
    color: #B0B0B0;
    margin-left: 0.55556vw; }
    @media (min-width: 1800px) {
      .calc__item--equal {
        margin-left: 20px; } }
    @media (max-width: 1024px) {
      .calc__item--equal {
        margin-left: 2.5vmin; } }
  .calc__item--total {
    width: 6.94444vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .calc__item--total b {
      background-color: #F2F2F2;
      height: 1.52778vw;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      white-space: nowrap;
      border-radius: 2.5vw;
      padding: 0 0.69444vw;
      font-weight: 400; }
      @media (min-width: 1800px) {
        .calc__item--total b {
          height: 22px;
          border-radius: 36px;
          padding: 0 10px; } }
      @media (max-width: 1024px) {
        .calc__item--total b {
          height: 6.875vmin;
          border-radius: 11.25vmin;
          padding: 0 3.125vmin; } }
    .calc__item--total span {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      padding-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .calc__item--total span {
          padding-right: 10px; } }
      @media (max-width: 1024px) {
        .calc__item--total span {
          padding-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .calc__item--total {
        width: 100px; } }
    @media (max-width: 1024px) {
      .calc__item--total {
        width: auto;
        -webkit-box-flex: 1;
            -ms-flex: 1 1;
                flex: 1 1;
        padding-right: 4.375vmin; } }
  .calc__item--count {
    width: 2.98611vw;
    text-align: right; }
    @media (min-width: 1800px) {
      .calc__item--count {
        width: 43px; } }
    @media (max-width: 1024px) {
      .calc__item--count {
        width: 13.4375vmin; } }
  @media (min-width: 1800px) {
    .calc {
      font-size: 13px; } }
  @media (max-width: 1024px) {
    .calc {
      font-size: 3.59375vmin;
      width: 100%; } }

.team-list__title {
  font-size: 1.80556vw;
   line-height: 1.15;
  font-weight: 700;
  margin-bottom: 2.36111vw; }
  @media (min-width: 1800px) {
    .team-list__title {
      font-size: 26px;
       line-height: 1.15;
      margin-bottom: 34px; } }
  @media (max-width: 1024px) {
    .team-list__title {
      font-size: 5.9375vmin;
       line-height: 1.15;
      margin-bottom: 4.6875vmin; } }

.team-list__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .team-list__wrapper {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .team-list__wrapper {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.team-list__item {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  margin-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .team-list__item {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .team-list__item {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 3.75vmin; } }

.team-list__name {
  font-weight: 500; }

.team-list__pos {
  color: #B0B0B0; }

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  .page__aside {
    -ms-flex-preferred-size: calc(25.32% - 0.69444vw);
        flex-basis: calc(25.32% - 0.69444vw);
    max-width: calc(25.32% - 0.69444vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .page__aside {
        -ms-flex-preferred-size: calc(25.32% - 10px);
            flex-basis: calc(25.32% - 10px);
        max-width: calc(25.32% - 10px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .page__aside {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  .page__main {
    -ms-flex-preferred-size: calc(74.68% - 0.69444vw);
        flex-basis: calc(74.68% - 0.69444vw);
    max-width: calc(74.68% - 0.69444vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .page__main {
        -ms-flex-preferred-size: calc(74.68% - 10px);
            flex-basis: calc(74.68% - 10px);
        max-width: calc(74.68% - 10px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .page__main {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .page {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .page {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.menu-block {
  font-size: 16px;
  position: sticky;
  top: 1.04167vw; }

  @media (max-width: 1024px) {
    .menu-block__container {
      display: none; } }
  .menu-block__btn {
    color: #B0B0B0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-bottom: 6.5625vmin; }
    .menu-block__btn.is-active:after {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
    .menu-block__btn:after {
      content: "";
      display: inline-block;
      width: 5.9375vmin;
      height: 5.9375vmin;
      background: url(../images/sprites/svg/plus-accordeon.svg) no-repeat center center;
      background-size: 5.9375vmin; }
    .menu-block__btn:hover {
      color: #171717; }
  .menu-block li {
    margin-bottom: 1.59722vw; }
    @media (min-width: 1800px) {
      .menu-block li {
        margin-bottom: 23px; } }
    @media (max-width: 1024px) {
      .menu-block li {
        margin-bottom: 6.5625vmin; } }
  .menu-block a {
    color: #B0B0B0; }
    .menu-block a:hover {
      color: #171717; }
  @media (min-width: 1800px) {
    .menu-block {
      font-size: 15px;
      top: 15px; } }
  @media (max-width: 1024px) {
    .menu-block {
      /*font-size: 4.0625vmin;*/
      top: auto;
      position: relative;} }

.form--modal {
  max-width: 34.72222vw;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  border-radius: 1.38889vw;
  padding: 3.125vw; }
  @media (min-width: 1800px) {
    .form--modal {
      max-width: 500px;
      border-radius: 20px;
      padding: 45px; } }
  @media (max-width: 1024px) {
    .form--modal {
      max-width: 100%;
      border-radius: 5vmin;
      padding: 11.25vmin 4.6875vmin; } }

.form__title {
  font-size: 1.80556vw;
   line-height: 1.15;
  font-weight: 700;
  margin-bottom: var(--pb-a); }
  @media (min-width: 1800px) {
    .form__title {
      font-size: 26px;
       line-height: 1.15;
      margin-bottom: 13px; } }
  @media (max-width: 1024px) {
    .form__title {
      font-size: 6.875vmin;
      line-height: 10vmin;
      margin-bottom: 4.0625vmin; } }

.form__subtitle {
  font-size: 1.04167vw;
  line-height: 1.15;
  margin-bottom: var(--pb-b); }
  @media (min-width: 1800px) {
    .form__subtitle {
      font-size: 15px;
       line-height: 1.15;
      margin-bottom: 44px; } }
  @media (max-width: 1024px) {
    .form__subtitle {
      font-size: 4.0625vmin;
       line-height: 1.15;
      margin-bottom: 6.25vmin; } }

  @media (min-width: 1800px) {
    .form__fieldset {
      margin-bottom: 37px; } }
  @media (max-width: 1024px) {
    .form__fieldset {
      margin-bottom: 7.5vmin; } }

.form__legend {
  font-size: 1.04167vw; }
  @media (min-width: 1800px) {
    .form__legend {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__legend {
      font-size: 4.0625vmin; } }

.form__input {
  width: 100%;
  height: 1.94444vw;
  border: none;
  border-bottom: 1px solid #EFEFEF;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .form__input:focus {
    border-bottom: 1px solid #171717; }
  @media (min-width: 1800px) {
    .form__input {
      height: 28px; } }
  @media (max-width: 1024px) {
    .form__input {
      height: 8.75vmin; } }

.form__textarea {
  width: 100%;
  min-height: 5.13889vw;
  border: 1px solid #EFEFEF;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  margin-top: 1.04167vw;
  outline: none; }
  .form__textarea:focus {
    border: 1px solid #171717; }
  @media (min-width: 1800px) {
    .form__textarea {
      min-height: 74px;
      margin-top: 15px; } }
  @media (max-width: 1024px) {
    .form__textarea {
      min-height: 20.3125vmin;
      margin-top: 4.6875vmin; } }

.form__ftr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .form__ftr {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .form__ftr {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.form__files {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .form__files {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .form__files {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0; } }

.form__btnwrap {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  }
  @media (min-width: 1800px) {
    .form__btnwrap {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      } }
  @media (max-width: 1024px) {
    .form__btnwrap {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0; } }

.form__btn {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.63889vw;
  border-radius: 2.5vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.04167vw;
  background-color: #F2F2F2;
  border: none; }
  .form__btn:hover {
    color: #fff;
    background-color: #171717; }
  @media (min-width: 1800px) {
    .form__btn {
      width: 50%;
      margin-left: auto;
      margin-right: auto;
      height: 38px;
      border-radius: 36px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__btn {
      width: 68%;
      margin-left: auto;
      margin-right: auto;
      height: 10.625vmin;
      border-radius: 11.25vmin;
      font-size: 4.0625vmin;
      padding-left: 6.875vmin;
      padding-right: 6.875vmin; } }

.form__file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.form__file {
  font-size: 1.04167vw;
  margin-bottom: 0.69444vw;
  margin-right: 0.69444vw;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .form__file:hover {
    color: #B0B0B0; }
  .form__file:after {
    content: "";
    width: 1.11111vw;
    height: 1.11111vw;
    margin-left: 0.48611vw;
    background: url(../images/sprites/svg/close.svg) no-repeat center center;
    background-size: 1.11111vw; }
    @media (min-width: 1800px) {
      .form__file:after {
        width: 16px;
        height: 16px;
        margin-left: 7px;
        background-size: 16px; } }
    @media (max-width: 1024px) {
      .form__file:after {
        width: 5vmin;
        height: 5vmin;
        margin-left: 2.1875vmin;
        background-size: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .form__file {
      font-size: 15px;
      margin-bottom: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .form__file {
      font-size: 4.0625vmin;
      margin-bottom: 3.125vmin;
      margin-right: 3.125vmin; } }

.form__file-btn {
  padding: 0;
  border: none;
  background: none;
  font-size: 1.04167vw;
  width: 100%;
  text-align: left; }
  .form__file-btn small {
    display: block;
    font-size: 0.69444vw;
    color: #B0B0B0; }
    @media (min-width: 1800px) {
      .form__file-btn small {
        font-size: 10px; } }
    @media (max-width: 1024px) {
      .form__file-btn small {
        font-size: 2.65625vmin;
        margin-top: 0.9375vmin; } }
  .form__file-btn:hover {
    color: #B0B0B0; }
  @media (min-width: 1800px) {
    .form__file-btn {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__file-btn {
      font-size: 4.0625vmin;
      text-align: left; } }

.form__policy {
  font-size: 0.90278vw;
  line-height: 1.11111vw;
  margin-top: 0.69444vw; }
  .form__policy a {
    text-decoration: underline; }
    .form__policy a:hover {
      text-decoration: none; }
  @media (min-width: 1800px) {
    .form__policy {
      font-size: 13px;
      line-height: 16px;
      margin-top: 10px; } }
  @media (max-width: 1024px) {
    .form__policy {
      font-size: 4.0625vmin;
       line-height: 1.15;
      margin-top: 3.125vmin; } }

.timeline {
  margin-bottom: 15.625vmin;
  max-width: 100%;
  position: relative;
  overflow: hidden; }
  .timeline__wrapper {
    max-width: 100%;
    padding-bottom: 9.375vmin;
    overflow-x: scroll; }
  .timeline__title-h2 {
    font-weight: 700;
    padding-left: 4.6875vmin;
    margin-top: 0;
    font-size: 5.9375vmin;
    margin-bottom: 10vmin;
  }
  .timeline__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
    padding-left: 4.6875vmin;
    width: 337.5vmin;
    padding-top: 15.625vmin; }
    .timeline__container:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 4.6875vmin;
      right: 23.75vmin;
      height: 1.5625vmin;
      border-radius: 9.375vmin;
      background-color: #EFEFEF; }
  .timeline__item {
    position: relative; }
    .timeline__item--small {
      height: 5.9375vmin; }
    .timeline__item--medium {
      height: 10.3125vmin; }
    .timeline__item--big {
      height: 15vmin; }
    .timeline__item:before {
      content: "";
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0.625vmin;
      width: 0.3125vmin;
      background-color: #171717; }
    .timeline__item:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 1.5625vmin;
      height: 1.5625vmin;
      border-radius: 50%;
      background-color: #171717;
      z-index: 1; }
    .timeline__item--1 {
      width: 39.6875vmin; }
    .timeline__item--2 {
      width: 40.3125vmin; }
    .timeline__item--3 {
      width: 27.5vmin; }
    .timeline__item--4 {
      width: 34.0625vmin; }
    .timeline__item--5 {
      width: 51.25vmin; }
      .timeline__item--5 .timeline__subtitle {
        left: 20vmin; }
    .timeline__item--6 {
      width: 26.25vmin; }
    .timeline__item--7 {
      width: 32.1875vmin; }
    .timeline__item--8 {
      width: 23.125vmin; }
      .timeline__item--8 .timeline__subtitle {
        left: -7.5vmin; }
    .timeline__item--9 {
      width: 38.125vmin; }
    .timeline__item--10 {
      width: 25vmin; }
  .timeline__title {
    position: absolute;
    bottom: calc(100% + 2.5vmin);
    font-size: 4.0625vmin;
    left: 0; }
  .timeline__subtitle {
    font-size: 4.0625vmin;
    color: #B0B0B0;
    position: absolute;
    left: 0;
    top: calc(100% + 3.125vmin);
    white-space: nowrap; }

.main-video {
  margin-bottom: 5.41667vw; }
  .main-video__caption {
    margin-bottom: 2.77778vw;
  }
  .main-video__title {
    font-size: 1.80556vw;
    line-height: 1.15;
    margin-bottom: 2.77778vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .main-video__title {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .main-video__title {
        font-size: 5.9375vmin;
        line-height: 1.15;
        margin-bottom: 10vmin; } }
  .main-video__video-preview {
    background-color: #B0B0B0;
    height: 56.25%;
    position: relative;
    overflow: hidden; }
    .main-video__video-preview img {
      width: 100%; }
    .main-video__video-preview.is-hide {
      display: none; }

  .main-video__video-yuotube {
    display: none;
    height: 45.83333vw;
    position: relative; }
    .main-video__video-yuotube.is-active {
      display: block; }
    .main-video__video-yuotube iframe {
      width: 100%;
      height: 100%; }
    @media (min-width: 1800px) {
      .main-video__video-yuotube {
        height: 660px; } }
    @media (max-width: 1024px) {
      .main-video__video-yuotube {
        height: 98.125vmin; } }
  .main-video__play {
    width: 5.90278vw;
    height: 5.90278vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #171717 url(../images/sprites/svg/play.svg) no-repeat center center;
    background-size: 1.66667vw;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    .main-video__play:hover {
      opacity: 0.5; }
    @media (min-width: 1800px) {
      .main-video__play {
        width: 85px;
        height: 85px;
        background-size: 24px; } }
    @media (max-width: 1024px) {
      .main-video__play {
        width: 17.1875vmin;
        height: 17.1875vmin;
        background-size: 5vmin; } }
  @media (min-width: 1800px) {
    .main-video {
      margin-bottom: 78px; } }
  @media (max-width: 1024px) {
    .main-video {
      margin-bottom: 12.5vmin; } }


  .interior--other {
    padding-top: 4.16667vw;
    margin-bottom: 0 !important; }
    .interior--other .interior__item {
      margin-bottom: 0; }
      @media (min-width: 1800px) {
        .interior--other .interior__item {
          margin-bottom: 0; } }
      @media (max-width: 1024px) {
          .interior--other .interior__item:last-child {
            margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .interior--other {
        padding-top: 60px; } }
    @media (max-width: 1024px) {
      .interior--other {
        padding-top: 18.75vmin; } }
  .interior--four-column {
    margin-bottom: 0;
    padding-top: 5.55556vw; }
    @media (min-width: 1800px) {
      .interior--four-column {
        padding-top: 80px; } }
    @media (max-width: 1024px) {
      .interior--four-column {
        padding-top: 25vmin; } }
    .interior--four-column .interior__item {
      -ms-flex-preferred-size: calc(25% - 1.38889vw);
          flex-basis: calc(25% - 1.38889vw);
      margin-bottom: 0; }
      @media (min-width: 1800px) {
        .interior--four-column .interior__item {
          -ms-flex-preferred-size: calc(25% - 20px);
              flex-basis: calc(25% - 20px);
          margin-bottom: 0; } }
      @media (max-width: 1024px) {
        .interior--four-column .interior__item {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;} }
  .interior__header {
    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;
    margin-bottom: 2.77778vw; }
    @media (min-width: 1800px) {
      .interior__header {
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .interior__header {
        margin-bottom: 5vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .interior__title {
    font-size: 1.80556vw;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0; }
    @media (min-width: 1800px) {
      .interior__title {
        font-size: 26px; } }
    @media (max-width: 1024px) {
      .interior__title {
        font-size: 5.9375vmin;} }
  .interior__more {
    font-size: 1.04167vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .interior__more svg {
      width: 1.45833vw;
      height: 1.45833vw;
      margin-left: 1.38889vw; }
      @media (min-width: 1800px) {
        .interior__more svg {
          width: 21px;
          height: 21px;
          margin-left: 20px; } }
      @media (max-width: 1024px) {
        .interior__more svg {
          width: 6.5625vmin;
          height: 6.5625vmin;
          margin-left: 3.125vmin; } }
    @media (min-width: 1800px) {
      .interior__more {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .interior__more {
        font-size: 4.0625vmin; } }
  .interior__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .interior__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .interior__container {
        margin-left: 0;
        margin-right: 0; } }
  .interior__item {
    -ms-flex-preferred-size: calc(50% - 1.38889vw);
        flex-basis: calc(50% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    margin-bottom: 3.125vw; }
    .interior__item-image {
      margin-bottom: 1.04167vw;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      overflow: hidden; }
      .interior__item-image img {
        width: 100%;
        -webkit-transition: all .7s ease-out;
        -o-transition: all .7s ease-out;
        transition: all .7s ease-out; }
      .interior__item-image:hover img {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1); }
      @media (min-width: 1800px) {
        .interior__item-image {
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .interior__item-image {
          margin-bottom: 3.125vmin; } }
    .interior__item-title {
      /*font-size: 1.04167vw;*/
      /*line-height: 1.52778vw; */
    }
      @media (min-width: 1800px) {
        .interior__item-title {
          /*font-size: 15px;*/
          /*line-height: 22px; */
        } }
      @media (max-width: 1024px) {
        .interior__item-title {
          font-size: 4.0625vmin;
           line-height: 1.15; } }
    @media (min-width: 1800px) {
      .interior__item {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 45px; } }
    @media (max-width: 1024px) {
      .interior__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: var(--pb-a); } }

.information__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .information__container {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .information__container {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.information__column {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  .information__column--left .information__title {
    max-width: 25.69444vw;
    margin-bottom: 1.59722vw; }
    @media (min-width: 1800px) {
      .information__column--left .information__title {
        max-width: 370px;
        margin-bottom: 23px; } }
    @media (max-width: 1024px) {
      .information__column--left .information__title {
        max-width: 100%;
        margin-bottom: 7.1875vmin; } }
  @media (max-width: 1024px) {
    .information__column--left {
      margin-bottom: 12.5vmin; } }
  @media (min-width: 1800px) {
    .information__column {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .information__column {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0; } }

.information__title {
  font-weight: 700;
  font-size: 1.80556vw;
  line-height: 1.15;
  margin-bottom: 0.90278vw; }
  @media (min-width: 1800px) {
    .information__title {
      font-size: 26px;
      margin-bottom: 13px; } }
  @media (max-width: 1024px) {
    .information__title {
      font-size: 5.9375vmin;
      margin-bottom: 1.25vmin; } }

.information__intro {
  font-size: 1.04167vw;
  line-height: 1.15;
  max-width: 63.68056vw;
  margin-bottom: 1.66667vw; }
  @media (min-width: 1800px) {
    .information__intro {
      font-size: 15px;
       line-height: 1.15;
      max-width: 917px;
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .information__intro {
      font-size: 4.0625vmin;
       line-height: 1.15;
      max-width: 100%;
      margin-bottom: 7.5vmin; } }

.information__text {
  font-size: 1.04167vw;
  line-height: 1.15; }
  @media (min-width: 1800px) {
    .information__text {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .information__text {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.information__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.22222vw;
  border-top: 1px solid #E5E5E5; }
  @media (min-width: 1800px) {
    .information__row {
      margin-top: 32px; } }
  @media (max-width: 1024px) {
    .information__row {
      margin-top: 5vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border: none; } }

.information__col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-top: 1.66667vw; }
  .information__col--right {
    padding-left: 1.80556vw;
    border-left: 1px solid #E5E5E5; }
    @media (min-width: 1800px) {
      .information__col--right {
        padding-left: 26px; } }
    @media (max-width: 1024px) {
      .information__col--right {
        padding-left: 0;
        border-left: none;
        margin-top: 5.625vmin; } }
  @media (min-width: 1800px) {
    .information__col {
      padding-top: 24px; } }
  @media (max-width: 1024px) {
    .information__col {
      padding-top: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .feedback__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.04167vw;
    background-color: #F2F2F2;
    border-radius: 2.5vw;
    height: 2.63889vw;
    padding: 0 1.80556vw;
    margin-right: 0.41667vw;
    white-space: nowrap; }
    .feedback__btn:hover {
      background-color: #171717;
      color: #fff; }
    @media (min-width: 1800px) {
      .feedback__btn {
        font-size: 15px;
        border-radius: 36px;
        height: 38px;
        padding: 0 26px;
        margin-right: 6px; } }
    @media (max-width: 1024px) {
      .feedback__btn {
        font-size: 4.0625vmin;
        border-radius: 11.25vmin;
        height: 10.625vmin;
        padding: 0 6.875vmin;
        margin-right: 1.875vmin; } }
  .feedback__msngr {
    width: 2.63889vw;
    height: 2.63889vw;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #F2F2F2;
    margin-right: 0.41667vw; }
    .feedback__msngr svg {
      width: 1.25vw;
      height: 1.25vw; }
      @media (min-width: 1800px) {
        .feedback__msngr svg {
          width: 18px;
          height: 18px; } }
      @media (max-width: 1024px) {
        .feedback__msngr svg {
          width: 5.625vmin;
          height: 5.625vmin; } }
    .feedback__msngr:hover {
      background-color: #171717;
      color: #fff; }
    @media (min-width: 1800px) {
      .feedback__msngr {
        width: 38px;
        height: 38px;
        margin-right: 6px; } }
    @media (max-width: 1024px) {
      .feedback__msngr {
        width: 10.625vmin;
        height: 10.625vmin;
        margin-right: 1.875vmin; } }

.interior-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  .interior-page__preview {
    margin-bottom: 4.44444vw; }
    @media (min-width: 1800px) {
      .interior-page__preview {
        margin-bottom: 64px; } }
    @media (max-width: 1024px) {
      .interior-page__preview {
        margin-bottom: 12.5vmin; } }
  .interior-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .interior-page__row {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .interior-page__row {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .interior-page__two-column img {
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .interior-page__two-column img {
        margin-bottom: 16px; } }
    @media (max-width: 1024px) {
      .interior-page__two-column img {
        margin-bottom: 5vmin; } }
  @media (max-width: 1024px) {
    .interior-page__two-column .interior-page__col {
      margin-bottom: 6.25vmin; } }
  .interior-page__col {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    .interior-page__col-50 {
      -ms-flex-preferred-size: calc(50% - 1.38889vw);
          flex-basis: calc(50% - 1.38889vw); }
      @media (min-width: 1800px) {
        .interior-page__col-50 {
          -ms-flex-preferred-size: calc(50% - 20px);
              flex-basis: calc(50% - 20px); } }
      @media (max-width: 1024px) {
        .interior-page__col-50 {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%; } }
    @media (min-width: 1800px) {
      .interior-page__col {
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .interior-page__col {
        margin-left: 0;
        margin-right: 0; } }
  .interior-page__offset-50 {
    margin-left: 50%;
    padding-left: 0.69444vw; }
    @media (min-width: 1800px) {
      .interior-page__offset-50 {
        padding-left: 10px; } }
    @media (max-width: 1024px) {
      .interior-page__offset-50 {
        padding-left: 0;
        margin-left: 0; } }
  .interior-page__big-text {
    font-size: 1.80556vw;
     line-height: 1.15;
    margin-top: 1.38889vw;
    position: relative; }
    @media (min-width: 1800px) {
      .interior-page__big-text {
        font-size: 26px;
         line-height: 1.15;
        margin-top: 20px; } }
    @media (max-width: 1024px) {
      .interior-page__big-text {
        font-size: 4.0625vmin;
         line-height: 1.15;
        margin-top: 0; } }
  .interior-page__compare {
    margin-bottom: 6.52778vw; }
    .interior-page__compare .tabs {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      border-radius: 2.08333vw;
      border: 1px solid #F2F2F2;
      overflow: hidden;
      position: relative; }
      @media (min-width: 1800px) {
        .interior-page__compare .tabs {
          border-radius: 30px; } }
      @media (max-width: 1024px) {
        .interior-page__compare .tabs {
          border-radius: 9.375vmin; } }
    .interior-page__compare .tab {
      height: 2.63889vw;
      width: 6.25vw;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center;
      cursor: pointer; }
      .interior-page__compare .tab.active {
        font-weight: 700;
        background-color: #F2F2F2; }
      @media (min-width: 1800px) {
        .interior-page__compare .tab {
          height: 38px;
          width: 90px; } }
      @media (max-width: 1024px) {
        .interior-page__compare .tab {
          height: 9.375vmin;
          width: 23.75vmin; } }
    .interior-page__compare .tab_item {
      padding-top: 1.59722vw; }
      @media (min-width: 1800px) {
        .interior-page__compare .tab_item {
          padding-top: 23px; } }
      @media (max-width: 1024px) {
        .interior-page__compare .tab_item {
          padding-top: 7.1875vmin; } }
    @media (min-width: 1800px) {
      .interior-page__compare {
        margin-bottom: 94px; } }
    @media (max-width: 1024px) {
      .interior-page__compare {
        margin-bottom: 15.625vmin; } }
  .interior-page__content {
    margin-bottom: 3.05556vw; }
    .interior-page__content img {
      margin-bottom: 1.11111vw; }
      @media (min-width: 1800px) {
        .interior-page__content img {
          margin-bottom: 16px; } }
      @media (max-width: 1024px) {
        .interior-page__content img {
          margin-bottom: 5vmin; } }
    @media (min-width: 1800px) {
      .interior-page__content {
        margin-bottom: 44px; } }
    @media (max-width: 1024px) {
      .interior-page__content {
        margin-bottom: 7.5vmin; } }
  .interior-page__slider {
    padding-bottom: 3.61111vw; }
    @media (min-width: 1800px) {
      .interior-page__slider {
        padding-bottom: 52px; } }
    @media (max-width: 1024px) {
      .interior-page__slider {
        padding-bottom: 16.25vmin; } }
  .interior-page__margin {
    margin-bottom: var(--pb-d);  }
    @media (max-width: 1024px) {
      .interior-page__margin img {
        margin-bottom: 4.375vmin; } }
    @media (min-width: 1800px) {
      .interior-page__margin {
        margin-bottom: var(--pb-d); } }
    @media (max-width: 1024px) {
      .interior-page__margin {
        margin-bottom: 7.5vmin; } }
  .interior-page__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    margin-bottom: 5.69444vw;
    margin-top: 1.73611vw; }
    @media (min-width: 1800px) {
      .interior-page__wrapper {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 82px;
        margin-top: 25px; } }
    @media (max-width: 1024px) {
      .interior-page__wrapper {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 5.625vmin;
        margin-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .interior-page__smeta {
    -ms-flex-preferred-size: calc(66.3% - 1.38889vw);
        flex-basis: calc(66.3% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    padding-right: 3.19444vw; }
    @media (min-width: 1800px) {
      .interior-page__smeta {
        -ms-flex-preferred-size: calc(66.3% - 20px);
            flex-basis: calc(66.3% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        padding-right: 46px; } }
    @media (max-width: 1024px) {
      .interior-page__smeta {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0; } }
  .interior-page__team {
    -ms-flex-preferred-size: calc(33.7% - 1.38889vw);
        flex-basis: calc(33.7% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .interior-page__team {
        -ms-flex-preferred-size: calc(33.7% - 20px);
            flex-basis: calc(33.7% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .interior-page__team {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .interior-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .interior-page {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.table-char {
  width: 100%; }
  .table-char tr td {
    padding-left: 1.25vw;
    vertical-align: top; }
    .table-char tr td:nth-child(1) {
      padding-left: 0;
      color: #B0B0B0; }
    @media (min-width: 1800px) {
      .table-char tr td {
        padding-left: 18px; } }
    @media (max-width: 1024px) {
      .table-char tr td {
        padding-left: 5.625vmin; } }
  @media (max-width: 1024px) {
    .table-char {
      margin-top: 7.5vmin; } }

.compare {
  position: relative; }
  .compare__item {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer; }
    .compare__item:hover .compare__tooltip {
      visibility: visible;
      opacity: 1; }
  .compare__ico {
    width: 1.875vw;
    height: 1.875vw;
    border-radius: 50%;
    background: #171717 url(../images/sprites/svg/plus.svg) no-repeat center center;
    background-size: 1.04167vw; }
    @media (min-width: 1800px) {
      .compare__ico {
        width: 27px;
        height: 27px;
        background-size: 20px; } }
    @media (max-width: 1024px) {
      .compare__ico {
        width: 8.4375vmin;
        height: 8.4375vmin;
        background-size: 4.6875vmin; } }
  .compare__tooltip {
    width: 13.88889vw;
    color: #fff;
    background-color: #171717;
    border-radius: 0.69444vw;
    padding: 19px 19px;
    position: absolute;
    right: -1.0vw;
    bottom: calc(100% + 0.97222vw);
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    font-size: 1.04167vw;
     line-height: 1.15;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out; }
    @media (max-width: 1024px) {
      .compare__tooltip--right-mobile {
        left: -6vmin;
        right: auto; }
        .compare__tooltip--right-mobile:after {
          right: auto;
          left: 3.125vmin; } }
    .compare__tooltip:after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 2.77778vw;
      height: 2.77778vw;
      right: 0.69444vw;
      bottom: 0;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      background-color: #171717;
      z-index: -1; }
      @media (min-width: 1800px) {
        .compare__tooltip:after {
          width: 40px;
          height: 40px;
          right: 10px; } }
      @media (max-width: 1024px) {
        .compare__tooltip:after {
          width: 9.5vmin;
          height: 6.5vmin;
          right: 4.725vmin; } }
    @media (min-width: 1800px) {
      .compare__tooltip {
        width: 200px;
        border-radius: 10px;
        padding: 20px;
        right: -16px;
        bottom: calc(100% + 14px);
        font-size: 15px;
         line-height: 1.15; } }
    @media (max-width: 1024px) {
      .compare__tooltip {
        width: 62.5vmin;
        border-radius: 3.125vmin;
        padding: 19px 19px;
        right: -6.3vmin;
        bottom: calc(100% + 4.375vmin);
        font-size: 4.0625vmin;
         line-height: 1.15; } }

.product-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  .product-page__intro {
    max-width: 34.72222vw;
    margin-bottom: 2.36111vw; }
    @media (min-width: 1800px) {
      .product-page__intro {
        max-width: 500px;
        margin-bottom: 34px; } }
    @media (max-width: 1024px) {
      .product-page__intro {
        max-width: 100%;
        margin-bottom: 10.625vmin; } }
  .product-page__image {
    margin-bottom: 3.47222vw; }
    @media (min-width: 1800px) {
      .product-page__image {
        margin-bottom: 50px; } }
    @media (max-width: 1024px) {
      .product-page__image {
        margin-bottom: 5vmin; } }
  .product-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    margin-bottom: 0.83333vw;
    padding-top: 1.875vw; }
    @media (min-width: 1800px) {
      .product-page__row {
        margin-left: -10px;
        margin-right: -10px;
        padding-top: 27px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .product-page__row {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 70px; } }
  .product-page__left {
    -ms-flex-preferred-size: calc(66.3% - 1.38889vw);
        flex-basis: calc(66.3% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    padding-right: 3.19444vw; }
    @media (min-width: 1800px) {
      .product-page__left {
        -ms-flex-preferred-size: calc(66.3% - 20px);
            flex-basis: calc(66.3% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        padding-right: 46px; } }
    @media (max-width: 1024px) {
      .product-page__left {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;} }
  .product-page__right {
    -ms-flex-preferred-size: calc(33.7% - 1.38889vw);
        flex-basis: calc(33.7% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .product-page__right {
        -ms-flex-preferred-size: calc(33.7% - 20px);
            flex-basis: calc(33.7% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .product-page__right {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .product-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .product-page {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.fasad {
  margin-bottom: 5vw; }
  .fasad__title {
    font-size: 1.80556vw;
     line-height: 1.15;
    font-weight: 700;
    margin-bottom: 2.36111vw; }
    @media (min-width: 1800px) {
      .fasad__title {
        font-size: 26px;
         line-height: 1.15;
        margin-bottom: 34px; } }
    @media (max-width: 1024px) {
      .fasad__title {
        font-size: 5.9375vmin;
         line-height: 1.15;
        margin-bottom: 4.6875vmin; } }
  .fasad__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.625vw;
    margin-right: -0.625vw;
    margin-top: 0.97222vw; }
    @media (min-width: 1800px) {
      .fasad__wrap {
        margin-left: -9px;
        margin-right: -9px;
        margin-top: 14px; } }
    @media (max-width: 1024px) {
      .fasad__wrap {
        margin-left: -2.8125vmin;
        margin-right: -2.8125vmin;
        margin-top: 4.375vmin; } }
  .fasad__item {
    margin-left: 0.625vw;
    margin-right: 0.625vw;
    -ms-flex-preferred-size: calc(33.33% - 1.25vw);
        flex-basis: calc(33.33% - 1.25vw);
    max-width: 12.36111vw; }
    @media (min-width: 1800px) {
      .fasad__item {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(33.33% - 18px);
            flex-basis: calc(33.33% - 18px);
        max-width: 178px; } }
    @media (max-width: 1024px) {
      .fasad__item {
        margin-left: 2.8125vmin;
        margin-right: 2.8125vmin;
        -ms-flex-preferred-size: calc(50% - 5.625vmin);
            flex-basis: calc(50% - 5.625vmin);
        max-width: calc(50% - 5.625vmin); } }
  @media (min-width: 1800px) {
    .fasad {
      margin-bottom: 72px; } }
  @media (max-width: 1024px) {
    .fasad {
      margin-bottom: 6.25vmin; } }

.scheme {
  margin-bottom: 3.33333vw; }
  .scheme__title {
    font-size: 1.80556vw;
     line-height: 1.15;
    font-weight: 700;
    margin-bottom: 2.36111vw; }
    @media (min-width: 1800px) {
      .scheme__title {
        font-size: 26px;
         line-height: 1.15;
        margin-bottom: 34px; } }
    @media (max-width: 1024px) {
      .scheme__title {
        font-size: 5.9375vmin;
         line-height: 1.15;
        margin-bottom: 4.6875vmin; } }

.price-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  @media (min-width: 1800px) {
    .price-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .price-page {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.project {
  padding-bottom: 4.86111vw;
  margin-bottom: 5.27778vw;
  border-bottom: 1px solid #E5E5E5; }
  .project:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
  .project__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2.91667vw; }
    @media (min-width: 1800px) {
      .project__header {
        margin-bottom: 42px; } }
    @media (max-width: 1024px) {
      .project__header {
        margin-bottom: 7.5vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .project__title {
    font-size: 1.80556vw;
     line-height: 1.15;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .project__title {
        font-size: 26px;
         line-height: 1.15; } }
    @media (max-width: 1024px) {
      .project__title {
        font-size: 5.9375vmin;
         line-height: 1.15; } }
  @media (max-width: 1024px) {
    .project__name {
      margin-bottom: 5.625vmin; } }
  .project__price {
    font-size: 1.04167vw;
     line-height: 1.15; }
    @media (min-width: 1800px) {
      .project__price {
        font-size: 15px;
        line-height: 1.15; } }
    @media (max-width: 1024px) {
      .project__price {
        font-size: 4.0625vmin;
         line-height: 1.15; } }
  .project__slider {
    margin-bottom: 3.19444vw; }
    @media (min-width: 1800px) {
      .project__slider {
        margin-bottom: 46px; } }
    @media (max-width: 1024px) {
      .project__slider {
        margin-bottom: 14.375vmin; } }
  .project__description p {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .project__description p {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .project__description p {
        margin-bottom: 5.625vmin; } }
  .project__description ul {
    margin-bottom: 1.38889vw; }
    .project__description ul li {
      list-style-position: inside;
      list-style-type: disc; }
    @media (min-width: 1800px) {
      .project__description ul {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .project__description ul {
        margin-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .project {
      padding-bottom: 70px;
      margin-bottom: 76px; }
      .project:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none; } }
  @media (max-width: 1024px) {
    .project {
      padding-bottom: 6.25vmin;
      margin-bottom: 11.25vmin; } }

.contacts-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  @media (max-width: 1024px) {
    .contacts-page .feedback {
      margin-top: 6.25vmin; } }
  .contacts-page .title-h2 {
    margin-top: 5.69444vw; }
    @media (min-width: 1800px) {
      .contacts-page .title-h2 {
        margin-top: 82px; } }
  .contacts-page p {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .contacts-page p {
        margin-bottom: 20px; } }
  .contacts-page__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .contacts-page__row {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .contacts-page__row {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .contacts-page__col {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-preferred-size: calc(50% - 0.69444vw);
        flex-basis: calc(50% - 0.69444vw); }
    @media (min-width: 1800px) {
      .contacts-page__col {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(50% - 10px);
            flex-basis: calc(50% - 10px); } }
    @media (max-width: 1024px) {
      .contacts-page__col {
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .contacts-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .contacts-page {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.contact__image {
  margin-bottom: 2.15278vw; }
  .contact__image img {
    width: 100%; }
  @media (min-width: 1800px) {
    .contact__image {
      margin-bottom: 31px; } }
  @media (max-width: 1024px) {
    .contact__image {
      margin-bottom: 5vmin; } }

.contact__title {
  font-weight: 700;
  font-size: 1.80556vw; }
  @media (min-width: 1800px) {
    .contact__title {
      font-size: 26px;} }
  @media (max-width: 1024px) {
    .contact__title {
      font-size: 5.9375vmin;} }

.contact__time {
  font-weight: 300;
  font-size: 1.80556vw;
  margin-bottom: 1.66667vw; }
  @media (min-width: 1800px) {
    .contact__time {
      font-size: 26px;
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .contact__time {
      font-size: 5.9375vmin;
      margin-bottom: 1.875vmin; } }

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw;
  margin-bottom: 1.11111vw; }
  @media (min-width: 1800px) {
    .contact__row {
      margin-left: -10px;
      margin-right: -10px;
      margin-bottom: 16px; } }
  @media (max-width: 1024px) {
    .contact__row {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 5vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.contact__col {
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  -ms-flex-preferred-size: calc(50% - 0.69444vw);
      flex-basis: calc(50% - 0.69444vw); }
  .contact__col p {
    margin-bottom: 0; }
  @media (min-width: 1800px) {
    .contact__col {
      margin-left: 10px;
      margin-right: 10px;
      -ms-flex-preferred-size: calc(50% - 10px);
          flex-basis: calc(50% - 10px); } }
  @media (max-width: 1024px) {
    .contact__col {
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.contact__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.04167vw;
  background-color: #F2F2F2;
  border-radius: 2.5vw;
  height: 2.63889vw;
  padding: 0 1.80556vw;
  margin-right: 0.41667vw; }
  .contact__btn:hover {
    background-color: #171717;
    color: #fff; }
  .contact__btn svg {
    width: 0.69444vw;
    height: 0.69444vw;
    margin-left: 0.55556vw; }
    @media (min-width: 1800px) {
      .contact__btn svg {
        width: 10px;
        height: 10px;
        margin-left: 8px; } }
    @media (max-width: 1024px) {
      .contact__btn svg {
        width: 3.125vmin;
        height: 3.125vmin;
        margin-left: 2.5vmin; } }
  @media (min-width: 1800px) {
    .contact__btn {
      font-size: 15px;
      border-radius: 36px;
      height: 38px;
      padding: 0 26px;
      margin-right: 6px; } }
  @media (max-width: 1024px) {
    .contact__btn {
      font-size: 4.0625vmin;
      border-radius: 11.25vmin;
      height: 10.625vmin;
      padding: 0 6.875vmin;
      margin-right: 1.875vmin; } }

.documents-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  .documents-page p {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .documents-page p {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .documents-page p {
        margin-bottom: 6.25vmin; } }
    .documents-page__item:last-child {
      margin-bottom: 0; }
    @media (min-width: 1800px) {
      .documents-page__item {
        margin-bottom: 82px; } }
    @media (max-width: 1024px) {
      .documents-page__item {
        margin-bottom: 11.25vmin; } }
  .documents-page__list li {
    position: relative;
    padding-left: 2.08333vw;
    margin-bottom: 0.97222vw; }
    .documents-page__list li a:hover {
      color: #B0B0B0; }
    .documents-page__list li a:after {
      display: none !important; }
    .documents-page__list li:before {
      content: "";
      width: 1.66667vw;
      height: 1.66667vw;
      position: absolute;
      left: 0;
      top: -0.27778vw;
      background: url(../images/sprites/svg/doc.svg) no-repeat center center;
      background-size: 1.11111vw; }
      @media (min-width: 1800px) {
        .documents-page__list li:before {
          width: 24px;
          height: 24px;
          top: -4px;
          background-size: 16px; } }
      @media (max-width: 1024px) {
        .documents-page__list li:before {
          width: 6.25vmin;
          height: 6.25vmin;
          top: -0.625vmin;
          background-size: 4.375vmin; } }
    .documents-page__list li span {
      color: #B0B0B0; }
      @media (max-width: 1024px) {
        .documents-page__list li span {
          font-size: 3.125vmin; } }
    @media (min-width: 1800px) {
      .documents-page__list li {
        padding-left: 30px;
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .documents-page__list li {
        padding-left: 6.875vmin;
        margin-bottom: 4.375vmin; } }
  @media (min-width: 1800px) {
    .documents-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .documents-page {
      font-size: 4.0625vmin;
       line-height: 1.15; }
    .documents-page .menu-block a {
      font-size: 4.0625vmin;
       line-height: 1.15; }
  }

.team-page {
  font-size: 1.04167vw;
  line-height: 1.15; }
  .team-page .title-h1 {
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .team-page .title-h1 {
        margin-bottom: 32px; } }
    @media (max-width: 1024px) {
      .team-page .title-h1 {
        margin-bottom: 6.25vmin; } }
  .team-page p {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .team-page p {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .team-page p {
        margin-bottom: 5.625vmin; } }
  .team-page___main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    margin-bottom: 5.55556vw; }
    @media (min-width: 1800px) {
      .team-page___main {
        margin-left: -10px;
        margin-right: -10px;
        margin-bottom: 80px; } }
    @media (max-width: 1024px) {
      .team-page___main {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 2.5vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .team-page__content {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-preferred-size: calc(61.5% - 1.38889vw);
        flex-basis: calc(61.5% - 1.38889vw);
    padding-right: 7.15278vw; }
    @media (min-width: 1800px) {
      .team-page__content {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(61.5% - 20px);
            flex-basis: calc(61.5% - 20px);
        padding-right: 103px; } }
    @media (max-width: 1024px) {
      .team-page__content {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        padding-right: 0; } }
  .team-page__image {
    margin-left: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-preferred-size: calc(38.5% - 1.38889vw);
        flex-basis: calc(38.5% - 1.38889vw); }
    @media (min-width: 1800px) {
      .team-page__image {
        margin-left: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: calc(38.5% - 20px);
            flex-basis: calc(38.5% - 20px); } }
    @media (max-width: 1024px) {
      .team-page__image {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-left: 0;
        margin-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-bottom: 5.625vmin; } }
  .team-page___container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.625vw;
    margin-right: -0.625vw; }
    @media (min-width: 1800px) {
      .team-page___container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .team-page___container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (min-width: 1800px) {
    .team-page {
      font-size: 15px;
       line-height: 1.15; } }
  @media (max-width: 1024px) {
    .team-page {
      font-size: 4.0625vmin;
       line-height: 1.15; } }

.employee {
  margin-left: 0.625vw;
  margin-right: 0.625vw;
  -ms-flex-preferred-size: calc(25% - 1.25vw);
      flex-basis: calc(25% - 1.25vw);
  margin-bottom: 3.05556vw; }
  .employee__image {
    margin-bottom: 1.38889vw; }
    .employee__image img {
      width: 100%; }
    @media (min-width: 1800px) {
      .employee__image {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .employee__image {
        margin-bottom: 3.125vmin; } }
  .employee__name {
    font-size: 1.04167vw;
    font-weight: 700;
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .employee__name {
        font-size: 15px;
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .employee__name {
        font-size: 4.0625vmin;
        margin-bottom: 0.625vmin; } }
  .employee__pos {
    color: #B0B0B0; }
  @media (min-width: 1800px) {
    .employee {
      margin-left: 10px;
      margin-right: 10px;
      -ms-flex-preferred-size: calc(25% - 20px);
          flex-basis: calc(25% - 20px);
      margin-bottom: 44px; } }
  @media (max-width: 1024px) {
    .employee {
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 6.25vmin; } }

.category-page__content {
  font-size: 1.04167vw;
  line-height: 1.15;
  margin-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .category-page__content {
      font-size: 16px;
       line-height: 1.15;
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .category-page__content {
      font-size: 16px;
       line-height: 1.15;} }

.category-page .title-h2 {
  font-size: 1.04167vw;
  margin-bottom: 1.80556vw;
  margin-top: 0; }
  @media (min-width: 1800px) {
    .category-page .title-h2 {
      font-size: 15px;
      margin-bottom: 26px; } }
  @media (max-width: 1024px) {
    .category-page .title-h2 {
      font-size: 4.0625vmin;
      margin-bottom: 5vmin; } }

.category-page__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .category-page__list {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .category-page__list {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.category-page__item {
  margin-bottom: 4.16667vw; }
  .category-page__item:last-child {
    margin-bottom: 0; }
  @media (min-width: 1800px) {
    .category-page__item {
      margin-bottom: 60px; } }
  @media (max-width: 1024px) {
    .category-page__item:last-child {
      margin-bottom: 0px;
    }
    .category-page__item:has(.title-h2) {
      margin-bottom: calc(var(--pb-с) - var(--pb-a));
    }
    .category-page__item:has(.title-h2):last-child {
      margin-bottom: 0px;
    }
    .category-page__item {
      margin-bottom: 1.875vmin; } }

.cat {
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  margin-bottom: 2.5vw;
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw); }

  .cat__image a {
    margin-bottom: 1.04167vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  .cat__image img {
  width: 100%;
  -webkit-transition: all .7s ease-out;
  -o-transition: all .7s ease-out;
  transition: all .7s ease-out; }

.cat__image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

  .cat__image {
    margin-bottom: 1.11111vw; }
    .cat__image img {
      width: 100%; }
    @media (min-width: 1800px) {
      .cat__image {
        margin-bottom: 16px; } }
    @media (max-width: 1024px) {
      .cat__image {
        margin-bottom: 3.75vmin; } }
  .cat__title {
    font-size: 1.04167vw; }
    @media (min-width: 1800px) {
      .cat__title {
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .cat__title {
        font-size: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .cat {
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 36px;
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px); } }
  @media (max-width: 1024px) {
    .cat {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 6.875vmin;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

.mix-nav {
  margin-bottom: 2.08333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .mix-nav__btn {
    height: 2.63889vw;
    border: 1px solid #EFEFEF;
    font-size: 1.04167vw;
    border-radius: 2.5vw;
    padding-left: 1.73611vw;
    padding-right: 1.73611vw;
    background: none;
    margin-bottom: 0.69444vw;
    margin-right: 0.69444vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
    .mix-nav__btn:hover {
      background-color: #F2F2F2; }
    .mix-nav__btn.is-active {
      background-color: #F2F2F2; }
    .mix-nav__btn.is-active:after {
      content: "";
      position: relative;
      top: 30%;
      right: -5px;
      -webkit-transform: translate(0, -50%) rotate(45deg);
      -ms-transform: translate(0, -50%) rotate(45deg);
      transform: translate(0, -50%) rotate(45deg);
      -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      background: url(../images/sprites/svg/plus-accordeon.svg) no-repeat center center;
      -webkit-transition: all .3s ease-out;
      -o-transition: all .3s ease-out;
      transition: all .3s ease-out;
      width: 20px;
      height: 20px;
      background-size: 20px;
    }
@media (min-width: 1800px) {
      .mix-nav__btn {
        height: 38px;
        font-size: 15px;
        border-radius: 36px;
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .mix-nav__btn {
        height: 11.875vmin;
        font-size: 4.6875vmin;
        border-radius: 11.25vmin;
        padding-left: 7.8125vmin;
        padding-right: 7.8125vmin;
        margin-bottom: 3.125vmin;
        margin-right: 3.125vmin; } }
  @media (min-width: 1800px) {
    .mix-nav {
      margin-bottom: 30px; } }

.page-404__container {
  height: 26.38889vw;
  /*background: url(../images/bg-404.png) no-repeat center center;
  background-size: cover;*/
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 1800px) {
    .page-404__container {
      height: 380px; } }
  @media (max-width: 1024px) {
    .page-404__container {
      height: auto;
      padding: 7.8125vmin 18.75vmin; } }

.page-404__subtitle {
  font-weight: 500;
  font-size: 1.80556vw;
   line-height: 1.15;
  margin-bottom: 0.55556vw; }
  @media (min-width: 1800px) {
    .page-404__subtitle {
      font-size: 26px;
       line-height: 1.15;
      margin-bottom: 8px; } }
  @media (max-width: 1024px) {
    .page-404__subtitle {
      font-size: 5.625vmin;
       line-height: 1.15;
      margin-bottom: 2.5vmin; } }

.page-404__title {
  font-size: 8.05556vw;
   line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.66667vw; }
  @media (min-width: 1800px) {
    .page-404__title {
      font-size: 116px;
      margin-bottom: 24px; } }
  @media (max-width: 1024px) {
    .page-404__title {
      font-size: 20vmin;
      margin-bottom: 3.125vmin; } }

.page-404__go-index {
  font-size: 1.04167vw; }
  @media (min-width: 1800px) {
    .page-404__go-index {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .page-404__go-index {
      font-size: 4.0625vmin; } }

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