@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/CorsicaRamblerLX/CorsicaRamblerLX-Bold.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Bold.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 700;
  font-style: normal; }

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-BoldIt.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-BoldIt.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 700;
  font-style: italic; }

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

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

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-MediumIt.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-MediumIt.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 500;
  font-style: italic; }

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

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Light.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Light.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 300;
  font-style: normal; }

@font-face {
  src: url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Book.woff2") format("woff2"), url("../fonts/CorsicaRamblerLX/CorsicaRamblerLX-Book.woff") format("woff");
  font-family: "CorsicaRamblerLX";
  font-weight: 200;
  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: 18px;
  white-space: nowrap; }

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

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

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

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

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -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: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

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

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

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -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: "CorsicaRamblerLX";
  color: #000403;
  background-color: #F9FAFC; }

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

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

.is-hide {
  opacity: 0; }

@media (max-width: 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 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  padding-top: 1.66667vw; }
  .header--inside {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.07);
            box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.07);
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    padding-top: 1.66667vw;
    padding-bottom: 1.38889vw; }
    .header--inside .logo__title {
      color: #5A6C7D;
      border-left: 1px solid rgba(0, 4, 3, 0.1); }
    .header--inside .contacts__phone {
      color: #5A6C7D; }
    .header--inside .btn--call {
      color: #FFC000;
      background: #F9FAFC;
      border: 1px solid rgba(255, 255, 255, 0.1); }
    .header--inside .header__nav a {
      color: #5A6C7D; }
    @media (min-width: 1800px) {
      .header--inside {
        padding-top: 24px;
        padding-bottom: 20px; } }
    @media (max-width: 1024px) {
      .header--inside {
        background: #FFFFFF !important; } }
    @media (max-width: 1024px) {
      .header--inside .btn--menu {
        background: #F9FAFC; }
        .header--inside .btn--menu svg {
          color: #5A6C7D; } }
  .header__wrapper {
    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) {
      .header__wrapper {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header__nav.is-active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .header__nav a {
      display: inline-block;
      font-size: 1.04167vw;
      margin: 0 1.45833vw; }
      .header__nav a:hover {
        color: #FFC000; }
      @media (min-width: 1800px) {
        .header__nav a {
          font-size: 15px;
          margin: 0 21px; } }
      @media (max-width: 1024px) {
        .header__nav a {
          display: inline-block;
          font-size: 5vmin;
          margin: 0;
          padding: 6.25vmin 0; } }
    @media (max-width: 1024px) {
      .header__nav {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        display: none; } }
  .header__btn {
    margin-left: 1.25vw; }
    @media (min-width: 1800px) {
      .header__btn {
        margin-left: 18px; } }
  .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 {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  @media (min-width: 1800px) {
    .header {
      padding-top: 24px; } }
  @media (max-width: 1024px) {
    .header {
      position: relative;
      left: auto;
      right: auto;
      top: auto;
      background-color: #000403;
      padding-top: 4.6875vmin;
      padding-bottom: 4.6875vmin; } }

.contacts {
  text-align: right; }
  .contacts__phone {
    font-size: 1.18056vw;
    font-weight: 500;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .contacts__phone svg {
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .contacts__phone svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .contacts__phone svg {
          display: none; } }
    @media (min-width: 1800px) {
      .contacts__phone {
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .contacts__phone {
        font-size: 4.6875vmin; } }
  .contacts__time {
    color: #C6CAD8;
    font-size: 0.83333vw;
    line-height: 1.38889vw;
    top: 0.27778vw;
    position: relative; }
    @media (min-width: 1800px) {
      .contacts__time {
        font-size: 12px;
        line-height: 20px;
        top: 4px; } }
    @media (max-width: 1024px) {
      .contacts__time {
        font-size: 3.125vmin;
        line-height: 6.25vmin;
        top: 0; } }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .logo__title {
    margin-left: 1.31944vw;
    height: 4.16667vw;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 1.45833vw;
    max-width: 11.80556vw;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.83333vw;
    line-height: 1.38889vw;
    color: #C6CAD8; }
    @media (min-width: 1800px) {
      .logo__title {
        margin-left: 19px;
        height: 60px;
        padding-left: 21px;
        max-width: 170px;
        font-size: 12px;
        line-height: 20px; } }
    @media (max-width: 1024px) {
      .logo__title {
        display: none; } }
  .logo svg {
    width: 10.13889vw;
    height: 2.77778vw; }
    @media (min-width: 1800px) {
      .logo svg {
        width: 146px;
        height: 40px; } }
    @media (max-width: 1024px) {
      .logo svg {
        width: 31.25vmin;
        height: 12.5vmin; } }
  @media (max-width: 1024px) {
    .logo {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.footer {
  background: url(../images/bg-footer.jpg) no-repeat center top;
  background-size: cover;
  color: #fff;
  padding-top: 5.90278vw;
  padding-bottom: 6.73611vw; }
  .footer__btn {
    margin-left: 1.25vw; }
    @media (min-width: 1800px) {
      .footer__btn {
        margin-left: 18px; } }
    @media (max-width: 1024px) {
      .footer__btn {
        margin-left: 5.625vmin; } }
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .footer__right {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .footer__hdr {
    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.98611vw; }
    @media (min-width: 1800px) {
      .footer__hdr {
        margin-bottom: 43px; } }
    @media (max-width: 1024px) {
      .footer__hdr {
        margin-bottom: 13.4375vmin; } }
  .footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .footer__contacts-txt {
      margin-right: 4.16667vw;
      font-size: 1.18056vw;
      line-height: 2.08333vw;
      max-width: 19.86111vw;
      font-weight: 300;
      color: #E2E2EA; }
      @media (min-width: 1800px) {
        .footer__contacts-txt {
          margin-right: 60px;
          font-size: 17px;
          line-height: 30px;
          max-width: 286px; } }
      @media (max-width: 1024px) {
        .footer__contacts-txt {
          margin-right: 0;
          font-size: 5.3125vmin;
          line-height: 9.375vmin;
          max-width: 100%; } }
    .footer__contacts h3 {
      font-weight: 500;
      font-size: 1.18056vw;
      line-height: 1.94444vw;
      color: #fff;
      margin-top: 0;
      position: relative;
      top: -0.34722vw; }
      @media (min-width: 1800px) {
        .footer__contacts h3 {
          font-weight: 17px;
          line-height: 28px;
          top: -5px; } }
      @media (max-width: 1024px) {
        .footer__contacts h3 {
          font-size: 5.3125vmin;
          line-height: 8.75vmin;
          top: 0; } }
    .footer__contacts-map {
      position: relative;
      overflow: hidden;
      border-radius: 0.69444vw;
      width: 21.875vw;
      height: 12.84722vw;
      background-color: #fff; }
      @media (min-width: 1800px) {
        .footer__contacts-map {
          border-radius: 10px;
          width: 315px;
          height: 185px; } }
      @media (max-width: 1024px) {
        .footer__contacts-map {
          border-radius: 3.125vmin;
          width: 100%;
          height: 57.8125vmin;
          margin-top: 9.375vmin; } }
    @media (max-width: 1024px) {
      .footer__contacts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__ftr {
    margin-top: 3.19444vw;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 3.125vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.18056vw;
    line-height: 2.08333vw;
    font-weight: 300; }
    @media (min-width: 1800px) {
      .footer__ftr {
        margin-top: 52px;
        padding-top: 45px;
        font-size: 17px;
        line-height: 30px; } }
    @media (max-width: 1024px) {
      .footer__ftr {
        margin-top: 16.25vmin;
        padding-top: 14.0625vmin;
        font-size: 5.3125vmin;
        line-height: 9.375vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer__copyright {
    margin-right: 12.43056vw; }
    @media (min-width: 1800px) {
      .footer__copyright {
        margin-right: 179px; } }
    @media (max-width: 1024px) {
      .footer__copyright {
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .footer {
      padding-top: 85px;
      padding-bottom: 97px; } }
  @media (max-width: 1024px) {
    .footer {
      padding-top: 14.0625vmin;
      padding-bottom: 14.0625vmin; } }

.slide {
  height: 52.77778vw;
  color: #fff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; }
  .slide__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .slide__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .slide__title {
    font-size: 4.51389vw;
    line-height: 5.55556vw;
    font-weight: 600;
    margin-bottom: 2.5vw; }
    @media (min-width: 1800px) {
      .slide__title {
        font-size: 65px;
        line-height: 80px;
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .slide__title {
        font-size: 10vmin;
        line-height: 12.5vmin;
        margin-bottom: 3.125vmin; } }
  .slide__subtitle {
    font-size: 1.45833vw;
    line-height: 2.63889vw;
    color: #C6CAD8;
    margin-bottom: 2.77778vw; }
    @media (min-width: 1800px) {
      .slide__subtitle {
        font-size: 21px;
        line-height: 38px;
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .slide__subtitle {
        font-size: 5vmin;
        line-height: 7.5vmin;
        margin-bottom: 6.25vmin; } }
  .slide .btn {
    height: 4.02778vw; }
    @media (min-width: 1800px) {
      .slide .btn {
        height: 58px; } }
    @media (max-width: 1024px) {
      .slide .btn {
        height: 18.125vmin; } }
  .slide__txt {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
    @media (max-width: 1024px) {
      .slide__txt {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .slide__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    text-align: right; }
    .slide__image img {
      display: inline-block; }
    @media (max-width: 1024px) {
      .slide__image {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .slide {
      height: 760px; } }
  @media (max-width: 1024px) {
    .slide {
      height: auto;
      padding: 15.625vmin 0; } }

.slide-nav {
  margin-top: -5.55556vw;
  color: #fff; }
  .slide-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: relative; }
    .slide-nav__container:after {
      content: "";
      position: absolute;
      top: 50%;
      right: 14.58333vw;
      left: 9.72222vw;
      height: 0.06944vw;
      opacity: 0.3;
      -webkit-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
              transform: translate(0, -50%);
      background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.05)), to(white));
      background: -o-linear-gradient(left, rgba(255, 255, 255, 0.05) 0%, white 100%);
      background: linear-gradient(to right, rgba(255, 255, 255, 0.05) 0%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); }
      @media (min-width: 1800px) {
        .slide-nav__container:after {
          right: 210px;
          left: 140px;
          height: 1px; } }
      @media (max-width: 1024px) {
        .slide-nav__container:after {
          right: 65.625vmin;
          left: 43.75vmin;
          height: 0.3125vmin; } }
  .slide-nav .btn-slider {
    top: auto;
    position: relative;
    left: auto;
    right: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin-left: 0.69444vw;
    width: 3.47222vw;
    height: 3.47222vw; }
    @media (min-width: 1800px) {
      .slide-nav .btn-slider {
        margin-left: 10px;
        width: 50px;
        height: 50px; } }
    @media (max-width: 1024px) {
      .slide-nav .btn-slider {
        margin-left: 3.125vmin;
        width: 15.625vmin;
        height: 15.625vmin; } }
  .slide-nav .pagingInfo {
    font-size: 1.52778vw;
    font-weight: 700;
    margin-right: 0.69444vw; }
    .slide-nav .pagingInfo small {
      color: #FFC000;
      font-size: 1.18056vw;
      font-weight: 300;
      display: inline-block;
      margin-right: 0.34722vw; }
      @media (min-width: 1800px) {
        .slide-nav .pagingInfo small {
          font-size: 17px;
          margin-right: 5px; } }
      @media (max-width: 1024px) {
        .slide-nav .pagingInfo small {
          font-size: 5.3125vmin;
          margin-right: 1.5625vmin; } }
    @media (min-width: 1800px) {
      .slide-nav .pagingInfo {
        font-size: 22px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .slide-nav .pagingInfo {
        font-size: 6.875vmin;
        margin-right: 3.125vmin; } }
  @media (min-width: 1800px) {
    .slide-nav {
      margin-top: -80px; } }
  @media (max-width: 1024px) {
    .slide-nav {
      margin-top: -25vmin; } }

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 3.81944vw;
  border-radius: 0.69444vw;
  min-width: 10.90278vw;
  font-size: 1.04167vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .btn {
      height: 55px;
      border-radius: 10px;
      min-width: 157px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .btn {
      height: 14.375vmin;
      border-radius: 3.125vmin;
      min-width: 49.0625vmin;
      font-size: 5vmin; } }
  .btn--call {
    height: 2.84722vw;
    min-width: 10.76389vw;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1); }
    @media (max-width: 1024px) {
      .btn--call svg {
        width: 5vmin;
        height: 5vmin; } }
    .btn--call:hover {
      color: #000403;
      border: 1px solid rgba(255, 192, 0, 0.1);
      background-color: #FFC000; }
    @media (min-width: 1800px) {
      .btn--call {
        height: 41px;
        min-width: 155px; } }
    @media (max-width: 1024px) {
      .btn--call {
        display: none; } }
  @media (max-width: 1024px) {
    .btn--menu svg {
      width: 6.25vmin;
      height: 6.25vmin;
      color: #fff; } }
  @media (max-width: 1024px) {
    .btn--menu {
      min-width: auto;
      width: 12.5vmin;
      height: 12.5vmin;
      margin-left: 1.5625vmin;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background-color: rgba(255, 255, 255, 0.1);
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .btn--yellow {
    background-color: #FFC000;
    color: #000403; }
    .btn--yellow:hover {
      background-color: #fff;
      color: #FFC000; }
  .btn--shadow {
    -webkit-box-shadow: 0px 10px 30px rgba(255, 192, 0, 0.4);
            box-shadow: 0px 10px 30px rgba(255, 192, 0, 0.4); }
    .btn--shadow:hover {
      -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.07);
              box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.07); }
  .btn--white {
    background-color: #fff;
    color: #FFC000; }
  .btn--cat svg {
    width: 1.52778vw;
    height: 1.04167vw;
    margin-right: 0.69444vw; }
    @media (max-width: 1024px) {
      .btn--cat svg {
        width: 6.875vmin;
        height: 4.6875vmin;
        margin-right: 3.125vmin; } }
  .btn--price {
    min-width: 11.875vw;
    color: #fff; }
    @media (min-width: 1800px) {
      .btn--price {
        min-width: 171px; } }
  .btn--ask {
    min-width: 13.19444vw; }
    .btn--ask:hover {
      background-color: #FFC000;
      color: #000403; }
    @media (min-width: 1800px) {
      .btn--ask {
        min-width: 190px; } }

.btn_more {
  background-color: #FFC000;
  color: #000403; }
  .btn_more:hover {
    background-color: #fff;
    color: #FFC000; }

.title-h2 {
  font-size: 2.91667vw;
  line-height: 5.55556vw;
  font-weight: 500;
  margin-top: 0;
  color: #000403; }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 42px;
      line-height: 80px; } }
  @media (max-width: 1024px) {
    .title-h2 {
      font-size: 10vmin;
      line-height: 11.25vmin; } }

.catalogblock {
  padding-top: 7.29167vw;
  padding-bottom: 6.94444vw; }
  .catalogblock .title-h2 {
    margin-bottom: 1.52778vw; }
    @media (min-width: 1800px) {
      .catalogblock .title-h2 {
        margin-bottom: 22px; } }
    @media (max-width: 1024px) {
      .catalogblock .title-h2 {
        margin-bottom: 6.875vmin; } }
  .catalogblock__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .catalogblock__wrapper .btn_more {
      margin: 0 auto !important; }
    @media (max-width: 1024px) {
      .catalogblock__wrapper.is-active .btn_more {
        margin-left: auto !important; } }
    @media (max-width: 1024px) {
      .catalogblock__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .catalogblock__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #D6DAE9;
    margin-bottom: 2.08333vw; }
    .catalogblock__menu a, .catalogblock__menu span {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      padding: 0 1.45833vw 1.31944vw 1.45833vw;
      font-weight: 500;
      font-size: 1.38889vw; }
      @media (min-width: 1800px) {
        .catalogblock__menu a, .catalogblock__menu span {
          padding: 0 21px 19px 21px;
          font-size: 20px; } }
      @media (max-width: 1024px) {
        .catalogblock__menu a, .catalogblock__menu span {
          padding: 0 6.5625vmin 5.9375vmin 6.5625vmin;
          font-size: 6.25vmin; } }
    .catalogblock__menu a {
      color: #5A6C7D; }
      .catalogblock__menu a:hover {
        color: #FFC000; }
    .catalogblock__menu span {
      color: #FFC000;
      position: relative; }
      .catalogblock__menu span:after {
        content: "";
        position: absolute;
        bottom: -0.20833vw;
        left: 0;
        right: 0;
        height: 0.34722vw;
        background-color: #FFC000;
        border-radius: 0.83333vw; }
        @media (min-width: 1800px) {
          .catalogblock__menu span:after {
            bottom: -3px;
            height: 5px; } }
        @media (max-width: 1024px) {
          .catalogblock__menu span:after {
            bottom: -0.9375vmin;
            height: 1.5625vmin; } }
    @media (min-width: 1800px) {
      .catalogblock__menu {
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .catalogblock__menu {
        margin-bottom: 9.375vmin; } }
  .catalogblock__hdr {
    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: 1.38889vw; }
    @media (min-width: 1800px) {
      .catalogblock__hdr {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .catalogblock__hdr {
        margin-bottom: 6.25vmin;
        -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; } }
  .catalogblock__btn-filter {
    -ms-flex-preferred-size: 20.48611vw;
        flex-basis: 20.48611vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.04167vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .catalogblock__btn-filter {
        -ms-flex-preferred-size: 295px;
            flex-basis: 295px;
        font-size: 15px; } }
    @media (max-width: 1024px) {
      .catalogblock__btn-filter {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        font-size: 4.6875vmin; } }
  .catalogblock__sortblock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1024px) {
      .catalogblock__sortblock {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 6.25vmin;
        margin-left: -1.5625vmin;
        margin-right: -1.5625vmin; } }
  @media (min-width: 1800px) {
    .catalogblock {
      padding-top: 105px;
      padding-bottom: 100px; } }
  @media (max-width: 1024px) {
    .catalogblock {
      padding-top: 32.8125vmin;
      padding-bottom: 31.25vmin; } }

.sortbtn {
  min-width: 15.55556vw;
  height: 2.70833vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F1F3FA;
  border-radius: 0.69444vw;
  padding: 0 1.04167vw;
  color: #5A6C7D;
  margin-left: 0.69444vw;
  font-size: 1.04167vw;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .sortbtn b {
    font-weight: 500;
    padding-right: 3px; }
    @media (max-width: 1024px) {
      .sortbtn b {
        display: none; } }
  .sortbtn:hover {
    background-color: #FFC000;
    color: #000403; }
  .sortbtn.active {
    background-color: #fff;
    color: #000403; }
  @media (min-width: 1800px) {
    .sortbtn {
      min-width: 224px;
      height: 39px;
      border-radius: 10px;
      padding: 0 15px;
      margin-left: 10px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .sortbtn {
      min-width: none;
      height: 12.1875vmin;
      border-radius: 3.125vmin;
      padding: 0 1.5625vmin;
      margin-left: 1.5625vmin;
      margin-right: 1.5625vmin;
      margin-bottom: 3.125vmin;
      font-size: 3.75vmin; } }
  .sortbtn svg {
    width: 1.25vw;
    height: 0.69444vw;
    margin-right: 0.69444vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 1.25vw;
        flex-basis: 1.25vw;
    display: none; }
    @media (min-width: 1800px) {
      .sortbtn svg {
        width: 18px;
        height: 10px;
        margin-right: 10px;
        -ms-flex-preferred-size: 18px;
            flex-basis: 18px; } }
    @media (max-width: 1024px) {
      .sortbtn svg {
        width: 5.625vmin;
        height: 3.125vmin;
        margin-right: 3.125vmin;
        -ms-flex-preferred-size: 5.625vmin;
            flex-basis: 5.625vmin; } }
  .sortbtn:before {
    content: "";
    display: inline-block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 1.25vw;
    height: 0.69444vw;
    margin-right: 0.34722vw;
    background: url(../images/sprites/svg/sort.svg) no-repeat center center;
    background-size: 100%; }
    @media (min-width: 1800px) {
      .sortbtn:before {
        width: 18px;
        height: 10px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .sortbtn:before {
        width: 5.625vmin;
        height: 3.125vmin;
        margin-right: 1.5625vmin; } }
  .sortbtn[data-dir="desc"]:before {
    width: 1.25vw;
    height: 0.69444vw;
    margin-right: 0.34722vw;
    background: url(../images/sprites/svg/sort.svg) no-repeat center center;
    background-size: 100%; }
    @media (min-width: 1800px) {
      .sortbtn[data-dir="desc"]:before {
        width: 18px;
        height: 10px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .sortbtn[data-dir="desc"]:before {
        width: 5.625vmin;
        height: 3.125vmin;
        margin-right: 1.5625vmin; } }
  .sortbtn[data-dir="asc"]:before {
    width: 1.25vw;
    height: 0.69444vw;
    margin-right: 0.34722vw;
    background: url(../images/sprites/svg/sort-up.svg) no-repeat center center;
    background-size: 100%; }
    @media (min-width: 1800px) {
      .sortbtn[data-dir="asc"]:before {
        width: 18px;
        height: 10px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .sortbtn[data-dir="asc"]:before {
        width: 5.625vmin;
        height: 3.125vmin;
        margin-right: 1.5625vmin; } }

.filterbtn {
  width: 2.5vw;
  height: 1.38889vw;
  border-radius: 2.5vw;
  background-color: #CDD1DA;
  position: relative;
  margin-right: 0.83333vw;
  cursor: pointer; }
  .filterbtn::after {
    content: '';
    position: absolute;
    top: 0.13889vw;
    left: 0.13889vw;
    width: 1.11111vw;
    height: 1.11111vw;
    border-radius: 50%;
    background: #FFF;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }
    @media (min-width: 1800px) {
      .filterbtn::after {
        top: 2px;
        left: 2px;
        width: 16px;
        height: 16px; } }
    @media (max-width: 1024px) {
      .filterbtn::after {
        top: 0.625vmin;
        left: 0.625vmin;
        width: 5vmin;
        height: 5vmin; } }
  .filterbtn.is-active {
    background-color: #FFC000; }
    .filterbtn.is-active::after {
      left: 1.25vw; }
      @media (min-width: 1800px) {
        .filterbtn.is-active::after {
          left: 18px; } }
      @media (max-width: 1024px) {
        .filterbtn.is-active::after {
          left: 5.625vmin; } }
  @media (min-width: 1800px) {
    .filterbtn {
      width: 36px;
      height: 20px;
      border-radius: 36px;
      margin-right: 12px; } }
  @media (max-width: 1024px) {
    .filterbtn {
      width: 11.25vmin;
      height: 6.25vmin;
      border-radius: 11.25vmin;
      margin-right: 3.75vmin; } }

.filter {
  -ms-flex-preferred-size: 23.8%;
      flex-basis: 23.8%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 1.38889vw;
  border-radius: 1.38889vw;
  position: relative;
  z-index: 1; }
  .filter #mse2_filters {
    background-color: #F1F3FA;
    border-radius: 1.38889vw; }
  .filter.is-active {
    display: none; }
  .filter__item {
    border: 2px solid #F1F3FA;
    padding: 1.80556vw 1.25vw;
    border-radius: 1.38889vw;
    background-color: #fff;
    margin-top: -0.13889vw; }
    @media (min-width: 1800px) {
      .filter__item {
        padding: 30px 20px;
        border-radius: 20px;
        margin-top: -2px; } }
    @media (max-width: 1024px) {
      .filter__item {
        padding: 4.6875vmin 6.25vmin;
        border-radius: 3.125vmin;
        margin-top: -0.625vmin; } }
  .filter__title {
    font-size: 1.18056vw;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    margin-bottom: 0.27778vw; }
    .filter__title.is-active .filter__title-icn {
      -webkit-transform: rotate(0);
          -ms-transform: rotate(0);
              transform: rotate(0); }
    @media (min-width: 1800px) {
      .filter__title {
        font-size: 17px;
        margin-bottom: 4px; } }
    @media (max-width: 1024px) {
      .filter__title {
        font-size: 5.3125vmin;
        margin-bottom: 1.25vmin; } }
  .filter__title-icn {
    width: 1.11111vw;
    height: 1.11111vw;
    position: relative;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media (min-width: 1800px) {
      .filter__title-icn {
        width: 16px;
        height: 16px; } }
    @media (max-width: 1024px) {
      .filter__title-icn {
        width: 5vmin;
        height: 5vmin; } }
  .filter ::-webkit-scrollbar {
    width: 5px;
    background-color: transparent; }
  .filter ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFC000; }
  .filter__wrap {
    padding-top: 0.76389vw;
    display: none;
    max-height: 170px;
    overflow-y: scroll; }
    @media (min-width: 1800px) {
      .filter__wrap {
        padding-top: 11px; } }
    @media (max-width: 1024px) {
      .filter__wrap {
        padding-top: 3.4375vmin; } }
  @media (min-width: 1800px) {
    .filter {
      border-radius: 20px;
      padding-right: 20px; } }
  @media (max-width: 1024px) {
    .filter {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      width: 100%;
      padding-right: 0;
      margin-bottom: 12.5vmin;
      border-radius: 6.25vmin; } }

.catalog {
  -ms-flex-preferred-size: 76.2%;
      flex-basis: 76.2%; }
  .catalog__container {
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 1800px) {
      .catalog__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .catalog__container {
        margin-left: 0;
        margin-right: 0; } }
  .catalog.is-active {
    -ms-flex-preferred-size: calc(100% + 1.38889vw);
        flex-basis: calc(100% + 1.38889vw); }
    .catalog.is-active .product {
      -ms-flex-preferred-size: calc(25% - 1.38889vw);
          flex-basis: calc(25% - 1.38889vw); }
      @media (min-width: 1800px) {
        .catalog.is-active .product {
          -ms-flex-preferred-size: calc(25% - 20px);
              flex-basis: calc(25% - 20px); } }
      @media (max-width: 1024px) {
        .catalog.is-active .product {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%; } }
    @media (min-width: 1800px) {
      .catalog.is-active {
        -ms-flex-preferred-size: calc(100% + 20px);
            flex-basis: calc(100% + 20px); } }
    @media (max-width: 1024px) {
      .catalog.is-active {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

.btn-reset {
  padding: 0;
  font-size: 0.83333vw;
  background-color: transparent;
  color: rgba(0, 4, 3, 0.5);
  border: none;
  border-bottom: 1px solid rgba(0, 4, 3, 0.5);
  display: none; }
  @media (min-width: 1800px) {
    .btn-reset {
      font-size: 12px; } }
  @media (max-width: 1024px) {
    .btn-reset {
      font-size: 3.75vmin; } }

.checkbox-item label input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.checkbox-item label input:checked + .checkbox__text:before {
  background: #FFC000 url(../images/sprites/svg/check.svg) no-repeat center center;
  background-size: 0.69444vw;
  border: 1px solid #FFC000; }
  @media (min-width: 1800px) {
    .checkbox-item label input:checked + .checkbox__text:before {
      background-size: 10px; } }
  @media (max-width: 1024px) {
    .checkbox-item label input:checked + .checkbox__text:before {
      background-size: 3.125vmin; } }

.checkbox-item label .checkbox__text {
  position: relative;
  padding: 0 0 0 2.08333vw;
  cursor: pointer;
  font-size: 1.04167vw;
  min-height: 1.52778vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.69444vw; }
  .checkbox-item label .checkbox__text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.38889vw;
    height: 1.38889vw;
    border-radius: 0.34722vw;
    background: #fff url(../images/sprites/svg/check.svg) no-repeat center center;
    background-size: 0.69444vw;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border: 1px solid rgba(175, 175, 175, 0.5); }
    @media (min-width: 1800px) {
      .checkbox-item label .checkbox__text:before {
        width: 20px;
        height: 20px;
        border-radius: 5px;
        background-size: 10px; } }
    @media (max-width: 1024px) {
      .checkbox-item label .checkbox__text:before {
        width: 6.25vmin;
        height: 6.25vmin;
        border-radius: 1.5625vmin;
        background-size: 3.125vmin; } }
  @media (min-width: 1800px) {
    .checkbox-item label .checkbox__text {
      padding: 0 0 0 30px;
      font-size: 15px;
      min-height: 22px;
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .checkbox-item label .checkbox__text {
      padding: 0 0 0 9.375vmin;
      font-size: 4.6875vmin;
      min-height: 6.875vmin;
      margin-bottom: 3.125vmin; } }

.radio-item label input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.radio-item label input:checked + .radio__text:after {
  opacity: 1; }

.radio-item label .radio__text {
  position: relative;
  padding: 0 0 0 2.08333vw;
  cursor: pointer;
  font-size: 1.04167vw;
  margin-bottom: 0.69444vw; }
  .radio-item label .radio__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.38889vw;
    height: 1.38889vw;
    border: 1px solid #E2E2EA;
    border-radius: 50%;
    background: #FFF; }
    @media (min-width: 1800px) {
      .radio-item label .radio__text::before {
        width: 20px;
        height: 20px; } }
    @media (max-width: 1024px) {
      .radio-item label .radio__text::before {
        width: 6.25vmin;
        height: 6.25vmin; } }
  .radio-item label .radio__text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1.38889vw;
    height: 1.38889vw;
    border-radius: 50%;
    border: 0.20833vw solid #FFC000;
    opacity: 0;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }
    @media (min-width: 1800px) {
      .radio-item label .radio__text::after {
        width: 20px;
        height: 20px;
        border: 3px solid #FFC000; } }
    @media (max-width: 1024px) {
      .radio-item label .radio__text::after {
        width: 6.25vmin;
        height: 6.25vmin;
        border: 0.9375vmin solid #FFC000; } }
  @media (min-width: 1800px) {
    .radio-item label .radio__text {
      padding: 0 0 0 30px;
      font-size: 15px;
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .radio-item label .radio__text {
      padding: 0 0 0 9.375vmin;
      font-size: 4.6875vmin;
      margin-bottom: 3.125vmin; } }

.product {
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  margin-bottom: 1.38889vw;
  border: 2px solid #F1F3FA;
  border-radius: 1.38889vw;
  background-color: #fff;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .product__image {
    position: relative;
    overflow: hidden;
    border-radius: 1.38889vw; }
    .product__image img {
      width: 100%; }
    @media (min-width: 1800px) {
      .product__image {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .product__image {
        border-radius: 6.25vmin; } }
  .product__labels {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    top: 0.69444vw;
    left: 0.69444vw;
    position: absolute;
    z-index: 1; }
    @media (min-width: 1800px) {
      .product__labels {
        top: 10px;
        left: 10px; } }
    @media (max-width: 1024px) {
      .product__labels {
        top: 3.125vmin;
        left: 3.125vmin; } }
  .product_desc {
    margin-left: 1.25vw;
    margin-right: 1.38889vw;
    padding-top: 1.59722vw;
    border-top: 1px solid #E2E2EA; }
    @media (min-width: 1800px) {
      .product_desc {
        margin-left: 20px;
        margin-right: 20px;
        padding-top: 23px; } }
    @media (max-width: 1024px) {
      .product_desc {
        margin-left: 6.25vmin;
        margin-right: 6.25vmin;
        padding-top: 7.1875vmin; } }
  .product__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    margin-bottom: 0.83333vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500; }
    .product__title:hover {
      color: #FFC000; }
    @media (min-width: 1800px) {
      .product__title {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .product__title {
        font-size: 5.3125vmin;
        line-height: 8.75vmin;
        margin-bottom: 3.75vmin; } }
  .product__ftr {
    padding: 0 1.38889vw 1.38889vw 1.38889vw;
    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 (min-width: 1800px) {
      .product__ftr {
        padding: 0 20px 20px 20px; } }
    @media (max-width: 1024px) {
      .product__ftr {
        padding: 0 6.25vmin 6.25vmin 6.25vmin; } }
  .product__intro {
    font-size: 0.90278vw;
    color: #5A6C7D; }
    .product__intro ul li {
      position: relative;
      padding-left: 0.97222vw;
      margin-bottom: 0.97222vw; }
      .product__intro ul li:before {
        content: "•";
        position: absolute;
        color: #FFC000;
        left: 0;
        top: 0; }
      @media (min-width: 1800px) {
        .product__intro ul li {
          padding-left: 14px;
          margin-bottom: 14px; } }
      @media (max-width: 1024px) {
        .product__intro ul li {
          padding-left: 4.375vmin;
          margin-bottom: 4.375vmin; } }
    @media (min-width: 1800px) {
      .product__intro {
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .product__intro {
        font-size: 4.0625vmin; } }
  .product__price {
    font-size: 1.18056vw;
    line-height: 1.73611vw;
    font-weight: 500;
    color: #343B4C;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .product__price img {
      margin-left: 4px;
      position: relative;
      top: 1px; }
    @media (min-width: 1800px) {
      .product__price {
        font-size: 17px;
        line-height: 25px; } }
    @media (max-width: 1024px) {
      .product__price {
        font-size: 5.3125vmin;
        line-height: 7.8125vmin; } }
  .product__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;
    width: 10vw;
    height: 3.26389vw;
    background-color: #F9FAFC;
    color: #FFC000;
    font-size: 1.04167vw;
    font-weight: 500;
    border-radius: 0.69444vw; }
    .product__btn:hover {
      background-color: #FFC000;
      color: #000403; }
    .product__btn svg {
      width: 0.83333vw;
      height: 0.83333vw;
      margin-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .product__btn svg {
          width: 12px;
          height: 12px;
          margin-left: 10px; } }
      @media (max-width: 1024px) {
        .product__btn svg {
          width: 3.75vmin;
          height: 3.75vmin;
          margin-left: 3.125vmin; } }
    @media (min-width: 1800px) {
      .product__btn {
        width: 144px;
        height: 47px;
        font-size: 15px;
        border-radius: 10px; } }
    @media (max-width: 1024px) {
      .product__btn {
        width: 45vmin;
        height: 14.6875vmin;
        font-size: 4.6875vmin;
        border-radius: 3.125vmin; } }
  @media (min-width: 1800px) {
    .product {
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-left: 10px;
      margin-right: 10px;
      margin-bottom: 20px;
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .product {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 3.125vmin;
      border-radius: 6.25vmin; } }

.btn-more {
  color: #fff;
  width: auto !important; }

.label {
  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;
  padding: 0.34722vw 1.04167vw;
  border-radius: 0.55556vw;
  background-color: #F9FAFC;
  color: #FFC000;
  font-size: 1.18056vw;
  line-height: 1.66667vw;
  margin-bottom: 0.27778vw; }
  @media (min-width: 1800px) {
    .label {
      padding: 5px 15px;
      border-radius: 8px;
      font-size: 17px;
      line-height: 24px;
      margin-bottom: 4px; } }
  @media (max-width: 1024px) {
    .label {
      padding: 1.5625vmin 4.6875vmin;
      border-radius: 2.5vmin;
      font-size: 5.3125vmin;
      line-height: 7.5vmin;
      margin-bottom: 1.25vmin; } }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-top: 2.08333vw; }
  @media (min-width: 1800px) {
    .pagination {
      margin-top: 30px; } }
  @media (max-width: 1024px) {
    .pagination {
      margin-top: 9.375vmin; } }

.container--company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1024px) {
    .container--company {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.container--feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1024px) {
    .container--feedback {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.company {
  background-color: #fff;
  padding: 6.80556vw 0 7.15278vw; }
  .company .title-h2 {
    margin-bottom: 2.22222vw;
    line-height: 1; }
    @media (min-width: 1800px) {
      .company .title-h2 {
        margin-bottom: 32px; } }
    @media (max-width: 1024px) {
      .company .title-h2 {
        margin-bottom: 10vmin; } }
  .company__text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    font-size: 1.04167vw;
    line-height: 1.80556vw;
    color: #5A6C7D;
    padding-right: 2.77778vw; }
    .company__text p {
      margin-bottom: 1.80556vw; }
      @media (min-width: 1800px) {
        .company__text p {
          margin-bottom: 26px; } }
      @media (max-width: 1024px) {
        .company__text p {
          margin-bottom: 8.125vmin; } }
    @media (min-width: 1800px) {
      .company__text {
        font-size: 15px;
        line-height: 26px;
        padding-right: 40px; } }
    @media (max-width: 1024px) {
      .company__text {
        font-size: 4.6875vmin;
        line-height: 8.125vmin;
        padding-right: 0; } }
  .company__slider {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    padding-left: 0.69444vw;
    position: relative; }
    @media (max-width: 1024px) {
      .company__slider .btn-slider {
        margin-top: 4.6875vmin; } }
    @media (min-width: 1800px) {
      .company__slider {
        padding-left: 10px; } }
    @media (max-width: 1024px) {
      .company__slider {
        padding-left: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%; } }
  @media (min-width: 1800px) {
    .company {
      padding: 92px 103px; } }
  .company .btn {
    min-width: 13.68056vw;
    margin-top: 1.11111vw; }
    .company .btn svg {
      width: 1.38889vw;
      height: 1.11111vw;
      margin-left: 0.55556vw; }
      @media (min-width: 1800px) {
        .company .btn svg {
          width: 20px;
          height: 16px;
          margin-left: 8px; } }
      @media (max-width: 1024px) {
        .company .btn svg {
          width: 6.25vmin;
          height: 5vmin;
          margin-left: 2.5vmin; } }
    .company .btn:hover {
      background-color: #F9FAFC; }
    @media (min-width: 1800px) {
      .company .btn {
        min-width: 197px;
        margin-top: 16px; } }
    @media (max-width: 1024px) {
      .company .btn {
        min-width: 61.5625vmin;
        margin-top: 5vmin; } }
  @media (min-width: 1800px) {
    .company {
      padding: 98px 0 103px; } }
  @media (max-width: 1024px) {
    .company {
      padding: 30.625vmin 0 32.1875vmin; } }

.company-slider {
  max-width: 100%;
  border-radius: 1.38889vw;
  position: relative;
  overflow: hidden; }
  .company-slider img {
    border-radius: 1.38889vw; }
    @media (min-width: 1800px) {
      .company-slider img {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .company-slider img {
        border-radius: 3.75vmin; } }
  @media (min-width: 1800px) {
    .company-slider {
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .company-slider {
      border-radius: 3.75vmin;
      margin-top: 12.5vmin; } }

.slick-dots-custom {
  position: absolute;
  right: 1.94444vw;
  bottom: 2.08333vw;
  z-index: 1; }
  .slick-dots-custom .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-radius: 0.55556vw;
    height: 2.36111vw;
    padding-left: 0.34722vw;
    padding-right: 0.34722vw; }
    .slick-dots-custom .slick-dots button {
      display: none; }
    .slick-dots-custom .slick-dots li {
      width: 0.69444vw;
      height: 0.69444vw;
      border-radius: 50%;
      border: 1.4px solid #FFFFFF;
      margin-left: 0.34722vw;
      margin-right: 0.34722vw;
      cursor: pointer; }
      .slick-dots-custom .slick-dots li.slick-active {
        background-color: #fff; }
      @media (min-width: 1800px) {
        .slick-dots-custom .slick-dots li {
          width: 10px;
          height: 10px;
          margin-left: 5px;
          margin-right: 5px; } }
      @media (max-width: 1024px) {
        .slick-dots-custom .slick-dots li {
          width: 3.125vmin;
          height: 3.125vmin;
          margin-left: 1.5625vmin;
          margin-right: 1.5625vmin; } }
    @media (min-width: 1800px) {
      .slick-dots-custom .slick-dots {
        border-radius: 8px;
        height: 34px;
        padding-left: 5px;
        padding-right: 5px; } }
    @media (max-width: 1024px) {
      .slick-dots-custom .slick-dots {
        border-radius: 2.5vmin;
        height: 10.625vmin;
        padding-left: 1.5625vmin;
        padding-right: 1.5625vmin; } }
  @media (min-width: 1800px) {
    .slick-dots-custom {
      right: 30px;
      bottom: 28px; } }
  @media (max-width: 1024px) {
    .slick-dots-custom {
      right: 3.125vmin;
      bottom: 3.125vmin; } }

.btn-slider {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 0.69444vw;
  width: 3.125vw;
  height: 3.125vw;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  z-index: 1;
  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; }
  .btn-slider svg {
    width: 1.38889vw;
    height: 1.38889vw; }
    @media (min-width: 1800px) {
      .btn-slider svg {
        width: 20px;
        height: 20px; } }
    @media (max-width: 1024px) {
      .btn-slider svg {
        width: 6.25vmin;
        height: 6.25vmin; } }
  .btn-slider--prev {
    left: 2.63889vw; }
    @media (min-width: 1800px) {
      .btn-slider--prev {
        left: 38px; } }
    @media (max-width: 1024px) {
      .btn-slider--prev {
        left: 3.125vmin; } }
  .btn-slider--next {
    right: 2.08333vw; }
    @media (min-width: 1800px) {
      .btn-slider--next {
        right: 30px; } }
    @media (max-width: 1024px) {
      .btn-slider--next {
        right: 3.125vmin; } }
  .btn-slider:hover {
    background-color: #FFC000;
    color: #000403; }
  @media (min-width: 1800px) {
    .btn-slider {
      border-radius: 10px;
      width: 45px;
      height: 45px; } }
  @media (max-width: 1024px) {
    .btn-slider {
      border-radius: 3.125vmin;
      width: 11.25vmin;
      height: 11.25vmin; } }

.advantage {
  padding: 6.11111vw 0 7.08333vw;
  background: url(../images/bg-advantage.jpg) no-repeat center top;
  background-size: cover;
  color: #fff; }
  .advantage .title-h2 {
    color: #fff;
    margin-bottom: 1.52778vw; }
    @media (max-width: 1024px) {
      .advantage .title-h2 {
        margin-bottom: 6.875vmin; } }
  .advantage__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 4.16667vw;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .advantage__wrapper {
        padding-right: 60px;
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .advantage__wrapper {
        padding-right: 0;
        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) {
    .advantage {
      padding: 88px 0 102px; } }
  @media (max-width: 1024px) {
    .advantage {
      padding: 27.5vmin 0 31.875vmin; } }

.advant {
  border-radius: 1.04167vw;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.94444vw 2.08333vw;
  padding-right: 1.66667vw;
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  -ms-flex-preferred-size: calc(25% - 1.38889vw);
      flex-basis: calc(25% - 1.38889vw);
  -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
          box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1); }
  .advant__icn {
    width: 3.05556vw;
    height: 3.05556vw;
    margin-bottom: 1.25vw; }
    @media (min-width: 1800px) {
      .advant__icn {
        width: 44px;
        height: 44px;
        margin-bottom: 18px; } }
    @media (max-width: 1024px) {
      .advant__icn {
        width: 13.75vmin;
        height: 13.75vmin;
        margin-bottom: 5.625vmin; } }
  .advant__title {
    font-size: 1.18056vw;
    line-height: 1.94444vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .advant__title {
        font-size: 17px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .advant__title {
        font-size: 5.3125vmin;
        line-height: 8.75vmin; } }
  @media (min-width: 1800px) {
    .advant {
      border-radius: 15px;
      padding: 30px;
      margin-left: 10px;
      margin-right: 10px;
      -ms-flex-preferred-size: calc(25% - 20px);
          flex-basis: calc(25% - 20px); } }
  @media (max-width: 1024px) {
    .advant {
      border-radius: 4.6875vmin;
      padding: 9.375vmin;
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 6.25vmin; } }

.reviews {
  padding: 5.27778vw 0 1.04167vw; }
  .reviews .title-h2 {
    margin-bottom: 1.94444vw; }
    @media (min-width: 1800px) {
      .reviews .title-h2 {
        margin-bottom: 28px; } }
    @media (max-width: 1024px) {
      .reviews .title-h2 {
        margin-bottom: 8.75vmin; } }
  .reviews__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) {
      .reviews__wrapper {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .reviews__wrapper {
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .reviews {
      padding: 76px 0 15px; } }
  @media (max-width: 1024px) {
    .reviews {
      padding: 23.75vmin 0 4.6875vmin; } }

.review {
  -ms-flex-preferred-size: calc(50% - 1.38889vw);
      flex-basis: calc(50% - 1.38889vw);
  margin-bottom: 1.38889vw;
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
          box-shadow: 0px 10px 40px rgba(148, 164, 180, 0.1);
  border-radius: 1.04167vw;
  padding: 2.08333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .review__image {
    -ms-flex-preferred-size: 6.94444vw;
        flex-basis: 6.94444vw;
    width: 6.94444vw;
    height: 6.94444vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1.38889vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #F1F3FA url(../images/no-photo.jpg) no-repeat center center;
    background-size: 6.94444vw;
    border-radius: 50%;
    overflow: hidden;
    position: relative; }
    @media (min-width: 1800px) {
      .review__image {
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
        width: 100px;
        height: 100px;
        margin-right: 20px;
        background-size: 100px; } }
    @media (max-width: 1024px) {
      .review__image {
        -ms-flex-preferred-size: 31.25vmin;
            flex-basis: 31.25vmin;
        width: 31.25vmin;
        height: 31.25vmin;
        margin-right: 0;
        background-size: 31.25vmin;
        margin-bottom: 6.25vmin; } }
  .review__desc {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1; }
  .review__author {
    font-size: 1.52778vw;
    line-height: 1.94444vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .review__author {
        font-size: 22px;
        line-height: 28px; } }
    @media (max-width: 1024px) {
      .review__author {
        font-size: 6.875vmin;
        line-height: 8.75vmin; } }
  .review__location {
    font-size: 0.90278vw;
    line-height: 1.66667vw;
    color: #94A4B4; }
    @media (min-width: 1800px) {
      .review__location {
        font-size: 13px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .review__location {
        font-size: 4.0625vmin;
        line-height: 7.5vmin; } }
  .review__txt {
    font-size: 1.04167vw;
    line-height: 1.66667vw;
    color: #5A6C7D;
    margin-top: 0.41667vw; }
    @media (min-width: 1800px) {
      .review__txt {
        font-size: 15px;
        line-height: 24px;
        margin-top: 6px; } }
    @media (max-width: 1024px) {
      .review__txt {
        font-size: 4.6875vmin;
        line-height: 7.5vmin;
        margin-top: 1.875vmin; } }
  .review__more {
    margin-top: 1.66667vw; }
    .review__more a {
      font-size: 1.18056vw;
      line-height: 1.66667vw;
      color: #FFC000; }
      @media (min-width: 1800px) {
        .review__more a {
          font-size: 17px;
          line-height: 24px; } }
      @media (max-width: 1024px) {
        .review__more a {
          font-size: 5.3125vmin;
          line-height: 7.5vmin; } }
    @media (min-width: 1800px) {
      .review__more {
        margin-top: 24px; } }
    @media (max-width: 1024px) {
      .review__more {
        margin-top: 7.5vmin; } }
  @media (min-width: 1800px) {
    .review {
      -ms-flex-preferred-size: calc(50% - 20px);
          flex-basis: calc(50% - 20px);
      margin-bottom: 20px;
      margin-left: 10px;
      margin-right: 10px;
      border-radius: 15px;
      padding: 30px; } }
  @media (max-width: 1024px) {
    .review {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 6.25vmin;
      margin-left: 0;
      margin-right: 0;
      border-radius: 4.6875vmin;
      padding: 9.375vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.feedback {
  padding-bottom: 1.94444vw; }
  .feedback__form {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-right: 2.08333vw; }
    .feedback__form .btn {
      min-width: 14.30556vw;
      height: 4.51389vw;
      font-size: 1.38889vw;
      border-radius: 1.04167vw; }
      @media (min-width: 1800px) {
        .feedback__form .btn {
          min-width: 206px;
          height: 65px;
          font-size: 20px;
          border-radius: 15px; } }
      @media (max-width: 1024px) {
        .feedback__form .btn {
          min-width: 64.375vmin;
          height: 20.3125vmin;
          font-size: 6.25vmin;
          border-radius: 4.6875vmin; } }
    @media (min-width: 1800px) {
      .feedback__form {
        padding-right: 30px; } }
    @media (max-width: 1024px) {
      .feedback__form {
        padding-right: 0;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .feedback__image {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    text-align: right; }
    @media (max-width: 1024px) {
      .feedback__image {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin-top: 9.375vmin; } }
  @media (min-width: 1800px) {
    .feedback {
      padding-bottom: 28px; } }
  @media (max-width: 1024px) {
    .feedback {
      padding-bottom: 8.75vmin; } }

.form ::-webkit-input-placeholder {
  color: #94A4B4; }

.form ::-moz-placeholder {
  color: #94A4B4; }

.form :-ms-input-placeholder {
  color: #94A4B4; }

.form ::-ms-input-placeholder {
  color: #94A4B4; }

.form ::placeholder {
  color: #94A4B4; }

.form__title {
  font-size: 2.5vw;
  line-height: 3.47222vw;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: 0.48611vw; }
  @media (min-width: 1800px) {
    .form__title {
      font-size: 36px;
      line-height: 50px;
      margin-bottom: 7px; } }
  @media (max-width: 1024px) {
    .form__title {
      font-size: 10vmin;
      line-height: 12.5vmin;
      margin-bottom: 2.1875vmin; } }

.form__subtitle {
  font-size: 1.52778vw;
  line-height: 2.5vw;
  font-weight: 500;
  margin-bottom: 2.01389vw; }
  @media (min-width: 1800px) {
    .form__subtitle {
      font-size: 22px;
      line-height: 36px;
      margin-bottom: 29px; } }
  @media (max-width: 1024px) {
    .form__subtitle {
      font-size: 5vmin;
      line-height: 7.5vmin;
      margin-bottom: 9.0625vmin; } }

.form__wrap {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #F9FAFC;
  -webkit-box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
          box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
  border-radius: 1.04167vw;
  margin-bottom: 2.08333vw; }
  @media (min-width: 1800px) {
    .form__wrap {
      -webkit-box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
              box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
      border-radius: 15px;
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .form__wrap {
      -webkit-box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
              box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
      border-radius: 4.6875vmin;
      margin-bottom: 9.375vmin; } }

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1024px) {
    .form__inputs {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.form__input {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-weight: 500;
  font-size: 1.04167vw;
  height: 4.09722vw;
  text-indent: 1.38889vw;
  border: none;
  border-right: 1px solid #EFEFF9; }
  .form__input:last-child {
    border-right: none; }
  @media (min-width: 1800px) {
    .form__input {
      font-size: 15px;
      height: 59px;
      text-indent: 20px; } }
  @media (max-width: 1024px) {
    .form__input {
      font-size: 4.6875vmin;
      height: auto;
      padding-top: 5vmin;
      padding-bottom: 5vmin;
      text-indent: 6.25vmin;
      border-top: 1px solid #EFEFF9;
      border-right: none; }
      .form__input:first-child {
        border-top: none; } }

.form__textrea {
  border: none;
  border-top: 1px solid #EFEFF9;
  padding-left: 1.38889vw;
  width: 100%;
  padding-top: 1.04167vw;
  min-height: 9.86111vw;
  font-weight: 500;
  font-size: 1.04167vw;
  outline: none; }
  @media (min-width: 1800px) {
    .form__textrea {
      padding-left: 20px;
      padding-top: 15px;
      min-height: 142px;
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .form__textrea {
      padding-left: 6.25vmin;
      padding-top: 4.6875vmin;
      min-height: 44.375vmin;
      font-size: 4.6875vmin; } }

.form__ftr {
  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) {
    .form__ftr {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.form__police {
  font-size: 0.90278vw;
  line-height: 1.38889vw;
  color: #94A4B4; }
  .form__police a {
    color: #FFC000; }
  @media (min-width: 1800px) {
    .form__police {
      font-size: 13px;
      line-height: 20px; } }
  @media (max-width: 1024px) {
    .form__police {
      font-size: 4.0625vmin;
      line-height: 6.25vmin;
      margin-bottom: 3.125vmin; } }

.requisites .title-h2 {
  font-size: 2.43056vw;
  line-height: 3.33333vw;
  margin-bottom: 2.5vw; }
  @media (max-width: 1024px) {
    .requisites .title-h2 {
      font-size: 10.9375vmin;
      line-height: 15vmin;
      margin-bottom: 11.25vmin; } }

.requisites__container {
  border-top: 1px solid #E2E2EA;
  padding-top: 6.38889vw;
  padding-bottom: 6.94444vw; }
  @media (min-width: 1800px) {
    .requisites__container {
      padding-top: 92px;
      padding-bottom: 100px; } }
  @media (max-width: 1024px) {
    .requisites__container {
      padding-top: 28.75vmin;
      padding-bottom: 31.25vmin; } }

.requisites__wrapper {
  padding: 3.125vw 3.47222vw;
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  -webkit-box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
          box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
  border-radius: 1.38889vw; }
  @media (min-width: 1800px) {
    .requisites__wrapper {
      padding: 45px 50px;
      -webkit-box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
              box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .requisites__wrapper {
      padding: 10.9375vmin 6.25vmin;
      -webkit-box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
              box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
      border-radius: 6.25vmin; } }

.requisites__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.04167vw;
  line-height: 1.80556vw;
  position: relative;
  z-index: 1;
  margin-bottom: 0.48611vw; }
  .requisites__item:after {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    right: 50%;
    top: 0.83333vw;
    height: 1px;
    background-color: #F1F3FA;
    z-index: -1; }
    @media (min-width: 1800px) {
      .requisites__item:after {
        top: 12px; } }
    @media (max-width: 1024px) {
      .requisites__item:after {
        display: none; } }
  @media (min-width: 1800px) {
    .requisites__item {
      font-size: 15px;
      line-height: 26px; } }
  @media (max-width: 1024px) {
    .requisites__item {
      font-size: 4.6875vmin;
      line-height: 8.125vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-bottom: 3.125vmin;
      margin-bottom: 3.125vmin;
      border-bottom: 1px solid #F1F3FA; } }

.requisites__name {
  color: #5A6C7D;
  background-color: #fff;
  padding-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .requisites__name {
      padding-right: 10px; } }
  @media (max-width: 1024px) {
    .requisites__name {
      padding-right: 0;
      font-size: 3.75vmin; } }

.requisites__value {
  color: #232935;
  -ms-flex-preferred-size: calc(50% - 0.69444vw);
      flex-basis: calc(50% - 0.69444vw); }
  @media (min-width: 1800px) {
    .requisites__value {
      -ms-flex-preferred-size: calc(50% - 10px);
          flex-basis: calc(50% - 10px); } }
  @media (max-width: 1024px) {
    .requisites__value {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%; } }

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

.done-w {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  right: 0;
  z-index: 10000;
  display: none; }

.done-window {
  position: fixed;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  color: #010101;
  text-align: center;
  padding: 3.125vw;
  border-radius: 1.04167vw;
  width: 47.22222vw;
  min-height: 25.34722vw; }
  .done-window__title {
    font-size: 2.08333vw;
    font-weight: 600;
    line-height: 3.47222vw; }
    @media (min-width: 1800px) {
      .done-window__title {
        font-size: 30px;
        line-height: 50px; } }
    @media (max-width: 1024px) {
      .done-window__title {
        font-size: 6.25vmin;
        line-height: 1.2; } }
  .done-window__subtitle {
    font-size: 1.38889vw;
    line-height: 2.08333vw; }
    @media (min-width: 1800px) {
      .done-window__subtitle {
        font-size: 20px;
        line-height: 30px; } }
    @media (max-width: 1024px) {
      .done-window__subtitle {
        font-size: 5vmin;
        line-height: 1.2; } }
  @media (min-width: 1800px) {
    .done-window {
      padding: 45px;
      border-radius: 15px;
      width: 680px;
      min-height: 365px; } }
  @media (max-width: 1024px) {
    .done-window {
      padding: 7.8125vmin;
      border-radius: 3.125vmin;
      min-width: 100%;
      min-height: 62.5vmin; } }

.mfp-close {
  width: 1.04167vw !important;
  height: 1.04167vw !important;
  font-size: 0;
  background: url(../images/sprites/svg/close.svg) no-repeat center center !important;
  background-size: 1.04167vw;
  border: 1px solid #000;
  top: 2.08333vw !important;
  right: 2.08333vw !important; }
  .mfp-close::active {
    top: 2.08333vw !important;
    right: 2.08333vw !important; }
  @media (min-width: 1800px) {
    .mfp-close {
      width: 15px !important;
      height: 15px !important;
      top: 30px !important;
      right: 30px !important;
      background-size: 15px; }
      .mfp-close::active {
        top: 30px !important;
        right: 30px !important; } }
  @media (max-width: 1024px) {
    .mfp-close {
      width: 4.6875vmin !important;
      height: 4.6875vmin !important;
      background-size: 4.6875vmin;
      top: 9.375vmin !important;
      right: 9.375vmin !important; }
      .mfp-close::active {
        top: 9.375vmin !important;
        right: 9.375vmin !important; } }

.crumbs {
  padding: 2.63889vw 0; }
  .crumbs ol {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    font-size: 0.90278vw;
    color: #5A6C7D; }
    .crumbs ol li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-right: 0.69444vw;
      line-height: 1; }
      .crumbs ol li:after {
        content: "";
        width: 0.41667vw;
        height: 0.55556vw;
        background: url(../images/sprites/svg/arrow-crumbs.svg);
        background-size: 0.41667vw;
        margin-left: 0.55556vw;
        position: relative;
        top: 1px; }
        @media (min-width: 1800px) {
          .crumbs ol li:after {
            width: 6px;
            height: 8px;
            background-size: 6px;
            margin-left: 8px; } }
        @media (max-width: 1024px) {
          .crumbs ol li:after {
            width: 1.875vmin;
            height: 2.5vmin;
            background-size: 1.875vmin;
            margin-left: 2.5vmin; } }
      .crumbs ol li a:hover {
        color: #FFC000; }
      .crumbs ol li:last-child:after {
        display: none; }
      @media (min-width: 1800px) {
        .crumbs ol li {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .crumbs ol li {
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .crumbs ol {
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .crumbs ol {
        font-size: 4.0625vmin; } }
  @media (min-width: 1800px) {
    .crumbs {
      padding: 35px 0; } }
  @media (max-width: 1024px) {
    .crumbs {
      padding: 6.25vmin 0; } }

.product-slider {
  border-radius: 1.38889vw;
  overflow: hidden;
  position: relative; }
  .product-slider img {
    width: 100%;
    display: block;
    border-radius: 1.38889vw; }
    @media (min-width: 1800px) {
      .product-slider img {
        border-radius: 20px; } }
    @media (max-width: 1024px) {
      .product-slider img {
        border-radius: 6.25vmin; } }
  @media (min-width: 1800px) {
    .product-slider {
      border-radius: 20px; } }
  @media (max-width: 1024px) {
    .product-slider {
      border-radius: 6.25vmin; } }

.product-slider-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 7.29167vw; }
  .product-slider-thumb .slick-current .product-slider-thumb__item {
    border: 2px solid #FFC000; }
  .product-slider-thumb__item {
    background: #FFFFFF;
    border: 1px solid #F1F3FA;
    border-radius: 1.38889vw;
    margin-bottom: 0.69444vw;
    position: relative;
    overflow: hidden;
    cursor: pointer; }
    .product-slider-thumb__item img {
      width: 100%;
      display: block; }
    @media (min-width: 1800px) {
      .product-slider-thumb__item {
        border-radius: 20px;
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .product-slider-thumb__item {
        border-radius: 6.25vmin;
        margin-bottom: 3.125vmin; } }
  @media (min-width: 1800px) {
    .product-slider-thumb {
      width: 105px; } }
  @media (max-width: 1024px) {
    .product-slider-thumb {
      width: 100%;
      position: relative;
      left: auto;
      top: auto;
      display: none; } }

.product-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5.97222vw; }
  @media (min-width: 1800px) {
    .product-page__wrapper {
      margin-bottom: 86px; } }
  @media (max-width: 1024px) {
    .product-page__wrapper {
      margin-bottom: 15.625vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.product-page__gallery-container {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  position: relative;
  padding-left: 7.98611vw;
  padding-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .product-page__gallery-container {
      padding-left: 115px;
      padding-right: 10px; } }
  @media (max-width: 1024px) {
    .product-page__gallery-container {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 6.25vmin; } }

.product-page__description {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  padding-left: 2.77778vw; }
  @media (min-width: 1800px) {
    .product-page__description {
      padding-left: 40px; } }
  @media (max-width: 1024px) {
    .product-page__description {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      padding-left: 0; } }

.product-page__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.29167vw; }
  .product-page__labels.for-desktop {
    margin-bottom: 0; }
    @media (min-width: 1800px) {
      .product-page__labels.for-desktop {
        margin-bottom: 0; } }
    @media (max-width: 1024px) {
      .product-page__labels.for-desktop {
        margin-bottom: 0; } }
    .product-page__labels.for-desktop .label {
      margin-bottom: 2.29167vw; }
      @media (min-width: 1800px) {
        .product-page__labels.for-desktop .label {
          margin-bottom: 33px; } }
      @media (max-width: 1024px) {
        .product-page__labels.for-desktop .label {
          margin-bottom: 7.5vmin; } }
  .product-page__labels .label {
    background-color: #fff;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .product-page__labels .label {
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .product-page__labels .label {
        margin-right: 3.125vmin; } }
  @media (min-width: 1800px) {
    .product-page__labels {
      margin-bottom: 33px; } }
  @media (max-width: 1024px) {
    .product-page__labels {
      margin-bottom: 7.5vmin; } }

.product-page__title {
  margin-top: 0;
  font-size: 1.66667vw;
  font-weight: 500;
  margin-bottom: 2.5vw; }
  @media (min-width: 1800px) {
    .product-page__title {
      font-size: 24px;
      margin-bottom: 36px; } }
  @media (max-width: 1024px) {
    .product-page__title {
      font-size: 7.5vmin;
      margin-bottom: 6.25vmin; } }

.product-page__nav {
  margin-top: 2.56944vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .product-page__nav .btn {
    margin-right: 1.875vw; }
    .product-page__nav .btn svg {
      width: 1.25vw;
      height: 1.25vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .product-page__nav .btn svg {
          width: 18px;
          height: 18px;
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .product-page__nav .btn svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.125vmin; } }
    @media (min-width: 1800px) {
      .product-page__nav .btn {
        margin-right: 27px; } }
    @media (max-width: 1024px) {
      .product-page__nav .btn {
        margin-right: 0;
        width: 100%;
        margin-bottom: 3.125vmin;
        height: 18.75vmin; } }
  .product-page__nav .inputcount {
    margin-right: 1.80556vw; }
    @media (min-width: 1800px) {
      .product-page__nav .inputcount {
        margin-right: 26px; } }
    @media (max-width: 1024px) {
      .product-page__nav .inputcount {
        margin-right: 0;
        margin-bottom: 3.125vmin; } }
  @media (min-width: 1800px) {
    .product-page__nav {
      margin-top: 37px; } }
  @media (max-width: 1024px) {
    .product-page__nav {
      margin-top: 11.5625vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.product-page .btn-slider {
  background: #F9FAFC; }
  .product-page .btn-slider img {
    width: 1.25vw; }
    @media (min-width: 1800px) {
      .product-page .btn-slider img {
        width: 20px; } }
    @media (max-width: 1024px) {
      .product-page .btn-slider img {
        width: 6.875vmin; } }
  .product-page .btn-slider:hover {
    background-color: #FFC000;
    color: #000403; }

.product-page .btn-slider.prev {
  left: 2.08333vw; }
  @media (min-width: 1800px) {
    .product-page .btn-slider.prev {
      left: 30px; } }
  @media (max-width: 1024px) {
    .product-page .btn-slider.prev {
      left: 3.125vmin; } }

.product-page .btn-slider.next {
  right: 2.08333vw; }
  @media (min-width: 1800px) {
    .product-page .btn-slider.next {
      right: 30px; } }
  @media (max-width: 1024px) {
    .product-page .btn-slider.next {
      right: 3.125vmin; } }

.product-page .slick-dots-custom {
  right: 2.77778vw; }
  .product-page .slick-dots-custom .slick-dots {
    background: #F9FAFC; }
    .product-page .slick-dots-custom .slick-dots li {
      background-color: #E2E2EA;
      border: none; }
      .product-page .slick-dots-custom .slick-dots li.slick-active {
        background-color: #5A6C7D; }
  @media (min-width: 1800px) {
    .product-page .slick-dots-custom {
      right: 40px; } }
  @media (max-width: 1024px) {
    .product-page .slick-dots-custom {
      display: none; } }

.inputcount {
  width: 11.45833vw;
  height: 3.81944vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #F1F3FA;
  -webkit-box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
          box-shadow: 0 0.69444vw 2.77778vw rgba(148, 164, 180, 0.1);
  border-radius: 0.69444vw;
  padding: 0.13889vw; }
  .inputcount__btn {
    width: 3.40278vw;
    height: 3.40278vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-color: #F1F3FA;
    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;
    border-radius: 0.55556vw;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .inputcount__btn svg {
      width: 0.97222vw;
      height: 0.97222vw; }
      @media (min-width: 1800px) {
        .inputcount__btn svg {
          width: 14px;
          height: 14px; } }
      @media (max-width: 1024px) {
        .inputcount__btn svg {
          width: 4.375vmin;
          height: 4.375vmin; } }
    .inputcount__btn:hover {
      background-color: #FFC000;
      color: #000403; }
    @media (min-width: 1800px) {
      .inputcount__btn {
        width: 49px;
        height: 49px;
        border-radius: 8px; } }
    @media (max-width: 1024px) {
      .inputcount__btn {
        width: 15.3125vmin;
        height: 15.3125vmin;
        border-radius: 2.5vmin; } }
  .inputcount__input {
    width: 3.47222vw;
    text-align: center;
    color: #5A6C7D;
    font-size: 1.18056vw;
    font-weight: 600;
    border: none; }
    @media (min-width: 1800px) {
      .inputcount__input {
        width: 50px;
        font-size: 17px; } }
    @media (max-width: 1024px) {
      .inputcount__input {
        width: 15.625vmin;
        font-size: 5.3125vmin; } }
  @media (min-width: 1800px) {
    .inputcount {
      width: 165px;
      height: 55px;
      -webkit-box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
              box-shadow: 0 10px 40px rgba(148, 164, 180, 0.1);
      border-radius: 10px;
      padding: 2px; } }
  @media (max-width: 1024px) {
    .inputcount {
      width: 51.5625vmin;
      height: 17.1875vmin;
      -webkit-box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
              box-shadow: 0 3.125vmin 12.5vmin rgba(148, 164, 180, 0.1);
      border-radius: 3.125vmin;
      padding: 0.625vmin; } }

.table__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.04167vw;
  line-height: 1.80556vw;
  z-index: 1;
  margin-bottom: 0.55556vw; }
  .table__item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0.83333vw;
    height: 1px;
    background-color: #E5EAEF;
    z-index: -1; }
    @media (min-width: 1800px) {
      .table__item:after {
        top: 12px; } }
    @media (max-width: 1024px) {
      .table__item:after {
        display: none; } }
  @media (min-width: 1800px) {
    .table__item {
      font-size: 15px;
      line-height: 26px; } }
  @media (max-width: 1024px) {
    .table__item {
      font-size: 4.6875vmin;
      line-height: 8.125vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border-bottom: 1px solid #E5EAEF;
      padding-bottom: 1.5625vmin;
      margin-bottom: 1.5625vmin; } }

.table__name {
  color: #5A6C7D;
  background-color: #F9FAFC;
  padding-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .table__name {
      padding-right: 10px; } }
  @media (max-width: 1024px) {
    .table__name {
      padding-right: 0;
      font-size: 3.75vmin; } }

.table__value {
  font-weight: 500;
  background-color: #F9FAFC;
  padding-left: 0.69444vw; }
  @media (min-width: 1800px) {
    .table__value {
      padding-left: 10px; } }
  @media (max-width: 1024px) {
    .table__value {
      padding-left: 0; } }

.tabs-block {
  padding-bottom: 7.22222vw;
  margin-bottom: 5vw;
  border-bottom: 1px solid #D6DAE9; }
  .tabs-block__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #D6DAE9; }
    @media (max-width: 1024px) {
      .tabs-block__tabs {
        display: none; } }
  .tabs-block__mobiletab {
    display: none; }
    @media (max-width: 1024px) {
      .tabs-block__mobiletab {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 3.75vmin;
        height: 18.75vmin;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 1.5625vmin 4.6875vmin;
        font-size: 4.375vmin;
        background-color: #fff;
        color: #000403;
        font-weight: 600;
        margin-bottom: 3.125vmin; }
        .tabs-block__mobiletab svg {
          width: 5.625vmin;
          height: 5.625vmin; } }
  @media (min-width: 1025px) {
    .tabs-block__wrap {
      display: block !important; } }
  @media (max-width: 1024px) {
    .tabs-block__wrap {
      display: none;
      padding-left: 1.5625vmin;
      padding-right: 1.5625vmin; } }
  .tabs-block__tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 1.52778vw 2.01389vw 1.52778vw;
    font-weight: 500;
    font-size: 1.38889vw;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer; }
    .tabs-block__tab.active {
      color: #FFC000;
      position: relative; }
      .tabs-block__tab.active:after {
        content: "";
        position: absolute;
        bottom: -0.20833vw;
        left: 0;
        right: 0;
        height: 0.34722vw;
        background-color: #FFC000;
        border-radius: 0.83333vw; }
        @media (min-width: 1800px) {
          .tabs-block__tab.active:after {
            bottom: -3px;
            height: 5px; } }
        @media (max-width: 1024px) {
          .tabs-block__tab.active:after {
            bottom: -0.9375vmin;
            height: 1.5625vmin; } }
    .tabs-block__tab:hover {
      color: #FFC000; }
    @media (min-width: 1800px) {
      .tabs-block__tab {
        padding: 0 21px 19px 21px;
        font-size: 20px; } }
    @media (max-width: 1024px) {
      .tabs-block__tab {
        padding: 0 6.5625vmin 5.9375vmin 6.5625vmin;
        font-size: 6.25vmin; } }
  .tabs-block__item {
    padding-top: 3.05556vw;
    font-size: 1.04167vw;
    line-height: 1.80556vw;
    color: #5A6C7D; }
    .tabs-block__item p {
      margin-bottom: 1.18056vw; }
      @media (min-width: 1800px) {
        .tabs-block__item p {
          margin-bottom: 17px; } }
      @media (max-width: 1024px) {
        .tabs-block__item p {
          margin-bottom: 5.3125vmin; } }
    .tabs-block__item strong {
      font-size: 1.18056vw;
      font-weight: 600;
      color: #000403; }
      @media (min-width: 1800px) {
        .tabs-block__item strong {
          font-size: 17px; } }
      @media (max-width: 1024px) {
        .tabs-block__item strong {
          font-size: 5.3125vmin; } }
    @media (min-width: 1800px) {
      .tabs-block__item {
        padding-top: 43px;
        font-size: 15px;
        line-height: 26px; } }
    @media (max-width: 1024px) {
      .tabs-block__item {
        padding-top: 0;
        font-size: 4.6875vmin;
        line-height: 8.125vmin;
        display: block !important; } }
  @media (min-width: 1800px) {
    .tabs-block {
      padding-bottom: 104px;
      margin-bottom: 72px; } }
  @media (max-width: 1024px) {
    .tabs-block {
      padding-bottom: 15.625vmin;
      margin-bottom: 15.625vmin; } }

.productslist {
  margin-bottom: 1.73611vw; }
  .productslist .title-h2 {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .productslist .title-h2 {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .productslist .title-h2 {
        margin-bottom: 7.5vmin; } }
  .productslist__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw;
    padding-bottom: 5.55556vw;
    border-bottom: 1px solid #D6DAE9; }
    @media (min-width: 1800px) {
      .productslist__wrapper {
        margin-left: -10px;
        margin-right: -10px;
        padding-bottom: 80px; } }
    @media (max-width: 1024px) {
      .productslist__wrapper {
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 15.625vmin;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .productslist .product {
    -ms-flex-preferred-size: calc(25% - 1.38889vw);
        flex-basis: calc(25% - 1.38889vw); }
    @media (max-width: 1024px) {
      .productslist .product {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .productslist {
      margin-bottom: 25px; } }
  @media (max-width: 1024px) {
    .productslist {
      margin-bottom: 14.0625vmin; } }

.popup-form {
  position: relative;
  margin: 0 auto;
  background-color: #FEFEFE;
  max-width: 47.22222vw;
  padding: 3.125vw 3.47222vw;
  border-radius: 1.04167vw; }
  .popup-form#order .form__title {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .popup-form#order .form__title {
        margin-bottom: 20px; } }
  .popup-form#callback .form__title {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .popup-form#callback .form__title {
        margin-bottom: 20px; } }
  .popup-form#ask .form__title {
    margin-bottom: 0; }
  .popup-form#ask .form__subtitle {
    font-size: 1.52778vw;
    line-height: 2.5vw;
    font-weight: 300; }
    @media (min-width: 1800px) {
      .popup-form#ask .form__subtitle {
        font-size: 22px;
        line-height: 36px; } }
    @media (max-width: 1024px) {
      .popup-form#ask .form__subtitle {
        font-size: 5.625vmin;
        line-height: 7.5vmin;
        text-align: center; } }
  @media (max-width: 1024px) {
    .popup-form .form__title {
      text-align: center; } }
  @media (min-width: 1800px) {
    .popup-form {
      max-width: 680px;
      padding: 45px 50px;
      border-radius: 15px; } }
  @media (max-width: 1024px) {
    .popup-form {
      max-width: 100%;
      padding: 7.8125vmin 6.25vmin;
      border-radius: 4.6875vmin; } }

.review-modal {
  position: relative;
  margin: 0 auto;
  background-color: #FEFEFE;
  max-width: 47.22222vw;
  padding: 3.125vw 3.47222vw;
  border-radius: 1.04167vw;
  font-size: 1.11111vw; }
  .review-modal p {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1800px) {
      .review-modal p {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .review-modal p {
        margin-bottom: 6.25vmin; } }
  .review-modal b, .review-modal strong {
    font-weight: 700; }
  @media (min-width: 1800px) {
    .review-modal {
      max-width: 680px;
      padding: 45px 50px;
      border-radius: 15px;
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .review-modal {
      max-width: 100%;
      padding: 7.8125vmin 6.25vmin;
      border-radius: 4.6875vmin;
      font-size: 5vmin; } }

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