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

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

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

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

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

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Swiper 9.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 10, 2023
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff;
  /*
    --swiper-preloader-color: var(--swiper-theme-color);
    --swiper-wrapper-transition-timing-function: initial;
    */ }

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-horizontal {
  touch-action: pan-y; }

.swiper-vertical {
  touch-action: pan-x; }

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-3d {
  perspective: 1200px; }
  .swiper-3d .swiper-slide,
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom,
  .swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d; }
  .swiper-3d .swiper-slide-shadow,
  .swiper-3d .swiper-slide-shadow-left,
  .swiper-3d .swiper-slide-shadow-right,
  .swiper-3d .swiper-slide-shadow-top,
  .swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; }
  .swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15); }
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always; }

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

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

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }
  .swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.nativejs-select {
  width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  border: 1px solid #1d1d1d;
  border-radius: 3px;
  cursor: pointer; }

.nativejs-select__placeholder,
.nativejs-select__option {
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left; }

.nativejs-select__placeholder {
  width: 100%;
  padding: 12px 15px;
  color: #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0c0c0c; }

.nativejs-select__placeholder:after {
  content: '';
  display: block;
  width: 0;
  border-top: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%); }

.nativejs-select__placeholder img {
  margin-right: 5px; }

.nativejs-select__placeholder_fixed {
  padding-right: 5px;
  color: #7ca95c; }

.nativejs-select__dropdown {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  transform: translateY(100%);
  left: -1px;
  right: 0;
  bottom: -1px;
  z-index: 5;
  display: none;
  border: 1px solid #1d1d1d; }

.nativejs-select__option {
  width: 100%;
  padding: 10px 15px;
  font-style: italic;
  color: #ccc;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent; }

.nativejs-select__option img {
  margin-right: 10px; }

.nativejs-select__option:hover {
  border-bottom: 1px solid #7ca95c; }

.nativejs-select_active {
  border-radius: 3px 3px 0 0; }

.nativejs-select_active .nativejs-select__placeholder:after {
  border-top: none;
  border-bottom: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent; }

.nativejs-select_active .nativejs-select__dropdown {
  display: block;
  border-radius: 0 0 3px 3px; }

.nativejs-select__search {
  padding: 5px; }

.nativejs-select__search-inp {
  box-sizing: border-box;
  width: 100%;
  height: 30px; }

.nativejs-select__placeholder-value {
  display: flex;
  align-items: center; }

/*!
 * jQuery mmenu v7.0.6
 * @requires jQuery 1.7.0 or later
 *
 * mmenu.frebsite.nl
 *	
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none; }

.mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-panel, .mm-panels {
  background: inherit;
  border-color: inherit;
  box-sizing: border-box;
  margin: 0; }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px;
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0);
  transition: transform .4s ease;
  transform-origin: top left; }

.mm-panel:not(.mm-hidden) {
  display: block; }

.mm-panel:after, .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-panel_has-navbar {
  padding-top: 40px; }

.mm-panel_opened {
  z-index: 1;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel_opened-parent {
  transform: translate(-30%, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel_highest {
  z-index: 2; }

.mm-panel_noanimation {
  transition: none !important; }

.mm-panel_noanimation.mm-panel_opened-parent {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-listitem_vertical > .mm-panel {
  transform: none !important;
  display: none;
  padding: 10px 0 10px 10px; }

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none; }

.mm-listitem_opened > .mm-panel {
  display: block; }

.mm-listitem_vertical > .mm-btn_next {
  box-sizing: border-box;
  height: 40px;
  bottom: auto; }

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent; }

.mm-listitem_opened > .mm-btn_next:after {
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1; }

.mm-btn_fullwidth {
  width: 100%; }

.mm-btn_clear:after, .mm-btn_clear:before, .mm-btn_close:after, .mm-btn_close:before {
  content: '';
  border: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg); }

.mm-btn_clear:before, .mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-btn_clear:after, .mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-btn_next:after, .mm-btn_prev:before {
  content: '';
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0; }

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  display: none;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity .4s ease; }

.mm-navbar > * {
  box-sizing: border-box;
  display: block;
  padding: 10px 0; }

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-navbar__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-navbar__btn:first-child {
  left: 0; }

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel_has-navbar .mm-navbar {
  display: block; }

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listitem, .mm-listitem .mm-btn_next, .mm-listitem .mm-btn_next:before, .mm-listitem:after, .mm-listview {
  border-color: inherit; }

.mm-listview {
  font: inherit;
  line-height: 20px; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listitem {
  position: relative; }

.mm-listitem:after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; }

.mm-listitem:after {
  left: 20px; }

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none; }

.mm-listitem > a, .mm-listitem > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listitem .mm-btn_next {
  background: rgba(3, 2, 1, 0);
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listitem .mm-btn_next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 50px; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 50px; }

.mm-listitem .mm-btn_fullwidth:before {
  border-left: none; }

.mm-listitem .mm-btn_fullwidth + a, .mm-listitem .mm-btn_fullwidth + span {
  padding-right: 50px; }

.mm-listitem_divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 75%;
  text-transform: uppercase;
  padding: 5px 10px 5px 20px; }

.mm-listitem_divider:after {
  content: ' ';
  display: none;
  position: static;
  display: inline-block; }

.mm-listitem_spacer {
  padding-top: 40px; }

.mm-listitem_spacer > .mm-btn_next {
  top: 40px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75); }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
  tap-highlight-color: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu .mm-listitem_selected > span {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_opened > .mm-btn_next, .mm-menu .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05); }

.mm-menu .mm-listitem_divider {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  transition: transform .4s ease;
  z-index: 1; }

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative; }

.mm-wrapper_background .mm-page {
  background: inherit; }

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0; }

.mm-menu_offcanvas.mm-menu_opened {
  display: block; }

.mm-menu_offcanvas.mm-menu_opened.mm-no-csstransforms {
  z-index: 10; }

.mm-menu_offcanvas {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate(440px, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-page__blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-wrapper_blocking {
  overflow: hidden; }

.mm-wrapper_blocking body {
  overflow: hidden; }

.mm-wrapper_blocking .mm-page__blocker {
  display: block; }

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important; }

.mm-menu_autoheight {
  transition: none .4s ease;
  transition-property: transform,height; }

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative; }

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%; }

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important; }

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important; }

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

[class*=mm-menu_columns-] {
  transition-property: width; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  transition-property: width,transform; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0; }

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-0 {
  width: 80%;
  min-width: 140px;
  max-width: 0; }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    transform: translate(0, 0);
    transform: translate3d(0, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(0, 0);
    transform: translate3d(0, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(200%, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-1 {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    transform: translate(440px, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-440px, 0);
    transform: translate3d(-440px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  transform: translate(200%, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%; }

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(300%, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-2 {
  width: 80%;
  min-width: 140px;
  max-width: 880px; }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    transform: translate(880px, 0);
    transform: translate3d(880px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-880px, 0);
    transform: translate3d(-880px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  transform: translate(300%, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%; }

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(400%, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-3 {
  width: 80%;
  min-width: 140px;
  max-width: 1320px; }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    transform: translate(1320px, 0);
    transform: translate3d(1320px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-1320px, 0);
    transform: translate3d(-1320px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  transform: translate(400%, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%; }

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  transform: translate(500%, 0);
  transform: translate3d(500%, 0, 0); }

.mm-menu_columns-4 {
  width: 80%;
  min-width: 140px;
  max-width: 1760px; }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    transform: translate(1760px, 0);
    transform: translate3d(1760px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-1760px, 0);
    transform: translate3d(-1760px, 0, 0); } }

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%; }

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  transition-property: width,min-width,max-width,transform; }

.mm-counter {
  font-style: normal;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%; }

.mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 90px; }

.mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-counter + .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 90px; }

.mm-counter + .mm-btn_fullwidth + a, .mm-counter + .mm-btn_fullwidth + span {
  padding-right: 90px; }

.mm-listitem_vertical > .mm-counter {
  top: 12px;
  margin-top: 0; }

.mm-listitem_vertical.mm-listitem_spacer > .mm-counter {
  margin-top: 40px; }

.mm-listitem_nosubitems > .mm-counter {
  display: none; }

.mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-listitem_divider {
  opacity: 1;
  transition: opacity .4s ease; }

.mm-menu_dividers-light .mm-listitem_divider {
  background: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, 0.3);
  padding-top: 15px;
  padding-bottom: 5px; }

.mm-border-none .mm-listitem_divider {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-listview_fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-listview_fixeddivider:after {
  content: none !important;
  display: none !important; }

.mm-panel_dividers .mm-listview_fixeddivider {
  display: block; }

.mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
  transition-duration: 0s; }

.mm-menu_dropdown {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%; }

.mm-wrapper_dropdown .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-wrapper_dropdown .mm-page__blocker {
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2; }

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none; }

[class*=mm-menu_tip-]:before {
  content: '';
  background: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 0;
  transform: rotate(45deg); }

.mm-menu_tip-left:before {
  left: 22px; }

.mm-menu_tip-right:before {
  right: 22px; }

.mm-menu_tip-top:before {
  top: -8px; }

.mm-menu_tip-bottom:before {
  bottom: -8px; }

.mm-iconbar {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-right-width: 1px;
  text-align: center;
  line-height: 20px;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2; }

.mm-iconbar__bottom, .mm-iconbar__top {
  width: inherit;
  position: absolute;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  box-sizing: border-box;
  display: block;
  padding: 10px 0; }

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none; }

.mm-iconbar__top {
  top: 0; }

.mm-iconbar__bottom {
  bottom: 0; }

.mm-menu_iconbar-40 .mm-navbars_bottom, .mm-menu_iconbar-40 .mm-navbars_top, .mm-menu_iconbar-40 .mm-panels {
  left: 40px; }

.mm-menu_iconbar-40 .mm-iconbar {
  width: 40px; }

.mm-menu_iconbar-60 .mm-navbars_bottom, .mm-menu_iconbar-60 .mm-navbars_top, .mm-menu_iconbar-60 .mm-panels {
  left: 60px; }

.mm-menu_iconbar-60 .mm-iconbar {
  width: 60px; }

.mm-menu_iconbar-80 .mm-navbars_bottom, .mm-menu_iconbar-80 .mm-navbars_top, .mm-menu_iconbar-80 .mm-panels {
  left: 80px; }

.mm-menu_iconbar-80 .mm-iconbar {
  width: 80px; }

.mm-iconbar, .mm-iconbar a {
  color: rgba(0, 0, 0, 0.3); }

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4); }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel {
  transition-property: transform,left; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first, [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened, [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0), [class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened[class*=mm-panel_iconpanel-]:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: 1px solid;
  border-color: inherit; }

[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_iconpanel-].mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, [class*=mm-menu_iconpanel-].mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 40px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 120px; }

.mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 40px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 60px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 120px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 180px; }

.mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 60px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 160px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 240px; }

.mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 80px; }

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  transition: opacity .4s ease; }

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px; }

.mm-menu_keyboardfocus a:focus {
  outline: 0; }

.mm-menu_keyboardfocus a:focus {
  background: rgba(255, 255, 255, 0.4); }

.mm-navbars_bottom, .mm-navbars_top {
  background: inherit;
  border-color: inherit;
  border-width: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1; }

.mm-navbars_bottom > .mm-navbar, .mm-navbars_top > .mm-navbar {
  border-width: 0;
  border-color: inherit;
  display: flex;
  position: relative;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-navbars_bottom > .mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top > .mm-navbar:not(.mm-navbar_has-btns) {
  padding: 0; }

.mm-navbars_bottom > .mm-navbar > :not(img):not(.mm-btn), .mm-navbars_top > .mm-navbar > :not(img):not(.mm-btn) {
  flex: 1; }

.mm-navbars_top {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  bottom: auto; }

.mm-menu_navbar_top-1 .mm-panels {
  top: 40px; }

.mm-menu_navbar_top-2 .mm-panels {
  top: 80px; }

.mm-menu_navbar_top-3 .mm-panels {
  top: 120px; }

.mm-menu_navbar_top-4 .mm-panels {
  top: 160px; }

.mm-navbars_bottom {
  border-top-style: solid;
  border-top-width: 1px;
  bottom: 0;
  top: auto; }

.mm-menu_navbar_bottom-1 .mm-panels {
  bottom: 40px; }

.mm-menu_navbar_bottom-2 .mm-panels {
  bottom: 80px; }

.mm-menu_navbar_bottom-3 .mm-panels {
  bottom: 120px; }

.mm-menu_navbar_bottom-4 .mm-panels {
  bottom: 160px; }

.mm-navbar_size-2 {
  height: 80px; }

.mm-navbar_size-3 {
  height: 120px; }

.mm-navbar_size-4 {
  height: 160px; }

.mm-navbar__breadcrumbs {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 17px; }

.mm-navbar__breadcrumbs > * {
  display: inline-block;
  padding: 10px 3px; }

.mm-navbar__breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar_has-btns .mm-navbar__breadcrumbs {
  margin-left: -40px; }

.mm-navbar_has-btns .mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbars_top .mm-navbar_tabs, .mm-navbars_top .mm-navbar_tabs ~ .mm-navbar {
  background: inherit !important; }

.mm-navbars_bottom .mm-navbar_tabs {
  background: inherit !important; }

.mm-navbar__tab_selected {
  background: inherit !important;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

.mm-navbar__tab_selected:first-child {
  border-left: none; }

.mm-navbar__tab_selected:last-child {
  border-right: none; }

.mm-navbars_top .mm-navbar_tabs:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: inherit; }

.mm-navbars_top .mm-navbar__tab_selected {
  border-bottom: none;
  margin-bottom: -1px; }

.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
  border-top: none; }

.mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: inherit; }

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-top: none;
  margin-top: -1px; }

.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
  border-bottom: none; }

.mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu_rtl {
  direction: rtl; }

.mm-menu_rtl.mm-menu_offcanvas {
  right: auto; }

.mm-menu_rtl .mm-panel:not(.mm-panel_opened) {
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_rtl .mm-panel.mm-panel_opened-parent {
  transform: translate(30%, 0);
  transform: translate3d(30%, 0, 0); }

.mm-menu_rtl .mm-navbar .mm-btn:first-child {
  left: auto;
  right: 0; }

.mm-menu_rtl .mm-navbar .mm-btn:last-child {
  right: auto;
  left: 0; }

.mm-menu_rtl .mm-navbar .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-menu_rtl .mm-navbar .mm-btn_prev:before {
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-menu_rtl .mm-listitem:after {
  left: 0;
  right: 20px; }

.mm-menu_rtl .mm-listitem > a:not(.mm-btn_next), .mm-menu_rtl .mm-listitem > span:not(.mm-btn_next) {
  padding-left: 10px;
  padding-right: 20px !important;
  margin-right: 0 !important; }

.mm-menu_rtl .mm-listitem .mm-btn_next {
  right: auto;
  left: 0; }

.mm-menu_rtl .mm-listitem .mm-btn_next:before {
  left: auto;
  right: 0; }

.mm-menu_rtl .mm-listitem .mm-btn_next:after {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-menu_rtl .mm-listitem .mm-btn_next + a, .mm-menu_rtl .mm-listitem .mm-btn_next + span {
  margin-left: 50px; }

.mm-menu_rtl .mm-listitem .mm-btn_fullwidth + a, .mm-menu_rtl .mm-listitem .mm-btn_fullwidth + span {
  padding-left: 50px; }

.mm-menu_rtl .mm-counter {
  left: 45px;
  right: auto; }

.mm-menu_rtl .mm-counter + .mm-btn_next + a, .mm-menu_rtl .mm-counter + .mm-btn_next + span {
  margin-left: 90px; }

.mm-menu_rtl .mm-listview .mm-counter + .mm-btn_fullwidth + a, .mm-menu_rtl .mm-listview .mm-counter + .mm-btn_fullwidth + span {
  padding-left: 90px; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel {
  transition-property: transform,right; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_iconpanel-first.mm-panel_opened ~ .mm-listview_fixeddivider {
  left: 0;
  right: 0; }

.mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened, .mm-menu_rtl[class*=mm-menu_iconpanel-] .mm-panels > .mm-panel_opened-parent {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_rtl [class*=mm-panel_iconpanel-], .mm-menu_rtl [class*=mm-panel_iconpanel-] ~ .mm-listview_fixeddivider {
  left: 0; }

.mm-menu_rtl [class*=mm-panel_iconpanel-].mm-panel_opened-parent {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 40px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 120px; }

.mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-40 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 40px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 60px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 120px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 180px; }

.mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-60 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 60px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-0.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 0; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 160px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 240px; }

.mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel, .mm-menu_rtl .mm-menu_iconpanel-80 .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  right: 80px; }

.mm-menu_rtl html[class*=mm-sidebar_expanded-]:not(.mm-sidebar_closed) .mm-menu_rtl ~ .mm-slideout {
  transform: translate(0, 0) !important;
  right: 0; }

.mm-menu_rtl label.mm-check, .mm-menu_rtl label.mm-toggle {
  left: 20px;
  right: auto !important; }

.mm-menu_rtl label.mm-toggle + a, .mm-menu_rtl label.mm-toggle + span {
  padding-left: 80px; }

.mm-menu_rtl label.mm-check + a, .mm-menu_rtl label.mm-check + span {
  padding-left: 60px; }

.mm-menu_rtl .mm-btn_next + label.mm-check, .mm-menu_rtl .mm-btn_next + label.mm-toggle {
  left: 60px; }

.mm-menu_rtl .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-btn_next + label.mm-check + span, .mm-menu_rtl .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-btn_next + label.mm-toggle + span {
  margin-left: 50px; }

.mm-menu_rtl .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-btn_next + label.mm-toggle + span {
  padding-left: 70px; }

.mm-menu_rtl .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-btn_next + label.mm-check + span {
  padding-left: 50px; }

.mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle {
  left: 100px; }

.mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check + a, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-check + span, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle + a, .mm-menu_rtl .mm-counter + .mm-btn_next + label.mm-toggle + span {
  margin-left: 90px; }

.mm-searchfield {
  height: 40px;
  padding: 0;
  display: flex; }

.mm-searchfield input {
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 4px;
  font: inherit;
  font-size: inherit;
  line-height: 26px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  margin: 0;
  padding: 0 10px; }

.mm-searchfield input::-ms-clear {
  display: none; }

.mm-searchfield__input {
  padding: 7px 10px 0 10px;
  position: relative; }

.mm-panel__noresultsmsg {
  text-align: center;
  font-size: 150%;
  padding: 40px 0; }

.mm-searchfield__btn {
  right: 0;
  top: 0; }

.mm-searchfield__input {
  flex: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%; }

.mm-searchfield__cancel {
  text-decoration: none;
  line-height: 40px;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  transition: margin .4s ease; }

.mm-searchfield__cancel-active {
  margin-right: 0; }

.mm-panel > .mm-searchfield {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.mm-panel_has-searchfield {
  padding-top: 40px; }

.mm-panel_has-navbar.mm-panel_has-searchfield {
  padding-top: 80px; }

.mm-panel_has-navbar.mm-panel_has-searchfield > .mm-searchfield {
  top: 40px; }

.mm-listitem_nosubitems > .mm-btn_next {
  display: none; }

.mm-listitem_nosubitems > .mm-btn_next + a, .mm-listitem_nosubitems > .mm-btn_next + span {
  padding-right: 10px; }

.mm-searchfield input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.75); }

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 15;
  transition: right .4s ease;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly; }

.mm-sectionindexer a {
  line-height: 1;
  text-decoration: none;
  display: block; }

.mm-sectionindexer ~ .mm-panels {
  transition: right .4s ease; }

.mm-menu_has-sectionindexer .mm-sectionindexer {
  right: 0; }

.mm-menu_has-sectionindexer .mm-panels {
  right: 20px; }

.mm-menu_navbar_top-1 .mm-sectionindexer {
  top: 42px; }

.mm-menu_navbar_top-2 .mm-sectionindexer {
  top: 82px; }

.mm-menu_navbar_top-3 .mm-sectionindexer {
  top: 122px; }

.mm-menu_navbar_top-4 .mm-sectionindexer {
  top: 162px; }

.mm-menu_navbar_bottom-1 .mm-sectionindexer {
  bottom: 42px; }

.mm-menu_navbar_bottom-2 .mm-sectionindexer {
  bottom: 82px; }

.mm-menu_navbar_bottom-3 .mm-sectionindexer {
  bottom: 122px; }

.mm-menu_navbar_bottom-4 .mm-sectionindexer {
  bottom: 162px; }

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth + a, .mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth + span, .mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth), .mm-menu_selected-parent .mm-listitem > a.mm-btn_fullwidth + a, .mm-menu_selected-parent .mm-listitem > a.mm-btn_fullwidth + span, .mm-menu_selected-parent .mm-listitem > a:not(.mm-btn_fullwidth) {
  transition: background .4s ease; }

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(255, 255, 255, 0.4); }

[class*=mm-wrapper_sidebar-collapsed-] body, [class*=mm-wrapper_sidebar-expanded-] body {
  position: relative; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-slideout, [class*=mm-wrapper_sidebar-expanded-] .mm-slideout {
  transition-property: width,transform; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-page, [class*=mm-wrapper_sidebar-expanded-] .mm-page {
  background: inherit;
  box-sizing: border-box;
  min-height: 100vh; }

[class*=mm-wrapper_sidebar-collapsed-] .mm-menu_sidebar-collapsed, [class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  display: block !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important; }

[class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, [class*=mm-wrapper_sidebar-collapsed-]:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0; }

.mm-wrapper_sidebar-collapsed-40 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-40 .mm-slideout {
  width: calc(100% - 40px);
  transform: translate(40px, 0);
  transform: translate3d(40px, 0, 0); }

.mm-wrapper_sidebar-collapsed-60 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-60 .mm-slideout {
  width: calc(100% - 60px);
  transform: translate(60px, 0);
  transform: translate3d(60px, 0, 0); }

.mm-wrapper_sidebar-collapsed-80 .mm-slideout, [class*=mm-wrapper_sidebar-expanded-].mm-menu_sidebar-closed.mm-menu_sidebar-collapsed-80 .mm-slideout {
  width: calc(100% - 80px);
  transform: translate(80px, 0);
  transform: translate3d(80px, 0, 0); }

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded {
  border-right-width: 1px;
  border-right-style: solid;
  min-width: 0 !important;
  max-width: 100000px !important; }

[class*=mm-wrapper_sidebar-expanded-] .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none; }

[class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking, [class*=mm-wrapper_sidebar-expanded-].mm-wrapper_blocking body {
  overflow: visible; }

[class*=mm-wrapper_sidebar-expanded-] .mm-page__blocker {
  display: none !important; }

.mm-wrapper_sidebar-expanded-25:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 75%;
  transform: translate(33.33333%, 0) !important;
  transform: translate3d(33.33333%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-25 .mm-menu_sidebar-expanded {
  width: 25% !important; }

.mm-wrapper_sidebar-expanded-30:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 70%;
  transform: translate(42.85714%, 0) !important;
  transform: translate3d(42.85714%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-30 .mm-menu_sidebar-expanded {
  width: 30% !important; }

.mm-wrapper_sidebar-expanded-35:not(.mm-wrapper_sidebar-closed) .mm-slideout {
  width: 65%;
  transform: translate(53.84615%, 0) !important;
  transform: translate3d(53.84615%, 0, 0) !important; }

.mm-wrapper_sidebar-expanded-35 .mm-menu_sidebar-expanded {
  width: 35% !important; }

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3; }

.mm-menu_opened .mm-menu__blocker {
  display: none; }

input.mm-check, input.mm-toggle {
  position: absolute;
  left: -10000px; }

label.mm-check, label.mm-toggle {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2; }

label.mm-check:before, label.mm-toggle:before {
  content: '';
  display: block; }

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px; }

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px; }

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  transform: rotate(-45deg); }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

.mm-listitem_vertical label.mm-toggle {
  top: 5px;
  bottom: auto;
  margin-top: 0; }

.mm-listitem_vertical label.mm-check {
  top: 5px;
  bottom: auto;
  margin-top: 0; }

label.mm-toggle {
  right: 20px; }

label.mm-toggle + a, label.mm-toggle + span {
  padding-right: 80px; }

label.mm-check {
  right: 20px; }

label.mm-check + a, label.mm-check + span {
  padding-right: 60px; }

.mm-btn_next + label.mm-check, .mm-btn_next + label.mm-toggle {
  right: 60px; }

.mm-btn_next + label.mm-check + a, .mm-btn_next + label.mm-check + span, .mm-btn_next + label.mm-toggle + a, .mm-btn_next + label.mm-toggle + span {
  margin-right: 50px; }

.mm-btn_next + label.mm-toggle + a, .mm-btn_next + label.mm-toggle + span {
  padding-right: 70px; }

.mm-btn_next + label.mm-check + a, .mm-btn_next + label.mm-check + span {
  padding-right: 50px; }

.mm-counter + .mm-btn_next + label.mm-check, .mm-counter + .mm-btn_next + label.mm-toggle {
  right: 100px; }

.mm-counter + .mm-btn_next + label.mm-check + a, .mm-counter + .mm-btn_next + label.mm-check + span, .mm-counter + .mm-btn_next + label.mm-toggle + a, .mm-counter + .mm-btn_next + label.mm-toggle + span {
  margin-right: 90px; }

label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

label.mm-toggle:before {
  background: #f3f3f3; }

input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.75); }

.mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
  content: none; }

.mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
  left: 0 !important; }

.mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
  right: 20px; }

.mm-menu_fx-menu-zoom {
  transition: transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-zoom {
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform-origin: left center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform-origin: right center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-menu-slide {
  transition: transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  transform: translate(-30%, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate(30%, 0);
  transform: translate3d(30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-menu-fade {
  opacity: 0;
  transition: opacity .4s ease; }

.mm-wrapper_opening .mm-menu_fx-menu-fade {
  opacity: 1; }

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  transition-property: none; }

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
  transform-origin: left center;
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
  transform: translate(0, 100%);
  transform: translate3d(0, 100%, 0); }

.mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_fx-listitems-] .mm-listitem {
  transition: none .4s ease; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1) {
  transition-delay: 50ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
  transition-delay: .1s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
  transition-delay: 150ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
  transition-delay: .2s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
  transition-delay: 250ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
  transition-delay: .3s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
  transition-delay: 350ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
  transition-delay: .4s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
  transition-delay: 450ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
  transition-delay: .5s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
  transition-delay: 550ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
  transition-delay: .6s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
  transition-delay: 650ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
  transition-delay: .7s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
  transition-delay: 750ms; }

.mm-menu_fx-listitems-slide .mm-listitem {
  transition-property: transform,opacity;
  transform: translate(50%, 0);
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.mm-menu_fx-listitems-fade .mm-listitem {
  transition-property: opacity;
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
  opacity: 1; }

.mm-menu_fx-listitems-drop .mm-listitem {
  transition-property: opacity,top;
  opacity: 0;
  top: -25%; }

.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
  opacity: 1;
  top: 0; }

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  transform: translate(100vw, 0);
  transform: translate3d(100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    transform: translate(10000px, 0);
    transform: translate3d(10000px, 0, 0); } }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-100vw, 0);
  transform: translate3d(-100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-10000px, 0);
    transform: translate3d(-10000px, 0, 0); } }

.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_listview-30 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-30 .mm-listitem > span {
  padding-top: 5px;
  padding-bottom: 5px; }

.mm-menu_listview-30 .mm-listitem_vertical > .mm-btn_next {
  height: 30; }

.mm-menu_listview-50 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-50 .mm-listitem > span {
  padding-top: 15px;
  padding-bottom: 15px; }

.mm-menu_listview-50 .mm-listitem_vertical > .mm-btn_next {
  height: 50; }

.mm-menu_listview-60 .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-60 .mm-listitem > span {
  padding-top: 20px;
  padding-bottom: 20px; }

.mm-menu_listview-60 .mm-listitem_vertical > .mm-btn_next {
  height: 60; }

.mm-menu_listview-justify .mm-panels > .mm-panel:after, .mm-menu_listview-justify .mm-panels > .mm-panel:before, .mm-panels > .mm-panel_listview-justify:after, .mm-panels > .mm-panel_listview-justify:before {
  content: none;
  display: none; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview, .mm-panels > .mm-panel_listview-justify .mm-listview {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem, .mm-panels > .mm-panel_listview-justify .mm-listitem {
  flex: 1 0 auto;
  min-height: 40px; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels > .mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
  display: flex;
  flex-direction: column; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem > a:not(.mm-btn_next), .mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem > span, .mm-panels > .mm-panel_listview-justify .mm-listitem > a:not(.mm-btn_next), .mm-panels > .mm-panel_listview-justify .mm-listitem > span {
  box-sizing: border-box;
  flex: 1 0 auto;
  display: flex;
  align-items: center; }

.mm-listview_inset {
  list-style: inside disc;
  padding: 0 10px 15px 40px;
  margin: 0; }

.mm-listview_inset > li {
  padding: 5px 0; }

.mm-menu_multiline .mm-listitem > a, .mm-menu_multiline .mm-listitem > span, .mm-panel_multiline .mm-listitem > a, .mm-panel_multiline .mm-listitem > span {
  text-overflow: clip;
  white-space: normal; }

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-page__blocker {
  opacity: 0; }

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-page__blocker {
  opacity: .3;
  transition: opacity .4s ease .4s; }

.mm-menu_opened.mm-menu_pagedim ~ .mm-page__blocker {
  background: inherit; }

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-page__blocker {
  background: #000; }

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-page__blocker {
  background: #fff; }

.mm-menu_popup {
  transition: opacity .4s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  transform: translate(-50%, -50%);
  transform: translate3d(-50%, -50%, 0); }

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-menu_popup.mm-menu_opened ~ .mm-page__blocker {
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1; }

.mm-menu_position-right {
  left: auto;
  right: 0; }

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  transform: translate(-80vw, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-140px, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    transform: translate(-440px, 0);
    transform: translate3d(-440px, 0, 0); } }

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  transition: transform .4s ease; }

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  transform: none !important;
  z-index: 0; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-page__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-page__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-page__blocker {
  z-index: 1; }

.mm-menu_position-front {
  transform: translate(-100%, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_position-front.mm-menu_position-right {
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu_position-top {
  transform: translate(0, -100%);
  transform: translate3d(0, -100%, 0); }

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-menu_position-bottom {
  transform: translate(0, 100%);
  transform: translate3d(0, 100%, 0);
  top: auto; }

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_shadow-page:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%); }

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%); }

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none; }

.mm-menu_shadow-page:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white .mm-navbar a, .mm-menu_theme-white .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-btn:after, .mm-menu_theme-white .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.03);
  tap-highlight-color: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-white .mm-listitem_selected > span {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-white .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.06); }

.mm-menu_theme-white .mm-listitem_divider {
  background: rgba(0, 0, 0, 0.06); }

.mm-menu_theme-white .mm-counter {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-iconbar, .mm-menu_theme-white .mm-iconbar a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white.mm-menu_keyboardfocus a:focus {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-white .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-white .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white.mm-menu_shadow-page:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu_theme-white.mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.mm-menu_theme-white .mm-searchfield input {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white .mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white .mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-white.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-white.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-white.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-white.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-white.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, 0.03); }

.mm-menu_theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7); }

.mm-menu_theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-white label.mm-toggle:before {
  background: #fff; }

.mm-menu_theme-whiteinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_theme-dark {
  background: #333;
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark .mm-navbar a, .mm-menu_theme-dark .mm-navbar > * {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-btn:after, .mm-menu_theme-dark .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-listview .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  tap-highlight-color: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-dark .mm-listitem_selected > span {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-dark .mm-listitem_opened > .mm-panel {
  background: rgba(255, 255, 255, 0.08); }

.mm-menu_theme-dark .mm-listitem_divider {
  background: rgba(255, 255, 255, 0.08); }

.mm-menu_theme-dark .mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-iconbar, .mm-menu_theme-dark .mm-iconbar a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark.mm-menu_keyboardfocus a:focus {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-dark .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-dark .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark.mm-menu_shadow-page:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu_theme-dark.mm-menu_shadow-panels .mm-panel {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.mm-menu_theme-dark .mm-searchfield input {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark .mm-panel__noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark .mm-sectionindexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-dark.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-dark.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-dark.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(0, 0, 0, 0.1); }

.mm-menu_theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.85); }

.mm-menu_theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.3); }

.mm-menu_theme-dark label.mm-toggle:before {
  background: #333; }

.mm-menu_theme-darkinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_theme-black {
  background: #000;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black .mm-navbar a, .mm-menu_theme-black .mm-navbar > * {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-btn:after, .mm-menu_theme-black .mm-btn:before {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-listview .mm-btn_next:after {
  border-color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
  tap-highlight-color: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu_theme-black .mm-listitem_selected > span {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-listitem_opened > .mm-btn_next, .mm-menu_theme-black .mm-listitem_opened > .mm-panel {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu_theme-black .mm-listitem_divider {
  background: rgba(255, 255, 255, 0.2); }

.mm-menu_theme-black .mm-counter {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-iconbar, .mm-menu_theme-black .mm-iconbar a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black.mm-menu_keyboardfocus a:focus {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black .mm-navbar_tabs > :not(.mm-navbar__tab_selected), .mm-menu_theme-black .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-menu_theme-black .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black.mm-menu_shadow-page:after {
  box-shadow: false; }

.mm-menu_theme-black.mm-menu_shadow-panels .mm-panel {
  box-shadow: false; }

.mm-menu_theme-black .mm-searchfield input {
  background: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black .mm-panel__noresultsmsg {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black .mm-sectionindexer a {
  color: rgba(255, 255, 255, 0.4); }

.mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > a, .mm-menu_theme-black.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected > span {
  background: 0 0; }

.mm-menu_theme-black.mm-menu_selected-hover .mm-listitem > a.mm-btn_fullwidth:hover + span, .mm-menu_theme-black.mm-menu_selected-hover .mm-listitem > a:not(.mm-btn_fullwidth):hover {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > a, .mm-menu_theme-black.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) > span {
  background: 0 0; }

.mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_fullwidth + span, .mm-menu_theme-black.mm-menu_selected-parent .mm-listitem_selected-parent > a.mm-btn_next:not(.mm-btn_fullwidth) {
  background: rgba(255, 255, 255, 0.15); }

.mm-menu_theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.75); }

.mm-menu_theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.25); }

.mm-menu_theme-black label.mm-toggle:before {
  background: #000; }

.mm-menu_theme-blackinput.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
  margin: 0 !important; }

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both; }

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%; }

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1; }

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu_tileview .mm-listitem > a, .mm-menu_tileview .mm-listitem > span, .mm-panel_tileview .mm-listitem > a, .mm-panel_tileview .mm-listitem > span {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0; }

.mm-menu_tileview .mm-listitem > .mm-btn_next, .mm-panel_tileview .mm-listitem > .mm-btn_next {
  width: auto; }

.mm-menu_tileview .mm-listitem > .mm-btn_next:after, .mm-menu_tileview .mm-listitem > .mm-btn_next:before, .mm-panel_tileview .mm-listitem > .mm-btn_next:after, .mm-panel_tileview .mm-listitem > .mm-btn_next:before {
  content: none;
  display: none; }

.mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
  display: none; }

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
  padding-left: 0;
  padding-right: 0; }

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
  content: none;
  display: none; }

/*!
 * jQuery mmenu v7.0.6
 * @requires jQuery 1.7.0 or later
 *
 * mmenu.frebsite.nl
 *	
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  box-sizing: border-box;
  background: inherit;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none; }

.mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-panel, .mm-panels {
  background: inherit;
  border-color: inherit;
  box-sizing: border-box;
  margin: 0; }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 20px;
  transform: translate(100%, 0);
  transform: translate3d(100%, 0, 0);
  transition: transform .4s ease;
  transform-origin: top left; }

.mm-panel:not(.mm-hidden) {
  display: block; }

.mm-panel:after, .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-panel_has-navbar {
  padding-top: 40px; }

.mm-panel_opened {
  z-index: 1;
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel_opened-parent {
  transform: translate(-30%, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel_highest {
  z-index: 2; }

.mm-panel_noanimation {
  transition: none !important; }

.mm-panel_noanimation.mm-panel_opened-parent {
  transform: translate(0, 0);
  transform: translate3d(0, 0, 0); }

.mm-listitem_vertical > .mm-panel {
  transform: none !important;
  display: none;
  padding: 10px 0 10px 10px; }

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none; }

.mm-listitem_opened > .mm-panel {
  display: block; }

.mm-listitem_vertical > .mm-btn_next {
  box-sizing: border-box;
  height: 40px;
  bottom: auto; }

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent; }

.mm-listitem_opened > .mm-btn_next:after {
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1; }

.mm-btn_fullwidth {
  width: 100%; }

.mm-btn_clear:after, .mm-btn_clear:before, .mm-btn_close:after, .mm-btn_close:before {
  content: '';
  border: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(-45deg); }

.mm-btn_clear:before, .mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-btn_clear:after, .mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-btn_next:after, .mm-btn_prev:before {
  content: '';
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0; }

.mm-btn_prev:before {
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-btn_next:after {
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

.mm-navbar {
  border-bottom: 1px solid;
  border-color: inherit;
  text-align: center;
  line-height: 20px;
  display: none;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  transition: opacity .4s ease; }

.mm-navbar > * {
  box-sizing: border-box;
  display: block;
  padding: 10px 0; }

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-navbar__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-navbar__btn:first-child {
  left: 0; }

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel_has-navbar .mm-navbar {
  display: block; }

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listitem, .mm-listitem .mm-btn_next, .mm-listitem .mm-btn_next:before, .mm-listitem:after, .mm-listview {
  border-color: inherit; }

.mm-listview {
  font: inherit;
  line-height: 20px; }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listitem {
  position: relative; }

.mm-listitem:after {
  content: '';
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; }

.mm-listitem:after {
  left: 20px; }

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none; }

.mm-listitem > a, .mm-listitem > span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  display: block;
  padding: 10px 10px 10px 20px;
  margin: 0; }

.mm-listitem .mm-btn_next {
  background: rgba(3, 2, 1, 0);
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2; }

.mm-listitem .mm-btn_next:before {
  content: '';
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
  width: 50px; }

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + a, .mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) + span {
  margin-right: 50px; }

.mm-listitem .mm-btn_fullwidth:before {
  border-left: none; }

.mm-listitem .mm-btn_fullwidth + a, .mm-listitem .mm-btn_fullwidth + span {
  padding-right: 50px; }

.mm-listitem_divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 75%;
  text-transform: uppercase;
  padding: 5px 10px 5px 20px; }

.mm-listitem_divider:after {
  content: ' ';
  display: none;
  position: static;
  display: inline-block; }

.mm-listitem_spacer {
  padding-top: 40px; }

.mm-listitem_spacer > .mm-btn_next {
  top: 40px; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75); }

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview .mm-btn_next:after {
  border-color: rgba(0, 0, 0, 0.3); }

.mm-menu .mm-listview a:not(.mm-btn_next) {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
  tap-highlight-color: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_selected > a:not(.mm-btn_next), .mm-menu .mm-listitem_selected > span {
  background: rgba(255, 255, 255, 0.4); }

.mm-menu .mm-listitem_opened > .mm-btn_next, .mm-menu .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05); }

.mm-menu .mm-listitem_divider {
  background: rgba(0, 0, 0, 0.05); }

.mm-page {
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  transition: transform .4s ease;
  z-index: 1; }

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative; }

.mm-wrapper_background .mm-page {
  background: inherit; }

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0; }

.mm-menu_offcanvas.mm-menu_opened {
  display: block; }

.mm-menu_offcanvas.mm-menu_opened.mm-no-csstransforms {
  z-index: 10; }

.mm-menu_offcanvas {
  width: 80%;
  min-width: 140px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  transform: translate(80vw, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 175px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate(140px, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    transform: translate(440px, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-page__blocker {
  background: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-wrapper_blocking {
  overflow: hidden; }

.mm-wrapper_blocking body {
  overflow: hidden; }

.mm-wrapper_blocking .mm-page__blocker {
  display: block; }

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important; }

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

::-moz-selection {
  color: #fff;
  background-color: #13367C; }

::selection {
  color: #fff;
  background-color: #13367C; }

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

main {
  flex: 1; }

p {
  margin: 0; }

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

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

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

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

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

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

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

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

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

iframe {
  display: block; }

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

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 91.66667vw; }
  @media (min-width: 1800px) {
    .container {
      max-width: 1600px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 2.09424vw;
      padding-right: 2.09424vw; } }
  @media (max-width: 575px) {
    .container {
      max-width: 100%;
      padding-left: 4.26667vmin;
      padding-right: 4.26667vmin; } }

input {
  outline: none; }

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

/* stylelint-disable */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    transition-duration: 0.001s !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: 575px) {
  .for-tablet {
    display: none !important; } }

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

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

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

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

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

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

/* stylelint-enable */
.header {
  position: relative;
  z-index: 999; }
  .header__top {
    background-color: #FAFBFF;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__top .container {
        padding-left: 0;
        padding-right: 0; } }
    @media (max-width: 575px) {
      .header__top .container {
        padding-left: 0;
        padding-right: 0; } }
    @media (min-width: 1800px) {
      .header__top {
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__top {
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .header__top {
        border-bottom: none;
        order: 2; } }
  .header__topcontainer {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__topwrap {
    display: flex; }
    @media (max-width: 575px) {
      .header__topwrap {
        display: none !important; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .header__social {
      display: none !important; } }
  @media (max-width: 575px) {
    .header__social {
      display: none !important; } }
  .header__add, .header__email {
    display: flex;
    align-items: center;
    font-size: 0.90278vw;
    font-weight: 500;
    line-height: 120%;
    color: #97A5D0;
    padding-left: 1.66667vw;
    padding-right: 1.66667vw;
    border-right: 0.06944vw solid #DEE6FF;
    height: 3.61111vw;
    white-space: nowrap; }
    .header__add svg, .header__email svg {
      width: 1.11111vw;
      height: 1.11111vw;
      color: #EB7B18;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .header__add svg, .header__email svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .header__add svg, .header__email svg {
          width: 2.09424vw;
          height: 2.09424vw;
          margin-right: 1.3089vw; } }
    @media (min-width: 1800px) {
      .header__add, .header__email {
        font-size: 13px;
        padding-left: 32px;
        padding-right: 32px;
        border-right: 1px solid #DEE6FF;
        height: 52px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__add, .header__email {
        display: none; } }
    @media (max-width: 575px) {
      .header__add, .header__email {
        display: none; } }
  .header__email {
    position: relative; }
    .header__email a:hover {
      color: #EB7B18; }
    .header__email a:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
  .header__menu {
    font-size: 0.90278vw;
    line-height: 120%; }
    .header__menu ul {
      display: flex; }
      .header__menu ul li {
        margin-left: 0.83333vw;
        margin-right: 0.83333vw; }
        .header__menu ul li a {
          color: #97A5D0; }
          .header__menu ul li a:hover {
            color: #EB7B18; }
          @media (max-width: 575px) {
            .header__menu ul li a {
              display: block;
              padding: 3.2vmin;
              border-top: 1px solid #DEE6FF; } }
        @media (min-width: 1800px) {
          .header__menu ul li {
            margin-left: 21px;
            margin-right: 21px; } }
        @media (min-width: 576px) and (max-width: 1024px) {
          .header__menu ul li {
            margin-left: 0;
            margin-right: 3.53403vw; } }
        @media (max-width: 575px) {
          .header__menu ul li {
            margin-right: 0;
            margin-left: 0;
            display: block;
            width: 100%; } }
      @media (max-width: 575px) {
        .header__menu ul {
          display: block; } }
    @media (min-width: 1800px) {
      .header__menu {
        font-size: 13px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__menu {
        font-size: 1.96335vw; } }
    @media (max-width: 575px) {
      .header__menu {
        font-size: 4vmin;
        width: 100%;
        display: none; }
        .header__menu.is-active {
          display: block; } }
  .header__callback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.90278vw;
    font-weight: 500;
    color: #fff;
    background-color: #EB7B18;
    text-align: center;
    height: 3.61111vw;
    width: 10.76389vw;
    flex-shrink: 0; }
    .header__callback:hover {
      color: #fff;
      background-color: #bf6311; }
    @media (min-width: 1800px) {
      .header__callback {
        font-size: 15px;
        height: 52px;
        width: 192px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__callback {
        font-size: 1.70157vw;
        height: 6.80628vw;
        width: 20.28796vw; } }
    @media (max-width: 575px) {
      .header__callback {
        display: none; } }
  .header__bottomcontainer {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__bottomcontainer {
        flex-wrap: wrap; } }
    @media (max-width: 575px) {
      .header__bottomcontainer {
        flex-wrap: wrap; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .header__bottom .container {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 575px) {
    .header__bottom .container {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 575px) {
    .header__bottom {
      order: 1; } }
  .header__logo {
    width: 15.27778vw;
    height: 7.77778vw;
    border-right: 0.06944vw solid #DEE6FF;
    border-left: 0.06944vw solid #DEE6FF;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .header__logo img {
      width: 12.08333vw;
      height: 2.43056vw; }
      .header__logo img.for-tablet {
        display: block !important; }
        @media (min-width: 576px) and (max-width: 1024px) {
          .header__logo img.for-tablet {
            display: block !important; } }
        @media (max-width: 575px) {
          .header__logo img.for-tablet {
            display: none !important; } }
      @media (min-width: 1800px) {
        .header__logo img {
          width: 205px;
          height: 40px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .header__logo img {
          width: 29.05759vw;
          height: 5.75916vw; } }
      @media (max-width: 575px) {
        .header__logo img {
          width: 10.4vmin;
          height: 11.73333vmin; } }
    @media (min-width: 1800px) {
      .header__logo {
        width: 246px;
        height: 140px;
        border-right: 1px solid #DEE6FF;
        border-left: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__logo {
        width: 35.4712vw;
        height: 8.37696vw;
        border-right: 0.13089vw solid #DEE6FF;
        border-left: none;
        order: 1; } }
    @media (max-width: 575px) {
      .header__logo {
        width: 17.6vmin;
        height: 17.06667vmin;
        border-right: none;
        border-left: none;
        order: 1; } }
  .header__right {
    display: flex;
    flex-direction: column;
    border-right: 0.06944vw solid #DEE6FF;
    border-left: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .header__right {
        border-right: 1px solid #DEE6FF;
        border-left: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__right {
        order: 2;
        border-right: 0.13089vw solid #DEE6FF;
        border-left: none;
        flex-direction: row;
        align-items: center;
        flex-basis: calc(100% - 35.4712vw); } }
    @media (max-width: 575px) {
      .header__right {
        order: 2;
        border-right: none;
        border-left: none;
        flex-direction: row;
        align-items: center;
        flex-basis: calc(100% - 17.6vmin); } }
  .header__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.88889vw;
    font-size: 1.25vw;
    font-weight: 700;
    line-height: 100%;
    border-bottom: 0.06944vw solid #DEE6FF; }
    .header__phone:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .header__phone {
        height: 70px;
        font-size: 20px;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__phone {
        height: 7.32984vw;
        font-size: 2.6178vw;
        border-bottom: none;
        flex: 1 1; } }
    @media (max-width: 575px) {
      .header__phone {
        height: 14.93333vmin;
        font-size: 4.8vmin;
        border-bottom: none;
        flex: 1 1;
        justify-content: flex-start; } }
  .header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.88889vw;
    height: 3.88889vw;
    border-right: 0.06944vw solid #DEE6FF;
    color: #EB7B18;
    position: relative; }
    .header__btn svg {
      width: 1.94444vw;
      height: 1.94444vw; }
      @media (min-width: 1800px) {
        .header__btn svg {
          width: 36px;
          height: 36px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .header__btn svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .header__btn svg {
          width: 8.53333vmin;
          height: 8.53333vmin; } }
    .header__btn--search .if-open, .header__btn--menu .if-open {
      display: none; }
    .header__btn--search.is-active .if-open, .header__btn--menu.is-active .if-open {
      display: block; }
    .header__btn--search.is-active .if-close, .header__btn--menu.is-active .if-close {
      display: none; }
    @media (max-width: 575px) {
      .header__btn--search, .header__btn--menu {
        border: none !important; } }
    @media (max-width: 575px) {
      .header__btn--search {
        background-color: #13367C !important;
        color: #fff; } }
    @media (max-width: 575px) {
      .header__btn--menu {
        background-color: #EB7B18 !important;
        color: #fff; } }
    .header__btn:last-child {
      border-right: none; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__btn:first-child {
        border-left: 0.13089vw solid #DEE6FF; } }
    .header__btn:hover {
      color: #fff;
      background-color: #20429E; }
    @media (min-width: 1800px) {
      .header__btn {
        width: 70px;
        height: 70px;
        border-right: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__btn {
        width: 8.37696vw;
        height: 8.37696vw;
        border-right: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .header__btn {
        width: 17.06667vmin;
        height: 17.06667vmin;
        border-right: 0.26667vmin solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .header__search {
      order: 3;
      border-top: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .header__search {
      order: 3;
      border-top: 0.26667vmin solid #DEE6FF; } }
  .header__btn-count {
    position: absolute;
    bottom: 0.55556vw;
    right: 0.55556vw;
    border-radius: 50%;
    color: #fff;
    background-color: #20429E;
    width: 1.25vw;
    height: 1.25vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.69444vw;
    line-height: 100%; }
    @media (min-width: 1800px) {
      .header__btn-count {
        bottom: 14px;
        right: 14px;
        width: 18px;
        height: 18px;
        font-size: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .header__btn-count {
        bottom: 1.83246vw;
        right: 1.83246vw;
        width: 2.35602vw;
        height: 2.35602vw;
        font-size: 1.3089vw; } }
    @media (max-width: 575px) {
      .header__btn-count {
        bottom: 3.73333vmin;
        right: 3.73333vmin;
        width: 4.8vmin;
        height: 4.8vmin;
        font-size: 2.66667vmin;
        background-color: #13367C; } }
  @media (max-width: 575px) {
    .header__btns .header__btn {
      flex-basis: 100%;
      width: auto;
      border-right: 1px solid #2852C4; } }
  @media (max-width: 575px) {
    .header__btns {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #20429E;
      z-index: 999;
      display: flex; } }
  @media (max-width: 575px) {
    .header__mobilebtns {
      display: flex; } }
  @media (max-width: 575px) {
    .header {
      display: flex;
      flex-direction: column; } }

.searchform {
  display: flex;
  flex: 1 1;
  padding-left: 2.22222vw;
  padding-right: 2.22222vw; }
  .searchform.is-active {
    display: flex; }
  .searchform ::-moz-placeholder {
    color: #97A5D0; }
  .searchform :-ms-input-placeholder {
    color: #97A5D0; }
  .searchform ::placeholder {
    color: #97A5D0; }
  .searchform__btn {
    width: 3.88889vw;
    height: 3.88889vw;
    border: 0.06944vw solid #DEE6FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #EB7B18;
    background-color: transparent; }
    .searchform__btn svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .searchform__btn svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .searchform__btn svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .searchform__btn svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
    .searchform__btn:hover {
      background-color: #20429E;
      color: #fff; }
    @media (min-width: 1800px) {
      .searchform__btn {
        width: 70px;
        height: 70px;
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .searchform__btn {
        width: 7.32984vw;
        height: 7.32984vw;
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .searchform__btn {
        width: 14.93333vmin;
        height: 14.93333vmin;
        border: 0.26667vmin solid #DEE6FF; } }
  .searchform__input {
    width: 100%;
    border: none;
    border-bottom: 0.06944vw solid #DEE6FF;
    font-size: 1.66667vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    transition: all .3s ease-out; }
    .searchform__input:focus {
      border-bottom: 0.06944vw solid #EB7B18; }
      @media (min-width: 1800px) {
        .searchform__input:focus {
          border-bottom: 1px solid #EB7B18; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .searchform__input:focus {
          border-bottom: 0.13089vw solid #EB7B18; } }
      @media (max-width: 575px) {
        .searchform__input:focus {
          border-bottom: 0.26667vmin solid #EB7B18; } }
    @media (min-width: 1800px) {
      .searchform__input {
        border-bottom: 1px solid #DEE6FF;
        font-size: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .searchform__input {
        border-bottom: 0.13089vw solid #DEE6FF;
        font-size: 2.35602vw; } }
    @media (max-width: 575px) {
      .searchform__input {
        border-bottom: 0.26667vmin solid #DEE6FF;
        font-size: 4.8vmin; } }
  @media (min-width: 1800px) {
    .searchform {
      padding-left: 56px;
      padding-right: 56px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .searchform {
      flex-basis: 100%;
      padding: 3.9267vw 2.09424vw; } }
  @media (max-width: 575px) {
    .searchform {
      flex-basis: 100%;
      padding: 4.26667vmin 4.26667vmin;
      display: none; } }

.socialheader {
  display: flex;
  border-left: 0.06944vw solid #DEE6FF; }
  .socialheader__item {
    color: #97A5D0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.61111vw;
    height: 3.61111vw;
    border-right: 0.06944vw solid #DEE6FF; }
    .socialheader__item svg {
      width: 2.08333vw;
      height: 2.08333vw; }
      @media (min-width: 1800px) {
        .socialheader__item svg {
          width: 30px;
          height: 30px; } }
    .socialheader__item:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .socialheader__item {
        width: 52px;
        height: 52px;
        border-right: 1px solid #DEE6FF; } }
  @media (min-width: 1800px) {
    .socialheader {
      border-left: 1px solid #DEE6FF; } }

.navigation {
  background-color: #20429E;
  color: #fff;
  position: relative; }
  .navigation__container {
    display: flex;
    align-items: center; }
  .navigation__cat {
    display: flex;
    justify-content: space-between;
    padding-left: 2.22222vw;
    font-size: 0.97222vw;
    line-height: 120%;
    letter-spacing: -0.01em;
    font-weight: 500;
    flex: 1 1; }
    .navigation__cat li a {
      display: inline-flex;
      height: 4.86111vw;
      align-items: center; }
      .navigation__cat li a:hover {
        color: #EB7B18; }
      @media (min-width: 1800px) {
        .navigation__cat li a {
          height: 80px; } }
    @media (min-width: 1800px) {
      .navigation__cat {
        padding-left: 32px;
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .navigation__cat {
        display: none; } }
    @media (max-width: 575px) {
      .navigation__cat {
        display: none; } }

.submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background-color: #FAFBFF;
  border: 1px solid #DEE6FF;
  z-index: 9999;
  color: #0C111F;
  font-size: 0.97222vw;
  display: none; }
  .submenu.is-open {
    display: block; }
  .submenu a:hover {
    color: #EB7B18; }
  .submenu__container {
    display: flex;
    padding: 4.16667vw 0;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .submenu__container {
        padding: 60px 0;
        margin-left: -12px;
        margin-right: -12px; } }
  .submenu__menu {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    flex-basis: calc(33.3% - 1.66667vw); }
    .submenu__menu li {
      margin-bottom: 0.83333vw; }
      @media (min-width: 1800px) {
        .submenu__menu li {
          margin-bottom: 12px; } }
    @media (min-width: 1800px) {
      .submenu__menu {
        margin-left: 12px;
        margin-right: 12px;
        flex-basis: calc(33.3% - 24px); } }
  @media (min-width: 1800px) {
    .submenu {
      font-size: 16px; } }

.is-openfilter .header {
  z-index: 9; }

.footer {
  background-color: #0C111F;
  color: #fff; }
  .footer__top {
    border-bottom: 0.06944vw solid #363C4C; }
    @media (min-width: 1800px) {
      .footer__top {
        border-bottom: 1px solid #363C4C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__top {
        border-bottom: none; } }
    @media (max-width: 575px) {
      .footer__top {
        border-bottom: none; } }
  .footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .footer__container--bottom {
      border-bottom: 0.06944vw solid #363C4C; }
      @media (min-width: 1800px) {
        .footer__container--bottom {
          border-bottom: 1px solid #363C4C; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .footer__container--bottom {
          flex-wrap: wrap; } }
      @media (max-width: 575px) {
        .footer__container--bottom {
          flex-wrap: wrap; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__container {
        flex-wrap: wrap; } }
    @media (max-width: 575px) {
      .footer__container {
        flex-wrap: wrap; } }
  .footer__logo {
    width: 18.54167vw;
    height: 7.77778vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 0.06944vw solid #363C4C;
    border-right: 0.06944vw solid #363C4C; }
    .footer__logo img {
      width: 14.23611vw;
      height: 2.77778vw; }
      @media (min-width: 1800px) {
        .footer__logo img {
          width: 205px;
          height: 40px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .footer__logo img {
          width: 43.4555vw;
          height: 8.63874vw; } }
      @media (max-width: 575px) {
        .footer__logo img {
          width: 68.26667vmin;
          height: 13.6vmin; } }
    @media (min-width: 1800px) {
      .footer__logo {
        width: 267px;
        height: 140px;
        border-left: 1px solid #363C4C;
        border-right: 1px solid #363C4C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__logo {
        width: calc(100% - 28.79581vw);
        height: 14.5288vw;
        border-left: 1px solid #363C4C;
        border-right: 1px solid #363C4C;
        order: 1; } }
    @media (max-width: 575px) {
      .footer__logo {
        width: 100%;
        height: 30.66667vmin;
        border-left: none;
        border-right: none;
        order: 1;
        justify-content: flex-start; } }
  .footer__nav {
    flex: 1 1;
    display: flex;
    align-items: center;
    font-size: 0.90278vw;
    line-height: 120%;
    justify-content: center; }
    .footer__nav li {
      margin-left: 1.11111vw;
      margin-right: 1.11111vw; }
      .footer__nav li a:hover {
        color: #EB7B18; }
      @media (min-width: 576px) and (max-width: 1024px) {
        .footer__nav li a {
          display: inline-flex;
          padding-top: 5.49738vw;
          padding-bottom: 5.49738vw; } }
      @media (max-width: 575px) {
        .footer__nav li a {
          display: inline-flex;
          padding-top: 2.13333vmin;
          padding-bottom: 2.13333vmin; } }
      @media (min-width: 1800px) {
        .footer__nav li {
          margin-left: 30px;
          margin-right: 30px; } }
    @media (min-width: 1800px) {
      .footer__nav {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__nav {
        order: 3;
        font-size: 1.70157vw;
        border: 0.13089vw solid #363C4C;
        justify-content: space-between;
        padding-left: 3.40314vw;
        padding-right: 3.40314vw; } }
    @media (max-width: 575px) {
      .footer__nav {
        order: 3;
        font-size: 4.26667vmin;
        border: 0.26667vmin solid #363C4C;
        border-left: none;
        border-right: none;
        justify-content: space-between;
        padding-left: 0;
        padding-right: 8.53333vmin;
        padding-top: 6.4vmin;
        padding-bottom: 6.4vmin;
        flex-wrap: wrap; } }
  .footer__wrap {
    display: flex;
    flex-direction: column;
    width: 18.54167vw; }
    @media (min-width: 1800px) {
      .footer__wrap {
        width: 267px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__wrap {
        order: 2;
        width: 28.79581vw; } }
    @media (max-width: 575px) {
      .footer__wrap {
        order: 2;
        width: 100%;
        flex-direction: row; } }
  .footer__callback {
    height: 3.88889vw; }
    @media (min-width: 1800px) {
      .footer__callback {
        height: 70px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__callback {
        height: 7.19895vw !important; } }
    @media (max-width: 575px) {
      .footer__callback {
        height: 14.66667vmin !important;
        width: 50%;
        font-size: 3.73333vmin !important;
        padding: 0 3.2vmin !important; } }
  .footer__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25vw;
    height: 3.88889vw;
    border-left: 0.06944vw solid #363C4C;
    border-right: 0.06944vw solid #363C4C; }
    .footer__phone:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .footer__phone {
        font-size: 20px;
        height: 70px;
        border-left: 1px solid #363C4C;
        border-right: 1px solid #363C4C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__phone {
        font-size: 2.35602vw;
        height: 7.19895vw;
        border-left: 0.13089vw solid #363C4C;
        border-right: 0.13089vw solid #363C4C; } }
    @media (max-width: 575px) {
      .footer__phone {
        font-size: 4vmin;
        height: 14.66667vmin;
        width: 50%;
        border-top: 0.26667vmin solid #363C4C;
        border-right: 0.26667vmin solid #363C4C; } }
  .footer__pricerequest {
    width: 18.54167vw; }
    @media (min-width: 1800px) {
      .footer__pricerequest {
        width: 267px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__pricerequest {
        width: 21.72775vw;
        height: 7.32984vw !important;
        font-size: 1.83246vw !important;
        padding-left: 1.57068vw;
        padding-right: 1.57068vw;
        white-space: nowrap; } }
    @media (max-width: 575px) {
      .footer__pricerequest {
        width: 100%;
        flex: 1 1;
        height: 14.93333vmin !important;
        font-size: 3.73333vmin !important;
        padding-left: 3.2vmin;
        padding-right: 3.2vmin;
        white-space: nowrap; } }
  .footer__add, .footer__email {
    display: flex;
    align-items: center;
    font-size: 0.90278vw;
    font-weight: 500;
    line-height: 120%;
    color: #97A5D0;
    padding-left: 2.22222vw;
    padding-right: 2.22222vw;
    border-right: 0.06944vw solid #363C4C;
    height: 3.88889vw; }
    .footer__add svg, .footer__email svg {
      width: 1.11111vw;
      height: 1.11111vw;
      color: #EB7B18;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .footer__add svg, .footer__email svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .footer__add svg, .footer__email svg {
          width: 2.09424vw;
          height: 2.09424vw;
          margin-right: 1.3089vw; } }
      @media (max-width: 575px) {
        .footer__add svg, .footer__email svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          margin-right: 2.66667vmin; } }
    @media (min-width: 1800px) {
      .footer__add, .footer__email {
        font-size: 13px;
        padding-left: 32px;
        padding-right: 32px;
        border-right: 1px solid #363C4C;
        height: 70px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__add, .footer__email {
        font-size: 1.70157vw;
        padding-left: 1.83246vw;
        padding-right: 1.83246vw;
        border-right: 0.13089vw solid #363C4C;
        height: 7.32984vw; } }
    @media (max-width: 575px) {
      .footer__add, .footer__email {
        font-size: 3.46667vmin;
        padding-left: 3.73333vmin;
        padding-right: 3.73333vmin;
        border-right: 0.26667vmin solid #363C4C;
        border-left: 0.26667vmin solid #363C4C;
        border-bottom: 0.26667vmin solid #363C4C;
        height: 14.93333vmin;
        width: 100%;
        justify-content: center; } }
  .footer__email a:hover {
    color: #EB7B18; }
  @media (max-width: 575px) {
    .footer__email {
      border-bottom: none; } }
  .footer__mailer {
    flex: 1 1; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__mailer {
        flex-basis: 100%;
        border-top: 0.13089vw solid #363C4C;
        border-left: 0.13089vw solid #363C4C; } }
    @media (max-width: 575px) {
      .footer__mailer {
        flex-basis: 100%;
        border-top: 0.26667vmin solid #363C4C;
        border-left: 0.26667vmin solid #363C4C; } }
  .footer__copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.94444vw 0;
    color: #97A5D0;
    font-size: 0.83333vw;
    line-height: 120%; }
    .footer__copyright a:hover {
      color: #fff; }
      .footer__copyright a:hover span {
        color: #EB7B18; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__copyright p:last-child {
        flex-basis: 100%;
        margin-bottom: 0; } }
    @media (max-width: 575px) {
      .footer__copyright p:last-child {
        flex-basis: 100%;
        margin-bottom: 0; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__copyright p {
        margin-bottom: 1.3089vw; } }
    @media (max-width: 575px) {
      .footer__copyright p {
        margin-bottom: 2.13333vmin; } }
    @media (min-width: 1800px) {
      .footer__copyright {
        padding: 28px 0;
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .footer__copyright {
        flex-wrap: wrap;
        padding: 3.66492vw 0;
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .footer__copyright {
        flex-wrap: wrap;
        padding: 8.53333vmin 0;
        padding-bottom: 4.26667vmin;
        font-size: 2.66667vmin; } }
  @media (max-width: 575px) {
    .footer {
      padding-bottom: 19.73333vmin; } }

.socialfooter {
  display: flex; }
  .socialfooter__item {
    color: #97A5D0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.88889vw;
    height: 3.88889vw;
    border-right: 0.06944vw solid #363C4C; }
    .socialfooter__item svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .socialfooter__item svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .socialfooter__item svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .socialfooter__item svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
    .socialfooter__item:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .socialfooter__item {
        width: 70px;
        height: 70px;
        border-right: 1px solid #363C4C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .socialfooter__item {
        width: 7.32984vw;
        height: 7.32984vw;
        border-right: 0.13089vw solid #363C4C; } }
    @media (max-width: 575px) {
      .socialfooter__item {
        width: 14.93333vmin;
        height: 14.93333vmin;
        border-right: 0.26667vmin solid #363C4C;
        border-bottom: 0.26667vmin solid #363C4C; } }

.mailer {
  display: flex; }
  .mailer ::-moz-placeholder {
    color: #97A5D0; }
  .mailer :-ms-input-placeholder {
    color: #97A5D0; }
  .mailer ::placeholder {
    color: #97A5D0; }
  .mailer__input {
    font-size: 1.11111vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    width: 100%;
    border: none;
    background: transparent;
    text-indent: 2.22222vw;
    color: #fff; }
    @media (min-width: 1800px) {
      .mailer__input {
        font-size: 20px;
        text-indent: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .mailer__input {
        font-size: 2.35602vw;
        text-indent: 2.6178vw; } }
    @media (max-width: 575px) {
      .mailer__input {
        font-size: 4vmin;
        text-indent: 5.33333vmin; } }
  .mailer__btn {
    width: 3.88889vw;
    height: 3.88889vw;
    border: none;
    border-left: 0.06944vw solid #363C4C;
    border-right: 0.06944vw solid #363C4C;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    color: #EB7B18;
    flex-shrink: 0; }
    .mailer__btn svg {
      width: 1.38889vw;
      height: 1.38889vw; }
      @media (min-width: 1800px) {
        .mailer__btn svg {
          width: 20px;
          height: 20px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .mailer__btn svg {
          width: 2.6178vw;
          height: 2.6178vw; } }
      @media (max-width: 575px) {
        .mailer__btn svg {
          width: 5.33333vmin;
          height: 5.33333vmin; } }
    .mailer__btn:hover {
      background-color: #EB7B18;
      color: #fff; }
    @media (min-width: 1800px) {
      .mailer__btn {
        width: 70px;
        height: 70px;
        border-left: 1px solid #363C4C;
        border-right: 1px solid #363C4C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .mailer__btn {
        width: 9.1623vw;
        height: 9.1623vw;
        border-left: 0.13089vw solid #363C4C;
        border-right: 0.13089vw solid #363C4C; } }
    @media (max-width: 575px) {
      .mailer__btn {
        width: 14.93333vmin;
        height: 14.93333vmin;
        border-left: 0.26667vmin solid #363C4C;
        border-right: 0.26667vmin solid #363C4C; } }

.brands {
  display: flex;
  position: relative;
  overflow: hidden;
  border-bottom: 0.06944vw solid #DEE6FF; }
  .brands__item {
    border-right: 0.06944vw solid #DEE6FF;
    height: 8.33333vw;
    padding: 1.66667vw;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 1800px) {
      .brands__item {
        border-right: 1px solid #DEE6FF;
        height: 180px;
        padding: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .brands__item {
        border-right: 0.13089vw solid #DEE6FF;
        height: 10.4712vw;
        padding: 3.14136vw; } }
    @media (max-width: 575px) {
      .brands__item {
        border-right: 0.26667vmin solid #DEE6FF;
        height: 21.33333vmin;
        padding: 4.26667vmin; } }
  @media (min-width: 1800px) {
    .brands {
      border-bottom: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .brands {
      border-bottom: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .brands {
      border-bottom: 0.26667vmin solid #DEE6FF; } }

.brands .swiper-wrapper {
  transition-timing-function: linear !important; }

.cart-product {
  border: 0.06944vw solid #DEE6FF;
  padding: 1.66667vw;
  display: flex;
  position: relative; }
  .cart-product__image {
    border: 0.06944vw solid #DEE6FF;
    width: 6.11111vw;
    height: 6.11111vw;
    margin-right: 1.66667vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    @media (min-width: 1800px) {
      .cart-product__image {
        width: 135px;
        height: 135px;
        margin-right: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__image {
        width: 11.38743vw;
        height: 11.38743vw;
        margin-right: 2.6178vw; } }
    @media (max-width: 575px) {
      .cart-product__image {
        width: 23.2vmin;
        height: 23.2vmin;
        margin-right: 5.33333vmin; } }
  .cart-product__title {
    font-weight: 500;
    font-size: 0.97222vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 0.83333vw; }
    .cart-product__title a:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .cart-product__title {
        margin-bottom: 12px;
        font-size: 18px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__title {
        margin-bottom: 1.57068vw;
        font-size: 2.09424vw; } }
    @media (max-width: 575px) {
      .cart-product__title {
        margin-bottom: 3.2vmin;
        font-size: 4.26667vmin; } }
  .cart-product__article {
    color: #97A5D0;
    font-size: 0.83333vw;
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .cart-product__article {
        font-size: 12px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__article {
        font-size: 1.57068vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .cart-product__article {
        font-size: 3.2vmin;
        margin-bottom: 4.26667vmin; } }
  .cart-product__desc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1;
    margin-right: 1.66667vw; }
    @media (min-width: 1800px) {
      .cart-product__desc {
        margin-right: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__desc {
        margin-right: 3.14136vw; } }
    @media (max-width: 575px) {
      .cart-product__desc {
        margin-right: 6.4vmin; } }
  .cart-product__counts {
    display: flex;
    align-items: center; }
    .cart-product__counts small {
      margin-left: 0.69444vw;
      font-size: 0.97222vw;
      color: #97A5D0; }
      @media (min-width: 1800px) {
        .cart-product__counts small {
          margin-left: 10px;
          font-size: 14px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .cart-product__counts small {
          margin-left: 1.3089vw;
          font-size: 1.83246vw; } }
      @media (max-width: 575px) {
        .cart-product__counts small {
          margin-left: 2.66667vmin;
          font-size: 3.73333vmin; } }
  .cart-product__price, .cart-product__sum {
    display: flex;
    font-weight: 700;
    font-size: 1.66667vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    white-space: nowrap; }
    .cart-product__price svg, .cart-product__sum svg {
      width: 1.66667vw;
      height: 1.66667vw;
      position: relative;
      top: 0.48611vw; }
      @media (min-width: 1800px) {
        .cart-product__price svg, .cart-product__sum svg {
          width: 24px;
          height: 24px;
          top: 7px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .cart-product__price svg, .cart-product__sum svg {
          width: 2.09424vw;
          height: 2.09424vw;
          top: 0.78534vw; } }
      @media (max-width: 575px) {
        .cart-product__price svg, .cart-product__sum svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          top: 1.6vmin; } }
    @media (min-width: 1800px) {
      .cart-product__price, .cart-product__sum {
        font-size: 28px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__price, .cart-product__sum {
        font-size: 2.6178vw; } }
    @media (max-width: 575px) {
      .cart-product__price, .cart-product__sum {
        font-size: 5.33333vmin; } }
  .cart-product__oldprice {
    color: #97A5D0;
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .cart-product__oldprice {
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__oldprice {
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .cart-product__oldprice {
        font-size: 3.73333vmin; } }
  .cart-product__sum, .cart-product__prices {
    flex-basis: 11.80556vw;
    flex-shrink: 0; }
    @media (min-width: 1800px) {
      .cart-product__sum, .cart-product__prices {
        flex-basis: 222px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-product__sum {
      flex-basis: 12.82723vw; } }
  @media (max-width: 575px) {
    .cart-product__sum {
      flex-basis: 36.8vmin;
      padding-top: 5.33333vmin;
      margin-top: 5.33333vmin;
      border-top: 1px solid #DEE6FF;
      flex-wrap: wrap; }
      .cart-product__sum:before {
        content: attr(data-title);
        font-size: 3.2vmin;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.24px;
        display: block;
        color: #97A5D0;
        width: 100%; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-product__prices {
      flex-basis: 21.98953vw; } }
  @media (max-width: 575px) {
    .cart-product__prices {
      flex-basis: 44.8vmin;
      padding-top: 5.33333vmin;
      margin-top: 5.33333vmin;
      border-top: 1px solid #DEE6FF; }
      .cart-product__prices:before {
        content: attr(data-title);
        font-size: 3.2vmin;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.24px;
        display: block;
        color: #97A5D0; } }
  .cart-product__del {
    position: absolute;
    top: -0.06944vw;
    right: -3.19444vw;
    width: 3.19444vw;
    height: 3.19444vw;
    color: #97A5D0;
    border: 0.06944vw solid #DEE6FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; }
    .cart-product__del svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .cart-product__del svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .cart-product__del svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .cart-product__del svg {
          width: 3.73333vmin;
          height: 3.73333vmin; } }
    .cart-product__del:hover {
      color: #EB1818;
      border-color: #EB1818; }
    @media (min-width: 1800px) {
      .cart-product__del {
        right: -46px;
        width: 46px;
        height: 46px;
        border: 1px solid #DEE6FF;
        top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-product__del {
        right: -6.02094vw;
        width: 6.02094vw;
        height: 6.02094vw;
        border: 0.13089vw solid #DEE6FF;
        top: -0.13089vw; } }
    @media (max-width: 575px) {
      .cart-product__del {
        right: 0;
        width: 7.46667vmin;
        height: 7.46667vmin;
        border: 0.26667vmin solid #DEE6FF;
        top: -0.26667vmin; } }
  @media (min-width: 1800px) {
    .cart-product {
      border: 1px solid #DEE6FF;
      padding: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-product {
      border: 0.13089vw solid #DEE6FF;
      padding: 3.14136vw; } }
  @media (max-width: 575px) {
    .cart-product {
      border: 0.26667vmin solid #DEE6FF;
      padding: 4.26667vmin;
      flex-wrap: wrap; } }

.breadcrumbs {
  background-color: #FAFBFF;
  border-bottom: 0.06944vw solid #DEE6FF;
  font-size: 0.90278vw;
  line-height: 120%; }
  .breadcrumbs__list {
    padding-left: 0;
    display: flex;
    margin: 0;
    padding: 1.25vw 0; }
    .breadcrumbs__list li {
      display: inline-flex;
      align-items: center; }
      .breadcrumbs__list li:after {
        content: "";
        display: inline-block;
        width: 0.41667vw;
        height: 0.41667vw;
        background-color: #EB7B18;
        margin-left: 1.11111vw;
        margin-right: 1.11111vw; }
        @media (min-width: 1800px) {
          .breadcrumbs__list li:after {
            width: 6px;
            height: 6px;
            margin-left: 16px;
            margin-right: 16px; } }
        @media (min-width: 576px) and (max-width: 1024px) {
          .breadcrumbs__list li:after {
            width: 0.78534vw;
            height: 0.78534vw;
            margin-left: 2.09424vw;
            margin-right: 2.09424vw; } }
        @media (max-width: 575px) {
          .breadcrumbs__list li:after {
            width: 1.6vmin;
            height: 1.6vmin;
            margin-left: 4.26667vmin;
            margin-right: 4.26667vmin; } }
      .breadcrumbs__list li:last-child:after {
        display: none; }
    .breadcrumbs__list a {
      color: #97A5D0; }
      .breadcrumbs__list a:hover {
        color: #EB7B18; }
    @media (min-width: 1800px) {
      .breadcrumbs__list {
        padding: 18px 0; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .breadcrumbs__list {
        padding: 2.35602vw 0; } }
    @media (max-width: 575px) {
      .breadcrumbs__list {
        padding: 4.8vmin 0; } }
  @media (min-width: 1800px) {
    .breadcrumbs {
      border-bottom: 1px solid #DEE6FF;
      font-size: 13px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .breadcrumbs {
      border-bottom: 0.13089vw solid #DEE6FF;
      font-size: 1.70157vw; } }
  @media (max-width: 575px) {
    .breadcrumbs {
      border-bottom: 0.26667vmin solid #DEE6FF;
      font-size: 3.46667vmin; } }

.news {
  background-color: #fff;
  padding: 2.22222vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0.06944vw solid #DEE6FF;
  position: relative; }
  .news--with-image {
    padding: 0 !important; }
    .news--with-image .news__intro {
      margin-bottom: 0 !important; }
  .news__wrapper {
    padding: 2.22222vw; }
    @media (min-width: 1800px) {
      .news__wrapper {
        padding: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news__wrapper {
        padding: 4.18848vw; } }
    @media (max-width: 575px) {
      .news__wrapper {
        padding: 8.53333vmin; } }
  .news__image {
    position: relative; }
    .news__image .news__date {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1; }
    .news__image .news__more {
      position: absolute;
      bottom: 0;
      right: 0; }
  .news__date {
    display: inline-flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.69444vw;
    height: 1.875vw;
    width: 6.94444vw;
    line-height: 120%;
    background-color: #20429E;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .news__date {
        font-size: 10px;
        height: 27px;
        width: 100px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news__date {
        font-size: 1.3089vw;
        height: 3.53403vw;
        width: 13.08901vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .news__date {
        font-size: 2.66667vmin;
        height: 7.2vmin;
        width: 26.66667vmin;
        margin-bottom: 6.4vmin; } }
  .news__title {
    font-size: 1.25vw;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 1.66667vw; }
    .news__title a:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .news__title {
        font-size: 18px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news__title {
        font-size: 2.09424vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .news__title {
        font-size: 4.26667vmin;
        margin-bottom: 6.4vmin; } }
  .news__intro {
    font-size: 0.97222vw;
    line-height: 150%;
    color: #97A5D0;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .news__intro {
        font-size: 14px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news__intro {
        font-size: 1.83246vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .news__intro {
        font-size: 3.73333vmin;
        margin-bottom: 6.4vmin; } }
  .news__more {
    width: 3.88889vw;
    height: 3.88889vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #EB7B18; }
    .news__more:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block; }
    .news__more:hover {
      background-color: #bf6311; }
      .news__more:hover svg {
        transform: rotate(45deg); }
    .news__more svg {
      color: #fff;
      width: 1.11111vw;
      height: 1.11111vw;
      transition: all .3s ease-out; }
      @media (min-width: 1800px) {
        .news__more svg {
          width: 16px;
          height: 16px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .news__more svg {
          width: 2.09424vw;
          height: 2.09424vw; } }
      @media (max-width: 575px) {
        .news__more svg {
          width: 4.26667vmin;
          height: 4.26667vmin; } }
    @media (min-width: 1800px) {
      .news__more {
        width: 64px;
        height: 64px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news__more {
        width: 7.32984vw;
        height: 7.32984vw; } }
    @media (max-width: 575px) {
      .news__more {
        width: 14.93333vmin;
        height: 14.93333vmin; } }
  @media (min-width: 1800px) {
    .news {
      padding: 32px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .news {
      padding: 4.18848vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .news {
      padding: 8.53333vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.order-product {
  background-color: #fff;
  border: 0.06944vw solid #DEE6FF;
  padding: 1.66667vw;
  display: flex; }
  .order-product__image {
    border: 0.06944vw solid #DEE6FF;
    width: 6.11111vw;
    height: 6.11111vw;
    margin-right: 1.66667vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    @media (min-width: 1800px) {
      .order-product__image {
        width: 135px;
        height: 135px;
        margin-right: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__image {
        width: 17.67016vw;
        height: 17.67016vw;
        margin-right: 3.14136vw; } }
    @media (max-width: 575px) {
      .order-product__image {
        width: 23.2vmin;
        height: 23.2vmin;
        margin-right: 6.4vmin; } }
  .order-product__title {
    font-weight: 500;
    font-size: 0.97222vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 0.83333vw; }
    .order-product__title a:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .order-product__title {
        margin-bottom: 12px;
        font-size: 18px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__title {
        margin-bottom: 1.57068vw;
        font-size: 2.09424vw; } }
    @media (max-width: 575px) {
      .order-product__title {
        margin-bottom: 3.2vmin;
        font-size: 4.26667vmin; } }
  .order-product__article {
    color: #97A5D0;
    font-size: 0.83333vw;
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .order-product__article {
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__article {
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .order-product__article {
        font-size: 3.2vmin; } }
  .order-product__description {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    margin-right: 1.66667vw; }
    @media (min-width: 1800px) {
      .order-product__description {
        margin-right: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__description {
        margin-right: 0;
        flex-basis: calc(100% - 20.81152vw);
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    @media (max-width: 575px) {
      .order-product__description {
        margin-right: 0;
        flex-basis: calc(100% - 42.4vmin);
        display: flex;
        flex-direction: column;
        justify-content: center; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-product__image, .order-product__description {
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .order-product__image, .order-product__description {
      margin-bottom: 0; } }
  .order-product__price, .order-product__sum {
    display: flex;
    font-weight: 700;
    font-size: 1.66667vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    white-space: nowrap; }
    .order-product__price span, .order-product__sum span {
      display: flex; }
    .order-product__price svg, .order-product__sum svg {
      width: 1.66667vw;
      height: 1.66667vw;
      position: relative;
      top: 0.20833vw; }
      @media (min-width: 1800px) {
        .order-product__price svg, .order-product__sum svg {
          width: 24px;
          height: 24px;
          top: 7px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order-product__price svg, .order-product__sum svg {
          width: 3.14136vw;
          height: 3.14136vw;
          top: 0.91623vw; } }
      @media (max-width: 575px) {
        .order-product__price svg, .order-product__sum svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          top: 1.86667vmin; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__price:before, .order-product__sum:before {
        content: attr(data-title);
        font-size: 1.57068vw;
        line-height: 120%;
        display: block;
        margin-bottom: 1.04712vw;
        color: #97A5D0; } }
    @media (max-width: 575px) {
      .order-product__price:before, .order-product__sum:before {
        content: attr(data-title);
        font-size: 3.2vmin;
        line-height: 120%;
        display: block;
        margin-bottom: 2.13333vmin;
        color: #97A5D0; } }
    @media (min-width: 1800px) {
      .order-product__price, .order-product__sum {
        font-size: 28px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__price, .order-product__sum {
        font-size: 3.27225vw;
        display: block; } }
    @media (max-width: 575px) {
      .order-product__price, .order-product__sum {
        font-size: 5.33333vmin;
        display: block;
        padding-top: 5.33333vmin;
        margin-top: 5.33333vmin;
        border-top: 1px solid #DEE6FF; } }
  .order-product__oldprice {
    color: #97A5D0;
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .order-product__oldprice {
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__oldprice {
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .order-product__oldprice {
        font-size: 3.73333vmin; } }
  .order-product__sum, .order-product__prices {
    flex-basis: 13.88889vw;
    flex-shrink: 0; }
    @media (min-width: 1800px) {
      .order-product__sum, .order-product__prices {
        flex-basis: 222px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-product__sum, .order-product__prices {
        flex-basis: 29.05759vw; } }
    @media (max-width: 575px) {
      .order-product__sum, .order-product__prices {
        flex-basis: 50%; } }
  @media (min-width: 1800px) {
    .order-product {
      border: 1px solid #DEE6FF;
      padding: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-product {
      border: 0.13089vw solid #DEE6FF;
      padding: 3.14136vw;
      flex-wrap: wrap; } }
  @media (max-width: 575px) {
    .order-product {
      border: 0.26667vmin solid #DEE6FF;
      padding: 4.26667vmin;
      flex-wrap: wrap; } }

.pagination {
  display: flex; }
  .pagination__item {
    margin-left: -0.06944vw;
    color: #97A5D0;
    font-weight: 500; }
    .pagination__item a, .pagination__item span {
      font-size: 1.11111vw;
      width: 3.88889vw;
      height: 3.88889vw;
      border: 0.06944vw solid #DEE6FF;
      display: inline-flex;
      align-items: center;
      justify-content: center; }
      @media (min-width: 1800px) {
        .pagination__item a, .pagination__item span {
          font-size: 16px;
          width: 64px;
          height: 64px;
          border: 1px solid #DEE6FF; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .pagination__item a, .pagination__item span {
          font-size: 2.09424vw;
          width: 7.32984vw;
          height: 7.32984vw;
          border: 0.13089vw solid #DEE6FF; } }
      @media (max-width: 575px) {
        .pagination__item a, .pagination__item span {
          font-size: 4.26667vmin;
          width: 14.93333vmin;
          height: 14.93333vmin;
          border: 0.26667vmin solid #DEE6FF; } }
    .pagination__item--active {
      color: #fff;
      background-color: #20429E; }
    .pagination__item:hover:not(.pagination__item--active) {
      color: #20429E; }
    .pagination__item svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .pagination__item svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .pagination__item svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .pagination__item svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
    @media (min-width: 1800px) {
      .pagination__item {
        margin-left: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .pagination__item {
        margin-left: -0.13089vw; } }
    @media (max-width: 575px) {
      .pagination__item {
        margin-left: -0.26667vmin;
        margin-top: -0.26667vmin; } }
  .pagination__dots {
    margin-left: 1.45833vw;
    margin-right: 1.45833vw;
    height: 3.88889vw;
    display: inline-flex;
    align-items: center; }
    @media (min-width: 1800px) {
      .pagination__dots {
        margin-left: 21px;
        margin-right: 21px;
        height: 56px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .pagination__dots {
        margin-left: 2.74869vw;
        margin-right: 2.74869vw;
        height: 7.32984vw; } }
    @media (max-width: 575px) {
      .pagination__dots {
        margin-left: 5.6vmin;
        margin-right: 5.6vmin;
        height: 14.93333vmin; } }
  @media (max-width: 575px) {
    .pagination {
      flex-wrap: wrap; } }

.chars {
  font-size: 1.11111vw;
  color: #97A5D0; }
  .chars__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.11111vw;
    position: relative;
    z-index: 1; }
    .chars__item:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0.55556vw;
      z-index: -1;
      border-bottom: 0.06944vw dashed #97A5D0; }
      @media (min-width: 1800px) {
        .chars__item:after {
          top: 8px;
          border-bottom: 1px dashed #97A5D0; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .chars__item:after {
          top: 1.04712vw;
          border-bottom: 0.13089vw dashed #97A5D0; } }
      @media (max-width: 575px) {
        .chars__item:after {
          top: 2.13333vmin;
          border-bottom: 0.26667vmin dashed #97A5D0; } }
    .chars__item span {
      background-color: #fff;
      display: inline-flex; }
    @media (min-width: 1800px) {
      .chars__item {
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .chars__item {
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .chars__item {
        margin-bottom: 4.26667vmin; } }
  .chars__name span {
    padding-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .chars__name span {
        padding-right: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .chars__name span {
        padding-right: 1.57068vw; } }
    @media (max-width: 575px) {
      .chars__name span {
        padding-right: 3.2vmin; } }
  .chars__value span {
    padding-left: 0.83333vw;
    display: block; }
    @media (min-width: 1800px) {
      .chars__value span {
        padding-left: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .chars__value span {
        padding-left: 1.57068vw; } }
    @media (max-width: 575px) {
      .chars__value span {
        padding-left: 3.2vmin; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .chars__value {
      min-width: 24.86911vw; } }
  @media (max-width: 575px) {
    .chars__value {
      min-width: 50.66667vmin; } }
  @media (min-width: 1800px) {
    .chars {
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .chars {
      font-size: 2.09424vw; } }
  @media (max-width: 575px) {
    .chars {
      font-size: 4.26667vmin; } }

.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0.06944vw solid #DEE6FF;
  position: relative;
  height: 100%;
  transition: all .3s ease-out;
  background-color: #fff; }
  .product__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 575px) {
      .product__image {
        min-height: 37.86667vmin;
        margin-bottom: 1.6vmin; } }
  .product__labels {
    position: absolute;
    top: -0.06944vw;
    left: -0.06944vw; }
    @media (min-width: 1800px) {
      .product__labels {
        top: -1px;
        left: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__labels {
        top: -0.13089vw;
        left: -0.13089vw; } }
    @media (max-width: 575px) {
      .product__labels {
        top: -0.26667vmin;
        left: -0.26667vmin; } }
  .product__nav {
    position: absolute;
    top: 1.11111vw;
    right: 1.11111vw;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-out; }
    @media (min-width: 1800px) {
      .product__nav {
        top: 16px;
        right: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__nav {
        top: 2.09424vw;
        right: 2.09424vw;
        visibility: visible;
        opacity: 1; } }
    @media (max-width: 575px) {
      .product__nav {
        top: 1.86667vmin;
        right: 0.53333vmin;
        visibility: visible;
        opacity: 1; } }
  .product__compare, .product__fav {
    border: none;
    background-color: transparent;
    color: #97A5D0; }
    .product__compare.is-active, .product__fav.is-active {
      color: #EB7B18; }
    .product__compare:hover, .product__fav:hover {
      color: #EB7B18; }
    .product__compare svg, .product__fav svg {
      width: 2.08333vw;
      height: 2.08333vw; }
      @media (min-width: 1800px) {
        .product__compare svg, .product__fav svg {
          width: 30px;
          height: 30px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__compare svg, .product__fav svg {
          width: 3.9267vw;
          height: 3.9267vw; } }
      @media (max-width: 575px) {
        .product__compare svg, .product__fav svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
    @media (max-width: 575px) {
      .product__compare, .product__fav {
        padding-left: 0; } }
  .product__content {
    padding: 0 2.22222vw;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .product__content {
        padding: 0 32px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__content {
        padding: 0 3.14136vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .product__content {
        padding: 0 3.2vmin;
        margin-bottom: 6.4vmin; } }
  .product__pnl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #97A5D0;
    font-size: 0.69444vw;
    line-height: 120%;
    margin-bottom: 0.83333vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .product__pnl {
        font-size: 10px;
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__pnl {
        font-size: 1.57068vw;
        margin-bottom: 1.04712vw; } }
    @media (max-width: 575px) {
      .product__pnl {
        font-size: 3.2vmin;
        margin-bottom: 2.13333vmin; } }
  .product__article {
    text-transform: uppercase; }
    @media (max-width: 575px) {
      .product__article {
        font-weight: 500;
        font-size: 2.66667vmin;
        line-height: 1.2; } }
  @media (max-width: 575px) {
    .product__status--desktop {
      display: none !important; } }
  .product__status--mobile {
    display: none; }
    @media (max-width: 575px) {
      .product__status--mobile {
        display: block; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .product__status {
      border: 1px solid #DEE6FF;
      background-color: #FAFBFF;
      padding: 1.04712vw 1.43979vw;
      display: inline-flex;
      align-items: center;
      justify-content: center; } }
  @media (max-width: 575px) {
    .product__status {
      border: none;
      border-bottom: 1px solid #DEE6FF;
      background-color: #FAFBFF;
      padding: 1.06667vmin 2.93333vmin;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 2.66667vmin;
      color: #97A5D0;
      width: 100%; } }
  .product__title {
    font-size: 1.11111vw;
    line-height: 120%;
    font-weight: 500;
    margin-bottom: 1.66667vw; }
    .product__title a:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .product__title {
        font-size: 18px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__title {
        font-size: 2.6178vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .product__title {
        font-size: 3.2vmin;
        margin-bottom: 6.4vmin; } }
  .product__chars {
    font-size: 0.83333vw; }
    .product__chars .chars__item {
      margin-bottom: 0.625vw; }
      @media (min-width: 1800px) {
        .product__chars .chars__item {
          margin-bottom: 9px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__chars .chars__item {
          margin-bottom: 1.17801vw; } }
      @media (max-width: 575px) {
        .product__chars .chars__item {
          margin-bottom: 2.4vmin; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__chars .chars__value {
        min-width: auto !important; } }
    @media (min-width: 1800px) {
      .product__chars {
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__chars {
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .product__chars {
        font-size: 3.2vmin;
        display: none; } }
  .product__ftr {
    padding: 2.22222vw;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media (min-width: 1800px) {
      .product__ftr {
        padding: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__ftr {
        padding: 1.57068vw 3.14136vw;
        background-color: #FAFBFF;
        border-top: 1px solid #DEE6FF; } }
    @media (max-width: 575px) {
      .product__ftr {
        padding: 0;
        background-color: #FAFBFF;
        border-top: 1px solid #DEE6FF;
        flex-wrap: wrap; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .product__prices {
      display: flex;
      flex-direction: column; } }
  @media (max-width: 575px) {
    .product__prices {
      display: flex;
      flex-direction: column;
      padding-left: 3.2vmin; } }
  .product__price {
    font-weight: 700;
    font-size: 1.52778vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: flex-end;
    white-space: nowrap; }
    .product__price svg {
      width: 1.66667vw;
      height: 1.66667vw;
      position: relative;
      top: -0.20833vw; }
      @media (min-width: 1800px) {
        .product__price svg {
          width: 24px;
          height: 24px;
          top: -3px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__price svg {
          width: 3.14136vw;
          height: 3.14136vw;
          top: -0.39267vw; } }
      @media (max-width: 575px) {
        .product__price svg {
          width: 3.73333vmin;
          height: 3.73333vmin;
          top: -0.8vmin; } }
    @media (min-width: 1800px) {
      .product__price {
        font-size: 28px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__price {
        font-size: 3.14136vw; } }
    @media (max-width: 575px) {
      .product__price {
        font-size: 4vmin; } }
  .product__oldprice {
    color: #97A5D0;
    font-weight: 500;
    font-size: 0.97222vw;
    white-space: nowrap; }
    @media (min-width: 1800px) {
      .product__oldprice {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__oldprice {
        font-size: 2.09424vw; } }
    @media (max-width: 575px) {
      .product__oldprice {
        font-size: 3.73333vmin; } }
  .product__addcart {
    height: 3.88889vw;
    width: 3.88889vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #EB7B18;
    color: #fff;
    border: none;
    flex-shrink: 0; }
    .product__addcart svg {
      width: 2.22222vw;
      height: 2.22222vw; }
      @media (min-width: 1800px) {
        .product__addcart svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product__addcart svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .product__addcart svg {
          width: 8.53333vmin;
          height: 8.53333vmin; } }
    .product__addcart:hover {
      background-color: #bf6311; }
    @media (min-width: 1800px) {
      .product__addcart {
        height: 64px;
        width: 64px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product__addcart {
        height: 8.37696vw;
        width: 8.37696vw; } }
    @media (max-width: 575px) {
      .product__addcart {
        height: 14.93333vmin;
        width: 14.93333vmin; } }
  .product:hover {
    border: 1px solid #20429E;
    z-index: 2; }
    .product:hover .product__nav {
      visibility: visible;
      opacity: 1; }
  @media (min-width: 1800px) {
    .product {
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .product {
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .product {
      border: 0.26667vmin solid #DEE6FF; } }

.labels__item {
  font-weight: 700;
  font-size: 0.69444vw;
  line-height: 120%;
  color: #fff;
  height: 1.875vw;
  min-width: 6.94444vw;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center; }
  .labels__item--orange {
    background-color: #EB7B18; }
  .labels__item--blue {
    background-color: #20429E; }
  .labels__item--indigo {
    background-color: #13367C; }
  @media (min-width: 1800px) {
    .labels__item {
      font-size: 10px;
      height: 27px;
      min-width: 100px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .labels__item {
      font-size: 1.57068vw;
      height: 4.45026vw;
      min-width: 16.49215vw; } }
  @media (max-width: 575px) {
    .labels__item {
      font-size: 2.13333vmin;
      height: 5.86667vmin;
      min-width: 19.2vmin;
      padding: 0 1.6vmin; } }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.04167vw;
  line-height: 100%;
  font-weight: 500;
  height: 3.88889vw;
  padding-left: 2.22222vw;
  padding-right: 2.22222vw; }
  @media (min-width: 1800px) {
    .btn {
      font-size: 16px;
      height: 70px;
      padding-left: 32px;
      padding-right: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .btn {
      font-size: 2.09424vw;
      height: 9.1623vw;
      padding-left: 4.18848vw;
      padding-right: 4.18848vw; } }
  @media (max-width: 575px) {
    .btn {
      font-size: 3.73333vmin;
      height: 14.93333vmin;
      padding-left: 6.4vmin;
      padding-right: 6.4vmin; } }
  .btn--cat {
    height: 4.86111vw;
    width: 15.27778vw;
    white-space: nowrap;
    padding-left: 1.38889vw;
    padding-right: 1.38889vw;
    color: #fff;
    background-color: #13367C;
    font-size: 1.04167vw;
    flex-shrink: 0;
    letter-spacing: -0.01em;
    border-left: 0.06944vw solid #2751C2;
    border-right: 0.06944vw solid #2751C2;
    justify-content: flex-start; }
    .btn--cat svg {
      width: 1.80556vw;
      height: 1.80556vw;
      color: #EB7B18;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .btn--cat svg {
          width: 26px;
          height: 26px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .btn--cat svg {
          width: 5.2356vw;
          height: 5.2356vw;
          margin-right: 1.3089vw; } }
      @media (max-width: 575px) {
        .btn--cat svg {
          width: 6.4vmin;
          height: 6.4vmin;
          margin-right: 2.66667vmin; } }
    .btn--cat:hover {
      background-color: #0c2350; }
    .btn--cat .if-open {
      display: none; }
    .btn--cat.is-active .if-open {
      display: block; }
    .btn--cat.is-active .if-close {
      display: none; }
    @media (min-width: 1800px) {
      .btn--cat {
        height: 80px;
        width: 246px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 15px;
        border-left: 1px solid #2751C2;
        border-right: 1px solid #2751C2; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn--cat {
        height: 10.4712vw;
        width: 32.19895vw;
        padding-left: 1.3089vw;
        padding-right: 2.6178vw;
        font-size: 2.87958vw;
        border-left: none;
        border-right: none;
        background: transparent !important; } }
    @media (max-width: 575px) {
      .btn--cat {
        height: 17.06667vmin;
        width: 100%;
        padding-left: 2.66667vmin;
        padding-right: 5.33333vmin;
        font-size: 4.26667vmin;
        border-left: none;
        border-right: none;
        background: transparent !important; } }
  .btn--filter {
    background-color: #13367C !important; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn--filter {
        font-size: 1.83246vw;
        width: 28.14136vw;
        height: 8.76963vw;
        margin-right: 2.6178vw;
        padding-left: 2.09424vw; }
        .btn--filter svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
    @media (max-width: 575px) {
      .btn--filter {
        font-size: 3.73333vmin;
        width: 100%;
        height: 17.86667vmin;
        margin-right: 0;
        padding-left: 4.26667vmin;
        margin-bottom: 6.4vmin;
        text-align: center;
        justify-content: center; }
        .btn--filter svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
  .btn--gray {
    color: #13367C;
    border: 0.06944vw solid #DEE6FF; }
    .btn--gray:hover {
      border: 0.06944vw solid #20429E; }
      @media (min-width: 1800px) {
        .btn--gray:hover {
          border: 1px solid #20429E; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .btn--gray:hover {
          border: 0.13089vw solid #20429E; } }
      @media (max-width: 575px) {
        .btn--gray:hover {
          border: 0.26667vmin solid #20429E; } }
    @media (min-width: 1800px) {
      .btn--gray {
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn--gray {
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .btn--gray {
        border: 0.26667vmin solid #DEE6FF; } }
  .btn--blue {
    background-color: #20429E;
    color: #fff; }
    .btn--blue:hover {
      background-color: #173074;
      color: #fff; }
  .btn--orange {
    background-color: #EB7B18;
    color: #fff; }
    .btn--orange:hover {
      color: #fff;
      background-color: #bf6311; }
  .btn--full {
    max-width: 100%;
    width: 100%;
    min-width: 100%; }
  .btn--rek svg {
    width: 1.80556vw;
    height: 1.80556vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .btn--rek svg {
        width: 26px;
        height: 26px;
        margin-right: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn--rek svg {
        width: 3.40314vw;
        height: 3.40314vw;
        margin-right: 1.3089vw; } }
    @media (max-width: 575px) {
      .btn--rek svg {
        width: 6.93333vmin;
        height: 6.93333vmin;
        margin-right: 2.66667vmin; } }

.btn-slider {
  width: 3.88889vw;
  height: 3.88889vw;
  color: #EB7B18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.06944vw solid #DEE6FF;
  position: relative;
  background-color: transparent; }
  .btn-slider svg {
    width: 2.22222vw;
    height: 2.22222vw; }
    @media (min-width: 1800px) {
      .btn-slider svg {
        width: 32px;
        height: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn-slider svg {
        width: 4.18848vw;
        height: 4.18848vw; } }
    @media (max-width: 575px) {
      .btn-slider svg {
        width: 8.53333vmin;
        height: 8.53333vmin; } }
  .btn-slider:hover {
    border: 0.06944vw solid #20429E;
    z-index: 2; }
    @media (min-width: 1800px) {
      .btn-slider:hover {
        border: 1px solid #20429E; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .btn-slider:hover {
        border: 0.13089vw solid #20429E; } }
    @media (max-width: 575px) {
      .btn-slider:hover {
        border: 0.26667vmin solid #20429E; } }
  @media (min-width: 1800px) {
    .btn-slider {
      width: 64px;
      height: 64px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .btn-slider {
      width: 7.32984vw;
      height: 7.32984vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .btn-slider {
      width: 14.93333vmin;
      height: 14.93333vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.title-h1 {
  font-size: 2.91667vw;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 72.08333vw;
  padding-top: 3.88889vw;
  padding-bottom: 2.77778vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .title-h1 {
      font-size: 48px;
      max-width: 1038px;
      padding-top: 64px;
      padding-bottom: 48px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .title-h1 {
      font-size: 5.49738vw;
      max-width: 100%;
      padding-top: 6.28272vw;
      padding-bottom: 4.18848vw; } }
  @media (max-width: 575px) {
    .title-h1 {
      font-size: 6.4vmin;
      max-width: 100%;
      padding-top: 8.53333vmin;
      padding-bottom: 5.33333vmin; } }

.title-h2 {
  font-size: 2.91667vw;
  line-height: 110%;
  font-weight: 500;
  position: relative;
  margin-bottom: 1.38889vw;
  margin-top: 0;
  padding-bottom: 1.38889vw; }
  .title-h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6.25vw;
    border-radius: 0.83333vw;
    height: 0.34722vw;
    background-color: #20429E; }
    @media (min-width: 1800px) {
      .title-h2:after {
        width: 120px;
        border-radius: 12px;
        height: 8px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .title-h2:after {
        width: 5.89005vw;
        border-radius: 1.57068vw;
        height: 0.39267vw; } }
    @media (max-width: 575px) {
      .title-h2:after {
        width: 12vmin;
        border-radius: 3.2vmin;
        height: 0.8vmin; } }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 48px;
      margin-bottom: 24px;
      padding-bottom: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .title-h2 {
      font-size: 4.18848vw;
      margin-bottom: 3.14136vw;
      padding-bottom: 1.96335vw; } }
  @media (max-width: 575px) {
    .title-h2 {
      font-size: 8.53333vmin;
      margin-bottom: 6.4vmin;
      padding-bottom: 4vmin; } }

.subtitle__h2 {
  font-size: 0.97222vw;
  line-height: 150%;
  color: #50525D; }
  @media (min-width: 1800px) {
    .subtitle__h2 {
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .subtitle__h2 {
      font-size: 1.83246vw;
      margin-bottom: 6.28272vw;
      max-width: 42.67016vw; } }
  @media (max-width: 575px) {
    .subtitle__h2 {
      font-size: 3.73333vmin;
      margin-bottom: 8.53333vmin;
      max-width: 100%; } }

.typography {
  font-size: 1.11111vw;
  line-height: 150%;
  color: #50525D; }
  .typography p {
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .typography p {
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography p {
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .typography p {
        margin-bottom: 4.26667vmin; } }
  .typography h2 {
    font-weight: 700;
    font-size: 2.22222vw;
    line-height: 140%;
    margin-bottom: 1.66667vw;
    color: #13367C; }
    @media (min-width: 1800px) {
      .typography h2 {
        font-size: 32px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography h2 {
        font-size: 4.18848vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .typography h2 {
        font-size: 8.53333vmin;
        margin-bottom: 6.4vmin; } }
  .typography h3 {
    font-weight: 700;
    font-size: 1.66667vw;
    line-height: 140%;
    margin-bottom: 1.66667vw;
    color: #13367C; }
    @media (min-width: 1800px) {
      .typography h3 {
        font-size: 24px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography h3 {
        font-size: 3.14136vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .typography h3 {
        font-size: 6.4vmin;
        margin-bottom: 6.4vmin; } }
  .typography h4 {
    font-weight: 700;
    font-size: 1.38889vw;
    line-height: 140%;
    margin-bottom: 1.66667vw;
    color: #0C111F; }
    @media (min-width: 1800px) {
      .typography h4 {
        font-size: 20px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography h4 {
        font-size: 2.6178vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .typography h4 {
        font-size: 5.33333vmin;
        margin-bottom: 6.4vmin; } }
  .typography ul li {
    position: relative;
    padding-left: 1.80556vw;
    margin-bottom: 0.55556vw; }
    .typography ul li:before {
      content: "";
      width: 0.69444vw;
      height: 0.69444vw;
      background-color: #EB7B18;
      position: absolute;
      left: 0;
      top: 0.55556vw; }
      @media (min-width: 1800px) {
        .typography ul li:before {
          width: 10px;
          height: 10px;
          top: 8px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .typography ul li:before {
          width: 1.3089vw;
          height: 1.3089vw;
          top: 1.04712vw; } }
      @media (max-width: 575px) {
        .typography ul li:before {
          width: 2.66667vmin;
          height: 2.66667vmin;
          top: 2.13333vmin; } }
    @media (min-width: 1800px) {
      .typography ul li {
        padding-left: 26px;
        margin-bottom: 8px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography ul li {
        padding-left: 3.40314vw;
        margin-bottom: 1.04712vw; } }
    @media (max-width: 575px) {
      .typography ul li {
        padding-left: 6.93333vmin;
        margin-bottom: 2.13333vmin; } }
  .typography ol {
    padding-left: 0;
    counter-reset: myCounter; }
    .typography ol li {
      position: relative;
      padding-left: 1.80556vw;
      margin-bottom: 0.55556vw; }
      .typography ol li:before {
        counter-increment: myCounter;
        content: counter(myCounter) ".";
        position: absolute;
        left: 0;
        top: 0;
        color: #EB7B18;
        font-weight: 900; }
      @media (min-width: 1800px) {
        .typography ol li {
          padding-left: 26px;
          margin-bottom: 8px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .typography ol li {
          padding-left: 3.40314vw;
          margin-bottom: 1.04712vw; } }
      @media (max-width: 575px) {
        .typography ol li {
          padding-left: 6.93333vmin;
          margin-bottom: 2.13333vmin; } }
  .typography blockquote {
    background-color: #fff;
    font-style: italic;
    font-size: 0.97222vw;
    line-height: 160%;
    padding: 1.66667vw 2.22222vw;
    margin-left: 0;
    border-left: 0.41667vw solid #13367C; }
    @media (min-width: 1800px) {
      .typography blockquote {
        font-size: 14px;
        padding: 24px 32px;
        border-left: 6px solid #13367C; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .typography blockquote {
        font-size: 1.83246vw;
        padding: 3.14136vw 4.18848vw;
        border-left: 0.78534vw solid #13367C; } }
    @media (max-width: 575px) {
      .typography blockquote {
        font-size: 3.73333vmin;
        padding: 6.4vmin 8.53333vmin;
        border-left: 1.6vmin solid #13367C;
        margin-right: 0; } }
  .typography b, .typography strong {
    font-weight: 700; }
  .typography a {
    color: #EB7B18; }
    .typography a:hover {
      opacity: 0.7; }
  @media (min-width: 1800px) {
    .typography {
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .typography {
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .typography {
      font-size: 3.73333vmin; } }

.image {
  border: 0.06944vw solid #DEE6FF;
  display: inline-block;
  margin-bottom: 1.66667vw; }
  @media (min-width: 1800px) {
    .image {
      border: 1px solid #DEE6FF;
      margin-bottom: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .image {
      border: 0.13089vw solid #DEE6FF;
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .image {
      border: 0.26667vmin solid #DEE6FF;
      margin-bottom: 6.4vmin; } }

.category {
  border: 0.06944vw solid #DEE6FF;
  background-color: #fff;
  height: 17.22222vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.66667vw;
  position: relative;
  z-index: 1;
  transition: all .3s ease-out;
  background-size: 13.88889vw;
  background-repeat: no-repeat;
  background-position: right 2.22222vw bottom 2.22222vw; }
  .category__title {
    font-size: 1.38889vw;
    font-weight: 500;
    line-height: 110%;
    max-width: 70%;
    position: relative;
    padding-bottom: 1.04167vw; }
    .category__title:after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 3.47222vw;
      height: 0.20833vw;
      border-radius: 0.83333vw;
      background-color: #20429E;
      bottom: 0;
      left: 0; }
      @media (min-width: 1800px) {
        .category__title:after {
          width: 50px;
          height: 3px;
          border-radius: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .category__title:after {
          width: 6.5445vw;
          height: 0.39267vw;
          border-radius: 1.57068vw; } }
      @media (max-width: 575px) {
        .category__title:after {
          width: 13.33333vmin;
          height: 0.8vmin;
          border-radius: 3.2vmin; } }
    @media (min-width: 1800px) {
      .category__title {
        font-size: 20px;
        padding-bottom: 15px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category__title {
        font-size: 2.6178vw;
        padding-bottom: 1.96335vw; } }
    @media (max-width: 575px) {
      .category__title {
        font-size: 5.33333vmin;
        padding-bottom: 4vmin; } }
  .category__btn {
    width: 3.61111vw;
    height: 3.61111vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #EB7B18;
    color: #fff; }
    .category__btn svg {
      width: 1.11111vw;
      height: 1.11111vw;
      transition: all .3s ease-out; }
      @media (min-width: 1800px) {
        .category__btn svg {
          width: 16px;
          height: 16px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .category__btn svg {
          width: 2.09424vw;
          height: 2.09424vw; } }
      @media (max-width: 575px) {
        .category__btn svg {
          width: 4.26667vmin;
          height: 4.26667vmin; } }
    .category__btn:after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block; }
    .category__btn:hover {
      background-color: #bf6311; }
      .category__btn:hover svg {
        transform: rotate(45deg); }
    @media (min-width: 1800px) {
      .category__btn {
        width: 52px;
        height: 52px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category__btn {
        width: 6.80628vw;
        height: 6.80628vw; } }
    @media (max-width: 575px) {
      .category__btn {
        width: 13.86667vmin;
        height: 13.86667vmin; } }
  .category:hover {
    z-index: 2;
    border: 0.06944vw solid #20429E; }
    @media (min-width: 1800px) {
      .category:hover {
        border: 1px solid #20429E; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category:hover {
        border: 0.13089vw solid #20429E; } }
    @media (max-width: 575px) {
      .category:hover {
        border: 0.26667vmin solid #20429E; } }
  @media (min-width: 1800px) {
    .category {
      border: 1px solid #DEE6FF;
      height: 300px;
      padding: 32px;
      background-position: right 32px bottom 32px;
      background-size: 200px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .category {
      border: 0.13089vw solid #DEE6FF;
      height: 32.46073vw;
      padding: 4.18848vw;
      background-position: right 4.18848vw bottom 4.18848vw;
      background-size: 18.32461vw; } }
  @media (max-width: 575px) {
    .category {
      border: 0.26667vmin solid #DEE6FF;
      height: 66.13333vmin;
      padding: 8.53333vmin;
      padding-bottom: 5.33333vmin;
      background-position: right 8.53333vmin bottom 8.53333vmin;
      background-size: 37.33333vmin; } }

.number {
  display: inline-flex; }
  .number__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5vw;
    height: 2.5vw;
    border: 0.06944vw solid #DEE6FF;
    background-color: #fff;
    color: #97A5D0;
    cursor: pointer;
    transition: all .3s ease-out; }
    .number__btn:hover {
      border: 0.06944vw solid #20429E; }
      @media (min-width: 1800px) {
        .number__btn:hover {
          border: 1px solid #20429E; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .number__btn:hover {
          border: 0.13089vw solid #20429E; } }
      @media (max-width: 575px) {
        .number__btn:hover {
          border: 0.26667vmin solid #20429E; } }
    .number__btn svg {
      width: 0.83333vw;
      height: 0.83333vw; }
      @media (min-width: 1800px) {
        .number__btn svg {
          width: 12px;
          height: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .number__btn svg {
          width: 1.57068vw;
          height: 1.57068vw; } }
      @media (max-width: 575px) {
        .number__btn svg {
          width: 3.2vmin;
          height: 3.2vmin; } }
    @media (min-width: 1800px) {
      .number__btn {
        width: 36px;
        height: 36px;
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .number__btn {
        width: 4.71204vw;
        height: 4.71204vw;
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .number__btn {
        width: 9.6vmin;
        height: 9.6vmin;
        border: 0.26667vmin solid #DEE6FF; } }
  .number__input {
    text-align: center;
    font-size: 1.04167vw;
    width: 2.5vw;
    border: none;
    border-top: 0.06944vw solid #DEE6FF;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .number__input {
        font-size: 15px;
        width: 36px;
        border-top: 1px solid #DEE6FF;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .number__input {
        font-size: 1.96335vw;
        width: 4.71204vw;
        border-top: 0.13089vw solid #DEE6FF;
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .number__input {
        font-size: 4vmin;
        width: 9.6vmin;
        border-top: 0.26667vmin solid #DEE6FF;
        border-bottom: 0.26667vmin solid #DEE6FF; } }

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

.checkbox__text {
  position: relative;
  padding: 0 0 0 2.36111vw;
  min-height: 1.52778vw;
  cursor: pointer;
  font-size: 0.97222vw;
  font-weight: 500;
  color: #97A5D0;
  padding-top: 0.27778vw; }
  .checkbox__text a {
    color: #EB7B18; }
  @media (min-width: 1800px) {
    .checkbox__text {
      padding: 0 0 0 34px;
      min-height: 22px;
      font-size: 14px;
      padding-top: 4px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .checkbox__text {
      padding: 0 0 0 4.45026vw;
      min-height: 2.87958vw;
      font-size: 1.83246vw;
      padding-top: 0.52356vw; } }
  @media (max-width: 575px) {
    .checkbox__text {
      padding: 0 0 0 9.06667vmin;
      min-height: 5.86667vmin;
      font-size: 3.73333vmin;
      padding-top: 1.06667vmin; } }

.checkbox__text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.52778vw;
  height: 1.52778vw;
  background: #fff;
  border: 0.06944vw solid #DEE6FF;
  transition: .2s; }
  @media (min-width: 1800px) {
    .checkbox__text:before {
      width: 22px;
      height: 22px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .checkbox__text:before {
      width: 2.87958vw;
      height: 2.87958vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .checkbox__text:before {
      width: 5.86667vmin;
      height: 5.86667vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.checkbox__text:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.52778vw;
  height: 1.52778vw;
  background: #20429E url(../images/sprites/svg/check-white.svg) no-repeat center center;
  background-size: 1.11111vw;
  transition: .2s;
  opacity: 0; }
  @media (min-width: 1800px) {
    .checkbox__text:after {
      width: 22px;
      height: 22px;
      background-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .checkbox__text:after {
      width: 2.87958vw;
      height: 2.87958vw;
      background-size: 2.09424vw; } }
  @media (max-width: 575px) {
    .checkbox__text:after {
      width: 5.86667vmin;
      height: 5.86667vmin;
      background-size: 4.26667vmin; } }

.checkbox input:checked + .checkbox__text:after {
  opacity: 1; }

.checkbox input:checked + .checkbox__text {
  color: #13367C; }

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

.radio__text {
  position: relative;
  padding: 0 0 0 2.36111vw;
  min-height: 1.52778vw;
  cursor: pointer;
  font-size: 0.97222vw;
  font-weight: 500;
  color: #97A5D0;
  padding-top: 0.27778vw; }
  @media (min-width: 1800px) {
    .radio__text {
      padding: 0 0 0 34px;
      min-height: 22px;
      font-size: 14px;
      padding-top: 4px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .radio__text {
      padding: 0 0 0 4.45026vw;
      min-height: 2.87958vw;
      font-size: 1.83246vw;
      padding-top: 0.52356vw; } }
  @media (max-width: 575px) {
    .radio__text {
      padding: 0 0 0 9.06667vmin;
      min-height: 5.86667vmin;
      font-size: 3.73333vmin;
      padding-top: 1.06667vmin; } }

.radio__text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.52778vw;
  height: 1.52778vw;
  border: 0.06944vw solid #DEE6FF;
  border-radius: 50%;
  background: #FFF; }
  @media (min-width: 1800px) {
    .radio__text:before {
      width: 22px;
      height: 22px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .radio__text:before {
      width: 2.87958vw;
      height: 2.87958vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .radio__text:before {
      width: 5.86667vmin;
      height: 5.86667vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.radio__text:after {
  content: '';
  position: absolute;
  top: 0.41667vw;
  left: 0.41667vw;
  width: 0.69444vw;
  height: 0.69444vw;
  border-radius: 50%;
  background-color: #20429E;
  opacity: 0;
  transition: .2s; }
  @media (min-width: 1800px) {
    .radio__text:after {
      top: 6px;
      left: 6px;
      width: 10px;
      height: 10px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .radio__text:after {
      top: 0.78534vw;
      left: 0.78534vw;
      width: 1.3089vw;
      height: 1.3089vw; } }
  @media (max-width: 575px) {
    .radio__text:after {
      top: 1.6vmin;
      left: 1.6vmin;
      width: 2.66667vmin;
      height: 2.66667vmin; } }

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

.radio input:checked + .radio__text:before {
  border: 0.06944vw solid #20429E; }
  @media (min-width: 1800px) {
    .radio input:checked + .radio__text:before {
      border: 1px solid #20429E; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .radio input:checked + .radio__text:before {
      border: 0.13089vw solid #20429E; } }
  @media (max-width: 575px) {
    .radio input:checked + .radio__text:before {
      border: 0.26667vmin solid #20429E; } }

.radio input:checked + .radio__text {
  color: #13367C; }

.form ::-moz-placeholder {
  color: #97A5D0; }

.form :-ms-input-placeholder {
  color: #97A5D0; }

.form ::placeholder {
  color: #97A5D0; }

.form__fieldset {
  margin-bottom: 1.11111vw; }
  .form__fieldset .checkbox__text {
    font-weight: 400;
    padding-top: 0; }
  .form__fieldset:last-child {
    margin-bottom: 0 !important; }
  @media (min-width: 1800px) {
    .form__fieldset {
      margin-bottom: 20px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__fieldset {
      margin-bottom: 2.6178vw; } }
  @media (max-width: 575px) {
    .form__fieldset {
      margin-bottom: 5.33333vmin; } }

.form__input, .form__textarea {
  width: 100%;
  border: 0.06944vw solid #DEE6FF;
  height: 3.88889vw;
  text-indent: 1.04167vw;
  font-size: 1.11111vw;
  transition: all .3s ease-out; }
  .form__input:disabled, .form__textarea:disabled {
    background-color: #E6E9F7;
    color: #97A5D0; }
  .form__input:focus, .form__textarea:focus {
    border: 0.06944vw solid #20429E; }
    @media (min-width: 1800px) {
      .form__input:focus, .form__textarea:focus {
        border: 1px solid #20429E; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .form__input:focus, .form__textarea:focus {
        border: 0.13089vw solid #20429E; } }
    @media (max-width: 575px) {
      .form__input:focus, .form__textarea:focus {
        border: 0.26667vmin solid #20429E; } }
  @media (min-width: 1800px) {
    .form__input, .form__textarea {
      border: 1px solid #DEE6FF;
      height: 70px;
      text-indent: 24px;
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__input, .form__textarea {
      border: 0.13089vw solid #DEE6FF;
      height: 8.37696vw;
      text-indent: 2.09424vw;
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .form__input, .form__textarea {
      border: 0.26667vmin solid #DEE6FF;
      height: 14.93333vmin;
      text-indent: 4vmin;
      font-size: 3.73333vmin; } }

.form__input:required {
  background: #fff url(../images/required.svg) no-repeat right 0.69444vw center; }
  @media (min-width: 1800px) {
    .form__input:required {
      background: #fff url(../images/required.svg) no-repeat right 10px center; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__input:required {
      background: #fff url(../images/required.svg) no-repeat right 1.3089vw center; } }
  @media (max-width: 575px) {
    .form__input:required {
      background: #fff url(../images/required.svg) no-repeat right 2.66667vmin center; } }

.form__textarea {
  text-indent: 0;
  padding-left: 1.04167vw;
  padding-top: 0.69444vw;
  min-height: 13.88889vw;
  outline: none; }
  @media (min-width: 1800px) {
    .form__textarea {
      padding-left: 20px;
      padding-top: 10px;
      min-height: 200px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__textarea {
      padding-left: 2.6178vw;
      padding-top: 1.3089vw;
      min-height: 26.17801vw; } }
  @media (max-width: 575px) {
    .form__textarea {
      padding-left: 5.33333vmin;
      padding-top: 2.66667vmin;
      min-height: 53.33333vmin; } }

.form__notice {
  font-size: 0.83333vw;
  margin-top: 0.83333vw; }
  .form__notice a {
    color: #EB7B18; }
  @media (min-width: 1800px) {
    .form__notice {
      font-size: 12px;
      margin-top: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__notice {
      font-size: 1.57068vw;
      margin-top: 1.57068vw; } }
  @media (max-width: 575px) {
    .form__notice {
      font-size: 3.2vmin;
      margin-top: 3.2vmin; } }

.form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.97222vw;
  color: #97A5D0; }
  .form__footer a:hover {
    color: #EB7B18; }
  @media (min-width: 1800px) {
    .form__footer {
      font-size: 14px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .form__footer {
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .form__footer {
      font-size: 3.73333vmin; } }

.popup-form {
  background-color: #FAFBFF;
  max-width: 36.11111vw;
  padding: 5.55556vw 4.16667vw;
  position: relative;
  margin: 0 auto; }
  .popup-form__title {
    font-size: 2.22222vw;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .popup-form__title {
        font-size: 36px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .popup-form__title {
        font-size: 4.71204vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .popup-form__title {
        font-size: 6.4vmin;
        margin-bottom: 5.33333vmin; } }
  @media (max-width: 575px) {
    .popup-form .checkbox__text {
      font-size: 3.2vmin;
      line-height: 1.2;
      padding-top: 0; } }
  @media (min-width: 1800px) {
    .popup-form {
      max-width: 520px;
      padding: 80px 60px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .popup-form {
      max-width: 68.06283vw;
      padding: 10.4712vw 7.8534vw; } }
  @media (max-width: 575px) {
    .popup-form {
      max-width: 100%;
      padding: 10.66667vmin 6.4vmin; } }

.mfp-close {
  width: 3.19444vw !important;
  height: 3.19444vw !important;
  background: #EB7B18 url(../images/sprites/svg/close-white.svg) no-repeat center center !important;
  background-size: 1.66667vw;
  opacity: 1 !important;
  font-size: 0;
  top: 0 !important;
  right: 0 !important; }
  .mfp-close:hover {
    color: #fff;
    background-color: #bf6311 !important; }
  @media (min-width: 1800px) {
    .mfp-close {
      width: 46px !important;
      height: 46px !important;
      background-size: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .mfp-close {
      width: 6.02094vw !important;
      height: 6.02094vw !important;
      background-size: 3.14136vw; } }
  @media (max-width: 575px) {
    .mfp-close {
      width: 12.26667vmin !important;
      height: 12.26667vmin !important;
      background-size: 6.4vmin;
      top: 0 !important;
      right: 0 !important; } }

.modalwindow {
  background: rgba(19, 54, 124, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none; }
  .modalwindow.is-open {
    display: flex; }
  .modalwindow__content {
    max-width: 36.11111vw;
    width: 100%;
    color: #fff;
    text-align: center;
    background-color: #20429E;
    padding: 4.16667vw 2.77778vw; }
    @media (min-width: 1800px) {
      .modalwindow__content {
        max-width: 520px;
        padding: 60px 40px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .modalwindow__content {
        max-width: 68.06283vw;
        padding: 7.8534vw 5.2356vw; } }
    @media (max-width: 575px) {
      .modalwindow__content {
        max-width: 100%;
        padding: 10.66667vmin 6.4vmin; } }
  .modalwindow__title {
    font-weight: 700;
    font-size: 1.66667vw;
    line-height: 120%;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1800px) {
      .modalwindow__title {
        font-size: 24px;
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .modalwindow__title {
        font-size: 3.14136vw;
        margin-bottom: 1.57068vw; } }
    @media (max-width: 575px) {
      .modalwindow__title {
        font-size: 6.4vmin;
        margin-bottom: 3.2vmin; } }
  .modalwindow__subtitle {
    color: #FF851A;
    font-size: 1.11111vw; }
    @media (min-width: 1800px) {
      .modalwindow__subtitle {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .modalwindow__subtitle {
        font-size: 2.09424vw; } }
    @media (max-width: 575px) {
      .modalwindow__subtitle {
        font-size: 4.26667vmin; } }

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

.nativejs-select {
  width: 100%;
  border: 1px solid #DEE6FF;
  margin: 0;
  border-radius: 0;
  font-size: 0.83333vw; }
  .nativejs-select .nativejs-select__placeholder {
    background-color: #fff;
    height: 2.43056vw;
    line-height: 1.2;
    color: #0C111F;
    border-radius: 0;
    padding-right: 2.08333vw; }
    @media (min-width: 1800px) {
      .nativejs-select .nativejs-select__placeholder {
        height: 35px;
        padding-right: 30px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .nativejs-select .nativejs-select__placeholder {
        height: 4.58115vw;
        padding-right: 3.9267vw; } }
    @media (max-width: 575px) {
      .nativejs-select .nativejs-select__placeholder {
        height: 8.53333vmin;
        padding-right: 8vmin; } }
    .nativejs-select .nativejs-select__placeholder:after {
      border-top-color: #97A5D0 !important;
      border-bottom-color: #97A5D0 !important; }
  .nativejs-select .nativejs-select__dropdown {
    border: 1px solid #DEE6FF; }
    .nativejs-select .nativejs-select__dropdown .nativejs-select__option {
      color: #0C111F;
      background-color: #fff;
      border-bottom: none;
      font-style: normal;
      line-height: 1.2; }
      .nativejs-select .nativejs-select__dropdown .nativejs-select__option:hover {
        border-bottom: none;
        color: #20429E; }
  @media (min-width: 1800px) {
    .nativejs-select {
      font-size: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .nativejs-select {
      font-size: 1.57068vw; } }
  @media (max-width: 575px) {
    .nativejs-select {
      font-size: 3.73333vmin; } }

.notices {
  position: fixed;
  top: 2.22222vw;
  right: 2.22222vw;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out; }
  .notices.is-active {
    visibility: visible;
    opacity: 1; }
  @media (min-width: 1800px) {
    .notices {
      top: 32px;
      right: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .notices {
      top: 3.14136vw;
      right: 3.14136vw; } }
  @media (max-width: 575px) {
    .notices {
      top: 3.2vmin;
      right: 3.2vmin; } }

.notice {
  height: 3.47222vw;
  font-size: 0.97222vw;
  padding: 0 1.66667vw;
  font-weight: 700;
  margin-bottom: 0.83333vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  display: none; }
  .notice.is-active {
    display: flex; }
  .notice--indigo {
    background: rgba(19, 54, 124, 0.7); }
  .notice--blue {
    background: rgba(32, 66, 158, 0.7); }
  .notice--red {
    background: rgba(235, 24, 24, 0.7); }
  @media (min-width: 1800px) {
    .notice {
      height: 50px;
      font-size: 14px;
      padding: 0 24px;
      margin-bottom: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .notice {
      height: 4.71204vw;
      font-size: 1.57068vw;
      padding: 0 2.09424vw;
      margin-bottom: 1.57068vw; } }
  @media (max-width: 575px) {
    .notice {
      height: 8.53333vmin;
      font-size: 3.2vmin;
      padding: 0 3.2vmin;
      margin-bottom: 3.2vmin; } }

.sortpanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFBFF;
  border: 0.06944vw solid #DEE6FF;
  padding: 0.97222vw 1.38889vw; }
  .sortpanel__item {
    display: flex;
    align-items: center; }
    .sortpanel__item h4 {
      margin: 0;
      font-size: 0.83333vw;
      font-weight: 400;
      margin-right: 0.69444vw;
      white-space: nowrap; }
      @media (min-width: 1800px) {
        .sortpanel__item h4 {
          font-size: 12px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .sortpanel__item h4 {
          font-size: 1.57068vw;
          margin-right: 1.3089vw; } }
      @media (max-width: 575px) {
        .sortpanel__item h4 {
          font-size: 3.2vmin;
          margin-right: 0;
          margin-bottom: 1.06667vmin; } }
    .sortpanel__item select {
      height: 2.22222vw;
      padding-left: 0.69444vw;
      padding-right: 0.69444vw;
      font-size: 0.83333vw;
      color: #0C111F;
      border: 0.06944vw solid #DEE6FF;
      outline: none; }
      @media (min-width: 1800px) {
        .sortpanel__item select {
          height: 32px;
          padding-left: 10px;
          padding-right: 10px;
          border: 1px solid #DEE6FF;
          font-size: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .sortpanel__item select {
          height: 4.18848vw;
          padding-left: 1.3089vw;
          padding-right: 1.3089vw;
          border: 0.13089vw solid #DEE6FF;
          font-size: 1.57068vw; } }
      @media (max-width: 575px) {
        .sortpanel__item select {
          height: 8.53333vmin;
          padding-left: 2.66667vmin;
          padding-right: 2.66667vmin;
          border: 0.26667vmin solid #DEE6FF;
          font-size: 3.2vmin; } }
    @media (max-width: 575px) {
      .sortpanel__item {
        display: block; } }
  @media (min-width: 1800px) {
    .sortpanel {
      border: 1px solid #DEE6FF;
      padding: 14px 20px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .sortpanel {
      border: 0.13089vw solid #DEE6FF;
      padding: 1.83246vw 2.09424vw; } }
  @media (max-width: 575px) {
    .sortpanel {
      border: 0.26667vmin solid #DEE6FF;
      padding: 3.73333vmin 4.26667vmin; } }

.box {
  background-color: #FAFBFF;
  border: 0.06944vw solid #DEE6FF;
  padding: 2.22222vw; }
  .box__title {
    margin-bottom: 1.66667vw;
    font-weight: 500;
    color: #13367C;
    font-size: 1.45833vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .box__title {
        margin-bottom: 24px;
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .box__title {
        margin-bottom: 3.14136vw;
        font-size: 2.74869vw;
        line-height: 1; } }
    @media (max-width: 575px) {
      .box__title {
        margin-bottom: 6.4vmin;
        font-size: 5.6vmin;
        line-height: 1; } }
  @media (min-width: 1800px) {
    .box {
      border: 1px solid #DEE6FF;
      padding: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .box {
      border: 0.13089vw solid #DEE6FF;
      padding: 4.18848vw 3.14136vw; } }
  @media (max-width: 575px) {
    .box {
      border: 0.26667vmin solid #DEE6FF;
      padding: 8.53333vmin 6.4vmin; } }

.mm-menu {
  background-color: #20429E !important;
  border-right: 1px solid #13367C; }
  .mm-menu a, .mm-menu span {
    color: #fff !important; }

.mm-menu .mm-listview .mm-btn_next:after {
  border-color: #fff !important; }

.mm-listitem .mm-btn_next:before {
  border-color: rgba(255, 255, 255, 0.5) !important; }

.mm-listitem:after {
  border-color: rgba(255, 255, 255, 0.5) !important; }

.mm-menu .mm-btn:after, .mm-menu .mm-btn:before {
  border-color: #fff !important; }

.mm-navbar {
  border-color: rgba(255, 255, 255, 0.5) !important; }

.mm-listitem {
  border-bottom: none !important; }

.mm-menu_offcanvas {
  transform: translateX(-80%) !important;
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-out; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened {
  transform: translateX(0%) !important;
  visibility: visible;
  opacity: 1; }

.slider {
  background: url(../images/slider/slide@2x-notebook.jpg) no-repeat center center;
  background-size: cover;
  height: 47.91667vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; }
  .slider__title {
    font-size: 4.30556vw;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 50%;
    font-weight: 500;
    margin-bottom: 3.33333vw; }
    @media (min-width: 1800px) {
      .slider__title {
        font-size: 62px;
        margin-bottom: 48px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider__title {
        font-size: 6.28272vw;
        margin-bottom: 6.28272vw;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .slider__title {
        font-size: 8.53333vmin;
        margin-bottom: 12.8vmin;
        max-width: 100%; } }
  .slider__btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.04167vw;
    line-height: 102%;
    text-transform: uppercase; }
    .slider__btn:hover {
      color: #EB7B18; }
    .slider__btn:before {
      content: "";
      width: 3.88889vw;
      height: 3.88889vw;
      display: inline-flex;
      background: #EB7B18 url(../images/sprites/svg/arrow-right-top-white.svg) no-repeat center center;
      background-size: 1.38889vw;
      margin-right: 1.11111vw; }
      @media (min-width: 1800px) {
        .slider__btn:before {
          width: 56px;
          height: 56px;
          margin-right: 16px;
          background-size: 20px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .slider__btn:before {
          width: 7.32984vw;
          height: 7.32984vw;
          margin-right: 2.09424vw;
          background-size: 2.6178vw; } }
      @media (max-width: 575px) {
        .slider__btn:before {
          width: 14.93333vmin;
          height: 14.93333vmin;
          margin-right: 4.26667vmin;
          background-size: 5.33333vmin; } }
    @media (min-width: 1800px) {
      .slider__btn {
        font-size: 15px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider__btn {
        font-size: 1.96335vw; } }
    @media (max-width: 575px) {
      .slider__btn {
        font-size: 4vmin; } }
  .slider .swiper-pagination {
    display: flex;
    align-items: center;
    margin-top: 3.33333vw; }
    @media (min-width: 1800px) {
      .slider .swiper-pagination {
        margin-top: 48px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination {
        margin-top: 6.28272vw; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination {
        margin-top: 12.8vmin; } }
  .slider .swiper-pagination-bullet {
    display: inline-block;
    width: 0.55556vw;
    height: 0.55556vw;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 0.69444vw;
    cursor: pointer; }
    @media (min-width: 1800px) {
      .slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin-right: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination-bullet {
        width: 1.04712vw;
        height: 1.04712vw;
        margin-right: 1.3089vw; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination-bullet {
        width: 2.13333vmin;
        height: 2.13333vmin;
        margin-right: 2.66667vmin; } }
  .slider .swiper-pagination-bullet-active {
    width: 1.52778vw;
    height: 1.52778vw;
    border: 0.13889vw solid #EB7B18;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .slider .swiper-pagination-bullet-active:after {
      content: "";
      display: inline-block;
      width: 0.55556vw;
      height: 0.55556vw;
      background: white;
      border-radius: 50%; }
      @media (min-width: 1800px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 8px;
          height: 8px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 1.04712vw;
          height: 1.04712vw; } }
      @media (max-width: 575px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 2.13333vmin;
          height: 2.13333vmin; } }
    @media (min-width: 1800px) {
      .slider .swiper-pagination-bullet-active {
        width: 22px;
        height: 22px;
        border: 2px solid #EB7B18; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination-bullet-active {
        width: 2.87958vw;
        height: 2.87958vw;
        border: 0.26178vw solid #EB7B18; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination-bullet-active {
        width: 5.86667vmin;
        height: 5.86667vmin;
        border: 0.53333vmin solid #EB7B18; } }
  @media (min-width: 1800px) {
    .slider {
      background: url(../images/slider/slide@2x-desktop.jpg) no-repeat center center;
      background-size: cover;
      height: 690px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .slider {
      background: url(../images/slider/slide@2x-tablet.jpg) no-repeat center center;
      background-size: cover;
      height: 64.5288vw; } }
  @media (max-width: 575px) {
    .slider {
      background: url(../images/slider/slide@2x-mobile.jpg) no-repeat right bottom;
      background-size: cover;
      height: 117.06667vmin; } }

.productsblock {
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw; }
  .productsblock__container {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 575px) {
      .productsblock__container {
        margin-left: -2.13333vmin;
        margin-right: -2.13333vmin; } }
  .productsblock__col {
    flex-basis: 25%;
    margin-left: -0.06944vw;
    margin-top: -0.06944vw; }
    .productsblock__col:first-child {
      padding-right: 2.22222vw; }
      @media (min-width: 1800px) {
        .productsblock__col:first-child {
          padding-right: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .productsblock__col:first-child {
          flex-basis: 100%; } }
      @media (max-width: 575px) {
        .productsblock__col:first-child {
          flex-basis: 100%;
          margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .productsblock__col {
        margin-left: -1px;
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .productsblock__col {
        margin-left: -0.13089vw;
        margin-top: -0.13089vw;
        flex-basis: 50%; } }
    @media (max-width: 575px) {
      .productsblock__col {
        margin-left: 2.13333vmin;
        margin-right: 2.13333vmin;
        margin-top: 0;
        margin-bottom: 4.26667vmin;
        flex-basis: calc(50% - 4.26667vmin); } }
  @media (min-width: 1800px) {
    .productsblock {
      padding-top: 180px;
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .productsblock {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .productsblock {
      padding-top: 17.06667vmin;
      padding-bottom: 12.8vmin; } }

.categories {
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw;
  background-color: #FAFBFF;
  border-top: 0.06944vw solid #DEE6FF; }
  .categories .subtitle__h2 {
    max-width: 25.41667vw; }
    @media (min-width: 1800px) {
      .categories .subtitle__h2 {
        max-width: 366px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories .subtitle__h2 {
        max-width: 64.39791vw; } }
    @media (max-width: 575px) {
      .categories .subtitle__h2 {
        max-width: 100%; } }
  .categories__container {
    display: flex;
    flex-wrap: wrap; }
  .categories__col {
    flex-basis: 33.33%;
    width: 33.33%;
    margin-left: -0.06944vw;
    margin-top: -0.06944vw; }
    .categories__col:first-child {
      padding-right: 2.22222vw; }
      @media (min-width: 1800px) {
        .categories__col:first-child {
          padding-right: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .categories__col:first-child {
          padding-right: 0;
          flex-basis: 100%; } }
      @media (max-width: 575px) {
        .categories__col:first-child {
          padding-right: 0;
          flex-basis: 100%; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories__col:nth-child(4) {
        flex-basis: 100%; } }
    @media (min-width: 1800px) {
      .categories__col {
        margin-left: -1px;
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories__col {
        margin-left: -0.13089vw;
        margin-top: -0.13089vw;
        flex-basis: 50%;
        width: 50%; } }
    @media (max-width: 575px) {
      .categories__col {
        margin-left: 0;
        margin-top: -0.26667vmin;
        flex-basis: 100%;
        width: 100%; } }
  @media (min-width: 1800px) {
    .categories {
      padding-top: 180px;
      padding-bottom: 180px;
      border-top: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .categories {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw;
      border-top: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .categories {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      border-top: 0.26667vmin solid #DEE6FF; } }

.newsblock {
  padding-top: 8.33333vw;
  padding-bottom: 4.86111vw;
  background-color: #FAFBFF;
  border-bottom: 0.06944vw solid #DEE6FF;
  position: relative; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .newsblock .subtitle__h2 {
      margin-bottom: 0;
      margin-right: 0;
      max-width: 58.90052vw; } }
  @media (max-width: 575px) {
    .newsblock .subtitle__h2 {
      margin-bottom: 0;
      margin-right: 0;
      max-width: 100%; } }
  .newsblock__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__container {
        display: block; } }
    @media (max-width: 575px) {
      .newsblock__container {
        display: block; } }
  .newsblock__title {
    max-width: 25.41667vw;
    padding-right: 2.22222vw; }
    @media (min-width: 1800px) {
      .newsblock__title {
        max-width: 366px;
        padding-right: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__title {
        max-width: 66.66%;
        width: 100%;
        padding-right: 4.18848vw; } }
    @media (max-width: 575px) {
      .newsblock__title {
        max-width: 100%;
        width: 100%;
        padding-right: 0; } }
  .newsblock__infoblock {
    flex-basis: 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .newsblock__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 12.8vmin; } }
  .newsblock__slider {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__slider {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .newsblock__slider {
        flex-basis: 100%;
        max-width: 100%; } }
  .newsblock__slidernav {
    display: flex; }
    .newsblock__slidernav .btn-slider {
      margin-left: -0.06944vw; }
      @media (min-width: 1800px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -1px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -0.13089vw;
          top: -0.52356vw; } }
      @media (max-width: 575px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -0.26667vmin;
          top: 0; } }
    @media (max-width: 575px) {
      .newsblock__slidernav {
        position: absolute;
        bottom: 0;
        left: 4.26667vmin; } }
  .newsblock__ftr {
    display: flex;
    justify-content: flex-end;
    padding-top: 2.77778vw; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__ftr .btn {
        min-width: 32.06806vw; } }
    @media (max-width: 575px) {
      .newsblock__ftr .btn {
        height: 14.93333vmin;
        min-width: 43.46667vmin;
        padding-left: 4.26667vmin;
        padding-right: 4.26667vmin;
        font-size: 3.73333vmin; } }
    @media (min-width: 1800px) {
      .newsblock__ftr {
        padding-top: 40px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__ftr {
        padding-top: 4.18848vw; } }
    @media (max-width: 575px) {
      .newsblock__ftr {
        padding-top: 6.4vmin; } }
  @media (min-width: 1800px) {
    .newsblock {
      padding-top: 180px;
      padding-bottom: 70px;
      border-bottom: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .newsblock {
      padding-top: 10.4712vw;
      padding-bottom: 4.18848vw;
      border-bottom: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .newsblock {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      border-bottom: 0.26667vmin solid #DEE6FF; } }

.advantages {
  background: #13367C url(../images/bg-advantages.png) no-repeat right center;
  background-size: cover;
  color: #fff;
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw; }
  .advantages__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advantages__container {
        flex-wrap: wrap; } }
    @media (max-width: 575px) {
      .advantages__container {
        flex-wrap: wrap; } }
  .advantages__item {
    margin-right: -0.06944vw;
    flex-basis: 25%; }
    @media (min-width: 1800px) {
      .advantages__item {
        margin-right: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advantages__item {
        margin-right: -0.13089vw;
        flex-basis: 50%; } }
    @media (max-width: 575px) {
      .advantages__item {
        margin-right: 0;
        flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .advantages {
      padding-top: 180px;
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .advantages {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .advantages {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      background: #13367C; } }

.advant {
  background: rgba(19, 54, 124, 0.5);
  border: 1px solid rgba(222, 230, 255, 0.15);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 2.22222vw; }
  .advant__ico {
    margin-bottom: 1.66667vw;
    color: #EB7B18; }
    .advant__ico svg {
      width: 3.47222vw;
      height: 3.47222vw; }
      @media (min-width: 1800px) {
        .advant__ico svg {
          width: 60px;
          height: 60px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .advant__ico svg {
          width: 6.5445vw;
          height: 6.5445vw; } }
      @media (max-width: 575px) {
        .advant__ico svg {
          width: 13.33333vmin;
          height: 13.33333vmin; } }
    @media (min-width: 1800px) {
      .advant__ico {
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__ico {
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .advant__ico {
        margin-bottom: 6.4vmin; } }
  .advant__title {
    font-size: 1.38889vw;
    line-height: 120%;
    font-weight: 500;
    padding-bottom: 1.11111vw;
    margin-bottom: 1.11111vw;
    position: relative; }
    .advant__title:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 3.47222vw;
      height: 0.20833vw;
      border-radius: 0.83333vw;
      background-color: #EB7B18; }
      @media (min-width: 1800px) {
        .advant__title:after {
          width: 50px;
          height: 3px;
          border-radius: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .advant__title:after {
          width: 6.5445vw;
          height: 0.39267vw;
          border-radius: 1.57068vw; } }
      @media (max-width: 575px) {
        .advant__title:after {
          width: 13.33333vmin;
          height: 0.8vmin;
          border-radius: 3.2vmin; } }
    @media (min-width: 1800px) {
      .advant__title {
        font-size: 22px;
        padding-bottom: 16px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__title {
        font-size: 2.6178vw;
        padding-bottom: 2.09424vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .advant__title {
        font-size: 5.33333vmin;
        padding-bottom: 4.26667vmin;
        margin-bottom: 4.26667vmin; } }
  .advant__subtitle {
    font-size: 0.97222vw;
    line-height: 140%;
    color: #99B5FF; }
    @media (min-width: 1800px) {
      .advant__subtitle {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__subtitle {
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .advant__subtitle {
        font-size: 3.73333vmin; } }
  @media (min-width: 1800px) {
    .advant {
      padding: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .advant {
      padding: 4.18848vw; } }
  @media (max-width: 575px) {
    .advant {
      padding: 8.53333vmin;
      background: #20429E; } }

.seoblock {
  padding-top: 8.33333vw;
  padding-bottom: 7.22222vw; }
  .seoblock__title {
    font-size: 2.91667vw;
    line-height: 110%;
    font-weight: 500;
    margin-bottom: 3.33333vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .seoblock__title {
        font-size: 48px;
        margin-bottom: 54px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .seoblock__title {
        font-size: 4.18848vw;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .seoblock__title {
        font-size: 6.93333vmin;
        margin-bottom: 8.53333vmin; } }
  .seoblock__content {
    -moz-column-count: 2;
         column-count: 2;
    color: #50525D;
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .seoblock__content {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .seoblock__content {
        font-size: 1.83246vw;
        -moz-column-count: 1;
             column-count: 1; } }
    @media (max-width: 575px) {
      .seoblock__content {
        font-size: 3.73333vmin;
        -moz-column-count: 1;
             column-count: 1; } }
  @media (min-width: 1800px) {
    .seoblock {
      padding-top: 180px;
      padding-bottom: 164px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .seoblock {
      padding-top: 10.4712vw;
      padding-bottom: 8.37696vw; } }
  @media (max-width: 575px) {
    .seoblock {
      padding-top: 17.06667vmin;
      padding-bottom: 12.8vmin; } }

.videos {
  background-color: #FAFBFF;
  padding: 8.33333vw 0;
  border-top: 0.06944vw solid #DEE6FF; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos .subtitle__h2 {
      display: none; } }
  @media (max-width: 575px) {
    .videos .subtitle__h2 {
      display: none; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos .title-h2 {
      margin-bottom: 0; } }
  @media (max-width: 575px) {
    .videos .title-h2 {
      margin-bottom: 0; } }
  .videos__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__container {
        display: block; } }
    @media (max-width: 575px) {
      .videos__container {
        display: block; } }
  .videos__title {
    max-width: 25.41667vw;
    padding-right: 2.22222vw;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .videos__title {
        max-width: 366px;
        padding-right: 32px;
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__title {
        margin-bottom: 0;
        padding-right: 0;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .videos__title {
        margin-bottom: 0;
        padding-right: 0;
        max-width: 100%; } }
  .videos__infoblock {
    flex-basis: 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .videos__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 12.8vmin; } }
  .videos__slider {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__slider {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .videos__slider {
        flex-basis: 100%;
        max-width: 100%; } }
  .videos__slidernav {
    display: flex; }
    .videos__slidernav .btn-slider {
      margin-left: -0.06944vw; }
      @media (min-width: 1800px) {
        .videos__slidernav .btn-slider {
          margin-left: -1px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .videos__slidernav .btn-slider {
          margin-left: -0.13089vw; } }
      @media (max-width: 575px) {
        .videos__slidernav .btn-slider {
          margin-left: 0; } }
  @media (min-width: 1800px) {
    .videos {
      padding: 180px 0;
      border-top: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos {
      padding: 10.4712vw 0;
      border-top: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .videos {
      padding: 17.06667vmin 0;
      border-top: 0.26667vmin solid #DEE6FF; } }

.slider-videos a {
  display: block;
  position: relative; }
  .slider-videos a:hover:before {
    background-color: rgba(12, 17, 31, 0.4); }
  .slider-videos a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(12, 17, 31, 0.7);
    transition: all .3s ease-out; }
  .slider-videos a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 0.13889vw solid #fff;
    width: 6.25vw;
    height: 6.25vw;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: url(../images/sprites/svg/play-orange.svg) no-repeat center center;
    background-size: 2.36111vw; }
    @media (min-width: 1800px) {
      .slider-videos a:after {
        border: 2px solid #fff;
        width: 90px;
        height: 90px;
        background-size: 34px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider-videos a:after {
        border: 0.26178vw solid #fff;
        width: 10.20942vw;
        height: 10.20942vw;
        background-size: 3.40314vw; } }
    @media (max-width: 575px) {
      .slider-videos a:after {
        border: 0.53333vmin solid #fff;
        width: 20.8vmin;
        height: 20.8vmin;
        background-size: 6.93333vmin; } }

.page-list {
  display: flex;
  flex-wrap: wrap; }
  .page-list a {
    margin-right: 10px;
    margin-bottom: 10px; }

.authpage {
  padding-bottom: 8.33333vw; }
  .authpage .form {
    max-width: 29.44444vw; }
    @media (min-width: 1800px) {
      .authpage .form {
        max-width: 517px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .authpage .form {
        max-width: 100%; } }
    @media (max-width: 575px) {
      .authpage .form {
        max-width: 100%; } }
  .authpage .btn {
    width: 100%;
    max-width: 16.66667vw; }
    @media (min-width: 1800px) {
      .authpage .btn {
        max-width: 240px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .authpage .btn {
        max-width: 100%; } }
    @media (max-width: 575px) {
      .authpage .btn {
        max-width: 100%;
        white-space: nowrap; } }
  @media (min-width: 1800px) {
    .authpage {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .authpage {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .authpage {
      padding-bottom: 17.06667vmin; } }

.cabinet-page {
  padding-bottom: 8.33333vw; }
  .cabinet-page .order {
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .cabinet-page .order {
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page .order {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .cabinet-page .order {
        margin-bottom: 8.53333vmin; } }
  .cabinet-page__menu {
    display: flex;
    font-weight: 500;
    font-size: 1.80556vw;
    margin-bottom: 2.22222vw;
    padding-bottom: 1.66667vw;
    color: #97A5D0;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .cabinet-page__menu {
        font-size: 32px;
        margin-bottom: 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__menu {
        font-size: 3.40314vw;
        margin-bottom: 4.18848vw;
        padding-bottom: 3.14136vw;
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .cabinet-page__menu {
        font-size: 4.8vmin;
        margin-bottom: 6.4vmin;
        padding-bottom: 4.26667vmin;
        border-bottom: 0.26667vmin solid #DEE6FF; } }
    .cabinet-page__menu li {
      margin-right: 3.33333vw; }
      .cabinet-page__menu li a:hover {
        color: #EB7B18; }
      @media (min-width: 1800px) {
        .cabinet-page__menu li {
          margin-right: 48px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .cabinet-page__menu li {
          margin-right: 6.28272vw; } }
      @media (max-width: 575px) {
        .cabinet-page__menu li {
          margin-right: 6.4vmin; } }
      .cabinet-page__menu li.is-active {
        color: #20429E; }
  .cabinet-page__sortpanel {
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .cabinet-page__sortpanel {
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__sortpanel {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .cabinet-page__sortpanel {
        margin-bottom: 8.53333vmin; } }
  .cabinet-page__row {
    display: flex;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .cabinet-page__row {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__row {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
    @media (max-width: 575px) {
      .cabinet-page__row {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
  .cabinet-page__box--password {
    max-width: 29.44444vw;
    margin-bottom: 0 !important; }
    @media (min-width: 1800px) {
      .cabinet-page__box--password {
        max-width: 517px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__box--password {
        max-width: 100%; } }
    @media (max-width: 575px) {
      .cabinet-page__box--password {
        max-width: 100%; } }
  .cabinet-page__col {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    flex-basis: calc(33.33% - 1.66667vw); }
    @media (min-width: 1800px) {
      .cabinet-page__col {
        margin-left: 12px;
        margin-right: 12px;
        flex-basis: calc(33.33% - 24px); } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__col {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%; } }
    @media (max-width: 575px) {
      .cabinet-page__col {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%; } }
  .cabinet-page__box {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .cabinet-page__box {
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__box {
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .cabinet-page__box {
        margin-bottom: 6.4vmin; } }
  .cabinet-page__item {
    padding-bottom: 2.22222vw;
    margin-bottom: 2.22222vw;
    border-bottom: 0.06944vw solid #DEE6FF; }
    .cabinet-page__item:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none; }
    @media (min-width: 1800px) {
      .cabinet-page__item {
        padding-bottom: 32px;
        margin-bottom: 32px;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cabinet-page__item {
        padding-bottom: 4.18848vw;
        margin-bottom: 4.18848vw;
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .cabinet-page__item {
        padding-bottom: 8.53333vmin;
        margin-bottom: 8.53333vmin;
        border-bottom: 0.26667vmin solid #DEE6FF; } }
  @media (min-width: 1800px) {
    .cabinet-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cabinet-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .cabinet-page {
      padding-bottom: 21.33333vmin; } }

.order {
  padding: 2.22222vw;
  background-color: #FAFBFF;
  border: 0.06944vw solid #DEE6FF; }
  .order__header {
    display: flex;
    margin-bottom: 1.73611vw;
    color: #50525D; }
    @media (min-width: 1800px) {
      .order__header {
        margin-bottom: 25px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__header {
        margin-bottom: 3.27225vw; } }
    @media (max-width: 575px) {
      .order__header {
        margin-bottom: 4.26667vmin; } }
  .order__num {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 1.73611vw;
    line-height: 140%;
    margin-right: 1.94444vw; }
    @media (min-width: 1800px) {
      .order__num {
        font-size: 25px;
        margin-right: 28px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__num {
        font-size: 3.27225vw;
        margin-right: 3.66492vw; } }
    @media (max-width: 575px) {
      .order__num {
        font-size: 5.6vmin;
        margin-right: 4.26667vmin; } }
  .order__date {
    font-size: 0.83333vw;
    line-height: 140%;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .order__date {
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__date {
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .order__date {
        font-size: 2.66667vmin; } }
  .order__status {
    display: inline-flex;
    height: 1.66667vw;
    padding: 0 0.83333vw;
    align-items: center;
    justify-content: center;
    font-size: 0.83333vw;
    font-weight: 500;
    margin-bottom: 0.41667vw;
    margin-top: 0.27778vw; }
    .order__status--complete {
      border: 0.06944vw solid #36EB18; }
      @media (min-width: 1800px) {
        .order__status--complete {
          border: 1px solid #36EB18; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__status--complete {
          border: 0.13089vw solid #36EB18; } }
      @media (max-width: 575px) {
        .order__status--complete {
          border: 0.26667vmin solid #36EB18; } }
    .order__status--cancel {
      border: 0.06944vw solid #EB1818; }
      @media (min-width: 1800px) {
        .order__status--cancel {
          border: 1px solid #EB1818; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__status--cancel {
          border: 0.13089vw solid #EB1818; } }
      @media (max-width: 575px) {
        .order__status--cancel {
          border: 0.26667vmin solid #EB1818; } }
    .order__status--inprogress {
      border: 0.06944vw solid #EB7B18; }
      @media (min-width: 1800px) {
        .order__status--inprogress {
          border: 1px solid #EB7B18; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__status--inprogress {
          border: 0.13089vw solid #EB7B18; } }
      @media (max-width: 575px) {
        .order__status--inprogress {
          border: 0.26667vmin solid #EB7B18; } }
    @media (min-width: 1800px) {
      .order__status {
        height: 24px;
        padding: 0 12px;
        font-size: 12px;
        margin-bottom: 6px;
        margin-top: 4px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__status {
        height: 3.14136vw;
        padding: 0 1.57068vw;
        font-size: 1.57068vw;
        margin-bottom: 0.78534vw;
        margin-top: 0.52356vw; } }
    @media (max-width: 575px) {
      .order__status {
        height: 4.8vmin;
        padding: 0 3.2vmin;
        font-size: 2.66667vmin;
        margin-bottom: 1.6vmin;
        margin-top: 1.06667vmin; } }
  .order__delevery {
    font-size: 0.97222vw;
    height: 100%;
    color: #97A5D0; }
    @media (min-width: 1800px) {
      .order__delevery {
        font-size: 14px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__delevery {
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .order__delevery {
        font-size: 3.2vmin; } }
  .order__body {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .order__body {
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__body {
        margin-bottom: 3.14136vw;
        display: block; } }
    @media (max-width: 575px) {
      .order__body {
        margin-bottom: 0;
        display: block; } }
  .order__total {
    font-size: 2.22222vw;
    font-weight: 500;
    display: inline-flex;
    align-items: flex-end; }
    .order__total svg {
      width: 1.66667vw;
      height: 1.66667vw;
      top: -0.13889vw;
      position: relative; }
      @media (min-width: 1800px) {
        .order__total svg {
          width: 24px;
          height: 24px;
          top: -2px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__total svg {
          width: 3.14136vw;
          height: 3.14136vw;
          top: -0.26178vw; } }
      @media (max-width: 575px) {
        .order__total svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          top: -0.53333vmin; } }
    @media (min-width: 1800px) {
      .order__total {
        font-size: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__total {
        font-size: 4.18848vw; } }
    @media (max-width: 575px) {
      .order__total {
        font-size: 5.33333vmin;
        padding-top: 6.4vmin;
        white-space: nowrap; } }
  .order__nav {
    padding-top: 2.01389vw;
    flex-basis: 13.33333vw;
    margin-left: 5.83333vw;
    flex-shrink: 0; }
    @media (min-width: 1800px) {
      .order__nav {
        padding-top: 29px;
        flex-basis: 192px;
        margin-left: 84px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__nav {
        padding-top: 3.79581vw;
        flex-basis: 25.13089vw;
        margin-left: 0;
        display: flex; } }
    @media (max-width: 575px) {
      .order__nav {
        padding-top: 7.73333vmin;
        flex-basis: auto;
        margin-left: 0;
        display: block; } }
  .order__bill, .order__repeat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.11111vw;
    height: 2.5vw;
    padding: 0 0.69444vw;
    min-width: 13.33333vw;
    font-size: 0.83333vw;
    font-weight: 500;
    margin-bottom: 1.11111vw; }
    .order__bill svg, .order__repeat svg {
      width: 1.11111vw;
      height: 1.11111vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .order__bill svg, .order__repeat svg {
          width: 16px;
          height: 16px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__bill svg, .order__repeat svg {
          width: 2.09424vw;
          height: 2.09424vw;
          margin-right: 1.3089vw; } }
      @media (max-width: 575px) {
        .order__bill svg, .order__repeat svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          margin-right: 2.66667vmin; } }
    @media (min-width: 1800px) {
      .order__bill, .order__repeat {
        height: 16px;
        height: 36px;
        padding: 0 10px;
        min-width: 192px;
        font-size: 12px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__bill, .order__repeat {
        height: 2.09424vw;
        height: 4.71204vw;
        padding: 0 1.3089vw;
        min-width: auto;
        font-size: 1.57068vw;
        margin-bottom: 0; } }
    @media (max-width: 575px) {
      .order__bill, .order__repeat {
        height: 4.26667vmin;
        height: 9.6vmin;
        padding: 0 2.66667vmin;
        min-width: auto;
        width: 100%;
        font-size: 3.2vmin;
        margin-bottom: 0; } }
  .order__bill {
    color: #fff;
    background-color: #EB7B18; }
    .order__bill:hover {
      color: #fff;
      background-color: #bf6311; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__bill {
        margin-right: 2.09424vw; } }
    @media (max-width: 575px) {
      .order__bill {
        margin-right: 0;
        margin-bottom: 2.66667vmin; } }
  .order__repeat {
    background-color: transparent;
    border: 0.06944vw solid #DEE6FF;
    color: #97A5D0; }
    .order__repeat:hover {
      border: 0.06944vw solid #20429E;
      color: #20429E; }
      @media (min-width: 1800px) {
        .order__repeat:hover {
          border: 1px solid #20429E; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .order__repeat:hover {
          border: 0.13089vw solid #20429E; } }
      @media (max-width: 575px) {
        .order__repeat:hover {
          border: 0.26667vmin solid #20429E; } }
    @media (min-width: 1800px) {
      .order__repeat {
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order__repeat {
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .order__repeat {
        border: 0.26667vmin solid #DEE6FF; } }
  .order__products {
    flex: 1 1; }
  @media (min-width: 1800px) {
    .order {
      padding: 32px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order {
      padding: 4.18848vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .order {
      padding: 0;
      margin-bottom: 9.6vmin;
      padding-bottom: 9.6vmin;
      border: none;
      border-bottom: 0.8vmin dashed #DEE6FF;
      background: none !important; } }

.order-products__item {
  margin-top: -0.06944vw; }
  @media (min-width: 1800px) {
    .order-products__item {
      margin-top: -1px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-products__item {
      margin-top: -0.13089vw; } }
  @media (max-width: 575px) {
    .order-products__item {
      margin-top: -0.26667vmin; } }

.order-products__head {
  display: flex;
  padding-left: 1.66667vw;
  padding-right: 1.66667vw; }
  @media (min-width: 1800px) {
    .order-products__head {
      padding-left: 24px;
      padding-right: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-products__head {
      padding-left: 3.14136vw;
      padding-right: 3.14136vw;
      display: none; } }
  @media (max-width: 575px) {
    .order-products__head {
      padding-left: 6.4vmin;
      padding-right: 6.4vmin;
      display: none; } }

.order-products__th {
  line-height: 120%;
  font-weight: 500;
  font-size: 0.83333vw;
  color: #97A5D0;
  padding-bottom: 0.97222vw; }
  .order-products__th--name {
    flex: 1 1; }
  .order-products__th--price, .order-products__th--sum {
    flex-basis: 13.88889vw; }
    @media (min-width: 1800px) {
      .order-products__th--price, .order-products__th--sum {
        flex-basis: 222px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .order-products__th--price, .order-products__th--sum {
        flex-basis: 29.05759vw; } }
    @media (max-width: 575px) {
      .order-products__th--price, .order-products__th--sum {
        flex-basis: 59.2vmin; } }
  @media (min-width: 1800px) {
    .order-products__th {
      font-size: 12px;
      padding-bottom: 14px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-products__th {
      font-size: 1.57068vw;
      padding-bottom: 1.83246vw; } }
  @media (max-width: 575px) {
    .order-products__th {
      font-size: 3.2vmin;
      padding-bottom: 3.73333vmin; } }

.cart-page {
  padding-bottom: 8.33333vw; }
  .cart-page__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-page__container {
        display: block; } }
    @media (max-width: 575px) {
      .cart-page__container {
        display: block; } }
  .cart-page__main {
    flex-basis: 66.66%; }
  .cart-page__aside {
    flex-basis: 33.33%;
    padding-left: 6.38889vw; }
    @media (min-width: 1800px) {
      .cart-page__aside {
        padding-left: 92px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-page__aside {
        flex-basis: 100%;
        padding-left: 0; } }
    @media (max-width: 575px) {
      .cart-page__aside {
        flex-basis: 100%;
        padding-left: 0; } }
  .cart-page__row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .cart-page__row {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-page__row {
        margin-left: -1.04712vw;
        margin-right: -1.04712vw; } }
    @media (max-width: 575px) {
      .cart-page__row {
        margin-left: 0;
        margin-right: 0; } }
  .cart-page__col {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    flex-basis: calc(50% - 1.66667vw);
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .cart-page__col {
        margin-left: 12px;
        margin-right: 12px;
        flex-basis: calc(50% - 24px);
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-page__col {
        margin-left: 1.04712vw;
        margin-right: 1.04712vw;
        flex-basis: calc(50% - 2.09424vw);
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .cart-page__col {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        margin-bottom: 6.4vmin; } }
  .cart-page__buy {
    height: 6.38889vw;
    max-width: 26.52778vw;
    width: 100%;
    font-size: 1.66667vw; }
    @media (min-width: 1800px) {
      .cart-page__buy {
        height: 92px;
        max-width: 382px;
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-page__buy {
        height: 12.04188vw;
        max-width: 46.98953vw;
        font-size: 3.14136vw; } }
    @media (max-width: 575px) {
      .cart-page__buy {
        height: 20.53333vmin;
        max-width: 100%;
        font-size: 5.33333vmin; } }
  @media (min-width: 1800px) {
    .cart-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .cart-page {
      padding-bottom: 17.06667vmin; } }

.cart-products {
  margin-bottom: 2.22222vw; }
  .cart-products .cart-product {
    margin-top: -0.06944vw; }
    @media (min-width: 1800px) {
      .cart-products .cart-product {
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-products .cart-product {
        margin-top: -0.13089vw; } }
    @media (max-width: 575px) {
      .cart-products .cart-product {
        margin-top: -0.26667vmin; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-products__body {
      padding-right: 6.02094vw; } }
  @media (max-width: 575px) {
    .cart-products__body {
      padding-right: 0; } }
  .cart-products__head {
    display: flex;
    padding: 0 1.66667vw; }
    @media (min-width: 1800px) {
      .cart-products__head {
        padding: 0 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-products__head {
        padding: 0 3.14136vw;
        padding-right: 9.1623vw; } }
    @media (max-width: 575px) {
      .cart-products__head {
        padding: 0 6.4vmin;
        padding-right: 18.66667vmin;
        display: none; } }
  .cart-products__th {
    line-height: 120%;
    font-weight: 500;
    font-size: 0.83333vw;
    color: #97A5D0;
    padding-bottom: 0.97222vw; }
    .cart-products__th--name {
      flex: 1 1; }
    .cart-products__th--cost, .cart-products__th--sum {
      flex-basis: 11.80556vw; }
      @media (min-width: 1800px) {
        .cart-products__th--cost, .cart-products__th--sum {
          flex-basis: 222px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .cart-products__th--cost, .cart-products__th--sum {
          flex-basis: 21.98953vw; } }
      @media (max-width: 575px) {
        .cart-products__th--cost, .cart-products__th--sum {
          flex-basis: 44.8vmin; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-products__th--sum {
        flex-basis: 12.82723vw; } }
    @media (max-width: 575px) {
      .cart-products__th--sum {
        flex-basis: 26.13333vmin; } }
    @media (min-width: 1800px) {
      .cart-products__th {
        font-size: 12px;
        padding-bottom: 14px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .cart-products__th {
        font-size: 1.57068vw;
        padding-bottom: 1.83246vw; } }
    @media (max-width: 575px) {
      .cart-products__th {
        font-size: 3.2vmin;
        padding-bottom: 3.73333vmin; } }
  @media (min-width: 1800px) {
    .cart-products {
      margin-bottom: 48px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .cart-products {
      margin-bottom: 6.28272vw; } }
  @media (max-width: 575px) {
    .cart-products {
      margin-bottom: 12.8vmin; } }

.order-form__wrap .radio {
  margin-bottom: 1.11111vw;
  display: block; }
  .order-form__wrap .radio:last-child {
    margin-bottom: 0 !important; }
  @media (min-width: 1800px) {
    .order-form__wrap .radio {
      margin-bottom: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-form__wrap .radio {
      margin-bottom: 2.09424vw; } }
  @media (max-width: 575px) {
    .order-form__wrap .radio {
      margin-bottom: 4.26667vmin; } }

.order-form__otheradd {
  color: #97A5D0;
  height: 3.88889vw;
  max-width: 16.66667vw;
  width: 100%; }
  .order-form__otheradd:hover {
    color: #20429E; }
  @media (min-width: 1800px) {
    .order-form__otheradd {
      height: 64px;
      max-width: 240px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .order-form__otheradd {
      height: 8.37696vw;
      max-width: 31.41361vw; } }
  @media (max-width: 575px) {
    .order-form__otheradd {
      height: 17.06667vmin;
      max-width: 64vmin; } }

.totalorder {
  position: sticky;
  top: 1.04167vw;
  border: 0.06944vw solid #DEE6FF;
  background-color: #FAFBFF;
  padding: 1.66667vw; }
  .totalorder__heading {
    margin-bottom: 1.66667vw;
    padding-bottom: 1.66667vw;
    border-bottom: 0.06944vw solid #DEE6FF;
    font-size: 1.66667vw;
    font-weight: 500; }
    @media (min-width: 1800px) {
      .totalorder__heading {
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid #DEE6FF;
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__heading {
        margin-bottom: 3.14136vw;
        padding-bottom: 3.14136vw;
        border-bottom: 0.13089vw solid #DEE6FF;
        font-size: 3.14136vw; } }
    @media (max-width: 575px) {
      .totalorder__heading {
        margin-bottom: 6.4vmin;
        padding-bottom: 6.4vmin;
        border-bottom: 0.26667vmin solid #DEE6FF;
        font-size: 6.4vmin; } }
  .totalorder__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    font-size: 0.97222vw;
    position: relative;
    margin-bottom: 1.11111vw; }
    .totalorder__item svg {
      width: 1.11111vw;
      height: 1.11111vw;
      position: relative;
      top: 0.13889vw; }
      @media (min-width: 1800px) {
        .totalorder__item svg {
          width: 16px;
          height: 16px;
          top: 2px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .totalorder__item svg {
          width: 2.09424vw;
          height: 2.09424vw;
          top: 0.26178vw; } }
      @media (max-width: 575px) {
        .totalorder__item svg {
          width: 4.26667vmin;
          height: 4.26667vmin;
          top: 0.53333vmin; } }
    .totalorder__item:after {
      content: "";
      position: absolute;
      z-index: -1;
      left: 0;
      right: 0;
      top: 0.69444vw;
      border-bottom: 0.06944vw dashed #DEE6FF; }
      @media (min-width: 1800px) {
        .totalorder__item:after {
          top: 10px;
          border-bottom: 1px dashed #DEE6FF; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .totalorder__item:after {
          top: 1.3089vw;
          border-bottom: 0.13089vw dashed #DEE6FF; } }
      @media (max-width: 575px) {
        .totalorder__item:after {
          top: 2.66667vmin;
          border-bottom: 0.26667vmin dashed #DEE6FF; } }
    @media (min-width: 1800px) {
      .totalorder__item {
        font-size: 16px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__item {
        font-size: 1.83246vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .totalorder__item {
        font-size: 3.73333vmin;
        margin-bottom: 4.26667vmin; } }
  .totalorder__title span {
    background-color: #FAFBFF;
    padding-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .totalorder__title span {
        padding-right: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__title span {
        padding-right: 1.3089vw; } }
    @media (max-width: 575px) {
      .totalorder__title span {
        padding-right: 2.66667vmin; } }
  .totalorder__title--big {
    font-weight: 500;
    font-size: 1.11111vw;
    color: #97A5D0; }
    @media (min-width: 1800px) {
      .totalorder__title--big {
        font-size: 18px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__title--big {
        font-size: 2.09424vw; } }
    @media (max-width: 575px) {
      .totalorder__title--big {
        font-size: 4.26667vmin; } }
  .totalorder__value {
    font-weight: 500; }
    .totalorder__value span {
      display: flex;
      background-color: #FAFBFF;
      padding-left: 0.69444vw; }
      @media (min-width: 1800px) {
        .totalorder__value span {
          padding-left: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .totalorder__value span {
          padding-left: 1.3089vw;
          font-size: 2.09424vw; } }
      @media (max-width: 575px) {
        .totalorder__value span {
          padding-left: 2.66667vmin;
          font-size: 4.26667vmin; } }
  .totalorder__ftr {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .totalorder__total {
    font-size: 1.38889vw;
    font-weight: 500;
    color: #EB7B18;
    display: inline-flex;
    align-items: flex-end; }
    .totalorder__total svg {
      width: 1.38889vw;
      height: 1.38889vw;
      top: -2px; }
      @media (min-width: 1800px) {
        .totalorder__total svg {
          width: 20px;
          height: 20px;
          top: -2px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .totalorder__total svg {
          width: 2.6178vw;
          height: 2.6178vw;
          top: -0.26178vw; } }
      @media (max-width: 575px) {
        .totalorder__total svg {
          width: 5.33333vmin;
          height: 5.33333vmin;
          top: -0.53333vmin; } }
    @media (min-width: 1800px) {
      .totalorder__total {
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__total {
        font-size: 2.35602vw; } }
    @media (max-width: 575px) {
      .totalorder__total {
        font-size: 4.8vmin; } }
  .totalorder__wrap {
    margin-bottom: 0.55556vw;
    margin-bottom: 1.66667vw;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .totalorder__wrap {
        margin-bottom: 8px;
        margin-bottom: 24px;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .totalorder__wrap {
        margin-bottom: 1.04712vw;
        margin-bottom: 3.14136vw;
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .totalorder__wrap {
        margin-bottom: 2.13333vmin;
        margin-bottom: 6.4vmin;
        border-bottom: 0.26667vmin solid #DEE6FF; } }
  @media (min-width: 1800px) {
    .totalorder {
      border: 1px solid #DEE6FF;
      padding: 32px;
      top: 15px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .totalorder {
      border: 0.13089vw solid #DEE6FF;
      padding: 3.14136vw;
      top: auto;
      max-width: 46.98953vw;
      margin-bottom: 4.18848vw;
      position: relative; } }
  @media (max-width: 575px) {
    .totalorder {
      border: 0.26667vmin solid #DEE6FF;
      padding: 6.4vmin;
      top: auto;
      max-width: 95.73333vmin;
      margin-bottom: 8.53333vmin;
      position: relative; } }

.catalog-page {
  padding-bottom: 8.33333vw; }
  .catalog-page .categories__col:first-child {
    padding-right: 0 !important; }
  @media (min-width: 1800px) {
    .catalog-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .catalog-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .catalog-page {
      padding-bottom: 17.06667vmin; } }

.total-products {
  color: #97A5D0;
  font-size: 0.97222vw;
  line-height: 120%;
  letter-spacing: -0.02em;
  display: inline-flex; }
  @media (min-width: 1800px) {
    .total-products {
      font-size: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .total-products {
      font-size: 1.83246vw; } }
  @media (max-width: 575px) {
    .total-products {
      font-size: 3.73333vmin;
      line-height: 110%; } }

.category-page {
  display: flex;
  padding-bottom: 8.33333vw;
  position: relative;
  z-index: 99; }
  @media (max-width: 575px) {
    .category-page .title-h1 {
      line-height: 130%;
      padding-bottom: 6.93333vmin; } }
  .category-page__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__container {
        display: block; } }
    @media (max-width: 575px) {
      .category-page__container {
        display: block; } }
  .category-page__aside {
    flex-basis: 25%;
    margin-right: 2.22222vw; }
    @media (min-width: 1800px) {
      .category-page__aside {
        margin-right: 42px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__aside {
        margin-right: 0; } }
    @media (max-width: 575px) {
      .category-page__aside {
        margin-right: 0; } }
  .category-page__main {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__main {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .category-page__main {
        flex-basis: 100%;
        max-width: 100%; } }
  .category-page__products {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.91667vw; }
    @media (min-width: 1800px) {
      .category-page__products {
        margin-bottom: 42px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__products {
        margin-bottom: 5.49738vw; } }
    @media (max-width: 575px) {
      .category-page__products {
        margin-bottom: 4.26667vmin;
        margin-left: -2.13333vmin;
        margin-right: -2.13333vmin; } }
  .category-page__product {
    margin-top: -0.06944vw;
    margin-left: -0.06944vw;
    flex-basis: 33.33%; }
    @media (min-width: 1800px) {
      .category-page__product {
        margin-top: -1px;
        margin-left: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__product {
        margin-top: -0.13089vw;
        margin-left: -0.13089vw;
        flex-basis: 50%; } }
    @media (max-width: 575px) {
      .category-page__product {
        margin-top: 0;
        margin-left: 2.13333vmin;
        margin-right: 2.13333vmin;
        margin-bottom: 4.26667vmin;
        flex-basis: calc(50% - 4.26667vmin); } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .category-page__wrapsortpnl {
      display: flex;
      justify-content: space-between; } }
  @media (max-width: 575px) {
    .category-page__wrapsortpnl {
      display: block; } }
  .category-page__sortpanel {
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .category-page__sortpanel {
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__sortpanel {
        margin-bottom: 4.18848vw;
        width: 100%; } }
    @media (max-width: 575px) {
      .category-page__sortpanel {
        margin-bottom: 6.4vmin;
        width: 100%; } }
  .category-page__subcats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .category-page__subcats {
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__subcats {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .category-page__subcats {
        margin-bottom: 5.33333vmin;
        display: block; } }
  .category-page__catsreset {
    font-size: 0.83333vw;
    color: #97A5D0;
    margin-left: 1.38889vw;
    padding: 0;
    border: none;
    background: none;
    white-space: nowrap;
    text-align: right; }
    .category-page__catsreset:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .category-page__catsreset {
        font-size: 12px;
        margin-left: 20px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__catsreset {
        font-size: 1.57068vw;
        margin-left: 2.6178vw; } }
    @media (max-width: 575px) {
      .category-page__catsreset {
        font-size: 3.2vmin;
        margin-left: 0; } }
  .category-page__catslider {
    max-width: calc(100% - 6.94444vw);
    flex-basis: calc(100% - 6.94444vw); }
    @media (min-width: 1800px) {
      .category-page__catslider {
        max-width: calc(100% - 100px);
        flex-basis: calc(100% - 100px); } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .category-page__catslider {
        max-width: calc(100% - 13.08901vw);
        flex-basis: calc(100% - 13.08901vw); } }
    @media (max-width: 575px) {
      .category-page__catslider {
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 2.93333vmin; } }
  @media (min-width: 1800px) {
    .category-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .category-page {
      display: block;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .category-page {
      display: block;
      padding-bottom: 17.06667vmin; } }

.subcat-tags {
  display: flex;
  align-items: center; }
  .subcat-tags.unslick {
    flex-wrap: wrap; }
    .subcat-tags.unslick .subcat-tags__item {
      margin-bottom: 0.69444vw; }
      @media (min-width: 1800px) {
        .subcat-tags.unslick .subcat-tags__item {
          margin-bottom: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .subcat-tags.unslick .subcat-tags__item {
          margin-bottom: 1.3089vw; } }
      @media (max-width: 575px) {
        .subcat-tags.unslick .subcat-tags__item {
          margin-bottom: 2.66667vmin; } }
  .subcat-tags .btn-slider {
    flex-shrink: 0;
    width: 2.77778vw;
    height: 2.77778vw; }
    .subcat-tags .btn-slider svg {
      width: 1.38889vw;
      height: 1.38889vw; }
      @media (min-width: 1800px) {
        .subcat-tags .btn-slider svg {
          width: 20px;
          height: 20px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .subcat-tags .btn-slider svg {
          width: 2.6178vw;
          height: 2.6178vw; } }
      @media (max-width: 575px) {
        .subcat-tags .btn-slider svg {
          width: 5.33333vmin;
          height: 5.33333vmin; } }
    @media (min-width: 1800px) {
      .subcat-tags .btn-slider {
        width: 40px;
        height: 40px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .subcat-tags .btn-slider {
        width: 5.2356vw;
        height: 5.2356vw; } }
    @media (max-width: 575px) {
      .subcat-tags .btn-slider {
        width: 10.66667vmin;
        height: 10.66667vmin; } }
  .subcat-tags__item {
    margin-right: 0.69444vw; }
    .subcat-tags__item a {
      color: #97A5D0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0.06944vw solid #DEE6FF;
      height: 2.77778vw;
      font-weight: 500;
      font-size: 0.97222vw;
      padding: 0 1.11111vw; }
      .subcat-tags__item a:hover {
        border: 0.06944vw solid #20429E;
        color: #20429E; }
        @media (min-width: 1800px) {
          .subcat-tags__item a:hover {
            border: 1px solid #20429E; } }
        @media (min-width: 576px) and (max-width: 1024px) {
          .subcat-tags__item a:hover {
            border: 0.13089vw solid #20429E; } }
        @media (max-width: 575px) {
          .subcat-tags__item a:hover {
            border: 0.26667vmin solid #20429E; } }
      @media (min-width: 1800px) {
        .subcat-tags__item a {
          border: 1px solid #DEE6FF;
          height: 40px;
          font-size: 14px;
          padding: 0 16px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .subcat-tags__item a {
          border: 0.13089vw solid #DEE6FF;
          height: 5.2356vw;
          font-size: 1.83246vw;
          padding: 0 2.09424vw; } }
      @media (max-width: 575px) {
        .subcat-tags__item a {
          border: 0.26667vmin solid #DEE6FF;
          height: 10.66667vmin;
          font-size: 3.73333vmin;
          padding: 0 4.26667vmin; } }
    @media (min-width: 1800px) {
      .subcat-tags__item {
        margin-right: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .subcat-tags__item {
        margin-right: 1.3089vw; } }
    @media (max-width: 575px) {
      .subcat-tags__item {
        margin-right: 2.66667vmin; } }

.filters {
  border: 0.06944vw solid #DEE6FF;
  background-color: #FAFBFF; }
  .filters__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EB7B18;
    color: #fff; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filters__close {
        width: 8.76963vw;
        height: 8.76963vw; }
        .filters__close svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
    @media (max-width: 575px) {
      .filters__close {
        width: 17.86667vmin;
        height: 17.86667vmin; }
        .filters__close svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
  .filters__title {
    margin: 0;
    padding: 1.66667vw 1.94444vw;
    border-bottom: 0.06944vw solid #DEE6FF;
    color: #97A5D0;
    font-weight: 500;
    font-size: 1.11111vw;
    line-height: 120%; }
    @media (min-width: 1800px) {
      .filters__title {
        padding: 24px 28px;
        border-bottom: 1px solid #DEE6FF;
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filters__title {
        padding: 0;
        padding-left: 4.45026vw;
        border-bottom: 0.13089vw solid #DEE6FF;
        font-size: 2.09424vw;
        display: flex;
        align-items: center;
        justify-content: space-between; } }
    @media (max-width: 575px) {
      .filters__title {
        padding: 0;
        padding-left: 6.4vmin;
        border-bottom: 0.26667vmin solid #DEE6FF;
        font-size: 4.26667vmin;
        display: flex;
        align-items: center;
        justify-content: space-between; } }
  .filters__item {
    margin: 0 1.94444vw;
    padding: 2.22222vw 0;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .filters__item {
        margin: 0 28px;
        padding: 32px 0;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filters__item {
        margin: 0 3.66492vw;
        padding: 4.18848vw 0;
        border-bottom: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .filters__item {
        margin: 0 7.46667vmin;
        padding: 8.53333vmin 0;
        border-bottom: 0.26667vmin solid #DEE6FF; } }
  .filters__reset {
    margin: 2.22222vw 1.94444vw;
    border: 0.06944vw solid #DEE6FF;
    height: 3.81944vw;
    font-size: 0.97222vw;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #97A5D0;
    background-color: transparent;
    width: calc(100% - 3.88889vw); }
    .filters__reset:hover {
      border-color: #20429E;
      color: #20429E; }
    @media (min-width: 1800px) {
      .filters__reset {
        margin: 32px 28px;
        border: 1px solid #DEE6FF;
        height: 55px;
        font-size: 14px;
        width: calc(100% - 56px); } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filters__reset {
        margin: 4.18848vw 3.66492vw;
        border: 0.13089vw solid #DEE6FF;
        height: 7.19895vw;
        font-size: 1.83246vw;
        width: calc(100% - 7.32984vw); } }
    @media (max-width: 575px) {
      .filters__reset {
        margin: 8.53333vmin 7.46667vmin;
        border: 0.26667vmin solid #DEE6FF;
        height: 14.66667vmin;
        font-size: 3.73333vmin;
        width: calc(100% - 14.93333vmin); } }
  @media (min-width: 1800px) {
    .filters {
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filters {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 100;
      overflow-x: hidden;
      overflow-y: scroll;
      transition: all .1s ease-out;
      width: 48.95288vw;
      visibility: hidden;
      opacity: 0; } }
  @media (max-width: 575px) {
    .filters {
      position: fixed;
      left: 0;
      top: 0;
      bottom: 0;
      z-index: 100;
      overflow-x: hidden;
      overflow-y: scroll;
      transition: all .1s ease-out;
      width: 81.86667vmin;
      visibility: hidden;
      opacity: 0; } }
  .filters.is-open {
    opacity: 1;
    visibility: visible; }

.filter__title {
  margin: 0;
  font-size: 1.11111vw;
  font-weight: 500;
  color: #50525D;
  margin-bottom: 1.66667vw;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (min-width: 1800px) {
    .filter__title {
      font-size: 16px;
      margin-bottom: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__title {
      font-size: 2.09424vw;
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .filter__title {
      font-size: 4.26667vmin;
      margin-bottom: 6.4vmin; } }

.filter__helper {
  position: relative; }
  .filter__helper svg {
    color: #97A5D0;
    width: 1.25vw;
    height: 1.25vw;
    cursor: pointer; }
    @media (min-width: 1800px) {
      .filter__helper svg {
        width: 18px;
        height: 18px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filter__helper svg {
        width: 2.35602vw;
        height: 2.35602vw; } }
    @media (max-width: 575px) {
      .filter__helper svg {
        width: 4.8vmin;
        height: 4.8vmin; } }
  .filter__helper:hover .filter__tooltip {
    visibility: visible;
    opacity: 1; }

.filter__tooltip {
  position: absolute;
  left: calc(100% + 1.11111vw);
  top: -0.97222vw;
  background-color: #fff;
  border: 1px solid #DEE6FF;
  padding: 1.66667vw;
  padding-bottom: 0.55556vw;
  z-index: 99;
  width: 25vw;
  font-weight: 400;
  font-size: 0.83333vw;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out; }
  .filter__tooltip:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1.38889vw;
    width: 1.38889vw; }
    @media (min-width: 1800px) {
      .filter__tooltip:before {
        left: -20px;
        width: 20px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filter__tooltip:before {
        left: -2.6178vw;
        width: 2.6178vw; } }
    @media (max-width: 575px) {
      .filter__tooltip:before {
        left: -5.33333vmin;
        width: 5.33333vmin; } }
  .filter__tooltip:after {
    content: "";
    position: absolute;
    left: -0.69444vw;
    top: 0.83333vw;
    width: 1.38889vw;
    height: 1.38889vw;
    display: inline-block;
    border-left: 0.06944vw solid #DEE6FF;
    border-bottom: 0.06944vw solid #DEE6FF;
    background-color: #fff;
    transform: rotate(45deg); }
    @media (min-width: 1800px) {
      .filter__tooltip:after {
        left: -10px;
        top: 12px;
        width: 20px;
        height: 20px;
        border-left: 1px solid #DEE6FF;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filter__tooltip:after {
        left: auto;
        top: -1.3089vw;
        right: 1.3089vw;
        width: 2.6178vw;
        height: 2.6178vw;
        border-left: 0.13089vw solid #DEE6FF;
        border-bottom: 0.13089vw solid #DEE6FF;
        transform: rotate(135deg); } }
    @media (max-width: 575px) {
      .filter__tooltip:after {
        left: auto;
        top: -2.66667vmin;
        right: 2.66667vmin;
        width: 5.33333vmin;
        height: 5.33333vmin;
        border-left: 0.26667vmin solid #DEE6FF;
        border-bottom: 0.26667vmin solid #DEE6FF;
        transform: rotate(135deg); } }
  @media (min-width: 1800px) {
    .filter__tooltip {
      left: calc(100% + 16px);
      top: -14px;
      padding: 24px;
      padding-bottom: 8px;
      width: 360px;
      font-size: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__tooltip {
      left: auto;
      right: -1.57068vw;
      top: 4.71204vw;
      padding: 3.14136vw;
      padding-bottom: 1.04712vw;
      width: 35.34031vw;
      font-size: 1.57068vw; } }
  @media (max-width: 575px) {
    .filter__tooltip {
      left: auto;
      right: -3.2vmin;
      top: 9.6vmin;
      padding: 6.4vmin;
      padding-bottom: 2.13333vmin;
      width: 72vmin;
      font-size: 3.2vmin; } }

.filter__variants {
  position: relative;
  overflow: hidden;
  max-height: 6.38889vw; }
  .filter__variants .checkbox,
  .filter__variants .radio {
    margin-bottom: 0.83333vw;
    display: block; }
    .filter__variants .checkbox:last-child,
    .filter__variants .radio:last-child {
      margin-bottom: 0; }
    @media (min-width: 1800px) {
      .filter__variants .checkbox,
      .filter__variants .radio {
        margin-bottom: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .filter__variants .checkbox,
      .filter__variants .radio {
        margin-bottom: 1.57068vw; } }
    @media (max-width: 575px) {
      .filter__variants .checkbox,
      .filter__variants .radio {
        margin-bottom: 3.2vmin; } }
  .filter__variants.is-open {
    max-height: none !important; }
  @media (min-width: 1800px) {
    .filter__variants {
      max-height: 92px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__variants {
      max-height: 12.04188vw; } }
  @media (max-width: 575px) {
    .filter__variants {
      max-height: 24.53333vmin; } }

.filter__noscroll {
  padding: 0;
  border: none;
  background: none;
  font-size: 0.83333vw;
  color: #97A5D0;
  margin-top: 1.66667vw; }
  .filter__noscroll:hover {
    color: #EB7B18; }
  @media (min-width: 1800px) {
    .filter__noscroll {
      font-size: 12px;
      margin-top: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__noscroll {
      font-size: 1.57068vw;
      margin-top: 3.14136vw; } }
  @media (max-width: 575px) {
    .filter__noscroll {
      font-size: 3.2vmin;
      margin-top: 6.4vmin; } }

.filter__row {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.filter__col {
  max-width: 8.61111vw;
  display: flex;
  align-items: center; }
  @media (min-width: 1800px) {
    .filter__col {
      max-width: 124px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__col {
      max-width: 16.23037vw; } }
  @media (max-width: 575px) {
    .filter__col {
      max-width: 33.06667vmin; } }

.filter__h4 {
  font-size: 0.83333vw;
  margin-right: 0.69444vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .filter__h4 {
      font-size: 12px;
      margin-right: 10px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__h4 {
      font-size: 1.57068vw;
      margin-right: 1.3089vw; } }
  @media (max-width: 575px) {
    .filter__h4 {
      font-size: 3.2vmin;
      margin-right: 2.66667vmin; } }

.filter__input {
  border: 0.06944vw solid #DEE6FF;
  width: 6.94444vw;
  height: 2.91667vw;
  text-indent: 1.04167vw;
  font-size: 1.11111vw; }
  @media (min-width: 1800px) {
    .filter__input {
      border: 1px solid #DEE6FF;
      width: 100px;
      height: 42px;
      text-indent: 15px;
      font-size: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__input {
      border: 0.13089vw solid #DEE6FF;
      width: 13.08901vw;
      height: 5.49738vw;
      text-indent: 1.96335vw;
      font-size: 2.09424vw; } }
  @media (max-width: 575px) {
    .filter__input {
      border: 0.26667vmin solid #DEE6FF;
      width: 22.4vmin;
      height: 11.2vmin;
      text-indent: 4vmin;
      font-size: 4.26667vmin; } }

.filter__rangeslider {
  min-height: 0.27778vw;
  margin-bottom: 1.25vw;
  border-radius: 1.11111vw;
  background-color: #DEE6FF; }
  @media (min-width: 1800px) {
    .filter__rangeslider {
      min-height: 4px;
      margin-bottom: 18px;
      border-radius: 16px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .filter__rangeslider {
      min-height: 0.52356vw;
      margin-bottom: 2.35602vw;
      border-radius: 2.09424vw; } }
  @media (max-width: 575px) {
    .filter__rangeslider {
      min-height: 1.06667vmin;
      margin-bottom: 4.8vmin;
      border-radius: 4.26667vmin; } }

@media (min-width: 576px) and (max-width: 1024px) {
  .overlay {
    background: rgba(19, 54, 124, 0.7);
    transition: all .1s ease-out;
    position: absolute;
    left: 48.95288vw;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99; } }

@media (max-width: 575px) {
  .overlay {
    background: rgba(19, 54, 124, 0.7);
    transition: all .1s ease-out;
    position: absolute;
    left: 81.86667vmin;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99; } }

.overlay.is-active {
  opacity: 1;
  visibility: visible; }

.contacts-page {
  padding-bottom: 8.33333vw; }
  .contacts-page__container {
    display: flex;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .contacts-page__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .contacts-page__container {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
    @media (max-width: 575px) {
      .contacts-page__container {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
  .contacts-page__contacts {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    flex-basis: calc(33.33% - 1.66667vw);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 1800px) {
      .contacts-page__contacts {
        margin-left: 12px;
        margin-right: 12px;
        flex-basis: calc(33.33% - 24px); } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .contacts-page__contacts {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .contacts-page__contacts {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        margin-bottom: 8.53333vmin; } }
  .contacts-page__mapblock {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    flex-basis: calc(66.66% - 1.66667vw);
    height: 35.55556vw; }
    @media (min-width: 1800px) {
      .contacts-page__mapblock {
        margin-left: 12px;
        margin-right: 12px;
        flex-basis: calc(66.66% - 24px);
        height: 512px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .contacts-page__mapblock {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        height: 41.88482vw; } }
    @media (max-width: 575px) {
      .contacts-page__mapblock {
        margin-left: 0;
        margin-right: 0;
        flex-basis: 100%;
        height: 66.66667vmin; } }
  .contacts-page__map {
    position: relative;
    width: 100%;
    height: 100%; }
    .contacts-page__map iframe {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
  @media (min-width: 1800px) {
    .contacts-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contacts-page {
      padding-bottom: 2.6178vw; } }
  @media (max-width: 575px) {
    .contacts-page {
      padding-bottom: 5.33333vmin; } }

.contactsblock__item {
  display: flex;
  align-items: center;
  margin-bottom: 1.66667vw;
  font-weight: 500; }
  .contactsblock__item--phone {
    font-weight: 700;
    font-size: 1.66667vw; }
    @media (min-width: 1800px) {
      .contactsblock__item--phone {
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .contactsblock__item--phone {
        font-size: 3.14136vw; } }
    @media (max-width: 575px) {
      .contactsblock__item--phone {
        font-size: 6.4vmin; } }
  .contactsblock__item a:hover {
    color: #EB7B18; }
  .contactsblock__item svg {
    width: 1.66667vw;
    height: 1.66667vw;
    margin-right: 0.83333vw;
    color: #EB7B18; }
    @media (min-width: 1800px) {
      .contactsblock__item svg {
        width: 24px;
        height: 24px;
        margin-right: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .contactsblock__item svg {
        width: 3.14136vw;
        height: 3.14136vw;
        margin-right: 1.57068vw; } }
    @media (max-width: 575px) {
      .contactsblock__item svg {
        width: 6.4vmin;
        height: 6.4vmin;
        margin-right: 3.2vmin; } }
  @media (min-width: 1800px) {
    .contactsblock__item {
      margin-bottom: 24px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contactsblock__item {
      margin-bottom: 3.14136vw; } }
  @media (max-width: 575px) {
    .contactsblock__item {
      margin-bottom: 6.4vmin; } }

.contactsblock__social {
  margin-bottom: 2.22222vw; }
  @media (min-width: 1800px) {
    .contactsblock__social {
      margin-bottom: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .contactsblock__social {
      margin-bottom: 4.18848vw; } }
  @media (max-width: 575px) {
    .contactsblock__social {
      margin-bottom: 8.53333vmin; } }

.social {
  display: flex; }
  .social__item {
    width: 4.44444vw;
    height: 4.44444vw;
    background-color: #20429E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-left: 0.06944vw solid #2751C2;
    border-right: 0.06944vw solid #2751C2; }
    .social__item svg {
      width: 1.66667vw;
      height: 1.66667vw; }
      @media (min-width: 1800px) {
        .social__item svg {
          width: 24px;
          height: 24px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .social__item svg {
          width: 3.14136vw;
          height: 3.14136vw; } }
      @media (max-width: 575px) {
        .social__item svg {
          width: 6.4vmin;
          height: 6.4vmin; } }
    .social__item:hover {
      background-color: #13367C; }
    @media (min-width: 1800px) {
      .social__item {
        width: 64px;
        height: 64px;
        border-left: 1px solid #2751C2;
        border-right: 1px solid #2751C2; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .social__item {
        width: 8.37696vw;
        height: 8.37696vw;
        border-left: 0.13089vw solid #2751C2;
        border-right: 0.13089vw solid #2751C2; } }
    @media (max-width: 575px) {
      .social__item {
        width: 14.93333vmin;
        height: 14.93333vmin;
        border-left: 0.13089vw solid #2751C2;
        border-right: 0.13089vw solid #2751C2; } }

.news-page {
  padding-bottom: 12.5vw; }
  .news-page__container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    .news-page__container .news {
      flex-basis: calc(33.33% - 1.66667vw);
      margin-bottom: 2.22222vw;
      margin-left: 0.83333vw;
      margin-right: 0.83333vw; }
      @media (min-width: 1800px) {
        .news-page__container .news {
          flex-basis: calc(25% - 24px);
          margin-bottom: 32px;
          margin-left: 12px;
          margin-right: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .news-page__container .news {
          flex-basis: calc(50% - 2.09424vw);
          margin-bottom: 3.14136vw;
          margin-left: 1.04712vw;
          margin-right: 1.04712vw; } }
      @media (max-width: 575px) {
        .news-page__container .news {
          flex-basis: 100%;
          margin-bottom: 6.4vmin;
          margin-left: 0;
          margin-right: 0; } }
    @media (min-width: 1800px) {
      .news-page__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .news-page__container {
        margin-left: -1.04712vw;
        margin-right: -1.04712vw; } }
    @media (max-width: 575px) {
      .news-page__container {
        margin-left: 0;
        margin-right: 0; } }
  @media (min-width: 1800px) {
    .news-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .news-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .news-page {
      padding-bottom: 17.06667vmin; } }

.slider {
  background: url(../images/slider/slide@2x-notebook.jpg) no-repeat center center;
  background-size: cover;
  height: 47.91667vw;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center; }
  .slider__title {
    font-size: 4.30556vw;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    max-width: 50%;
    font-weight: 500;
    margin-bottom: 3.33333vw; }
    @media (min-width: 1800px) {
      .slider__title {
        font-size: 62px;
        margin-bottom: 48px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider__title {
        font-size: 6.28272vw;
        margin-bottom: 6.28272vw;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .slider__title {
        font-size: 8.53333vmin;
        margin-bottom: 12.8vmin;
        max-width: 100%; } }
  .slider__btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.04167vw;
    line-height: 102%;
    text-transform: uppercase; }
    .slider__btn:hover {
      color: #EB7B18; }
    .slider__btn:before {
      content: "";
      width: 3.88889vw;
      height: 3.88889vw;
      display: inline-flex;
      background: #EB7B18 url(../images/sprites/svg/arrow-right-top-white.svg) no-repeat center center;
      background-size: 1.38889vw;
      margin-right: 1.11111vw; }
      @media (min-width: 1800px) {
        .slider__btn:before {
          width: 56px;
          height: 56px;
          margin-right: 16px;
          background-size: 20px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .slider__btn:before {
          width: 7.32984vw;
          height: 7.32984vw;
          margin-right: 2.09424vw;
          background-size: 2.6178vw; } }
      @media (max-width: 575px) {
        .slider__btn:before {
          width: 14.93333vmin;
          height: 14.93333vmin;
          margin-right: 4.26667vmin;
          background-size: 5.33333vmin; } }
    @media (min-width: 1800px) {
      .slider__btn {
        font-size: 15px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider__btn {
        font-size: 1.96335vw; } }
    @media (max-width: 575px) {
      .slider__btn {
        font-size: 4vmin; } }
  .slider .swiper-pagination {
    display: flex;
    align-items: center;
    margin-top: 3.33333vw; }
    @media (min-width: 1800px) {
      .slider .swiper-pagination {
        margin-top: 48px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination {
        margin-top: 6.28272vw; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination {
        margin-top: 12.8vmin; } }
  .slider .swiper-pagination-bullet {
    display: inline-block;
    width: 0.55556vw;
    height: 0.55556vw;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin-right: 0.69444vw;
    cursor: pointer; }
    @media (min-width: 1800px) {
      .slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin-right: 10px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination-bullet {
        width: 1.04712vw;
        height: 1.04712vw;
        margin-right: 1.3089vw; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination-bullet {
        width: 2.13333vmin;
        height: 2.13333vmin;
        margin-right: 2.66667vmin; } }
  .slider .swiper-pagination-bullet-active {
    width: 1.52778vw;
    height: 1.52778vw;
    border: 0.13889vw solid #EB7B18;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .slider .swiper-pagination-bullet-active:after {
      content: "";
      display: inline-block;
      width: 0.55556vw;
      height: 0.55556vw;
      background: white;
      border-radius: 50%; }
      @media (min-width: 1800px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 8px;
          height: 8px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 1.04712vw;
          height: 1.04712vw; } }
      @media (max-width: 575px) {
        .slider .swiper-pagination-bullet-active:after {
          width: 2.13333vmin;
          height: 2.13333vmin; } }
    @media (min-width: 1800px) {
      .slider .swiper-pagination-bullet-active {
        width: 22px;
        height: 22px;
        border: 2px solid #EB7B18; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider .swiper-pagination-bullet-active {
        width: 2.87958vw;
        height: 2.87958vw;
        border: 0.26178vw solid #EB7B18; } }
    @media (max-width: 575px) {
      .slider .swiper-pagination-bullet-active {
        width: 5.86667vmin;
        height: 5.86667vmin;
        border: 0.53333vmin solid #EB7B18; } }
  @media (min-width: 1800px) {
    .slider {
      background: url(../images/slider/slide@2x-desktop.jpg) no-repeat center center;
      background-size: cover;
      height: 690px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .slider {
      background: url(../images/slider/slide@2x-tablet.jpg) no-repeat center center;
      background-size: cover;
      height: 64.5288vw; } }
  @media (max-width: 575px) {
    .slider {
      background: url(../images/slider/slide@2x-mobile.jpg) no-repeat right bottom;
      background-size: cover;
      height: 117.06667vmin; } }

.productsblock {
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw; }
  .productsblock__container {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 575px) {
      .productsblock__container {
        margin-left: -2.13333vmin;
        margin-right: -2.13333vmin; } }
  .productsblock__col {
    flex-basis: 25%;
    margin-left: -0.06944vw;
    margin-top: -0.06944vw; }
    .productsblock__col:first-child {
      padding-right: 2.22222vw; }
      @media (min-width: 1800px) {
        .productsblock__col:first-child {
          padding-right: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .productsblock__col:first-child {
          flex-basis: 100%; } }
      @media (max-width: 575px) {
        .productsblock__col:first-child {
          flex-basis: 100%;
          margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .productsblock__col {
        margin-left: -1px;
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .productsblock__col {
        margin-left: -0.13089vw;
        margin-top: -0.13089vw;
        flex-basis: 50%; } }
    @media (max-width: 575px) {
      .productsblock__col {
        margin-left: 2.13333vmin;
        margin-right: 2.13333vmin;
        margin-top: 0;
        margin-bottom: 4.26667vmin;
        flex-basis: calc(50% - 4.26667vmin); } }
  @media (min-width: 1800px) {
    .productsblock {
      padding-top: 180px;
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .productsblock {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .productsblock {
      padding-top: 17.06667vmin;
      padding-bottom: 12.8vmin; } }

.categories {
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw;
  background-color: #FAFBFF;
  border-top: 0.06944vw solid #DEE6FF; }
  .categories .subtitle__h2 {
    max-width: 25.41667vw; }
    @media (min-width: 1800px) {
      .categories .subtitle__h2 {
        max-width: 366px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories .subtitle__h2 {
        max-width: 64.39791vw; } }
    @media (max-width: 575px) {
      .categories .subtitle__h2 {
        max-width: 100%; } }
  .categories__container {
    display: flex;
    flex-wrap: wrap; }
  .categories__col {
    flex-basis: 33.33%;
    width: 33.33%;
    margin-left: -0.06944vw;
    margin-top: -0.06944vw; }
    .categories__col:first-child {
      padding-right: 2.22222vw; }
      @media (min-width: 1800px) {
        .categories__col:first-child {
          padding-right: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .categories__col:first-child {
          padding-right: 0;
          flex-basis: 100%; } }
      @media (max-width: 575px) {
        .categories__col:first-child {
          padding-right: 0;
          flex-basis: 100%; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories__col:nth-child(4) {
        flex-basis: 100%; } }
    @media (min-width: 1800px) {
      .categories__col {
        margin-left: -1px;
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .categories__col {
        margin-left: -0.13089vw;
        margin-top: -0.13089vw;
        flex-basis: 50%;
        width: 50%; } }
    @media (max-width: 575px) {
      .categories__col {
        margin-left: 0;
        margin-top: -0.26667vmin;
        flex-basis: 100%;
        width: 100%; } }
  @media (min-width: 1800px) {
    .categories {
      padding-top: 180px;
      padding-bottom: 180px;
      border-top: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .categories {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw;
      border-top: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .categories {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      border-top: 0.26667vmin solid #DEE6FF; } }

.newsblock {
  padding-top: 8.33333vw;
  padding-bottom: 4.86111vw;
  background-color: #FAFBFF;
  border-bottom: 0.06944vw solid #DEE6FF;
  position: relative; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .newsblock .subtitle__h2 {
      margin-bottom: 0;
      margin-right: 0;
      max-width: 58.90052vw; } }
  @media (max-width: 575px) {
    .newsblock .subtitle__h2 {
      margin-bottom: 0;
      margin-right: 0;
      max-width: 100%; } }
  .newsblock__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__container {
        display: block; } }
    @media (max-width: 575px) {
      .newsblock__container {
        display: block; } }
  .newsblock__title {
    max-width: 25.41667vw;
    padding-right: 2.22222vw; }
    @media (min-width: 1800px) {
      .newsblock__title {
        max-width: 366px;
        padding-right: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__title {
        max-width: 66.66%;
        width: 100%;
        padding-right: 4.18848vw; } }
    @media (max-width: 575px) {
      .newsblock__title {
        max-width: 100%;
        width: 100%;
        padding-right: 0; } }
  .newsblock__infoblock {
    flex-basis: 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .newsblock__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 12.8vmin; } }
  .newsblock__slider {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__slider {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .newsblock__slider {
        flex-basis: 100%;
        max-width: 100%; } }
  .newsblock__slidernav {
    display: flex; }
    .newsblock__slidernav .btn-slider {
      margin-left: -0.06944vw; }
      @media (min-width: 1800px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -1px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -0.13089vw;
          top: -0.52356vw; } }
      @media (max-width: 575px) {
        .newsblock__slidernav .btn-slider {
          margin-left: -0.26667vmin;
          top: 0; } }
    @media (max-width: 575px) {
      .newsblock__slidernav {
        position: absolute;
        bottom: 0;
        left: 4.26667vmin; } }
  .newsblock__ftr {
    display: flex;
    justify-content: flex-end;
    padding-top: 2.77778vw; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__ftr .btn {
        min-width: 32.06806vw; } }
    @media (max-width: 575px) {
      .newsblock__ftr .btn {
        height: 14.93333vmin;
        min-width: 43.46667vmin;
        padding-left: 4.26667vmin;
        padding-right: 4.26667vmin;
        font-size: 3.73333vmin; } }
    @media (min-width: 1800px) {
      .newsblock__ftr {
        padding-top: 40px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .newsblock__ftr {
        padding-top: 4.18848vw; } }
    @media (max-width: 575px) {
      .newsblock__ftr {
        padding-top: 6.4vmin; } }
  @media (min-width: 1800px) {
    .newsblock {
      padding-top: 180px;
      padding-bottom: 70px;
      border-bottom: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .newsblock {
      padding-top: 10.4712vw;
      padding-bottom: 4.18848vw;
      border-bottom: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .newsblock {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      border-bottom: 0.26667vmin solid #DEE6FF; } }

.advantages {
  background: #13367C url(../images/bg-advantages.png) no-repeat right center;
  background-size: cover;
  color: #fff;
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw; }
  .advantages__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advantages__container {
        flex-wrap: wrap; } }
    @media (max-width: 575px) {
      .advantages__container {
        flex-wrap: wrap; } }
  .advantages__item {
    margin-right: -0.06944vw;
    flex-basis: 25%; }
    @media (min-width: 1800px) {
      .advantages__item {
        margin-right: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advantages__item {
        margin-right: -0.13089vw;
        flex-basis: 50%; } }
    @media (max-width: 575px) {
      .advantages__item {
        margin-right: 0;
        flex-basis: 100%; } }
  @media (min-width: 1800px) {
    .advantages {
      padding-top: 180px;
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .advantages {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .advantages {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin;
      background: #13367C; } }

.advant {
  background: rgba(19, 54, 124, 0.5);
  border: 1px solid rgba(222, 230, 255, 0.15);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 2.22222vw; }
  .advant__ico {
    margin-bottom: 1.66667vw;
    color: #EB7B18; }
    .advant__ico svg {
      width: 3.47222vw;
      height: 3.47222vw; }
      @media (min-width: 1800px) {
        .advant__ico svg {
          width: 60px;
          height: 60px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .advant__ico svg {
          width: 6.5445vw;
          height: 6.5445vw; } }
      @media (max-width: 575px) {
        .advant__ico svg {
          width: 13.33333vmin;
          height: 13.33333vmin; } }
    @media (min-width: 1800px) {
      .advant__ico {
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__ico {
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .advant__ico {
        margin-bottom: 6.4vmin; } }
  .advant__title {
    font-size: 1.38889vw;
    line-height: 120%;
    font-weight: 500;
    padding-bottom: 1.11111vw;
    margin-bottom: 1.11111vw;
    position: relative; }
    .advant__title:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 3.47222vw;
      height: 0.20833vw;
      border-radius: 0.83333vw;
      background-color: #EB7B18; }
      @media (min-width: 1800px) {
        .advant__title:after {
          width: 50px;
          height: 3px;
          border-radius: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .advant__title:after {
          width: 6.5445vw;
          height: 0.39267vw;
          border-radius: 1.57068vw; } }
      @media (max-width: 575px) {
        .advant__title:after {
          width: 13.33333vmin;
          height: 0.8vmin;
          border-radius: 3.2vmin; } }
    @media (min-width: 1800px) {
      .advant__title {
        font-size: 22px;
        padding-bottom: 16px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__title {
        font-size: 2.6178vw;
        padding-bottom: 2.09424vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .advant__title {
        font-size: 5.33333vmin;
        padding-bottom: 4.26667vmin;
        margin-bottom: 4.26667vmin; } }
  .advant__subtitle {
    font-size: 0.97222vw;
    line-height: 140%;
    color: #99B5FF; }
    @media (min-width: 1800px) {
      .advant__subtitle {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .advant__subtitle {
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .advant__subtitle {
        font-size: 3.73333vmin; } }
  @media (min-width: 1800px) {
    .advant {
      padding: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .advant {
      padding: 4.18848vw; } }
  @media (max-width: 575px) {
    .advant {
      padding: 8.53333vmin;
      background: #20429E; } }

.seoblock {
  padding-top: 8.33333vw;
  padding-bottom: 7.22222vw; }
  .seoblock__title {
    font-size: 2.91667vw;
    line-height: 110%;
    font-weight: 500;
    margin-bottom: 3.33333vw;
    margin-top: 0; }
    @media (min-width: 1800px) {
      .seoblock__title {
        font-size: 48px;
        margin-bottom: 54px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .seoblock__title {
        font-size: 4.18848vw;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .seoblock__title {
        font-size: 6.93333vmin;
        margin-bottom: 8.53333vmin; } }
  .seoblock__content {
    -moz-column-count: 2;
         column-count: 2;
    color: #50525D;
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .seoblock__content {
        font-size: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .seoblock__content {
        font-size: 1.83246vw;
        -moz-column-count: 1;
             column-count: 1; } }
    @media (max-width: 575px) {
      .seoblock__content {
        font-size: 3.73333vmin;
        -moz-column-count: 1;
             column-count: 1; } }
  @media (min-width: 1800px) {
    .seoblock {
      padding-top: 180px;
      padding-bottom: 164px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .seoblock {
      padding-top: 10.4712vw;
      padding-bottom: 8.37696vw; } }
  @media (max-width: 575px) {
    .seoblock {
      padding-top: 17.06667vmin;
      padding-bottom: 12.8vmin; } }

.videos {
  background-color: #FAFBFF;
  padding: 8.33333vw 0;
  border-top: 0.06944vw solid #DEE6FF; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos .subtitle__h2 {
      display: none; } }
  @media (max-width: 575px) {
    .videos .subtitle__h2 {
      display: none; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos .title-h2 {
      margin-bottom: 0; } }
  @media (max-width: 575px) {
    .videos .title-h2 {
      margin-bottom: 0; } }
  .videos__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__container {
        display: block; } }
    @media (max-width: 575px) {
      .videos__container {
        display: block; } }
  .videos__title {
    max-width: 25.41667vw;
    padding-right: 2.22222vw;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .videos__title {
        max-width: 366px;
        padding-right: 32px;
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__title {
        margin-bottom: 0;
        padding-right: 0;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .videos__title {
        margin-bottom: 0;
        padding-right: 0;
        max-width: 100%; } }
  .videos__infoblock {
    flex-basis: 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 6.28272vw; } }
    @media (max-width: 575px) {
      .videos__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 12.8vmin; } }
  .videos__slider {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .videos__slider {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .videos__slider {
        flex-basis: 100%;
        max-width: 100%; } }
  .videos__slidernav {
    display: flex; }
    .videos__slidernav .btn-slider {
      margin-left: -0.06944vw; }
      @media (min-width: 1800px) {
        .videos__slidernav .btn-slider {
          margin-left: -1px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .videos__slidernav .btn-slider {
          margin-left: -0.13089vw; } }
      @media (max-width: 575px) {
        .videos__slidernav .btn-slider {
          margin-left: 0; } }
  @media (min-width: 1800px) {
    .videos {
      padding: 180px 0;
      border-top: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .videos {
      padding: 10.4712vw 0;
      border-top: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .videos {
      padding: 17.06667vmin 0;
      border-top: 0.26667vmin solid #DEE6FF; } }

.slider-videos a {
  display: block;
  position: relative; }
  .slider-videos a:hover:before {
    background-color: rgba(12, 17, 31, 0.4); }
  .slider-videos a:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(12, 17, 31, 0.7);
    transition: all .3s ease-out; }
  .slider-videos a:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 0.13889vw solid #fff;
    width: 6.25vw;
    height: 6.25vw;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: url(../images/sprites/svg/play-orange.svg) no-repeat center center;
    background-size: 2.36111vw; }
    @media (min-width: 1800px) {
      .slider-videos a:after {
        border: 2px solid #fff;
        width: 90px;
        height: 90px;
        background-size: 34px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .slider-videos a:after {
        border: 0.26178vw solid #fff;
        width: 10.20942vw;
        height: 10.20942vw;
        background-size: 3.40314vw; } }
    @media (max-width: 575px) {
      .slider-videos a:after {
        border: 0.53333vmin solid #fff;
        width: 20.8vmin;
        height: 20.8vmin;
        background-size: 6.93333vmin; } }

.page-list {
  display: flex;
  flex-wrap: wrap; }
  .page-list a {
    margin-right: 10px;
    margin-bottom: 10px; }

.product-page {
  padding-bottom: 8.33333vw; }
  .product-page__container {
    display: flex;
    align-items: flex-start;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw; }
    @media (min-width: 1800px) {
      .product-page__container {
        margin-left: -12px;
        margin-right: -12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__container {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
    @media (max-width: 575px) {
      .product-page__container {
        margin-left: 0;
        margin-right: 0;
        display: block; } }
  .product-page__galleryblock, .product-page__description {
    flex-basis: calc(50% - 1.66667vw);
    max-width: calc(50% - 1.66667vw);
    margin-left: 0.83333vw;
    margin-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .product-page__galleryblock, .product-page__description {
        flex-basis: calc(50% - 24px);
        max-width: calc(50% - 24px);
        margin-left: 12px;
        margin-right: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__galleryblock, .product-page__description {
        flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
    @media (max-width: 575px) {
      .product-page__galleryblock, .product-page__description {
        flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  .product-page__description {
    padding-left: 0; }
    @media (min-width: 1800px) {
      .product-page__description {
        padding-left: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__description {
        padding-left: 0; } }
    @media (max-width: 575px) {
      .product-page__description {
        padding-left: 0; } }
  .product-page__galleryblock {
    display: flex;
    align-items: center; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__galleryblock {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .product-page__galleryblock {
        margin-bottom: 8.53333vmin;
        display: block; } }
  .product-page__gallery {
    order: 2; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__gallery {
        order: 1; } }
    @media (max-width: 575px) {
      .product-page__gallery {
        order: 1; } }
  .product-page__gallerythumb {
    order: 1;
    width: 6.11111vw;
    margin-right: 1.66667vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media (min-width: 1800px) {
      .product-page__gallerythumb {
        width: 111px;
        margin-right: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__gallerythumb {
        order: 2;
        width: 20.41885vw;
        margin-right: 0;
        margin-left: 3.14136vw; } }
    @media (max-width: 575px) {
      .product-page__gallerythumb {
        order: 2;
        width: 20.41885vw;
        margin-right: 0;
        margin-left: 3.14136vw;
        display: none; } }
  .product-page__headpanel {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .product-page__headpanel {
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__headpanel {
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .product-page__headpanel {
        margin-bottom: 8.53333vmin; } }
  .product-page__wrap {
    display: flex;
    align-items: center;
    flex: 1 1;
    border-bottom: 0.06944vw solid #DEE6FF;
    padding-bottom: 1.45833vw; }
    @media (min-width: 1800px) {
      .product-page__wrap {
        border-bottom: 1px solid #DEE6FF;
        padding-bottom: 27px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__wrap {
        border-bottom: 0.13089vw solid #DEE6FF;
        padding-bottom: 2.6178vw; } }
    @media (max-width: 575px) {
      .product-page__wrap {
        border-bottom: none;
        padding-bottom: 0;
        display: block; } }
  .product-page__article {
    color: #97A5D0;
    border: 0.06944vw solid #DEE6FF;
    background-color: #FAFBFF;
    font-size: 0.69444vw;
    font-weight: 500;
    padding: 0.69444vw;
    margin-right: 2.22222vw;
    text-transform: uppercase; }
    @media (min-width: 1800px) {
      .product-page__article {
        font-size: 12px;
        padding: 10px;
        border: 1px solid #DEE6FF;
        margin-right: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__article {
        font-size: 1.3089vw;
        padding: 1.3089vw;
        border: 0.13089vw solid #DEE6FF;
        margin-right: 4.18848vw; } }
    @media (max-width: 575px) {
      .product-page__article {
        font-size: 2.66667vmin;
        padding: 2.66667vmin;
        border: 0.26667vmin solid #DEE6FF;
        margin-right: 0;
        margin-bottom: 1.6vmin;
        display: inline-block; } }
  .product-page__status {
    font-size: 0.83333vw;
    color: #50525D;
    display: inline-flex;
    align-items: center; }
    .product-page__status:before {
      content: "";
      width: 0.55556vw;
      height: 0.55556vw;
      margin-right: 0.83333vw; }
      @media (min-width: 1800px) {
        .product-page__status:before {
          width: 8px;
          height: 8px;
          margin-right: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__status:before {
          width: 1.04712vw;
          height: 1.04712vw;
          margin-right: 1.57068vw; } }
      @media (max-width: 575px) {
        .product-page__status:before {
          width: 2.13333vmin;
          height: 2.13333vmin;
          margin-right: 3.2vmin; } }
    .product-page__status--available:before {
      background-color: #36EB18; }
    .product-page__status--notavailable:before {
      background-color: #EB1818; }
    @media (min-width: 1800px) {
      .product-page__status {
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__status {
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .product-page__status {
        font-size: 2.66667vmin; } }
  .product-page__btn {
    width: 3.88889vw;
    height: 3.88889vw;
    color: #97A5D0;
    margin-left: 1.11111vw;
    border: 0.06944vw solid #DEE6FF;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .product-page__btn.is-active {
      color: #EB7B18; }
    .product-page__btn svg {
      width: 2.22222vw;
      height: 2.22222vw; }
      @media (min-width: 1800px) {
        .product-page__btn svg {
          width: 32px;
          height: 32px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__btn svg {
          width: 4.18848vw;
          height: 4.18848vw; } }
      @media (max-width: 575px) {
        .product-page__btn svg {
          width: 8.53333vmin;
          height: 8.53333vmin; } }
    .product-page__btn:hover:not(.is-active) {
      color: #EB7B18;
      border: 0.06944vw solid #EB7B18; }
      @media (min-width: 1800px) {
        .product-page__btn:hover:not(.is-active) {
          border: 1px solid #EB7B18; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__btn:hover:not(.is-active) {
          border: 0.13089vw solid #EB7B18; } }
      @media (max-width: 575px) {
        .product-page__btn:hover:not(.is-active) {
          border: 0.26667vmin solid #EB7B18; } }
    @media (min-width: 1800px) {
      .product-page__btn {
        width: 64px;
        height: 64px;
        margin-left: 16px;
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__btn {
        width: 7.32984vw;
        height: 7.32984vw;
        margin-left: 1.57068vw;
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .product-page__btn {
        width: 14.93333vmin;
        height: 14.93333vmin;
        margin-left: 2.13333vmin;
        border: 0.26667vmin solid #DEE6FF; } }
  .product-page__row {
    display: flex;
    margin-left: -0.83333vw;
    margin-right: -0.83333vw;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1800px) {
      .product-page__row {
        margin-left: -12px;
        margin-right: -12px;
        margin-bottom: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__row {
        margin-left: -1.04712vw;
        margin-right: -1.04712vw;
        margin-bottom: 4.18848vw; } }
    @media (max-width: 575px) {
      .product-page__row {
        margin-left: 0;
        margin-right: 0;
        display: block;
        margin-bottom: 8.53333vmin; } }
  .product-page__box {
    margin-left: 0.83333vw;
    margin-right: 0.83333vw;
    border: 0.06944vw solid #DEE6FF;
    background-color: #FAFBFF;
    padding: 2.22222vw;
    flex-basis: calc(50% - 1.66667vw); }
    @media (min-width: 1800px) {
      .product-page__box {
        margin-left: 12px;
        margin-right: 12px;
        border: 1px solid #DEE6FF;
        padding: 32px;
        flex-basis: calc(50% - 24px); } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__box {
        margin-left: 1.04712vw;
        margin-right: 1.04712vw;
        border: 0.13089vw solid #DEE6FF;
        padding: 4.18848vw;
        flex-basis: calc(50% - 2.09424vw); } }
    @media (max-width: 575px) {
      .product-page__box {
        margin-left: 0;
        margin-right: 0;
        border: 0.26667vmin solid #DEE6FF;
        padding: 6.4vmin;
        flex-basis: 100%;
        margin-bottom: 4.26667vmin; } }
  .product-page__prices {
    display: flex;
    align-items: flex-end;
    margin-bottom: 1.11111vw; }
    @media (min-width: 1800px) {
      .product-page__prices {
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__prices {
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .product-page__prices {
        margin-bottom: 4.26667vmin; } }
  .product-page__price {
    font-size: 1.94444vw;
    line-height: 120%;
    letter-spacing: -0.02em;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-end;
    margin-right: 1.11111vw; }
    .product-page__price svg {
      width: 1.38889vw;
      height: 1.38889vw;
      position: relative;
      top: -0.20833vw; }
      @media (min-width: 1800px) {
        .product-page__price svg {
          width: 20px;
          height: 20px;
          top: -3px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__price svg {
          width: 2.6178vw;
          height: 2.6178vw;
          top: -0.39267vw; } }
      @media (max-width: 575px) {
        .product-page__price svg {
          width: 5.33333vmin;
          height: 5.33333vmin;
          top: -0.8vmin; } }
    @media (min-width: 1800px) {
      .product-page__price {
        font-size: 28px;
        margin-right: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__price {
        font-size: 3.66492vw;
        margin-right: 2.09424vw; } }
    @media (max-width: 575px) {
      .product-page__price {
        font-size: 7.46667vmin;
        margin-right: 4.26667vmin; } }
  .product-page__oldprice {
    color: #97A5D0;
    line-height: 120%;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-size: 1.11111vw;
    position: relative;
    top: -0.20833vw; }
    @media (min-width: 1800px) {
      .product-page__oldprice {
        font-size: 16px;
        top: -3px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__oldprice {
        font-size: 2.09424vw;
        top: -0.39267vw; } }
    @media (max-width: 575px) {
      .product-page__oldprice {
        font-size: 4.26667vmin;
        top: -0.8vmin; } }
  .product-page__counts {
    color: #97A5D0;
    font-size: 0.97222vw;
    margin-bottom: 1.11111vw; }
    .product-page__counts .number {
      margin-right: 0.83333vw; }
      @media (min-width: 1800px) {
        .product-page__counts .number {
          margin-right: 12px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__counts .number {
          margin-right: 1.57068vw; } }
      @media (max-width: 575px) {
        .product-page__counts .number {
          margin-right: 3.2vmin; } }
    @media (min-width: 1800px) {
      .product-page__counts {
        font-size: 14px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__counts {
        font-size: 1.83246vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .product-page__counts {
        font-size: 3.73333vmin;
        margin-bottom: 4.26667vmin; } }
  .product-page__buy {
    color: #fff;
    width: 100%;
    padding-left: 1.66667vw;
    padding-right: 1.66667vw;
    white-space: nowrap; }
    .product-page__buy svg {
      width: 2.22222vw;
      height: 2.22222vw;
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .product-page__buy svg {
          width: 32px;
          height: 32px;
          margin-right: 10px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__buy svg {
          width: 4.18848vw;
          height: 4.18848vw;
          margin-right: 1.3089vw; } }
      @media (max-width: 575px) {
        .product-page__buy svg {
          width: 8.53333vmin;
          height: 8.53333vmin;
          margin-right: 2.66667vmin; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__buy {
        height: 7.32984vw;
        font-size: 1.83246vw; } }
    @media (max-width: 575px) {
      .product-page__buy {
        height: 14.93333vmin;
        font-size: 3.73333vmin; } }
  .product-page__info {
    font-size: 0.97222vw;
    color: #50525D;
    margin-bottom: 1.11111vw; }
    .product-page__info:last-child {
      margin-bottom: 0; }
    @media (min-width: 1800px) {
      .product-page__info {
        font-size: 16px;
        margin-bottom: 16px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__info {
        font-size: 1.83246vw;
        margin-bottom: 2.09424vw; } }
    @media (max-width: 575px) {
      .product-page__info {
        font-size: 3.73333vmin;
        margin-bottom: 4.26667vmin; } }
  .product-page__introtext {
    font-size: 0.97222vw;
    line-height: 150%;
    color: #50525D;
    margin-bottom: 2.22222vw;
    padding-bottom: 2.22222vw;
    border-bottom: 0.06944vw solid #DEE6FF;
    max-width: 43.68056vw; }
    @media (min-width: 1800px) {
      .product-page__introtext {
        font-size: 16px;
        margin-bottom: 32px;
        padding-bottom: 32px;
        border-bottom: 1px solid #DEE6FF;
        max-width: 629px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__introtext {
        font-size: 1.83246vw;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .product-page__introtext {
        font-size: 3.73333vmin;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        max-width: 100%; } }
  .product-page__chars {
    max-width: 43.68056vw; }
    .product-page__chars .chars {
      font-size: 0.97222vw; }
      .product-page__chars .chars__item {
        margin-bottom: 0.76389vw; }
      @media (min-width: 1800px) {
        .product-page__chars .chars {
          font-size: 16px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .product-page__chars .chars {
          font-size: 2.09424vw; } }
      @media (max-width: 575px) {
        .product-page__chars .chars {
          font-size: 4.26667vmin; } }
    @media (min-width: 1800px) {
      .product-page__chars {
        max-width: 629px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__chars {
        max-width: 100%;
        display: none; } }
    @media (max-width: 575px) {
      .product-page__chars {
        max-width: 100%;
        display: none; } }
  .product-page__allchars {
    font-size: 0.83333vw;
    color: #97A5D0; }
    .product-page__allchars:hover {
      color: #EB7B18; }
    @media (min-width: 1800px) {
      .product-page__allchars {
        font-size: 12px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .product-page__allchars {
        font-size: 1.57068vw; } }
    @media (max-width: 575px) {
      .product-page__allchars {
        font-size: 3.2vmin; } }
  @media (min-width: 1800px) {
    .product-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .product-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .product-page {
      padding-bottom: 17.06667vmin; } }

.gallery {
  max-width: calc(100% - 7.77778vw);
  border: 1px solid #DEE6FF; }
  @media (min-width: 1800px) {
    .gallery {
      max-width: calc(100% - 135px); } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .gallery {
      max-width: calc(100% - 23.56021vw); } }
  @media (max-width: 575px) {
    .gallery {
      max-width: 100%; } }

.gallery-thumb .slick-current .gallery-thumb__slide {
  border: 0.06944vw solid #20429E; }
  @media (min-width: 1800px) {
    .gallery-thumb .slick-current .gallery-thumb__slide {
      border: 1px solid #20429E; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .gallery-thumb .slick-current .gallery-thumb__slide {
      border: 0.13089vw solid #20429E; } }
  @media (max-width: 575px) {
    .gallery-thumb .slick-current .gallery-thumb__slide {
      border: 0.26667vmin solid #20429E; } }

.gallery-thumb__slide {
  border: 0.06944vw solid #DEE6FF;
  margin-top: 0.55556vw;
  margin-bottom: 0.55556vw;
  cursor: pointer;
  transition: all .3s ease-out; }
  .gallery-thumb__slide:hover {
    opacity: 0.7; }
  @media (min-width: 1800px) {
    .gallery-thumb__slide {
      margin-top: 8px;
      margin-bottom: 8px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .gallery-thumb__slide {
      margin-top: 1.04712vw;
      margin-bottom: 1.04712vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .gallery-thumb__slide {
      margin-top: 2.13333vmin;
      margin-bottom: 2.13333vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.gallery-thumb__btn {
  width: 3.19444vw;
  height: 3.19444vw;
  border: 0.06944vw solid #DEE6FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #EB7B18; }
  .gallery-thumb__btn:hover {
    border: 1px solid #20429E; }
  .gallery-thumb__btn svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1800px) {
      .gallery-thumb__btn svg {
        width: 24px;
        height: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .gallery-thumb__btn svg {
        width: 3.14136vw;
        height: 3.14136vw; } }
    @media (max-width: 575px) {
      .gallery-thumb__btn svg {
        width: 6.4vmin;
        height: 6.4vmin; } }
  @media (min-width: 1800px) {
    .gallery-thumb__btn {
      width: 46px;
      height: 46px;
      border: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .gallery-thumb__btn {
      width: 6.02094vw;
      height: 6.02094vw;
      border: 0.13089vw solid #DEE6FF; } }
  @media (max-width: 575px) {
    .gallery-thumb__btn {
      width: 12.26667vmin;
      height: 12.26667vmin;
      border: 0.26667vmin solid #DEE6FF; } }

.prodtabs {
  padding-top: 8.33333vw;
  padding-bottom: 6.94444vw;
  border-top: 0.06944vw solid #DEE6FF;
  border-bottom: 0.06944vw solid #DEE6FF;
  background-color: #FAFBFF; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodtabs .container {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 575px) {
    .prodtabs .container {
      padding-left: 0;
      padding-right: 0; } }
  .prodtabs__titlemobile {
    display: none; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs__titlemobile svg {
        width: 4.18848vw;
        height: 4.18848vw;
        color: #97A5D0;
        position: relative;
        flex-shrink: 0;
        margin-left: 2.09424vw; } }
    @media (max-width: 575px) {
      .prodtabs__titlemobile svg {
        width: 6.4vmin;
        height: 6.4vmin;
        color: #97A5D0;
        position: relative;
        flex-shrink: 0;
        margin-left: 4.26667vmin; } }
    .prodtabs__titlemobile.is-active {
      color: #13367C; }
      .prodtabs__titlemobile.is-active svg {
        transform: rotate(90deg); }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs__titlemobile {
        display: flex;
        font-size: 3.40314vw;
        align-items: center;
        justify-content: space-between;
        padding: 3.14136vw 2.09424vw;
        font-weight: 500;
        color: #97A5D0;
        border-bottom: 1px solid #DEE6FF; } }
    @media (max-width: 575px) {
      .prodtabs__titlemobile {
        display: flex;
        font-size: 5.33333vmin;
        align-items: center;
        justify-content: space-between;
        padding: 4.8vmin 4.26667vmin;
        font-weight: 500;
        color: #97A5D0;
        border-bottom: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodtabs__wrapper {
      display: none;
      padding: 3.14136vw 2.09424vw; } }
  @media (max-width: 575px) {
    .prodtabs__wrapper {
      display: none;
      padding: 6.4vmin 4.26667vmin; } }
  .prodtabs .chars {
    max-width: 47.91667vw;
    color: #50525D; }
    @media (max-width: 575px) {
      .prodtabs .chars__item {
        display: block;
        margin-bottom: 6.4vmin; } }
    @media (max-width: 575px) {
      .prodtabs .chars__item:after {
        display: none; } }
    @media (max-width: 575px) {
      .prodtabs .chars__name {
        font-weight: 500;
        margin-bottom: 3.2vmin; } }
    @media (min-width: 1800px) {
      .prodtabs .chars {
        max-width: 690px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs .chars {
        max-width: 100%; } }
    @media (max-width: 575px) {
      .prodtabs .chars {
        max-width: 100%; } }
  .prodtabs .chars__name span,
  .prodtabs .chars__value span {
    background-color: #FAFBFF;
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 575px) {
    .prodtabs__content:last-child .prodtabs__titlemobile {
      border-bottom: none; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodtabs__content {
      display: block !important; } }
  @media (max-width: 575px) {
    .prodtabs__content {
      display: block !important; } }
  .prodtabs__tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3.33333vw;
    border-bottom: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .prodtabs__tabs {
        margin-bottom: 64px;
        border-bottom: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs__tabs {
        display: none; } }
    @media (max-width: 575px) {
      .prodtabs__tabs {
        display: none; } }
  .prodtabs__tab {
    font-size: 1.80556vw;
    font-weight: 500;
    color: #97A5D0;
    padding-bottom: 1.66667vw;
    cursor: pointer;
    transition: all .3s ease-out; }
    .prodtabs__tab.is-active {
      color: #20429E; }
    .prodtabs__tab:hover {
      color: #20429E; }
    @media (min-width: 1800px) {
      .prodtabs__tab {
        font-size: 32px;
        padding-bottom: 32px; } }
  .prodtabs__products {
    display: flex;
    flex-wrap: wrap; }
    @media (max-width: 575px) {
      .prodtabs__products {
        margin-right: -2.13333vmin;
        margin-left: -2.13333vmin; } }
  .prodtabs__product {
    margin-right: -0.06944vw;
    margin-top: -0.06944vw;
    flex-basis: 25%; }
    @media (min-width: 1800px) {
      .prodtabs__product {
        margin-right: -1px;
        margin-top: -1px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs__product {
        flex-basis: 50%;
        margin-right: -0.13089vw;
        margin-top: -0.13089vw; } }
    @media (max-width: 575px) {
      .prodtabs__product {
        flex-basis: calc(50% - 4.26667vmin);
        margin-right: 2.13333vmin;
        margin-left: 2.13333vmin;
        margin-bottom: 4.26667vmin; } }
  .prodtabs__contentwrapper {
    max-width: 73.47222vw; }
    @media (min-width: 1800px) {
      .prodtabs__contentwrapper {
        max-width: 1058px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodtabs__contentwrapper {
        max-width: 100%; } }
    @media (max-width: 575px) {
      .prodtabs__contentwrapper {
        max-width: 100%; } }
  @media (min-width: 1800px) {
    .prodtabs {
      padding-top: 180px;
      padding-bottom: 180px;
      border-top: 1px solid #DEE6FF;
      border-bottom: 1px solid #DEE6FF; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodtabs {
      padding-top: 0;
      padding-bottom: 0;
      border-bottom: none; } }
  @media (max-width: 575px) {
    .prodtabs {
      padding-top: 0;
      padding-bottom: 0; } }

@media (max-width: 575px) {
  .slider-products {
    margin-left: -2.13333vmin;
    margin-right: -2.13333vmin; } }

@media (max-width: 575px) {
  .slider-products__item {
    padding-left: 2.13333vmin;
    padding-right: 2.13333vmin; } }

.prodslider {
  padding-top: 8.33333vw;
  padding-bottom: 8.33333vw; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodslider .subtitle__h2 {
      margin-bottom: 3.14136vw;
      max-width: 63.87435vw; } }
  @media (max-width: 575px) {
    .prodslider .subtitle__h2 {
      margin-bottom: 6.4vmin;
      max-width: 100%; } }
  .prodslider .product__labels {
    left: 1px !important; }
  .prodslider .product:hover {
    border: 0.06944vw solid #DEE6FF; }
    @media (min-width: 1800px) {
      .prodslider .product:hover {
        border: 1px solid #DEE6FF; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodslider .product:hover {
        border: 0.13089vw solid #DEE6FF; } }
    @media (max-width: 575px) {
      .prodslider .product:hover {
        border: 0.26667vmin solid #DEE6FF; } }
  .prodslider__container {
    display: flex; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodslider__container {
        display: block; } }
    @media (max-width: 575px) {
      .prodslider__container {
        display: block; } }
  .prodslider__infoblock {
    flex-basis: 25%;
    max-width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 2.22222vw; }
    @media (min-width: 1800px) {
      .prodslider__infoblock {
        padding-right: 32px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodslider__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .prodslider__infoblock {
        flex-basis: 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 6.4vmin; } }
  .prodslider__slider {
    flex-basis: 75%;
    max-width: 75%; }
    @media (min-width: 576px) and (max-width: 1024px) {
      .prodslider__slider {
        flex-basis: 100%;
        max-width: 100%; } }
    @media (max-width: 575px) {
      .prodslider__slider {
        flex-basis: 100%;
        max-width: 100%; } }
  .prodslider__slidernav {
    display: flex; }
    .prodslider__slidernav .btn-slider {
      margin-left: -0.06944vw; }
      @media (min-width: 1800px) {
        .prodslider__slidernav .btn-slider {
          margin-left: -1px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .prodslider__slidernav .btn-slider {
          margin-left: -0.13089vw; } }
      @media (max-width: 575px) {
        .prodslider__slidernav .btn-slider {
          margin-left: -0.26667vmin; } }
  @media (min-width: 1800px) {
    .prodslider {
      padding-top: 32vmin;
      padding-bottom: 32vmin; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .prodslider {
      padding-top: 10.4712vw;
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .prodslider {
      padding-top: 17.06667vmin;
      padding-bottom: 17.06667vmin; } }

.search-result-page__title {
  max-width: 100%;
  margin-bottom: 0.83333vw;
  padding-bottom: 0; }
  .search-result-page__title span {
    color: #20429E; }
  @media (min-width: 1800px) {
    .search-result-page__title {
      margin-bottom: 12px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .search-result-page__title {
      margin-bottom: 1.57068vw; } }
  @media (max-width: 575px) {
    .search-result-page__title {
      margin-bottom: 3.2vmin;
      padding-bottom: 0 !important; } }

.search-result-page__total {
  font-size: 1.66667vw;
  margin-bottom: 2.22222vw;
  font-weight: 500; }
  @media (min-width: 1800px) {
    .search-result-page__total {
      font-size: 24px;
      margin-bottom: 32px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .search-result-page__total {
      font-size: 3.14136vw;
      margin-bottom: 4.18848vw; } }
  @media (max-width: 575px) {
    .search-result-page__total {
      font-size: 4.26667vmin;
      margin-bottom: 8.53333vmin; } }

.search-result-page .category-page__product {
  flex-basis: 25%; }
  @media (min-width: 576px) and (max-width: 1024px) {
    .search-result-page .category-page__product {
      flex-basis: 50%; } }
  @media (max-width: 575px) {
    .search-result-page .category-page__product {
      flex-basis: calc(50% - 4.26667vmin); } }

.ordersuccess-page {
  padding-bottom: 8.33333vw; }
  .ordersuccess-page__num {
    font-size: 1.66667vw;
    line-height: 160%;
    margin-bottom: 1.66667vw; }
    .ordersuccess-page__num b {
      font-weight: 700; }
    @media (min-width: 1800px) {
      .ordersuccess-page__num {
        font-size: 24px;
        margin-bottom: 24px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .ordersuccess-page__num {
        font-size: 3.14136vw;
        margin-bottom: 3.14136vw; } }
    @media (max-width: 575px) {
      .ordersuccess-page__num {
        font-size: 6.4vmin;
        margin-bottom: 6.4vmin; } }
  .ordersuccess-page__content {
    margin-bottom: 4.44444vw; }
    @media (min-width: 1800px) {
      .ordersuccess-page__content {
        margin-bottom: 64px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .ordersuccess-page__content {
        margin-bottom: 8.37696vw; } }
    @media (max-width: 575px) {
      .ordersuccess-page__content {
        margin-bottom: 17.06667vmin;
        font-size: 4.26667vmin;
        padding-bottom: 12.8vmin;
        border-bottom: 1px solid #DEE6FF; } }
  @media (max-width: 575px) {
    .ordersuccess-page__back {
      width: 100%;
      height: 17.06667vmin;
      font-size: 4.26667vmin; } }
  .ordersuccess-page .order {
    max-width: 91.66667vw;
    margin-bottom: 2.36111vw; }
    .ordersuccess-page .order__title {
      margin-top: 0;
      margin-bottom: 0;
      font-size: 2.5vw; }
      @media (min-width: 1800px) {
        .ordersuccess-page .order__title {
          font-size: 36px; } }
      @media (min-width: 576px) and (max-width: 1024px) {
        .ordersuccess-page .order__title {
          font-size: 3.14136vw; } }
      @media (max-width: 575px) {
        .ordersuccess-page .order__title {
          font-size: 6.4vmin;
          padding-bottom: 3.2vmin; } }
    @media (min-width: 1800px) {
      .ordersuccess-page .order {
        max-width: 1320px;
        margin-bottom: 34px; } }
    @media (min-width: 576px) and (max-width: 1024px) {
      .ordersuccess-page .order {
        max-width: 100%;
        margin-bottom: 4.45026vw; } }
    @media (max-width: 575px) {
      .ordersuccess-page .order {
        max-width: 100%;
        margin-bottom: 0;
        border-bottom: none; } }
  @media (min-width: 1800px) {
    .ordersuccess-page {
      padding-bottom: 180px; } }
  @media (min-width: 576px) and (max-width: 1024px) {
    .ordersuccess-page {
      padding-bottom: 10.4712vw; } }
  @media (max-width: 575px) {
    .ordersuccess-page {
      padding-bottom: 17.06667vmin; } }

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