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

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

@font-face {
  src: url("../fonts/PT-Root-UI_Medium.woff2") format("woff2"), url("../fonts/PT-Root-UI_Medium.woff") format("woff");
  font-family: "Root";
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  src: url("../fonts/PT-Root-UI_Bold.woff2") format("woff2"), url("../fonts/PT-Root-UI_Bold.woff") format("woff");
  font-family: "Root";
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box; }

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

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y; }
  .swiper-container-pointer-events.swiper-container-vertical {
    -ms-touch-action: pan-x;
        touch-action: pan-x; }

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

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

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

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

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

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

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

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

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

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0; }

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em; }

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }

.select2-results__option--selectable {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

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

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative; }

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--group {
  padding: 0; }

.select2-container--default .select2-results__option--disabled {
  color: #999; }

.select2-container--default .select2-results__option--selected {
  background-color: #ddd; }

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option--group {
  padding: 0; }

.select2-container--classic .select2-results__option--disabled {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  -o-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left)); } }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

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

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

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right)); } } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

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

*::-moz-selection {
  color: #fff;
  background: #e30613; }

*::selection {
  color: #fff;
  background: #e30613; }

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

body {
  font-family: "Root", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 4.375vmin;
  line-height: 6.25vmin;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  background: #fff; }
  @media (max-width: 1023px) {
    .is-show-menu body {
      overflow: hidden; } }
  @media (min-width: 1024px) {
    body {
      font-size: 0.83333vw;
      line-height: 1.25vw; } }
  @media (min-width: 1920px) {
    body {
      font-size: 16px;
      line-height: 24px; } }

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

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

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

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

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

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

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

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

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

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

iframe {
  display: block; }

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

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

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

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
/* stylelint-enable */
.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

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

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

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

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

@media (min-width: 1024px) {
  .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 */
.main {
  overflow: hidden; }

.container {
  margin: 0 auto;
  padding: 0 3.125vmin;
  width: 100%; }
  @media (min-width: 1024px) {
    .container {
      padding: 0;
      max-width: 93.75vw; } }
  @media (min-width: 1920px) {
    .container {
      max-width: 1800px; } }

.content {
  padding-top: 12.5vmin;
  padding-bottom: 11.25vmin; }
  @media (min-width: 1024px) {
    .content {
      padding-top: 0;
      padding-bottom: 8.33333vw;
      min-height: calc(100vh - 31.66667vw); } }
  @media (min-width: 1920px) {
    .content {
      padding-bottom: 160px;
      min-height: calc(100vh - 608px); } }

.content--default {
  padding: 20vmin 0 11.25vmin; }
  @media (min-width: 1024px) {
    .content--default {
      padding: 10.83333vw 0 6.45833vw; } }
  @media (min-width: 1920px) {
    .content--default {
      padding: 208px 0 124px; } }

.content--404 {
  padding: 0; }

.content--partners {
  padding-bottom: 0; }

h1,
.h1 {
  margin: 0 0 3.125vmin;
  font-weight: 700;
  font-size: 12.5vmin;
  line-height: 11.25vmin; }
  @media (min-width: 1024px) {
    h1,
    .h1 {
      margin: 0 0 0.41667vw;
      font-size: 5vw;
      line-height: 5vw; } }
  @media (min-width: 1920px) {
    h1,
    .h1 {
      margin: 0 0 8px;
      font-size: 96px;
      line-height: 96px; } }

h2,
.h2 {
  margin: 15vmin 0 7.5vmin;
  font-weight: 700;
  font-size: 10vmin;
  line-height: 10vmin; }
  h2 a,
  .h2 a {
    border-bottom: solid 1px #d9d9d9; }
    h2 a:hover,
    .h2 a:hover {
      border-bottom-color: #e30613; }
  h2:first-child,
  .h2:first-child {
    margin-top: 0; }
  @media (min-width: 1024px) {
    h2,
    .h2 {
      margin: 5.41667vw 0 1.25vw;
      font-size: 3.33333vw;
      line-height: 3.75vw; } }
  @media (min-width: 1920px) {
    h2,
    .h2 {
      margin: 104px 0 24px;
      font-size: 64px;
      line-height: 72px; } }

h3,
.h3 {
  margin: 15vmin 0 7.5vmin;
  font-weight: 700;
  font-size: 7.5vmin;
  line-height: 7.5vmin; }
  h3 a,
  .h3 a {
    border-bottom: solid 1px #d9d9d9; }
    h3 a:hover,
    .h3 a:hover {
      border-bottom-color: #e30613; }
  h3:first-child,
  .h3:first-child {
    margin-top: 0; }
  @media (min-width: 1024px) {
    h3,
    .h3 {
      margin: 5.41667vw 0 1.25vw;
      font-size: 1.66667vw;
      line-height: 1.66667vw; } }
  @media (min-width: 1920px) {
    h3,
    .h3 {
      margin: 104px 0 24px;
      font-size: 32px;
      line-height: 32px; } }

h4,
.h4 {
  margin: 15vmin 0 6.25vmin;
  font-weight: 700;
  font-size: 6.25vmin;
  line-height: 7.5vmin; }
  h4 a,
  .h4 a {
    border-bottom: solid 1px #d9d9d9; }
    h4 a:hover,
    .h4 a:hover {
      border-bottom-color: #e30613; }
  h4:first-child,
  .h4:first-child {
    margin-top: 0; }
  @media (min-width: 1024px) {
    h4,
    .h4 {
      margin: 5.41667vw 0 1.25vw;
      font-size: 1.25vw;
      line-height: 1.5625vw; } }
  @media (min-width: 1920px) {
    h4,
    .h4 {
      margin: 104px 0 24px;
      font-size: 24px;
      line-height: 30px; } }

.page-title {
  margin-bottom: 10vmin; }
  @media (min-width: 1024px) {
    .page-title {
      margin-bottom: 3.33333vw; } }
  @media (min-width: 1920px) {
    .page-title {
      margin-bottom: 64px; } }

.text-lead {
  margin-bottom: 7.5vmin;
  font-weight: 300;
  font-size: 5.625vmin;
  line-height: 7.5vmin; }
  @media (min-width: 1024px) {
    .text-lead {
      margin-bottom: 1.25vw;
      font-size: 1.04167vw;
      line-height: 1.66667vw; } }
  @media (min-width: 1920px) {
    .text-lead {
      margin-bottom: 24px;
      font-size: 20px;
      line-height: 32px; } }

.up-arrow {
  position: fixed;
  right: 3.125vmin;
  bottom: 3.125vmin;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  border: none;
  border-radius: 50%;
  width: 15vmin;
  height: 15vmin;
  background: #e30613;
  opacity: 0;
  visibility: hidden; }
  .up-arrow svg {
    display: block;
    width: 11.25vmin;
    height: 11.25vmin;
    fill: none; }
    @media (min-width: 1024px) {
      .up-arrow svg {
        width: 1.92708vw;
        height: 1.92708vw; } }
    @media (min-width: 1920px) {
      .up-arrow svg {
        width: 37px;
        height: 37px; } }
  .up-arrow.is-show {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 1024px) {
    .up-arrow {
      right: 3.125vw;
      bottom: 3.33333vw;
      width: 3.75vw;
      height: 3.75vw; }
      .up-arrow:hover {
        background: #ca0511; } }
  @media (min-width: 1920px) {
    .up-arrow {
      right: 60px;
      bottom: 64px;
      width: 72px;
      height: 72px; } }

.prev,
.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  border: none;
  border-radius: 50%;
  padding: 0;
  width: 11.25vmin;
  height: 11.25vmin;
  background: #000; }
  .prev svg,
  .next svg {
    margin-left: -0.9375vmin;
    width: 2.5vmin;
    height: 4.375vmin;
    fill: none; }
    @media (min-width: 1024px) {
      .prev svg,
      .next svg {
        margin-left: -0.15625vw;
        width: 0.52083vw;
        height: 0.9375vw; } }
    @media (min-width: 1920px) {
      .prev svg,
      .next svg {
        margin-left: -3px;
        width: 10px;
        height: 18px; } }
  .prev.swiper-button-disabled,
  .next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none; }
  @media (min-width: 1024px) {
    .prev,
    .next {
      width: 2.5vw;
      height: 2.5vw; }
      .prev:hover,
      .next:hover {
        background: #e30613; } }
  @media (min-width: 1920px) {
    .prev,
    .next {
      width: 48px;
      height: 48px; } }

.next svg {
  margin-left: 0.9375vmin; }
  @media (min-width: 1024px) {
    .next svg {
      margin-left: 0.15625vw; } }
  @media (min-width: 1920px) {
    .next svg {
      margin-left: 3px; } }

.pager-slider {
  margin-top: 6.25vmin;
  text-align: center; }
  .pager-slider .swiper-pagination-bullet {
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    width: 1.5625vmin;
    height: 1.5625vmin;
    background: #c4c4c4; }
    .pager-slider .swiper-pagination-bullet + .swiper-pagination-bullet {
      margin-left: 2.5vmin; }
    .pager-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
      width: 2.5vmin;
      height: 2.5vmin;
      background: #e30613; }

.styled-list ul,
.styled-list ol {
  font-size: 4.375vmin;
  line-height: 6.25vmin; }
  @media (min-width: 1024px) {
    .styled-list ul,
    .styled-list ol {
      font-size: 0.72917vw;
      line-height: 1.25vw; } }
  @media (min-width: 1920px) {
    .styled-list ul,
    .styled-list ol {
      font-size: 14px;
      line-height: 24px; } }

.styled-list ul li {
  position: relative;
  padding-left: 6.875vmin; }
  .styled-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2.5vmin;
    border-radius: 50%;
    width: 1.875vmin;
    height: 1.875vmin;
    background: #e30613; }
    @media (min-width: 1024px) {
      .styled-list ul li::before {
        top: 0.41667vw;
        width: 0.3125vw;
        height: 0.3125vw; } }
    @media (min-width: 1920px) {
      .styled-list ul li::before {
        top: 8px;
        width: 6px;
        height: 6px; } }
  .styled-list ul li + li {
    margin-top: 1.25vmin; }
    @media (min-width: 1024px) {
      .styled-list ul li + li {
        margin-top: 0.20833vw; } }
    @media (min-width: 1920px) {
      .styled-list ul li + li {
        margin-top: 4px; } }
  @media (min-width: 1024px) {
    .styled-list ul li {
      padding-left: 1.14583vw; } }
  @media (min-width: 1920px) {
    .styled-list ul li {
      padding-left: 22px; } }

.styled-list ul ul {
  padding: 2.5vmin 0 1.25vmin; }
  .styled-list ul ul li {
    padding-left: 5vmin; }
    .styled-list ul ul li::before {
      top: 3.4375vmin;
      width: 2.5vmin;
      height: 1px; }
      @media (min-width: 1024px) {
        .styled-list ul ul li::before {
          top: 0.57292vw;
          width: 0.41667vw; } }
      @media (min-width: 1920px) {
        .styled-list ul ul li::before {
          top: 11px;
          width: 8px; } }
    @media (min-width: 1024px) {
      .styled-list ul ul li {
        padding-left: 0.83333vw; } }
    @media (min-width: 1920px) {
      .styled-list ul ul li {
        padding-left: 16px; } }
  @media (min-width: 1024px) {
    .styled-list ul ul {
      padding: 0.41667vw 0 0.20833vw; } }
  @media (min-width: 1920px) {
    .styled-list ul ul {
      padding: 8px 0 4px; } }

.styled-list ol {
  counter-reset: list; }
  .styled-list ol li::before {
    counter-increment: list;
    content: counter(list) ". ";
    font-weight: 700;
    color: #e30613; }
  .styled-list ol li + li {
    margin-top: 2.5vmin; }
    @media (min-width: 1024px) {
      .styled-list ol li + li {
        margin-top: 0.41667vw; } }
    @media (min-width: 1920px) {
      .styled-list ol li + li {
        margin-top: 8px; } }
  .styled-list ol ol {
    counter-reset: underlist;
    padding: 2.5vmin 0 0 5vmin; }
    .styled-list ol ol li::before {
      counter-increment: underlist;
      content: counter(list) "." counter(underlist) ". "; }
    @media (min-width: 1024px) {
      .styled-list ol ol {
        padding: 0.41667vw 0 0 0.83333vw; } }
    @media (min-width: 1920px) {
      .styled-list ol ol {
        padding: 8px 0 0 16px; } }

.platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .platform__item {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    .platform__item img {
      height: 5vmin; }
      @media (min-width: 1024px) {
        .platform__item img {
          height: 0.83333vw; } }
      @media (min-width: 1920px) {
        .platform__item img {
          height: 16px; } }
    .platform__item + .platform__item {
      margin-left: 3.125vmin; }
      @media (min-width: 1024px) {
        .platform__item + .platform__item {
          margin-left: 0.83333vw; } }
      @media (min-width: 1920px) {
        .platform__item + .platform__item {
          margin-left: 16px; } }

.nowrap {
  white-space: nowrap; }

.styled-links a {
  border-bottom: solid 1px currentColor; }
  @media (min-width: 1024px) {
    .styled-links a:hover {
      color: #e30613; } }

a.is-pseudo {
  border-bottom: dashed 1px currentColor; }
  @media (min-width: 1024px) {
    a.is-pseudo:hover {
      color: #e30613; } }

a.is-arrow {
  border: none; }
  a.is-arrow svg {
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.625vmin;
    margin-left: 1.25vmin;
    width: 6.875vmin;
    height: 6.875vmin; }
    @media (min-width: 1024px) {
      a.is-arrow svg {
        margin-top: -0.10417vw;
        margin-left: 0.20833vw;
        width: 1.25vw;
        height: 1.25vw; } }
    @media (min-width: 1920px) {
      a.is-arrow svg {
        margin-top: -2px;
        margin-left: 4px;
        width: 24px;
        height: 24px; } }
  @media (min-width: 1024px) {
    a.is-arrow:hover {
      color: #e30613; } }

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .wrapper__content {
    width: 100%;
    min-width: 0; }
  @media (min-width: 1024px) {
    .wrapper__side {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-left: 8.95833vw;
      width: 22.65625vw; } }
  @media (min-width: 1920px) {
    .wrapper__side {
      margin-left: 172px;
      width: 435px; } }
  @media (max-width: 1023px) {
    .wrapper {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }

.page-return {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .page-return__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 5vmin;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 10.9375vmin;
    height: 10.9375vmin;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .page-return__arrow svg {
      width: 5vmin;
      height: 5vmin;
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg);
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      @media (min-width: 1024px) {
        .page-return__arrow svg {
          width: 0.98958vw;
          height: 0.98958vw; } }
      @media (min-width: 1920px) {
        .page-return__arrow svg {
          width: 19px;
          height: 19px; } }
    @media (min-width: 1024px) {
      .page-return__arrow {
        margin-right: 0.83333vw;
        width: 2.08333vw;
        height: 2.08333vw; } }
    @media (min-width: 1920px) {
      .page-return__arrow {
        margin-right: 16px;
        width: 40px;
        height: 40px; } }
  .page-return__text {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .page-return:hover .page-return__arrow {
    border-color: #e30613;
    background: #e30613; }
    .page-return:hover .page-return__arrow svg {
      color: #fff; }
  .page-return:hover .page-return__text {
    color: #e30613; }

.fancybox-bg {
  background: rgba(0, 0, 0, 0.5); }

.fancybox-slide--html .fancybox-close-small {
  right: 6.25vmin;
  top: 5.3125vmin;
  padding: 0;
  width: 7.5vmin;
  height: 7.5vmin;
  color: #000; }
  .fancybox-slide--html .fancybox-close-small::before, .fancybox-slide--html .fancybox-close-small::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: 100%;
    height: 1px;
    background: currentColor;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
  .fancybox-slide--html .fancybox-close-small::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .fancybox-slide--html .fancybox-close-small::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .fancybox-slide--html .fancybox-close-small svg {
    display: none; }
  @media (min-width: 1024px) {
    .fancybox-slide--html .fancybox-close-small {
      right: 2.08333vw;
      top: 2.08333vw;
      width: 1.25vw;
      height: 1.25vw; }
      .fancybox-slide--html .fancybox-close-small:hover {
        color: #e30613; } }
  @media (min-width: 1920px) {
    .fancybox-slide--html .fancybox-close-small {
      right: 40px;
      top: 40px;
      width: 24px;
      height: 24px; } }

@media (max-width: 1023px) {
  .fancybox-slide--html {
    padding: 0; } }

.sitemap .styled-list ul,
.sitemap .styled-list ol {
  font-size: 18px;
  line-height: 1.5; }

.button {
  display: inline-block;
  vertical-align: middle;
  border: none;
  border-radius: 2.5vmin;
  padding: 6.5625vmin 3.125vmin;
  min-width: 100%;
  font-weight: 700;
  font-size: 4.375vmin;
  line-height: 5.625vmin;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background: #e30613;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .button:disabled, .button.is-disabled {
    background: #ccc;
    pointer-events: none; }
  .button.is-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .button.is-loading::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      margin: -2.8125vmin 0 0 -2.8125vmin;
      border: solid 0.625vmin #fff;
      border-bottom-color: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      width: 5.625vmin;
      height: 5.625vmin;
      -webkit-animation: buttonLoading linear 1s infinite;
              animation: buttonLoading linear 1s infinite; }
      @media (min-width: 1024px) {
        .button.is-loading::before {
          margin: -0.46875vw 0 0 -0.46875vw;
          border: solid 0.10417vw #fff;
          border-bottom-color: rgba(255, 255, 255, 0.2);
          width: 0.9375vw;
          height: 0.9375vw; } }
      @media (min-width: 1920px) {
        .button.is-loading::before {
          margin: -9px 0 0 -9px;
          border: solid 2px #fff;
          border-bottom-color: rgba(255, 255, 255, 0.2);
          width: 18px;
          height: 18px; } }
  @media (min-width: 1024px) {
    .button {
      border-radius: 0.41667vw;
      padding: 0.98958vw 0.52083vw;
      min-width: 14.73958vw;
      font-size: 0.9375vw;
      line-height: 1.14583vw; }
      .button:hover {
        background: #ff5050; } }
  @media (min-width: 1920px) {
    .button {
      border-radius: 8px;
      padding: 19px 10px;
      min-width: 283px;
      font-size: 18px;
      line-height: 22px; } }

.button--small {
  letter-spacing: 0; }
  @media (min-width: 1024px) {
    .button--small {
      min-width: 8.33333vw;
      font-size: 0.72917vw; } }
  @media (min-width: 1920px) {
    .button--small {
      min-width: 160px;
      font-size: 14px; } }

.button--dark {
  background: #000; }
  @media (min-width: 1024px) {
    .button--dark:hover {
      background: #262626; } }

.button--outline {
  border: solid 2px #000;
  color: #000;
  background: transparent; }
  .button--outline:disabled, .button--outline.is-disabled {
    border-color: #ccc;
    color: #ccc;
    background: transparent;
    pointer-events: none; }
  @media (min-width: 1024px) {
    .button--outline {
      padding: 0.88542vw 1.04167vw;
      min-width: 11.04167vw; }
      .button--outline:hover {
        border-color: #e30613;
        color: #e30613;
        background: transparent; } }
  @media (min-width: 1920px) {
    .button--outline {
      padding: 17px 20px;
      min-width: 212px; } }

.button--outline-light {
  border: solid 2px #fff;
  color: #fff;
  background: transparent; }
  .button--outline-light:disabled, .button--outline-light.is-disabled {
    border-color: #ccc;
    color: #ccc;
    background: transparent;
    pointer-events: none; }
  @media (min-width: 1024px) {
    .button--outline-light {
      padding: 0.88542vw 1.04167vw;
      min-width: 11.04167vw; }
      .button--outline-light:hover {
        border-color: #e30613;
        color: #e30613;
        background: transparent; } }
  @media (min-width: 1920px) {
    .button--outline-light {
      padding: 17px 20px;
      min-width: 212px; } }

@-webkit-keyframes buttonLoading {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes buttonLoading {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 95;
  width: 100%; }
  .header__top {
    position: relative;
    z-index: 5;
    background: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .header__top .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 2.08333vw; }
      @media (min-width: 1920px) {
        .header__top .container {
          height: 40px; } }
    .header__top__menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-weight: 500;
      font-size: 0.57292vw;
      line-height: 0.67708vw;
      letter-spacing: 0.05em;
      text-align: center;
      text-transform: uppercase;
      color: #999; }
      .header__top__menu li {
        position: relative; }
        .header__top__menu li + li {
          margin-left: 1.5625vw; }
          @media (min-width: 1920px) {
            .header__top__menu li + li {
              margin-left: 30px; } }
        .header__top__menu li a {
          color: #999; }
          .header__top__menu li a:hover {
            color: #e30613; }
      @media (min-width: 1920px) {
        .header__top__menu {
          font-size: 11px;
          line-height: 13px; } }
    .header__top__socials {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .header__top__socials li + li {
        margin-left: 0.625vw; }
        @media (min-width: 1920px) {
          .header__top__socials li + li {
            margin-left: 12px; } }
      .header__top__socials li a {
        color: #000; }
        .header__top__socials li a svg {
          width: 0.83333vw;
          height: 0.83333vw; }
          @media (min-width: 1920px) {
            .header__top__socials li a svg {
              width: 16px;
              height: 16px; } }
        .header__top__socials li a:hover {
          color: #e30613; }
  .header__bottom {
    position: relative;
    height: 12.5vmin;
    background: #fff;
    -webkit-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s; }
    .header__bottom .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 100%; }
    .header__bottom__right {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-left: auto; }
    @media (min-width: 1024px) {
      .header__bottom {
        padding: 1.66667vw 0;
        height: auto;
        color: #fff;
        background: transparent; } }
    @media (min-width: 1920px) {
      .header__bottom {
        padding: 32px 0; } }
  .header__burger {
    position: relative;
    display: block;
    outline: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    background: none; }
    .header__burger i {
      position: absolute;
      left: 2.1875vmin;
      top: 50%;
      width: 5vmin;
      height: 0.625vmin;
      background: #000;
      -webkit-transform: translateY(-1.5625vmin);
          -ms-transform: translateY(-1.5625vmin);
              transform: translateY(-1.5625vmin);
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .header__burger i + i {
        -webkit-transform: translateY(-0.3125vmin);
            -ms-transform: translateY(-0.3125vmin);
                transform: translateY(-0.3125vmin); }
        .header__burger i + i + i {
          -webkit-transform: translateY(0.9375vmin);
              -ms-transform: translateY(0.9375vmin);
                  transform: translateY(0.9375vmin); }
    .is-show-menu .header__burger i {
      -webkit-transform: translateY(-0.3125vmin) rotate(45deg);
          -ms-transform: translateY(-0.3125vmin) rotate(45deg);
              transform: translateY(-0.3125vmin) rotate(45deg); }
      .is-show-menu .header__burger i + i {
        opacity: 0;
        -webkit-transform: translateY(-0.3125vmin);
            -ms-transform: translateY(-0.3125vmin);
                transform: translateY(-0.3125vmin); }
        .is-show-menu .header__burger i + i + i {
          opacity: 1;
          -webkit-transform: translateY(-0.3125vmin) rotate(-45deg);
              -ms-transform: translateY(-0.3125vmin) rotate(-45deg);
                  transform: translateY(-0.3125vmin) rotate(-45deg); }
  .header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .header__logo img {
      width: 17.5vmin; }
      @media (min-width: 1024px) {
        .header__logo img {
          width: 4.375vw; } }
      @media (min-width: 1920px) {
        .header__logo img {
          width: 84px; } }
    .header__logo svg {
      width: 17.5vmin;
      height: 9.375vmin;
      color: #e30613;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      @media (min-width: 1024px) {
        .header__logo svg {
          width: 4.375vw;
          height: 2.29167vw;
          color: #fff; } }
      @media (min-width: 1920px) {
        .header__logo svg {
          width: 84px;
          height: 44px; } }
    @media (min-width: 1024px) {
      .header__logo {
        position: static;
        left: auto;
        top: auto;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 2.39583vw;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none; } }
    @media (min-width: 1920px) {
      .header__logo {
        margin-right: 46px; } }
  .header__menu {
    font-weight: 700;
    font-size: 0.72917vw;
    line-height: 0.88542vw;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase; }
    .header__menu ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .header__menu ul li {
        position: relative; }
        .header__menu ul li + li {
          margin-left: 1.5625vw; }
          @media (min-width: 1920px) {
            .header__menu ul li + li {
              margin-left: 30px; } }
        .header__menu ul li a {
          position: relative;
          display: block;
          padding: 0.3125vw 0; }
          .header__menu ul li a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 0.10417vw;
            background: #fff;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: 0.4s;
            -o-transition: 0.4s;
            transition: 0.4s; }
            @media (min-width: 1920px) {
              .header__menu ul li a::after {
                height: 2px; } }
          .header__menu ul li a:hover::after {
            opacity: 1;
            visibility: visible; }
          .header__menu ul li a.is-active::after {
            opacity: 1;
            visibility: visible; }
          @media (min-width: 1920px) {
            .header__menu ul li a {
              padding: 6px 0; } }
        .header__menu ul li ul {
          position: absolute;
          left: 0;
          top: 100%;
          display: block;
          margin-top: 0.41667vw;
          border-radius: 0.83333vw;
          padding: 1.25vw;
          -webkit-box-shadow: 0 0.3125vw 0.67708vw rgba(0, 0, 0, 0.05);
                  box-shadow: 0 0.3125vw 0.67708vw rgba(0, 0, 0, 0.05);
          font-size: 0.83333vw;
          line-height: 1.25vw;
          letter-spacing: 0;
          white-space: nowrap;
          text-align: left;
          text-transform: none;
          background: #fff;
          opacity: 0;
          visibility: hidden;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          .header__menu ul li ul::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 100%;
            width: 100%;
            height: 0.41667vw; }
            @media (min-width: 1920px) {
              .header__menu ul li ul::before {
                height: 8px; } }
          .header__menu ul li ul li + li {
            margin: 0.41667vw 0 0; }
            @media (min-width: 1920px) {
              .header__menu ul li ul li + li {
                margin: 8px 0 0; } }
          .header__menu ul li ul li a {
            display: inline;
            padding: 0;
            color: #000; }
            .header__menu ul li ul li a::after {
              display: none; }
            .header__menu ul li ul li a:hover {
              color: #e30613; }
          @media (min-width: 1920px) {
            .header__menu ul li ul {
              margin-top: 8px;
              border-radius: 16px;
              padding: 24px;
              -webkit-box-shadow: 0 6px 13px rgba(0, 0, 0, 0.05);
                      box-shadow: 0 6px 13px rgba(0, 0, 0, 0.05);
              font-size: 16px;
              line-height: 24px; } }
        .header__menu ul li:hover > a::after {
          opacity: 1;
          visibility: visible; }
        .header__menu ul li:hover > ul {
          opacity: 1;
          visibility: visible; }
    @media (min-width: 1920px) {
      .header__menu {
        font-size: 14px;
        line-height: 17px; } }
  .header__shop {
    margin-top: 10vmin; }
    @media (min-width: 1024px) {
      .header__shop .button {
        padding: 0.78125vw 0.52083vw;
        min-width: 10.41667vw;
        font-size: 0.72917vw;
        line-height: 0.9375vw; } }
    @media (min-width: 1920px) {
      .header__shop .button {
        padding: 15px 10px;
        min-width: 200px;
        font-size: 14px;
        line-height: 18px; } }
    @media (min-width: 1024px) {
      .header__shop {
        margin-top: 0; } }
  .header__search-link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 2.34375vw; }
    .header__search-link a {
      display: block;
      padding: 0.26042vw; }
      .header__search-link a svg {
        width: 0.72917vw;
        height: 0.72917vw; }
        @media (min-width: 1920px) {
          .header__search-link a svg {
            width: 14px;
            height: 14px; } }
      .header__search-link a:hover {
        color: #e30613; }
      @media (min-width: 1920px) {
        .header__search-link a {
          padding: 5px; } }
    @media (min-width: 1920px) {
      .header__search-link {
        margin-left: 45px; } }
  .header__lang {
    font-weight: 700;
    font-size: 4.375vmin;
    line-height: 5.3125vmin;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase; }
    .header__lang a {
      display: block;
      padding: 2.8125vmin; }
      @media (min-width: 1024px) {
        .header__lang a {
          padding: 0.26042vw; }
          .header__lang a:hover {
            color: #e30613; } }
      @media (min-width: 1920px) {
        .header__lang a {
          padding: 5px; } }
    @media (min-width: 1024px) {
      .header__lang {
        margin-left: 1.30208vw;
        font-size: 0.72917vw;
        line-height: 0.88542vw; } }
    @media (min-width: 1920px) {
      .header__lang {
        margin-left: 25px;
        font-size: 14px;
        line-height: 17px; } }
  .header__search {
    position: relative;
    margin-bottom: 2.5vmin; }
    .header__search__field input {
      outline: none;
      border: solid 1px #000;
      border-radius: 2.5vmin;
      padding: 0 4.6875vmin;
      width: 100%;
      height: 12.5vmin;
      background: #fff; }
      .header__search__field input::-webkit-input-placeholder {
        color: #000; }
      .header__search__field input::-moz-placeholder {
        color: #000; }
      .header__search__field input:-ms-input-placeholder {
        color: #000; }
      .header__search__field input::-ms-input-placeholder {
        color: #000; }
      .header__search__field input::placeholder {
        color: #000; }
    .header__search__submit {
      position: absolute;
      right: 3.125vmin;
      top: 50%;
      z-index: 5;
      outline: none;
      border: none;
      padding: 1.5625vmin;
      color: #000;
      background: none;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
      .header__search__submit svg {
        display: block;
        width: 5vmin;
        height: 5vmin; }
  .header__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 9.375vmin; }
    .header__socials li + li {
      margin-left: 6.25vmin; }
    .header__socials li svg {
      display: block;
      width: 6.25vmin;
      height: 6.25vmin; }
  .header__contacts__phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 5vmin;
    font-weight: 500;
    font-size: 5vmin;
    line-height: 5.9375vmin;
    letter-spacing: 0.05em;
    text-align: center; }
    .header__contacts__phone a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .header__contacts__phone svg {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 2.5vmin;
      width: 6.5625vmin;
      height: 6.5625vmin; }
  .header__contacts__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    font-weight: 500;
    font-size: 4.0625vmin;
    line-height: 5vmin;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    color: #999; }
  .header__mobile {
    position: absolute;
    left: 0;
    top: 12.1875vmin;
    overflow: auto;
    padding: 7.5vmin 3.125vmin 10vmin;
    width: 100%;
    height: calc(100vh - 12.1875vmin);
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .header__mobile__menu {
      margin-bottom: 10vmin;
      font-weight: 700;
      font-size: 4.375vmin;
      line-height: 5vmin;
      letter-spacing: 0.1em;
      text-transform: uppercase; }
      .header__mobile__menu ul li {
        position: relative;
        border-bottom: solid 1px #f8f8f8;
        padding: 5vmin 0; }
        .header__mobile__menu ul li a {
          display: -webkit-inline-box;
          display: -ms-inline-flexbox;
          display: inline-flex; }
          .header__mobile__menu ul li a svg {
            -ms-flex-negative: 0;
                flex-shrink: 0;
            margin-top: -0.3125vmin;
            margin-left: 2.5vmin;
            width: 5vmin;
            height: 5vmin;
            fill: none; }
        .header__mobile__menu ul li ul {
          display: none;
          padding-top: 5vmin;
          font-weight: 400;
          line-height: 6.25vmin;
          letter-spacing: 0;
          text-transform: none; }
          .header__mobile__menu ul li ul li {
            border-bottom: none;
            padding: 0; }
            .header__mobile__menu ul li ul li + li {
              margin-top: 3.75vmin; }
      .header__mobile__menu__open {
        position: absolute;
        right: 0;
        top: 3.75vmin;
        z-index: 5;
        outline: none;
        border: none;
        padding: 3.125vmin;
        background: none; }
        .header__mobile__menu__open svg {
          display: block;
          width: 3.4375vmin;
          height: 1.875vmin;
          fill: none;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg);
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
        .header__mobile__menu__open.is-active svg {
          -webkit-transform: rotate(0);
              -ms-transform: rotate(0);
                  transform: rotate(0); }
    .is-show-menu .header__mobile {
      opacity: 1;
      visibility: visible; }
  @media (min-width: 1024px) {
    .header--dark .header__top {
      background: #f8f8f8; }
    .header--dark .header__bottom {
      color: #000; }
    .header--dark .header__logo svg {
      color: #e30613; }
    .header--dark .header__menu ul li a::after {
      background: #e30613; } }
  .header.is-fixed .header__bottom {
    -webkit-box-shadow: 0 1.875vmin 4.0625vmin rgba(0, 0, 0, 0.05);
            box-shadow: 0 1.875vmin 4.0625vmin rgba(0, 0, 0, 0.05); }
  @media (min-width: 1024px) {
    .header.is-fixed {
      -webkit-box-shadow: 0 0.3125vw 0.67708vw rgba(0, 0, 0, 0.05);
              box-shadow: 0 0.3125vw 0.67708vw rgba(0, 0, 0, 0.05);
      color: #000; }
      .header.is-fixed .header__top {
        background: #f8f8f8; }
      .header.is-fixed .header__bottom {
        color: #000;
        background: #fff; }
      .header.is-fixed .header__logo svg {
        color: #e30613; }
      .header.is-fixed .header__menu ul li a::after {
        background: #e30613; } }
  @media (min-width: 1920px) {
    .header.is-fixed .header__bottom {
      -webkit-box-shadow: 0 6px 13px rgba(0, 0, 0, 0.05);
              box-shadow: 0 6px 13px rgba(0, 0, 0, 0.05); } }
  .compensate-for-scrollbar .header {
    -webkit-transform: translateX(var(--compensate-scrollbar));
        -ms-transform: translateX(var(--compensate-scrollbar));
            transform: translateX(var(--compensate-scrollbar)); }

.search {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
  padding: 2.70833vw 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s; }
  .search__close {
    position: absolute;
    right: 6.25vmin;
    top: 5.3125vmin;
    z-index: 10;
    outline: none;
    border: none;
    padding: 0;
    width: 7.5vmin;
    height: 7.5vmin;
    color: #fff;
    background: none; }
    .search__close::before, .search__close::after {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -1px;
      width: 100%;
      height: 1px;
      background: currentColor; }
    .search__close::before {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg); }
    .search__close::after {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .search__close svg {
      display: none; }
    @media (min-width: 1024px) {
      .search__close {
        right: 2.60417vw;
        top: 2.08333vw;
        width: 1.25vw;
        height: 1.25vw; }
        .search__close:hover {
          color: #e30613; } }
    @media (min-width: 1920px) {
      .search__close {
        right: 50px;
        top: 40px;
        width: 24px;
        height: 24px; } }
  .search__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    cursor: pointer; }
  .search__container {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    max-width: 62.13542vw; }
    @media (min-width: 1920px) {
      .search__container {
        max-width: 1193px; } }
  .search__box {
    position: relative;
    margin-bottom: 3.125vmin; }
    @media (min-width: 1024px) {
      .search__box {
        margin-bottom: 0.52083vw; } }
    @media (min-width: 1920px) {
      .search__box {
        margin-bottom: 10px; } }
  .search__field input {
    display: block;
    outline: none;
    border: 1px solid #000;
    border-radius: 2.5vmin;
    padding: 0 7.5vmin;
    width: 100%;
    height: 20vmin;
    background: #fff; }
    @media (min-width: 1024px) {
      .search__field input {
        border-radius: 0.41667vw;
        padding: 0 1.25vw;
        height: 3.33333vw; } }
    @media (min-width: 1920px) {
      .search__field input {
        border-radius: 8px;
        padding: 0 24px;
        height: 64px; } }
  .search__submit {
    position: absolute;
    right: 4.375vmin;
    top: 50%;
    outline: 0;
    border: none;
    padding: 3.125vmin;
    color: #000;
    background: #fff;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .search__submit svg {
      display: block;
      width: 5vmin;
      height: 5vmin; }
      @media (min-width: 1024px) {
        .search__submit svg {
          width: 0.83333vw;
          height: 0.83333vw; } }
      @media (min-width: 1920px) {
        .search__submit svg {
          width: 16px;
          height: 16px; } }
    @media (min-width: 1024px) {
      .search__submit {
        right: 0.72917vw;
        padding: 0.52083vw; }
        .search__submit:hover {
          color: #e30613; } }
    @media (min-width: 1920px) {
      .search__submit {
        right: 14px;
        padding: 10px; } }
  .search__result {
    display: none;
    border-radius: 0.83333vw;
    padding: 2.08333vw;
    color: #fff;
    background: #000; }
    .search__result__item {
      display: block;
      border-bottom: solid 1px #3d3d3d;
      padding-bottom: 1.25vw; }
      @media (min-width: 1024px) {
        .search__result__item__link:hover .search__result__item__title {
          color: #e30613; } }
      .search__result__item__title {
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .search__result__item__text {
        margin-bottom: 7.5vmin; }
        @media (min-width: 1024px) {
          .search__result__item__text {
            margin-bottom: 1.25vw; } }
        @media (min-width: 1920px) {
          .search__result__item__text {
            margin-bottom: 24px; } }
      .search__result__item__info {
        font-weight: 500;
        font-size: 2.5vmin;
        line-height: 3.125vmin;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        .search__result__item__info li {
          display: inline; }
          .search__result__item__info li + li {
            position: relative;
            padding-left: 6.875vmin; }
            .search__result__item__info li + li::before {
              content: "";
              position: absolute;
              left: 2.5vmin;
              top: 1.25vmin;
              border-radius: 50%;
              width: 0.625vmin;
              height: 0.625vmin;
              background: currentColor; }
              @media (min-width: 1024px) {
                .search__result__item__info li + li::before {
                  left: 0.41667vw;
                  top: 0.26042vw;
                  width: 0.15625vw;
                  height: 0.15625vw; } }
              @media (min-width: 1920px) {
                .search__result__item__info li + li::before {
                  left: 8px;
                  top: 5px;
                  width: 3px;
                  height: 3px; } }
            @media (min-width: 1024px) {
              .search__result__item__info li + li {
                padding-left: 1.19792vw; } }
            @media (min-width: 1920px) {
              .search__result__item__info li + li {
                padding-left: 23px; } }
        @media (min-width: 1024px) {
          .search__result__item__info {
            font-size: 0.625vw;
            line-height: 0.72917vw; } }
        @media (min-width: 1920px) {
          .search__result__item__info {
            font-size: 12px;
            line-height: 14px; } }
      .search__result__item + .search__result__item {
        margin-top: 5vmin; }
        @media (min-width: 1024px) {
          .search__result__item + .search__result__item {
            margin-top: 1.25vw; } }
        @media (min-width: 1920px) {
          .search__result__item + .search__result__item {
            margin-top: 24px; } }
      @media (min-width: 1920px) {
        .search__result__item {
          padding-bottom: 24px; } }
    .search__result__all {
      margin-top: 2.08333vw;
      text-align: center; }
      @media (min-width: 1920px) {
        .search__result__all {
          margin-top: 40px; } }
    .is-show-result .search__result {
      display: block; }
    @media (min-width: 1920px) {
      .search__result {
        border-radius: 16px;
        padding: 40px; } }
  .is-show-search .search {
    opacity: 1;
    visibility: visible; }
  @media (min-width: 1920px) {
    .search {
      padding: 52px 0; } }

.footer {
  color: #fff;
  background: #191919; }
  .footer__top {
    padding: 11.25vmin 0 4.0625vmin; }
    @media (min-width: 1024px) {
      .footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 5.20833vw 0 3.54167vw; } }
    @media (min-width: 1920px) {
      .footer__top {
        padding: 100px 0 68px; } }
  .footer__bottom {
    padding: 4.0625vmin 0 10.9375vmin;
    color: #8c8c8c; }
    .footer__bottom__menu li + li {
      margin-top: 4.0625vmin; }
      @media (min-width: 1024px) {
        .footer__bottom__menu li + li {
          margin: 0 0 0 1.5625vw; } }
      @media (min-width: 1920px) {
        .footer__bottom__menu li + li {
          margin-left: 30px; } }
    .footer__bottom__menu li a {
      color: #8c8c8c; }
      @media (min-width: 1024px) {
        .footer__bottom__menu li a:hover {
          color: #e30613; } }
    @media (max-width: 1023px) {
      .footer__bottom__menu li.for-desktop + li {
        margin-top: 0; } }
    @media (max-width: 1023px) {
      .footer__bottom__menu + .footer__bottom__menu {
        margin-top: 4.0625vmin; } }
    @media (min-width: 1024px) {
      .footer__bottom__menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    @media (min-width: 1024px) {
      .footer__bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 1.45833vw 0; } }
    @media (min-width: 1920px) {
      .footer__bottom {
        padding: 28px 0; } }
  .footer__left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4.6875vw;
    width: 11.14583vw; }
    @media (min-width: 1920px) {
      .footer__left {
        margin-right: 90px;
        width: 214px; } }
  .footer__logo {
    margin-bottom: 1.5625vw; }
    .footer__logo img {
      width: 5.20833vw; }
      @media (min-width: 1920px) {
        .footer__logo img {
          width: 100px; } }
    @media (min-width: 1920px) {
      .footer__logo {
        margin-bottom: 30px; } }
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300; }
    .footer__menu ul + ul {
      margin-left: 6.40625vw; }
      @media (min-width: 1920px) {
        .footer__menu ul + ul {
          margin-left: 123px; } }
    .footer__menu ul li + li {
      margin-top: 1.25vw; }
      @media (min-width: 1920px) {
        .footer__menu ul li + li {
          margin-top: 24px; } }
    .footer__menu ul li a:hover {
      color: #e30613; }
  .footer__contacts {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto; }
    .footer__contacts__list {
      font-weight: 300;
      font-size: 4.375vmin;
      line-height: 9.375vmin; }
      .footer__contacts__list li {
        position: relative;
        padding-left: 10.3125vmin; }
        .footer__contacts__list li + li {
          margin-top: 3.125vmin; }
          @media (min-width: 1024px) {
            .footer__contacts__list li + li {
              margin-top: 2.08333vw; } }
          @media (min-width: 1920px) {
            .footer__contacts__list li + li {
              margin-top: 40px; } }
        @media (min-width: 1024px) {
          .footer__contacts__list li a:hover {
            color: #e30613; } }
        @media (min-width: 1024px) {
          .footer__contacts__list li {
            padding-left: 2.60417vw; } }
        @media (min-width: 1920px) {
          .footer__contacts__list li {
            padding-left: 50px; } }
      .footer__contacts__list__icon {
        position: absolute;
        left: 0;
        top: 1.5625vmin;
        width: 6.5625vmin;
        height: 6.5625vmin; }
        @media (min-width: 1024px) {
          .footer__contacts__list__icon {
            top: 0;
            width: 1.5625vw;
            height: 1.5625vw; } }
        @media (min-width: 1920px) {
          .footer__contacts__list__icon {
            width: 30px;
            height: 30px; } }
      @media (min-width: 1024px) {
        .footer__contacts__list {
          font-size: 1.25vw;
          line-height: 1.5625vw; } }
      @media (min-width: 1920px) {
        .footer__contacts__list {
          font-size: 24px;
          line-height: 30px; } }
    .footer__contacts__callback {
      margin-top: 6.875vmin; }
      @media (min-width: 1024px) {
        .footer__contacts__callback {
          margin-top: 3.125vw; } }
      @media (min-width: 1920px) {
        .footer__contacts__callback {
          margin-top: 60px; } }
    @media (min-width: 1024px) {
      .footer__contacts {
        width: 30.625vw; } }
    @media (min-width: 1920px) {
      .footer__contacts {
        width: 588px; } }
  @media (min-width: 1024px) {
    .footer {
      font-size: 0.9375vw;
      line-height: 1.5625vw; } }
  @media (min-width: 1920px) {
    .footer {
      font-size: 18px;
      line-height: 30px; } }

.breadcrumbs {
  margin: 0 0 5vmin;
  font-weight: 500;
  font-size: 3.125vmin;
  line-height: 3.75vmin;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999; }
  .breadcrumbs li {
    display: inline; }
    .breadcrumbs li + li {
      position: relative;
      padding-left: 6.875vmin; }
      .breadcrumbs li + li::before {
        content: "";
        position: absolute;
        left: 2.5vmin;
        top: 1.5625vmin;
        border-radius: 50%;
        width: 0.9375vmin;
        height: 0.9375vmin;
        background: currentColor; }
        @media (min-width: 1024px) {
          .breadcrumbs li + li::before {
            left: 0.41667vw;
            top: 0.26042vw;
            width: 0.15625vw;
            height: 0.15625vw; } }
        @media (min-width: 1920px) {
          .breadcrumbs li + li::before {
            left: 8px;
            top: 5px;
            width: 3px;
            height: 3px; } }
      @media (min-width: 1024px) {
        .breadcrumbs li + li {
          padding-left: 1.14583vw; } }
      @media (min-width: 1920px) {
        .breadcrumbs li + li {
          padding-left: 22px; } }
    .breadcrumbs li a:not([href]) {
      color: #999;
      cursor: text; }
    @media (min-width: 1024px) {
      .breadcrumbs li a:hover {
        color: #e30613; } }
  @media (min-width: 1024px) {
    .breadcrumbs {
      margin: 0 0 0.41667vw;
      font-size: 0.625vw;
      line-height: 0.72917vw; } }
  @media (min-width: 1920px) {
    .breadcrumbs {
      margin: 0 0 8px;
      font-size: 12px;
      line-height: 14px; } }

.input {
  margin-bottom: 5vmin; }
  .input__label {
    margin-bottom: 2.5vmin; }
    .input__label__imp {
      color: #e30613; }
    @media (max-width: 1023px) {
      .input__label {
        font-size: 5vmin; } }
    @media (min-width: 1024px) {
      .input__label {
        margin-bottom: 0.41667vw; } }
    @media (min-width: 1920px) {
      .input__label {
        margin-bottom: 8px; } }
  .input__field {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .input__field__text {
      margin-top: 2.5vmin; }
      @media (min-width: 1024px) {
        .input__field__text {
          margin-top: 0.41667vw;
          font-size: 0.72917vw;
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .input__field__text {
          margin-top: 8px;
          font-size: 14px;
          line-height: 20px; } }
    .input__field input,
    .input__field textarea {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      outline: none;
      border: solid 1px #ccc;
      border-radius: 2.5vmin;
      padding: 0 15.625vmin 0 6.25vmin;
      width: 100%;
      height: 20vmin;
      background: #fff;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .input__field input::-ms-clear,
      .input__field textarea::-ms-clear {
        display: none; }
      .input__field input::-webkit-input-placeholder, .input__field textarea::-webkit-input-placeholder {
        color: #787878;
        -webkit-transition: 0.4s;
        transition: 0.4s; }
      .input__field input::-moz-placeholder, .input__field textarea::-moz-placeholder {
        color: #787878;
        -moz-transition: 0.4s;
        transition: 0.4s; }
      .input__field input:-ms-input-placeholder, .input__field textarea:-ms-input-placeholder {
        color: #787878;
        -ms-transition: 0.4s;
        transition: 0.4s; }
      .input__field input::-ms-input-placeholder, .input__field textarea::-ms-input-placeholder {
        color: #787878;
        -ms-transition: 0.4s;
        transition: 0.4s; }
      .input__field input::placeholder,
      .input__field textarea::placeholder {
        color: #787878;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .input__field input:focus,
      .input__field textarea:focus {
        border-color: #000; }
        .input__field input:focus::-webkit-input-placeholder, .input__field textarea:focus::-webkit-input-placeholder {
          color: #000; }
        .input__field input:focus::-moz-placeholder, .input__field textarea:focus::-moz-placeholder {
          color: #000; }
        .input__field input:focus:-ms-input-placeholder, .input__field textarea:focus:-ms-input-placeholder {
          color: #000; }
        .input__field input:focus::-ms-input-placeholder, .input__field textarea:focus::-ms-input-placeholder {
          color: #000; }
        .input__field input:focus::placeholder,
        .input__field textarea:focus::placeholder {
          color: #000; }
      .input__field input:disabled,
      .input__field textarea:disabled {
        border-color: #ccc;
        background: #f8f8f8;
        pointer-events: none; }
      .input__field input.error,
      .input__field textarea.error {
        border-color: #e30613;
        background: #ffe6ef; }
      @media (max-width: 1023px) {
        .input__field input,
        .input__field textarea {
          font-size: 5vmin; } }
      @media (min-width: 1024px) {
        .input__field input,
        .input__field textarea {
          border-radius: 0.41667vw;
          padding: 0 2.60417vw 0 1.04167vw;
          height: 3.33333vw; } }
      @media (min-width: 1920px) {
        .input__field input,
        .input__field textarea {
          border-radius: 8px;
          padding: 0 24px;
          height: 64px; } }
    .input__field textarea {
      padding-top: 6.25vmin;
      height: 57.5vmin;
      resize: none; }
      @media (min-width: 1024px) {
        .input__field textarea {
          padding-top: 1.04167vw;
          height: 9.58333vw; } }
      @media (min-width: 1920px) {
        .input__field textarea {
          padding-top: 20px;
          height: 184px; } }
    .input__field select {
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      border: solid 1px #ccc;
      border-radius: 2.5vmin;
      padding: 0 15.625vmin 0 6.25vmin;
      width: 100%;
      height: 20vmin;
      background: url("../images/triangle.svg") #fff 95% 55% no-repeat;
      background-size: 0.52083vw 0.36458vw; }
      .input__field select::-webkit-input-placeholder .select2-container--default .select2-selection__rendered {
        color: #ccc; }
      .input__field select::-moz-placeholder .select2-container--default .select2-selection__rendered {
        color: #ccc; }
      .input__field select:-ms-input-placeholder .select2-container--default .select2-selection__rendered {
        color: #ccc; }
      .input__field select::-ms-input-placeholder .select2-container--default .select2-selection__rendered {
        color: #ccc; }
      .input__field select::placeholder .select2-container--default .select2-selection__rendered {
        color: #ccc; }
      .input__field select:disabled ~ .select2-container--default .select2-selection__rendered {
        border-color: #ccc;
        background: #f8f8f8; }
      .input__field select.error ~ .select2-container--default .select2-selection__rendered {
        border-color: #e30613;
        background: #ffe6ef; }
      @media (min-width: 1024px) {
        .input__field select {
          border-radius: 0.41667vw;
          padding: 0 2.60417vw 0 1.04167vw;
          height: 3.33333vw;
          background-size: 0.52083vw 0.36458vw; } }
      @media (min-width: 1920px) {
        .input__field select {
          border-radius: 8px;
          padding: 0 50px 0 20px;
          height: 64px;
          background-size: 10px 7px; } }
    .input__field .select2-container {
      display: inline-block;
      vertical-align: middle;
      width: 100% !important; }
      .input__field .select2-container--open.select2-container--default .select2-selection__rendered {
        border-radius: 2.5vmin 2.5vmin 0 0; }
        @media (min-width: 1024px) {
          .input__field .select2-container--open.select2-container--default .select2-selection__rendered {
            border-radius: 0.41667vw 0.41667vw 0 0; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--open.select2-container--default .select2-selection__rendered {
            border-radius: 8px 8px 0 0; } }
      .input__field .select2-container--open.select2-container--default .select2-selection__arrow {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
    .input__field .select2-container--default .select2-selection {
      outline: none;
      border: none;
      border-radius: 0;
      background-color: transparent; }
      .input__field .select2-container--default .select2-selection__rendered {
        border: solid 1px #ccc;
        border-radius: 2.5vmin;
        padding: 5.625vmin 7.5vmin;
        height: 100%;
        background: #fff;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (max-width: 1023px) {
          .input__field .select2-container--default .select2-selection__rendered {
            font-size: 5vmin; } }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-selection__rendered {
            border-radius: 0.41667vw;
            padding: 0.9375vw 1.25vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-selection__rendered {
            border-radius: 8px;
            padding: 18px 24px; } }
      .input__field .select2-container--default .select2-selection__placeholder {
        color: #000; }
      .input__field .select2-container--default .select2-selection__arrow {
        right: 7.5vmin;
        top: 50%;
        border-top: solid 1.875vmin #ccc;
        border-right: solid 1.25vmin transparent;
        border-left: solid 1.25vmin transparent;
        width: 0;
        height: 0;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        -webkit-transform-origin: 50% 25%;
            -ms-transform-origin: 50% 25%;
                transform-origin: 50% 25%;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        .input__field .select2-container--default .select2-selection__arrow b {
          display: none; }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-selection__arrow {
            right: 1.25vw;
            border-top-width: 0.3125vw;
            border-right-width: 0.20833vw;
            border-left-width: 0.20833vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-selection__arrow {
            right: 24px;
            border-top-width: 6px;
            border-right-width: 4px;
            border-left-width: 4px; } }
      .input__field .select2-container--default .select2-selection--single {
        height: 20vmin; }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-selection--single {
            height: 3.33333vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-selection--single {
            height: 64px; } }
    .input__field .select2-container--default .select2-dropdown {
      margin-top: -1px;
      border: solid 1px #ccc;
      border-radius: 0 0 2.5vmin 2.5vmin;
      padding: 5vmin 7.5vmin;
      background: #fff; }
      @media (max-width: 1023px) {
        .input__field .select2-container--default .select2-dropdown {
          font-size: 5vmin;
          line-height: 7.5vmin; } }
      @media (min-width: 1024px) {
        .input__field .select2-container--default .select2-dropdown {
          border-radius: 0 0 0.41667vw 0.41667vw;
          padding: 0.83333vw 1.25vw; } }
      @media (min-width: 1920px) {
        .input__field .select2-container--default .select2-dropdown {
          border-radius: 0 0 8px 8px;
          padding: 16px 24px; } }
    .input__field .select2-container--default .select2-results__options {
      max-height: 59.375vmin; }
      .input__field .select2-container--default .select2-results__options::-webkit-scrollbar {
        width: 2.5vmin;
        height: 2.5vmin;
        background-color: transparent; }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-results__options::-webkit-scrollbar {
            width: 0.41667vw;
            height: 0.41667vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-results__options::-webkit-scrollbar {
            width: 8px;
            height: 8px; } }
      .input__field .select2-container--default .select2-results__options::-webkit-scrollbar-track {
        background-color: transparent; }
      .input__field .select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
        border-right: solid 1.25vmin rgba(0, 0, 0, 0.3);
        background-color: rgba(0, 0, 0, 0.3); }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
            border-right: solid 0.20833vw rgba(0, 0, 0, 0.3); } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
            border-right: solid 4px #fff; } }
      @media (min-width: 1024px) {
        .input__field .select2-container--default .select2-results__options {
          max-height: 9.89583vw; } }
      @media (min-width: 1920px) {
        .input__field .select2-container--default .select2-results__options {
          max-height: 190px; } }
    .input__field .select2-container--default .select2-results__option {
      padding: 0;
      background: none;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .input__field .select2-container--default .select2-results__option + .select2-results__option {
        margin-top: 2.5vmin; }
        @media (min-width: 1024px) {
          .input__field .select2-container--default .select2-results__option + .select2-results__option {
            margin-top: 0.41667vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-container--default .select2-results__option + .select2-results__option {
            margin-top: 8px; } }
      .input__field .select2-container--default .select2-results__option--selected, .input__field .select2-container--default .select2-results__option--highlighted {
        color: #e30613; }
    .input__field .select2-search--dropdown {
      padding: 0; }
      .input__field .select2-search--dropdown .select2-search__field {
        outline: none;
        border: none;
        padding: 0 15.625vmin 0 6.25vmin; }
        @media (min-width: 1024px) {
          .input__field .select2-search--dropdown .select2-search__field {
            padding: 0 2.60417vw 0 1.04167vw; } }
        @media (min-width: 1920px) {
          .input__field .select2-search--dropdown .select2-search__field {
            padding: 0 50px 0 20px; } }
    .input__field label.error {
      display: block;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2;
      margin-top: 2.5vmin;
      font-size: 3.75vmin;
      color: #e30613; }
      @media (min-width: 1024px) {
        .input__field label.error {
          margin-top: 0.41667vw;
          font-size: 0.72917vw;
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .input__field label.error {
          margin-top: 8px;
          font-size: 14px;
          line-height: 20px; } }
  @media (min-width: 1024px) {
    .input {
      margin-bottom: 1.25vw; } }
  @media (min-width: 1920px) {
    .input {
      margin-bottom: 24px; } }

.checkbox {
  margin-bottom: 5vmin; }
  .checkbox label {
    position: relative;
    display: inline-block;
    padding: 0 0 0 12.5vmin;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer; }
    .checkbox label input {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: -1;
      width: 1px;
      height: 1px;
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .checkbox label input:checked ~ i {
        border-color: #e30613;
        background: #e30613; }
        .checkbox label input:checked ~ i svg {
          opacity: 1;
          visibility: visible; }
      .checkbox label input:disabled ~ i {
        border-color: #ccc;
        background: #f8f8f8; }
        .checkbox label input:disabled ~ i svg {
          stroke: #ccc; }
      .checkbox label input.error ~ i {
        border-color: #e30613; }
    .checkbox label i {
      position: absolute;
      left: 0;
      top: -2px;
      border: solid 1px #ccc;
      border-radius: 2.5vmin;
      width: 7.5vmin;
      height: 7.5vmin;
      background: #fff;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .checkbox label i svg {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 4.0625vmin;
        height: 3.125vmin;
        stroke: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (min-width: 1024px) {
          .checkbox label i svg {
            width: 0.67708vw;
            height: 0.52083vw; } }
        @media (min-width: 1920px) {
          .checkbox label i svg {
            width: 13px;
            height: 10px; } }
      @media (min-width: 1024px) {
        .checkbox label i {
          border-radius: 0.41667vw;
          width: 1.25vw;
          height: 1.25vw; } }
      @media (min-width: 1920px) {
        .checkbox label i {
          border-radius: 8px;
          width: 24px;
          height: 24px; } }
    .checkbox label a {
      position: relative; }
      .checkbox label a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.2);
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
      .checkbox label a:hover::after {
        opacity: 0; }
    @media (min-width: 1024px) {
      .checkbox label {
        padding: 0 0 0 2.08333vw; }
        .checkbox label:hover i {
          border-color: #000; } }
    @media (min-width: 1920px) {
      .checkbox label {
        padding: 0 0 0 40px; } }
  .checkbox label.error {
    display: none !important; }
  @media (min-width: 1024px) {
    .checkbox {
      margin-bottom: 0.83333vw; } }
  @media (min-width: 1920px) {
    .checkbox {
      margin-bottom: 16px; } }

.radio {
  margin-bottom: 5vmin; }
  .radio label {
    position: relative;
    display: inline-block;
    padding: 0 0 0 12.5vmin;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer; }
    .radio label input {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: -1;
      width: 1px;
      height: 1px;
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .radio label input:checked ~ i {
        border-color: #e30613;
        background: #e30613; }
        .radio label input:checked ~ i::before {
          opacity: 1;
          visibility: visible; }
      .radio label input:disabled ~ i {
        border-color: #ccc;
        background: #f8f8f8; }
        .radio label input:disabled ~ i::before {
          background: #ccc; }
      .radio label input.error ~ i {
        border-color: #e30613; }
    .radio label i {
      position: absolute;
      left: 0;
      top: -2px;
      border: solid 1px #ccc;
      border-radius: 50%;
      width: 7.5vmin;
      height: 7.5vmin;
      background: #fff;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .radio label i::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-radius: 50%;
        width: 2.5vmin;
        height: 2.5vmin;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        @media (min-width: 1024px) {
          .radio label i::before {
            width: 0.41667vw;
            height: 0.41667vw; } }
        @media (min-width: 1920px) {
          .radio label i::before {
            width: 8px;
            height: 8px; } }
      @media (min-width: 1024px) {
        .radio label i {
          width: 1.25vw;
          height: 1.25vw; } }
      @media (min-width: 1920px) {
        .radio label i {
          width: 24px;
          height: 24px; } }
    @media (min-width: 1024px) {
      .radio label {
        padding: 0 0 0 2.08333vw; }
        .radio label:hover i {
          border-color: #000; } }
    @media (min-width: 1920px) {
      .radio label {
        padding: 0 0 0 40px; } }
  .radio label.error {
    display: none !important; }
  @media (min-width: 1024px) {
    .radio {
      margin-bottom: 0.83333vw; } }
  @media (min-width: 1920px) {
    .radio {
      margin-bottom: 16px; } }

.intro {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 3.125vmin;
  padding: 8.75vmin 0;
  height: 69.375vmin;
  color: #fff; }
  .intro__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: 50% 50% no-repeat;
    background-size: cover; }
    .intro__bg::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      z-index: 5;
      width: 100%;
      height: 100%;
      -webkit-box-shadow: inset 0 12.5vmin 37.5vmin rgba(0, 0, 0, 0.5);
              box-shadow: inset 0 12.5vmin 37.5vmin rgba(0, 0, 0, 0.5);
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); }
      @media (min-width: 1024px) {
        .intro__bg::after {
          -webkit-box-shadow: inset 0 2.08333vw 6.25vw rgba(0, 0, 0, 0.5);
                  box-shadow: inset 0 2.08333vw 6.25vw rgba(0, 0, 0, 0.5); } }
      @media (min-width: 1920px) {
        .intro__bg::after {
          -webkit-box-shadow: inset 0 40px 120px rgba(0, 0, 0, 0.5);
                  box-shadow: inset 0 40px 120px rgba(0, 0, 0, 0.5); } }
    .intro__bg video {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .intro__title {
    margin: 0;
    padding: 0 6.25vmin;
    max-width: 62.5vmin;
    font-weight: 700;
    font-size: 6.875vmin;
    line-height: 9.375vmin; }
    @media (min-width: 1024px) {
      .intro__title {
        padding: 0;
        max-width: 44.27083vw;
        font-size: 5vw;
        line-height: 5vw; } }
    @media (min-width: 1920px) {
      .intro__title {
        max-width: 850px;
        font-size: 96px;
        line-height: 96px; } }
  @media (min-width: 1024px) {
    .intro {
      margin-bottom: 0.98958vw;
      padding: 5.72917vw 0;
      height: 100vh; } }
  @media (min-width: 1920px) {
    .intro {
      margin-bottom: 19px;
      padding: 110px 0; } }

.benefits {
  position: relative;
  z-index: 5;
  margin-bottom: 12.5vmin; }
  @media (min-width: 1024px) {
    .benefits__title {
      margin-bottom: 3.33333vw; } }
  @media (min-width: 1920px) {
    .benefits__title {
      margin-bottom: 64px; } }
  .benefits__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.25vmin -2.5vmin; }
    @media (min-width: 1024px) {
      .benefits__row {
        margin: 0 -0.52083vw -1.04167vw; } }
    @media (min-width: 1920px) {
      .benefits__row {
        margin: 0 -10px -20px; } }
  @media (min-width: 1024px) {
    .benefits__row--width-33 .benefits__col {
      width: 33.33334%; } }
  @media (min-width: 1024px) {
    .benefits__row--width-33 .benefits__col--big {
      width: 50%; } }
  .benefits__col {
    margin-bottom: 2.5vmin;
    padding: 0 1.25vmin;
    width: 50%; }
    @media (max-width: 1023px) {
      .benefits__col:nth-child(1) {
        -webkit-box-ordinal-group: -1;
            -ms-flex-order: -2;
                order: -2; }
      .benefits__col:nth-child(3) {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1; } }
    @media (min-width: 1024px) {
      .benefits__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .benefits__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .benefits__col--big {
    width: 100%; }
    @media (min-width: 1024px) {
      .benefits__col--big {
        width: 50%; } }
  .benefits__item {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    border-radius: 2.5vmin;
    padding: 6.25vmin;
    height: 56.25vmin;
    color: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .benefits__item__title {
      width: 100%;
      max-width: 45vmin;
      font-weight: 700;
      font-size: 4.375vmin;
      line-height: 6.25vmin; }
      @media (min-width: 1024px) {
        .benefits__item__title {
          max-width: 21.77083vw;
          font-size: 1.66667vw;
          line-height: 1.875vw; } }
      @media (min-width: 1920px) {
        .benefits__item__title {
          max-width: 418px;
          font-size: 32px;
          line-height: 36px; } }
    .benefits__item__image {
      position: absolute;
      z-index: -1; }
      .benefits__item__image img {
        width: 100%; }
    .is-tilted .benefits__item {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; }
      .is-tilted .benefits__item:hover {
        -webkit-box-shadow: none;
                box-shadow: none; }
    @media (min-width: 1024px) {
      .benefits__item {
        border-radius: 0.83333vw;
        padding: 3.125vw;
        height: 22.65625vw; }
        .benefits__item:hover {
          z-index: 10;
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .benefits__item {
        border-radius: 16px;
        padding: 60px;
        height: 435px; }
        .benefits__item:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  .benefits__item--xbox {
    background: #201f25; }
    .benefits__item--xbox .benefits__item__image {
      right: 0;
      top: 2.8125vmin;
      width: 52.1875vmin; }
      @media (min-width: 1024px) {
        .benefits__item--xbox .benefits__item__image {
          right: 2.08333vw;
          top: 1.5625vw;
          width: 20.36458vw; } }
      @media (min-width: 1920px) {
        .benefits__item--xbox .benefits__item__image {
          right: 40px;
          top: 30px;
          width: 391px; } }
  .benefits__item--shop {
    background: #e30613; }
    .benefits__item--shop .benefits__item__image {
      left: 6.25vmin;
      top: -5vmin;
      width: 33.75vmin; }
      @media (min-width: 1024px) {
        .benefits__item--shop .benefits__item__image {
          left: 1.97917vw;
          top: -2.70833vw;
          width: 18.90625vw; } }
      @media (min-width: 1920px) {
        .benefits__item--shop .benefits__item__image {
          left: 38px;
          top: -52px;
          width: 363px; } }
  .benefits__item--steam {
    background: #191919; }
    .benefits__item--steam .benefits__item__image {
      left: 7.5vmin;
      top: 0;
      width: 31.25vmin; }
      @media (min-width: 1024px) {
        .benefits__item--steam .benefits__item__image {
          left: 1.97917vw;
          top: -2.70833vw;
          width: 18.90625vw; } }
      @media (min-width: 1920px) {
        .benefits__item--steam .benefits__item__image {
          left: 38px;
          top: -52px;
          width: 363px; } }
  .benefits__item--leader {
    background: #e30613; }
    .benefits__item--leader .benefits__item__image {
      left: 9.375vmin;
      top: 1.5625vmin;
      width: 27.8125vmin; }
      @media (min-width: 1024px) {
        .benefits__item--leader .benefits__item__image {
          left: 3.38542vw;
          top: -1.45833vw;
          width: 15.83333vw; } }
      @media (min-width: 1920px) {
        .benefits__item--leader .benefits__item__image {
          left: 65px;
          top: -28px;
          width: 304px; } }
  .benefits__item--partner {
    color: #000;
    background: #f8f8f8; }
    .benefits__item--partner .benefits__item__image {
      right: 0;
      top: 0;
      width: 31.25vmin; }
      @media (min-width: 1024px) {
        .benefits__item--partner .benefits__item__image {
          width: 18.28125vw; } }
      @media (min-width: 1920px) {
        .benefits__item--partner .benefits__item__image {
          width: 351px; } }
  .benefits__item--years .benefits__item__image {
    left: 0;
    top: 0;
    border-radius: 2.5vmin;
    width: 100%;
    height: 100%;
    background: 50% 50% no-repeat;
    background-size: cover; }
    .benefits__item--years .benefits__item__image::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 2.5vmin;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0)));
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%); }
      @media (min-width: 1024px) {
        .benefits__item--years .benefits__item__image::after {
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .benefits__item--years .benefits__item__image::after {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .benefits__item--years .benefits__item__image {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .benefits__item--years .benefits__item__image {
        border-radius: 16px; } }
  .benefits__item--realize .benefits__item__image {
    left: 0;
    top: 0;
    border-radius: 2.5vmin;
    width: 100%;
    height: 100%;
    background: 50% 50% no-repeat;
    background-size: cover; }
    .benefits__item--realize .benefits__item__image::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 2.5vmin;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0)));
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%); }
      @media (min-width: 1024px) {
        .benefits__item--realize .benefits__item__image::after {
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .benefits__item--realize .benefits__item__image::after {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .benefits__item--realize .benefits__item__image {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .benefits__item--realize .benefits__item__image {
        border-radius: 16px; } }
  .benefits__item--online .benefits__item__image {
    left: 0;
    top: 0;
    border-radius: 2.5vmin;
    width: 100%;
    height: 100%;
    background: 50% 50% no-repeat;
    background-size: cover; }
    .benefits__item--online .benefits__item__image::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      border-radius: 2.5vmin;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0)));
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%); }
      @media (min-width: 1024px) {
        .benefits__item--online .benefits__item__image::after {
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .benefits__item--online .benefits__item__image::after {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .benefits__item--online .benefits__item__image {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .benefits__item--online .benefits__item__image {
        border-radius: 16px; } }
  .benefits__item--embody {
    color: #000;
    background: #f8f8f8; }
    .benefits__item--embody .benefits__item__image {
      right: 0;
      top: 0;
      width: 26.5625vmin; }
      @media (min-width: 1024px) {
        .benefits__item--embody .benefits__item__image {
          width: 15.67708vw; } }
      @media (min-width: 1920px) {
        .benefits__item--embody .benefits__item__image {
          width: 301px; } }
  .benefits__item--partnership {
    color: #fff;
    background: #000; }
    .benefits__item--partnership .benefits__item__image {
      right: 0;
      top: 0;
      width: 37.5vmin; }
      @media (min-width: 1024px) {
        .benefits__item--partnership .benefits__item__image {
          width: 20.41667vw; } }
      @media (min-width: 1920px) {
        .benefits__item--partnership .benefits__item__image {
          width: 392px; } }
  .benefits__item--satisfied {
    color: #fff;
    background: #e30613; }
    .benefits__item--satisfied .benefits__item__image {
      right: 0;
      top: 0;
      width: 31.25vmin; }
      @media (min-width: 1024px) {
        .benefits__item--satisfied .benefits__item__image {
          width: 15.67708vw; } }
      @media (min-width: 1920px) {
        .benefits__item--satisfied .benefits__item__image {
          width: 301px; } }
  @media (min-width: 1024px) {
    .benefits {
      margin-bottom: 7.13542vw; } }
  @media (min-width: 1920px) {
    .benefits {
      margin-bottom: 137px; } }

.carousel {
  position: relative; }
  .carousel__nav {
    position: absolute;
    right: 0;
    top: -17.5vmin;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 1024px) {
      .carousel__nav {
        top: -5.10417vw; } }
    @media (min-width: 1920px) {
      .carousel__nav {
        top: -98px; } }
  .carousel__prev, .carousel__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 2.5vmin;
    outline: none;
    border: none;
    border-radius: 50%;
    padding: 0;
    width: 11.25vmin;
    height: 11.25vmin;
    background: #000; }
    .carousel__prev svg, .carousel__next svg {
      width: 2.5vmin;
      height: 4.375vmin;
      fill: none; }
      @media (min-width: 1024px) {
        .carousel__prev svg, .carousel__next svg {
          width: 0.52083vw;
          height: 0.9375vw; } }
      @media (min-width: 1920px) {
        .carousel__prev svg, .carousel__next svg {
          width: 10px;
          height: 18px; } }
    .carousel__prev.swiper-button-disabled, .carousel__next.swiper-button-disabled {
      opacity: 0;
      pointer-events: none; }
    @media (min-width: 1024px) {
      .carousel__prev, .carousel__next {
        margin-left: 0.41667vw;
        width: 2.5vw;
        height: 2.5vw; }
        .carousel__prev:hover, .carousel__next:hover {
          background: #e30613; } }
    @media (min-width: 1920px) {
      .carousel__prev, .carousel__next {
        margin-left: 8px;
        width: 48px;
        height: 48px; } }
  .carousel__prev {
    padding-right: 0.625vmin; }
    @media (min-width: 1024px) {
      .carousel__prev {
        padding-right: 0.10417vw; } }
    @media (min-width: 1920px) {
      .carousel__prev {
        padding-right: 2px; } }
  .carousel__next {
    padding-left: 0.625vmin; }
    @media (min-width: 1024px) {
      .carousel__next {
        padding-left: 0.10417vw; } }
    @media (min-width: 1920px) {
      .carousel__next {
        padding-left: 2px; } }

.news {
  margin-bottom: 11.25vmin; }
  @media (min-width: 1024px) {
    .news .swiper-container {
      margin: 0 -0.9375vw;
      padding: 0 0.9375vw; } }
  @media (min-width: 1920px) {
    .news .swiper-container {
      margin: 0 -18px;
      padding: 0 18px; } }
  .news__title {
    margin-bottom: 7.8125vmin; }
    @media (max-width: 1023px) {
      .news__title {
        max-width: 65.9375vmin;
        font-size: 6.875vmin;
        line-height: 8.125vmin; } }
    @media (min-width: 1024px) {
      .news__title {
        margin-bottom: 2.60417vw; } }
    @media (min-width: 1920px) {
      .news__title {
        margin-bottom: 50px; } }
  .news__item {
    display: block; }
    .news__item__image {
      position: relative;
      overflow: hidden;
      margin-bottom: 5vmin;
      border-radius: 2.5vmin;
      padding-bottom: 54.6%;
      background: 50% 50% no-repeat;
      background-size: cover;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      @media (min-width: 1024px) {
        .news__item__image {
          margin-bottom: 0.83333vw;
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .news__item__image {
          margin-bottom: 16px;
          border-radius: 16px; } }
    .news__item__play {
      position: absolute;
      left: 0;
      top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 2.5vmin;
      width: 100%;
      height: 100%;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
      background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); }
      .news__item__play__icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 50%;
        width: 11.25vmin;
        height: 11.25vmin;
        background: #e30613; }
        .news__item__play__icon svg {
          width: 3.75vmin;
          height: 4.375vmin; }
          @media (min-width: 1024px) {
            .news__item__play__icon svg {
              width: 0.72917vw;
              height: 0.83333vw; } }
          @media (min-width: 1920px) {
            .news__item__play__icon svg {
              width: 14px;
              height: 16px; } }
        @media (min-width: 1024px) {
          .news__item__play__icon {
            width: 2.5vw;
            height: 2.5vw; } }
        @media (min-width: 1920px) {
          .news__item__play__icon {
            width: 48px;
            height: 48px; } }
      @media (min-width: 1024px) {
        .news__item__play {
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .news__item__play {
          border-radius: 16px; } }
    .news__item__preview {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 5;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden; }
      .news__item__preview img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
      .news__item__preview.is-show {
        opacity: 1;
        visibility: visible;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
    .news__item__title {
      margin: 0 0 3.75vmin;
      max-width: 57.5vmin;
      font-weight: 700;
      font-size: 4.375vmin;
      line-height: 5vmin; }
      @media (min-width: 1024px) {
        .news__item__title {
          margin: 0 0 1.04167vw;
          max-width: none;
          font-size: 1.25vw;
          line-height: 1.5625vw; } }
      @media (min-width: 1920px) {
        .news__item__title {
          margin: 0 0 20px;
          font-size: 24px;
          line-height: 30px; } }
    .news__item__info {
      font-weight: 500;
      font-size: 2.5vmin;
      line-height: 3.125vmin;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #b3b3b3; }
      .news__item__info li {
        display: inline; }
        .news__item__info li + li {
          position: relative;
          padding-left: 6.875vmin; }
          .news__item__info li + li::before {
            content: "";
            position: absolute;
            left: 2.5vmin;
            top: 1.25vmin;
            border-radius: 50%;
            width: 0.625vmin;
            height: 0.625vmin;
            background: #b3b3b3; }
            @media (min-width: 1024px) {
              .news__item__info li + li::before {
                left: 0.41667vw;
                top: 0.26042vw;
                width: 0.15625vw;
                height: 0.15625vw; } }
            @media (min-width: 1920px) {
              .news__item__info li + li::before {
                left: 8px;
                top: 5px;
                width: 3px;
                height: 3px; } }
          @media (min-width: 1024px) {
            .news__item__info li + li {
              padding-left: 1.19792vw; } }
          @media (min-width: 1920px) {
            .news__item__info li + li {
              padding-left: 23px; } }
      @media (min-width: 1024px) {
        .news__item__info {
          font-size: 0.625vw;
          line-height: 0.72917vw; } }
      @media (min-width: 1920px) {
        .news__item__info {
          font-size: 12px;
          line-height: 14px; } }
    @media (min-width: 1024px) {
      .news__item {
        width: auto; }
        .news__item:hover .news__item__image {
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .news__item:hover .news__item__image {
        -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  @media (min-width: 1024px) {
    .news {
      margin-bottom: 6.61458vw; } }
  @media (min-width: 1920px) {
    .news {
      margin-bottom: 127px; } }

.services {
  margin-bottom: 14.375vmin; }
  .services__title {
    margin-bottom: 6.875vmin; }
    @media (max-width: 1023px) {
      .services__title {
        font-size: 6.875vmin;
        line-height: 8.125vmin; } }
    @media (min-width: 1024px) {
      .services__title {
        margin-bottom: 2.60417vw; } }
    @media (min-width: 1920px) {
      .services__title {
        margin-bottom: 50px; } }
  .services__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 -2.5vmin; }
    @media (min-width: 1024px) {
      .services__row {
        margin: 0 -0.52083vw -1.04167vw; } }
    @media (min-width: 1920px) {
      .services__row {
        margin: 0 -10px -20px; } }
  .services__col {
    margin-bottom: 2.5vmin;
    width: 100%; }
    @media (max-width: 1023px) {
      .services__col:nth-child(1) {
        -webkit-box-ordinal-group: -3;
            -ms-flex-order: -4;
                order: -4; }
      .services__col:nth-child(2) {
        -webkit-box-ordinal-group: -2;
            -ms-flex-order: -3;
                order: -3; }
        .services__col:nth-child(2) .services__item {
          height: 113.75vmin; }
      .services__col:nth-child(4) {
        -webkit-box-ordinal-group: -1;
            -ms-flex-order: -2;
                order: -2; }
      .services__col:nth-child(3) {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1; }
      .services__col:nth-child(6) {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1; } }
    @media (min-width: 1024px) {
      .services__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .services__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .services__col--distribution {
    width: 100%; }
    @media (min-width: 1024px) {
      .services__col--distribution {
        width: 75%; } }
  .services__item {
    position: relative;
    z-index: 5;
    display: block;
    border-radius: 2.5vmin;
    padding: 6.25vmin;
    height: 100vmin;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .services__item__title {
      margin: 0 0 3.125vmin;
      font-weight: 700;
      font-size: 5.625vmin;
      line-height: 7.5vmin; }
      @media (min-width: 1024px) {
        .services__item__title {
          margin: 0 0 1.5625vw;
          font-size: 1.66667vw;
          line-height: 1.875vw; } }
      @media (min-width: 1920px) {
        .services__item__title {
          margin: 0 0 30px;
          font-size: 32px;
          line-height: 36px; } }
    @media (min-width: 1024px) {
      .services__item__text {
        font-size: 0.9375vw;
        line-height: 1.5625vw; } }
    @media (min-width: 1920px) {
      .services__item__text {
        font-size: 18px;
        line-height: 30px; } }
    .services__item__image {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      border-radius: 2.5vmin;
      width: 100%;
      height: 100%;
      background: #f6f6f6 50% 100% no-repeat;
      background-size: 100% auto; }
      @media (min-width: 1024px) {
        .services__item__image {
          border-radius: 0.83333vw;
          background: #f6f6f6 50% 100% no-repeat;
          background-size: 100% auto; } }
      @media (min-width: 1920px) {
        .services__item__image {
          border-radius: 16px; } }
    .services__item--dark {
      color: #fff; }
      .services__item--dark .services__item__image {
        background-color: #191919; }
    @media (min-width: 1024px) {
      .services__item {
        border-radius: 0.83333vw;
        padding: 3.125vw;
        height: 31.25vw; }
        .services__item:hover {
          z-index: 10;
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .services__item {
        border-radius: 16px;
        padding: 60px;
        height: 600px; }
        .services__item:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  .services__distribution {
    position: relative;
    z-index: 5;
    display: block;
    border-radius: 2.5vmin;
    padding: 59.375vmin 6.25vmin 10vmin;
    height: 100%;
    color: #fff;
    background: #e30613;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media (min-width: 1024px) {
      .services__distribution__content {
        max-width: 28.59375vw; } }
    @media (min-width: 1920px) {
      .services__distribution__content {
        max-width: 549px; } }
    .services__distribution__image {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: -1;
      width: 40.67708vw;
      pointer-events: none; }
      .services__distribution__image img {
        width: 100%; }
      @media (max-width: 1023px) {
        .services__distribution__image {
          top: -14.6875vmin;
          bottom: auto;
          width: 96.875vmin; }
          .services__distribution__image::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 93.75vmin;
            height: 42.1875vmin;
            background: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 6, 19, 0)), to(#e30613));
            background: -o-linear-gradient(top, rgba(227, 6, 19, 0) 0%, #e30613 100%);
            background: linear-gradient(180deg, rgba(227, 6, 19, 0) 0%, #e30613 100%); } }
      @media (min-width: 1024px) {
        .services__distribution__image {
          width: 40.67708vw; } }
      @media (min-width: 1920px) {
        .services__distribution__image {
          width: 781px; } }
    .services__distribution__title {
      margin: 0 0 3.125vmin;
      font-weight: 700;
      font-size: 5.625vmin;
      line-height: 7.5vmin; }
      @media (min-width: 1024px) {
        .services__distribution__title {
          margin: 0 0 1.5625vw;
          font-size: 1.66667vw;
          line-height: 1.875vw; } }
      @media (min-width: 1920px) {
        .services__distribution__title {
          margin: 0 0 30px;
          font-size: 32px;
          line-height: 36px; } }
    .services__distribution__text {
      margin-bottom: 10vmin; }
      @media (min-width: 1024px) {
        .services__distribution__text {
          margin-bottom: 3.125vw;
          max-width: 24.375vw;
          font-size: 0.9375vw;
          line-height: 1.5625vw; } }
      @media (min-width: 1920px) {
        .services__distribution__text {
          margin-bottom: 60px;
          max-width: 468px;
          font-size: 18px;
          line-height: 30px; } }
    @media (min-width: 1024px) {
      .services__distribution__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -0.78125vw; } }
    @media (min-width: 1920px) {
      .services__distribution__list {
        margin: 0 -15px; } }
    @media (max-width: 1023px) {
      .services__distribution__col + .services__distribution__col {
        margin-top: 6.25vmin; } }
    @media (min-width: 1024px) {
      .services__distribution__col {
        padding: 0 0.78125vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .services__distribution__col {
        padding: 0 15px; } }
    .services__distribution__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .services__distribution__item__image {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 6.25vmin; }
        .services__distribution__item__image img {
          width: 13.4375vmin; }
          @media (min-width: 1024px) {
            .services__distribution__item__image img {
              width: 3.85417vw; } }
          @media (min-width: 1920px) {
            .services__distribution__item__image img {
              width: 74px; } }
        @media (min-width: 1024px) {
          .services__distribution__item__image {
            margin-right: 1.25vw; } }
        @media (min-width: 1920px) {
          .services__distribution__item__image {
            margin-right: 24px; } }
      .services__distribution__item__text {
        width: 100%;
        max-width: 62.5vmin;
        font-weight: 700;
        font-size: 4.375vmin;
        line-height: 5.625vmin; }
        @media (min-width: 1024px) {
          .services__distribution__item__text {
            max-width: 7.8125vw;
            font-size: 0.83333vw;
            line-height: 1.04167vw; } }
        @media (min-width: 1920px) {
          .services__distribution__item__text {
            max-width: 150px;
            font-size: 16px;
            line-height: 20px; } }
      .services__distribution__item + .services__distribution__item {
        margin-top: 6.25vmin; }
        @media (min-width: 1024px) {
          .services__distribution__item + .services__distribution__item {
            margin-top: 3.125vw; } }
        @media (min-width: 1920px) {
          .services__distribution__item + .services__distribution__item {
            margin-top: 60px; } }
    @media (min-width: 1024px) {
      .services__distribution__button .button {
        min-width: 13.02083vw; } }
    @media (min-width: 1920px) {
      .services__distribution__button .button {
        min-width: 250px; } }
    @media (min-width: 1024px) {
      .services__distribution {
        border-radius: 0.83333vw;
        padding: 3.125vw; }
        .services__distribution:hover {
          z-index: 10;
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .services__distribution {
        border-radius: 16px;
        padding: 60px; }
        .services__distribution:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  @media (min-width: 1024px) {
    .services {
      margin-bottom: 8.33333vw; } }
  @media (min-width: 1920px) {
    .services {
      margin-bottom: 160px; } }

.services--slider {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .services--slider .swiper-container {
      overflow: hidden;
      margin: -1.30208vw -0.9375vw;
      padding: 1.30208vw 0.9375vw; } }
  @media (min-width: 1920px) {
    .services--slider .swiper-container {
      margin: -25px -18px;
      padding: 25px 18px; } }
  @media (min-width: 1024px) {
    .services--slider {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .services--slider {
      margin-bottom: 104px; } }

.cooperation {
  margin-bottom: 11.25vmin; }
  @media (min-width: 1024px) {
    .cooperation__container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-left: 7.91667vw; } }
  @media (min-width: 1920px) {
    .cooperation__container {
      padding-left: 152px; } }
  .cooperation__content {
    width: 100%; }
  .cooperation__title {
    margin-bottom: 6.25vmin; }
    @media (max-width: 1023px) {
      .cooperation__title {
        font-size: 6.875vmin;
        line-height: 8.125vmin; } }
    @media (min-width: 1024px) {
      .cooperation__title {
        margin-bottom: 1.5625vw; } }
    @media (min-width: 1920px) {
      .cooperation__title {
        margin-bottom: 30px; } }
  @media (min-width: 1024px) {
    .cooperation__text {
      font-size: 0.9375vw;
      line-height: 1.5625vw; } }
  @media (min-width: 1920px) {
    .cooperation__text {
      font-size: 18px;
      line-height: 30px; } }
  .cooperation__button {
    margin-top: 9.375vmin; }
    @media (min-width: 1024px) {
      .cooperation__button {
        margin-top: 3.125vw; } }
    @media (min-width: 1920px) {
      .cooperation__button {
        margin-top: 60px; } }
  .cooperation__list {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 8.75vmin; }
    .cooperation__list__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -1.25vmin -2.5vmin; }
      @media (min-width: 1024px) {
        .cooperation__list__row {
          margin: 0 -0.52083vw -1.04167vw; } }
      @media (min-width: 1920px) {
        .cooperation__list__row {
          margin: 0 -10px -20px; } }
    .cooperation__list__col {
      margin-bottom: 2.5vmin;
      padding: 0 1.25vmin;
      width: 50%; }
      @media (min-width: 1024px) {
        .cooperation__list__col {
          margin-bottom: 1.04167vw;
          padding: 0 0.52083vw; } }
      @media (min-width: 1920px) {
        .cooperation__list__col {
          margin-bottom: 20px;
          padding: 0 10px; } }
    @media (min-width: 1024px) {
      .cooperation__list {
        margin: 0 0 0 8.95833vw;
        width: 46.35417vw; } }
    @media (min-width: 1920px) {
      .cooperation__list {
        margin-left: 172px;
        width: 890px; } }
  .cooperation__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    border-radius: 2.5vmin;
    padding: 6.25vmin;
    height: 53.125vmin;
    background: #f6f6f6;
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }
    .cooperation__item__image {
      position: absolute;
      top: 0; }
      .cooperation__item__image img {
        width: 100%;
        max-width: none; }
    .cooperation__item__title {
      width: 100%;
      font-weight: 700; }
      @media (min-width: 1024px) {
        .cooperation__item__title {
          max-width: 13.02083vw;
          font-size: 1.66667vw;
          line-height: 1.875vw; } }
      @media (min-width: 1920px) {
        .cooperation__item__title {
          max-width: 250px;
          font-size: 32px;
          line-height: 36px; } }
    @media (min-width: 1024px) {
      .cooperation__item {
        border-radius: 0.83333vw;
        padding: 3.125vw;
        width: 22.65625vw;
        height: 22.65625vw; }
        .cooperation__item:hover {
          z-index: 10; } }
    @media (min-width: 1920px) {
      .cooperation__item {
        border-radius: 16px;
        padding: 60px;
        width: 435px;
        height: 435px; } }
  .cooperation__item--support {
    color: #fff;
    background: #e30613; }
    .cooperation__item--support .cooperation__item__image {
      left: 1.5625vmin; }
      .cooperation__item--support .cooperation__item__image img {
        width: 39.375vmin; }
        @media (min-width: 1024px) {
          .cooperation__item--support .cooperation__item__image img {
            width: 20.36458vw; } }
        @media (min-width: 1920px) {
          .cooperation__item--support .cooperation__item__image img {
            width: 391px; } }
      @media (min-width: 1024px) {
        .cooperation__item--support .cooperation__item__image {
          left: 0.72917vw; } }
      @media (min-width: 1920px) {
        .cooperation__item--support .cooperation__item__image {
          left: 14px; } }
  .cooperation__item--banner .cooperation__item__image {
    left: 8.4375vmin; }
    .cooperation__item--banner .cooperation__item__image img {
      width: 30.625vmin; }
      @media (min-width: 1024px) {
        .cooperation__item--banner .cooperation__item__image img {
          width: 14.53125vw; } }
      @media (min-width: 1920px) {
        .cooperation__item--banner .cooperation__item__image img {
          width: 279px; } }
    @media (min-width: 1024px) {
      .cooperation__item--banner .cooperation__item__image {
        left: 4.16667vw; } }
    @media (min-width: 1920px) {
      .cooperation__item--banner .cooperation__item__image {
        left: 80px; } }
  .cooperation__item--discount .cooperation__item__image {
    left: 5.625vmin; }
    .cooperation__item--discount .cooperation__item__image img {
      width: 33.75vmin; }
      @media (min-width: 1024px) {
        .cooperation__item--discount .cooperation__item__image img {
          width: 16.45833vw; } }
      @media (min-width: 1920px) {
        .cooperation__item--discount .cooperation__item__image img {
          width: 316px; } }
    @media (min-width: 1024px) {
      .cooperation__item--discount .cooperation__item__image {
        left: 3.125vw; } }
    @media (min-width: 1920px) {
      .cooperation__item--discount .cooperation__item__image {
        left: 60px; } }
  .cooperation__item--programs {
    color: #fff;
    background: #191919; }
    .cooperation__item--programs .cooperation__item__image {
      left: 5.9375vmin; }
      .cooperation__item--programs .cooperation__item__image img {
        width: 33.75vmin; }
        @media (min-width: 1024px) {
          .cooperation__item--programs .cooperation__item__image img {
            width: 15.83333vw; } }
        @media (min-width: 1920px) {
          .cooperation__item--programs .cooperation__item__image img {
            width: 304px; } }
      @media (min-width: 1024px) {
        .cooperation__item--programs .cooperation__item__image {
          left: 3.38542vw; } }
      @media (min-width: 1920px) {
        .cooperation__item--programs .cooperation__item__image {
          left: 65px; } }
  @media (min-width: 1024px) {
    .cooperation {
      margin-bottom: 8.33333vw; } }
  @media (min-width: 1920px) {
    .cooperation {
      margin-bottom: 160px; } }

.partners {
  overflow: hidden;
  margin-bottom: 12.5vmin;
  padding: 11.25vmin 0;
  background: #f6f6f6; }
  .partners .swiper-container {
    overflow: visible; }
    @media (min-width: 1024px) {
      .partners .swiper-container {
        overflow: hidden;
        margin: 0 -1.04167vw -1.04167vw;
        padding: 0 1.04167vw 1.04167vw; } }
    @media (min-width: 1920px) {
      .partners .swiper-container {
        margin: 0 -20px -20px;
        padding: 0 20px 20px; } }
  @media (min-width: 1024px) {
    .partners .swiper-wrapper {
      margin-bottom: -1.25vw; } }
  @media (min-width: 1920px) {
    .partners .swiper-wrapper {
      margin-bottom: -24px; } }
  .partners .swiper-slide {
    width: auto; }
  .partners__title {
    margin: 0 0 8.4375vmin; }
    @media (max-width: 1023px) {
      .partners__title {
        font-size: 6.875vmin;
        line-height: 8.125vmin; } }
    @media (min-width: 1024px) {
      .partners__title {
        margin-bottom: 2.08333vw; } }
    @media (min-width: 1920px) {
      .partners__title {
        margin-bottom: 40px; } }
  .partners__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 2.5vmin;
    width: 31.25vmin;
    height: 31.25vmin;
    background: #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .partners__item__image img {
      max-width: 25vmin;
      max-height: 25vmin; }
      @media (min-width: 1024px) {
        .partners__item__image img {
          max-width: 14.6875vw;
          max-height: 7.70833vw; } }
      @media (min-width: 1920px) {
        .partners__item__image img {
          max-width: 282px;
          max-height: 148px; } }
    @media (min-width: 1024px) {
      .partners__item {
        border-radius: 0.83333vw;
        width: 14.73958vw;
        height: 14.73958vw; }
        .partners__item:hover {
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .partners__item {
        border-radius: 16px;
        width: 283px;
        height: 283px; }
        .partners__item:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  .partners__item--big {
    width: 65vmin; }
    @media (min-width: 1024px) {
      .partners__item--big {
        width: 30.57292vw; } }
    @media (min-width: 1920px) {
      .partners__item--big {
        width: 587px; } }
  .partners__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.25vmin -2.5vmin;
    width: 101.25vmin; }
    @media (min-width: 1024px) {
      .partners__row {
        margin: 0 -0.52083vw;
        width: 47.39583vw; } }
    @media (min-width: 1920px) {
      .partners__row {
        margin: 0 -10px;
        width: 910px; } }
  .partners__col {
    margin-bottom: 2.5vmin;
    padding: 0 1.25vmin; }
    @media (min-width: 1024px) {
      .partners__col {
        margin-bottom: 1.25vw;
        padding: 0 0.52083vw; } }
    @media (min-width: 1920px) {
      .partners__col {
        margin-bottom: 24px;
        padding: 0 10px; } }
  .partners__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .partners__line .js-marquee-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .partners__line .js-marquee {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .partners__line .partners__col {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  @media (min-width: 1024px) {
    .partners {
      margin-bottom: 8.33333vw;
      padding: 6.25vw 0; } }
  @media (min-width: 1920px) {
    .partners {
      margin-bottom: 160px;
      padding: 120px 0; } }

.partners--line {
  padding: 11.875vmin 0 17.1875vmin; }
  .partners--line .swiper-wrapper {
    margin-bottom: 0; }
  .partners--line .partners__item {
    width: auto;
    height: auto; }
    .partners--line .partners__item__image img {
      max-width: 100%;
      max-height: none; }
  @media (min-width: 1024px) {
    .partners--line {
      padding: 6.25vw 0 8.125vw; } }
  @media (min-width: 1920px) {
    .partners--line {
      padding: 120px 0 156px; } }

.coming-soon .swiper-container {
  overflow: visible; }
  @media (min-width: 1024px) {
    .coming-soon .swiper-container {
      overflow: hidden;
      margin: 0 -0.9375vw;
      padding: 0 0.9375vw; } }
  @media (min-width: 1920px) {
    .coming-soon .swiper-container {
      margin: 0 -18px;
      padding: 0 18px; } }

@media (min-width: 1024px) {
  .coming-soon .swiper-wrapper {
    margin-bottom: -3.22917vw; } }

@media (min-width: 1920px) {
  .coming-soon .swiper-wrapper {
    margin-bottom: -62px; } }

.coming-soon .swiper-slide {
  width: auto; }

.coming-soon__title {
  margin-bottom: 7.1875vmin; }
  @media (max-width: 1023px) {
    .coming-soon__title {
      font-size: 6.875vmin;
      line-height: 8.125vmin; } }
  @media (min-width: 1024px) {
    .coming-soon__title {
      margin-bottom: 2.08333vw; } }
  @media (min-width: 1920px) {
    .coming-soon__title {
      margin-bottom: 40px; } }

.coming-soon__item {
  display: block;
  width: 42.5vmin;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .coming-soon__item__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 3.75vmin;
    border-radius: 2.5vmin;
    padding-bottom: 78%;
    background: 50% 50% no-repeat;
    background-size: cover;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .coming-soon__item__image__list {
      position: absolute;
      left: 0;
      top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      height: 100%; }
    .coming-soon__item__image__el {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      .coming-soon__item__image__el__img {
        position: absolute;
        left: 0;
        top: 0;
        border-radius: 2.5vmin;
        width: 100%;
        height: 100%;
        background: 50% 50% no-repeat;
        background-size: cover;
        pointer-events: none; }
        @media (min-width: 1024px) {
          .coming-soon__item__image__el__img {
            display: none;
            border-radius: 0.83333vw; } }
        @media (min-width: 1920px) {
          .coming-soon__item__image__el__img {
            border-radius: 16px; } }
      .coming-soon__item__image__el:first-child .coming-soon__item__image__el__img {
        display: block; }
      @media (min-width: 1024px) {
        .coming-soon__item__image__el:hover .coming-soon__item__image__el__img {
          display: block; } }
    @media (min-width: 1024px) {
      .coming-soon__item__image {
        margin-bottom: 1.04167vw;
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .coming-soon__item__image {
        margin-bottom: 20px;
        border-radius: 16px; } }
  .coming-soon__item__play {
    position: absolute;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 2.5vmin;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); }
    .coming-soon__item__play__icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 50%;
      width: 11.25vmin;
      height: 11.25vmin;
      background: #e30613; }
      .coming-soon__item__play__icon svg {
        width: 3.75vmin;
        height: 4.375vmin; }
        @media (min-width: 1024px) {
          .coming-soon__item__play__icon svg {
            width: 0.72917vw;
            height: 0.83333vw; } }
        @media (min-width: 1920px) {
          .coming-soon__item__play__icon svg {
            width: 14px;
            height: 16px; } }
      @media (min-width: 1024px) {
        .coming-soon__item__play__icon {
          width: 2.5vw;
          height: 2.5vw; } }
      @media (min-width: 1920px) {
        .coming-soon__item__play__icon {
          width: 48px;
          height: 48px; } }
    @media (min-width: 1024px) {
      .coming-soon__item__play {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .coming-soon__item__play {
        border-radius: 16px; } }
  .coming-soon__item__preview {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden; }
    .coming-soon__item__preview img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .coming-soon__item__preview.is-show {
      opacity: 1;
      visibility: visible;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
  .coming-soon__item__date {
    margin-bottom: 2.5vmin; }
    .coming-soon__item__date span {
      display: inline-block;
      vertical-align: middle;
      border-radius: 5vmin;
      padding: 0 3.125vmin;
      font-weight: 500;
      font-size: 2.8125vmin;
      line-height: 5vmin;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: #e30613; }
      @media (min-width: 1024px) {
        .coming-soon__item__date span {
          border-radius: 0.83333vw;
          padding: 0 0.52083vw;
          font-size: 0.625vw;
          line-height: 1.25vw; } }
      @media (min-width: 1920px) {
        .coming-soon__item__date span {
          border-radius: 16px;
          padding: 0 10px;
          font-size: 12px;
          line-height: 24px; } }
    @media (min-width: 1024px) {
      .coming-soon__item__date {
        margin-bottom: 0.625vw; } }
    @media (min-width: 1920px) {
      .coming-soon__item__date {
        margin-bottom: 12px; } }
  .coming-soon__item__title {
    font-weight: 700;
    font-size: 4.375vmin;
    line-height: 5.3125vmin; }
    @media (min-width: 1024px) {
      .coming-soon__item__title {
        font-size: 1.25vw;
        line-height: 1.5625vw; } }
    @media (min-width: 1920px) {
      .coming-soon__item__title {
        font-size: 24px;
        line-height: 30px; } }
  @media (min-width: 1024px) {
    .coming-soon__item {
      margin-bottom: 3.22917vw;
      width: auto; }
      .coming-soon__item:hover .coming-soon__item__image {
        -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
  @media (min-width: 1920px) {
    .coming-soon__item {
      margin-bottom: 62px; }
      .coming-soon__item:hover .coming-soon__item__image {
        -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }

.hero {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 3.125vmin;
  padding: 50vmin 0 15vmin;
  min-height: 106.25vmin;
  color: #fff;
  background: #000; }
  .hero__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0 12.5vmin 37.5vmin rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 12.5vmin 37.5vmin rgba(0, 0, 0, 0.5);
    background: 55% 50% no-repeat;
    background-size: cover; }
    @media (min-width: 1024px) {
      .hero__image {
        -webkit-box-shadow: inset 0 2.08333vw 6.25vw rgba(0, 0, 0, 0.5);
                box-shadow: inset 0 2.08333vw 6.25vw rgba(0, 0, 0, 0.5);
        background: 50% 50% no-repeat;
        background-size: cover; } }
    @media (min-width: 1920px) {
      .hero__image {
        -webkit-box-shadow: inset 0 40px 120px rgba(0, 0, 0, 0.5);
                box-shadow: inset 0 40px 120px rgba(0, 0, 0, 0.5); } }
  .hero .breadcrumbs {
    color: #fff; }
    @media (min-width: 1024px) {
      .hero .breadcrumbs {
        color: rgba(255, 255, 255, 0.6); }
        .hero .breadcrumbs a {
          color: #fff; } }
  @media (min-width: 1024px) {
    .hero__title {
      max-width: 62.08333vw; } }
  @media (min-width: 1920px) {
    .hero__title {
      max-width: 1192px; } }
  @media (min-width: 1024px) {
    .hero__text {
      max-width: 34.89583vw; } }
  @media (min-width: 1920px) {
    .hero__text {
      max-width: 670px; } }
  @media (min-width: 1024px) {
    .hero__text--width-1192 {
      max-width: 62.08333vw; } }
  @media (min-width: 1920px) {
    .hero__text--width-1192 {
      max-width: 1192px; } }
  .hero__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 5vmin; }
    @media (min-width: 1024px) {
      .hero__info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-top: 1.25vw;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (min-width: 1920px) {
      .hero__info {
        margin-top: 24px; } }
  .hero__date {
    margin-bottom: 10px; }
    @media (min-width: 1024px) {
      .hero__date {
        margin-right: 2.5vmin;
        margin-bottom: 0; } }
    .hero__date span {
      display: inline-block;
      vertical-align: middle;
      border: 1px solid #e30613;
      border-radius: 5vmin;
      padding: 0 3.125vmin;
      min-width: 34.375vmin;
      font-weight: 500;
      font-size: 3.125vmin;
      line-height: 6.875vmin;
      letter-spacing: 0.1em;
      text-align: center;
      text-transform: uppercase;
      color: #fff;
      background: #e30613; }
      @media (min-width: 1024px) {
        .hero__date span {
          border-radius: 0.83333vw;
          padding: 0 0.52083vw;
          min-width: 5.72917vw;
          font-size: 0.625vw;
          line-height: 1.14583vw; } }
      @media (min-width: 1920px) {
        .hero__date span {
          border-radius: 16px;
          padding: 0 10px;
          min-width: 110px;
          font-size: 12px;
          line-height: 22px; } }
    @media (min-width: 1024px) {
      .hero__date {
        margin-right: 0.41667vw; } }
    @media (min-width: 1920px) {
      .hero__date {
        margin-right: 8px; } }
  .hero__tag {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2.5vmin;
    border: solid 1px #fff;
    border-radius: 5vmin;
    padding: 0 3.125vmin;
    min-width: 34.375vmin;
    font-weight: 500;
    font-size: 3.125vmin;
    line-height: 6.875vmin;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase; }
    @media (min-width: 1024px) {
      .hero__tag {
        margin-right: 0.41667vw;
        border-radius: 0.83333vw;
        padding: 0 0.52083vw;
        min-width: 5.72917vw;
        font-size: 0.625vw;
        line-height: 1.14583vw; } }
    @media (min-width: 1920px) {
      .hero__tag {
        margin-right: 8px;
        border-radius: 16px;
        padding: 0 10px;
        min-width: 110px;
        font-size: 12px;
        line-height: 22px; } }
  @media (max-width: 1023px) {
    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 55%;
      background: -webkit-gradient(linear, left bottom, left top, from(#191919), to(rgba(25, 25, 25, 0)));
      background: -o-linear-gradient(bottom, #191919 0%, rgba(25, 25, 25, 0) 100%);
      background: linear-gradient(0deg, #191919 0%, rgba(25, 25, 25, 0) 100%); } }
  @media (min-width: 1024px) {
    .hero {
      margin: 2.08333vw 0 4.16667vw;
      padding: 4.16667vw 0;
      height: 30.46875vw;
      min-height: 0; } }
  @media (min-width: 1920px) {
    .hero {
      margin: 40px 0 80px;
      padding: 80px 0;
      height: 585px; } }

@media (max-width: 1023px) {
  .hero--styles {
    padding-top: 92.1875vmin; }
    .hero--styles .hero__image {
      background: 73% 9% no-repeat;
      background-size: 252.8125vmin; } }

@media (min-width: 1024px) {
  .hero--detail {
    height: 46.875vw; } }

@media (min-width: 1920px) {
  .hero--detail {
    height: 900px; } }

@media (max-width: 1023px) {
  .hero--partners .hero__image {
    background: 40% 50% no-repeat;
    background-size: cover; } }

@media (max-width: 1023px) {
  .hero--about::before {
    height: 100%; }
  .hero--about .hero__image {
    background: 76% 50% no-repeat;
    background-size: cover; } }

.hero--margin {
  margin-bottom: 0; }

.banner {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin: 0 -3.125vmin 15vmin;
  padding: 10vmin 3.125vmin 0;
  color: #fff;
  background: #353535; }
  .banner__bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: 50% 50% no-repeat;
    background-size: cover; }
  @media (min-width: 1024px) {
    .banner__content {
      max-width: 30.88542vw; } }
  @media (min-width: 1920px) {
    .banner__content {
      max-width: 593px; } }
  @media (max-width: 1023px) {
    .banner__title {
      max-width: 75vmin; } }
  @media (min-width: 1024px) {
    .banner__text {
      max-width: 20.05208vw; } }
  @media (min-width: 1920px) {
    .banner__text {
      max-width: 385px; } }
  .banner__benefits {
    margin-top: 7.5vmin; }
    .banner__benefits__label {
      margin: 0 0 5.625vmin;
      font-weight: 700; }
      @media (max-width: 1023px) {
        .banner__benefits__label {
          font-size: 5vmin; } }
      @media (min-width: 1024px) {
        .banner__benefits__label {
          margin: 0 0 1.97917vw; } }
      @media (min-width: 1920px) {
        .banner__benefits__label {
          margin: 0 0 38px; } }
    .banner__benefits__row {
      margin-bottom: -5vmin; }
      @media (min-width: 1024px) {
        .banner__benefits__row {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin-bottom: 0;
          margin-left: -1.82292vw; } }
      @media (min-width: 1920px) {
        .banner__benefits__row {
          margin-left: -35px; } }
    .banner__benefits__col {
      margin-bottom: 5vmin; }
      @media (min-width: 1024px) {
        .banner__benefits__col {
          margin-bottom: 0;
          margin-left: 1.82292vw; } }
      @media (min-width: 1920px) {
        .banner__benefits__col {
          margin-left: 35px; } }
    .banner__benefits__item__icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-right: 5vmin;
      border: 2px solid #fff;
      border-radius: 1.5625vmin;
      width: 15vmin;
      height: 15vmin; }
      .banner__benefits__item__icon img {
        max-width: 8.4375vmin; }
        @media (min-width: 1024px) {
          .banner__benefits__item__icon img {
            max-width: 2.23958vw; } }
        @media (min-width: 1920px) {
          .banner__benefits__item__icon img {
            max-width: 43px; } }
      @media (min-width: 1024px) {
        .banner__benefits__item__icon {
          margin-right: 0;
          margin-bottom: 0.83333vw;
          border-radius: 0.41667vw;
          width: 3.75vw;
          height: 3.75vw; } }
      @media (min-width: 1920px) {
        .banner__benefits__item__icon {
          margin-bottom: 16px;
          border-radius: 8px;
          width: 72px;
          height: 72px; } }
    .banner__benefits__item__text {
      max-width: 59.375vmin;
      font-size: 4.375vmin;
      line-height: 6.25vmin; }
      @media (min-width: 1024px) {
        .banner__benefits__item__text {
          max-width: none;
          font-size: 0.72917vw;
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .banner__benefits__item__text {
          font-size: 14px;
          line-height: 20px; } }
    @media (max-width: 1023px) {
      .banner__benefits__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (min-width: 1024px) {
      .banner__benefits__item {
        max-width: 7.55208vw; } }
    @media (min-width: 1920px) {
      .banner__benefits__item {
        max-width: 145px; } }
    @media (min-width: 1024px) {
      .banner__benefits {
        margin-top: 4.11458vw; } }
    @media (min-width: 1920px) {
      .banner__benefits {
        margin-top: 79px; } }
  @media (max-width: 1023px) {
    .banner__image {
      margin: 0 -3.125vmin; }
      .banner__image img {
        width: 100%; } }
  @media (min-width: 1024px) {
    .banner {
      margin: 0 0 5.83333vw;
      border-radius: 0.83333vw;
      padding: 4.79167vw 5.36458vw;
      min-height: 39.42708vw; } }
  @media (min-width: 1920px) {
    .banner {
      margin: 0 0 112px;
      border-radius: 16px;
      padding: 92px 103px;
      min-height: 757px; } }

.media {
  margin-bottom: 15vmin; }
  .media__video {
    position: relative;
    margin: 0 -3.125vmin 5vmin; }
    .media__video video {
      display: block;
      width: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
      @media (max-width: 1023px) {
        .media__video video {
          height: 93.75vmin; } }
    .media__video__play {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 5;
      outline: none;
      border: none;
      padding: 0;
      background: none;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .media__video__play svg {
        display: block;
        width: 20.3125vmin;
        height: 20.3125vmin; }
        @media (min-width: 1024px) {
          .media__video__play svg {
            width: 3.85417vw;
            height: 4.47917vw; } }
        @media (min-width: 1920px) {
          .media__video__play svg {
            width: 74px;
            height: 86px; } }
      .is-playing .media__video__play {
        opacity: 0;
        visibility: hidden; }
      @media (min-width: 1024px) {
        .media__video__play:hover {
          -webkit-transform: translate(-50%, -50%) scale(1.2);
              -ms-transform: translate(-50%, -50%) scale(1.2);
                  transform: translate(-50%, -50%) scale(1.2); } }
    @media (min-width: 1024px) {
      .media__video {
        margin: 0 0 0.83333vw; } }
    @media (min-width: 1920px) {
      .media__video {
        margin: 0 0 16px; } }
  .media__description {
    margin-bottom: 7.5vmin;
    font-size: 4.0625vmin;
    line-height: 5vmin; }
    @media (min-width: 1024px) {
      .media__description {
        margin-bottom: 1.66667vw;
        font-size: 0.72917vw;
        line-height: 1.04167vw; } }
    @media (min-width: 1920px) {
      .media__description {
        margin-bottom: 32px;
        font-size: 14px;
        line-height: 20px; } }
  .media__text {
    margin-top: 7.5vmin; }
    @media (min-width: 1024px) {
      .media__text {
        margin-top: 1.66667vw;
        max-width: 46.35417vw; } }
    @media (min-width: 1920px) {
      .media__text {
        margin-top: 32px;
        max-width: 890px; } }
  @media (min-width: 1024px) {
    .media {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .media {
      margin-bottom: 104px; } }

.gallery {
  margin-bottom: 15vmin; }
  .gallery__image {
    position: relative;
    margin: 0 -3.125vmin; }
    .gallery__image__item {
      padding-bottom: 95.313%;
      background: 50% 50% no-repeat;
      background-size: cover; }
      @media (min-width: 1024px) {
        .gallery__image__item {
          border-radius: 0.83333vw;
          padding-bottom: 50%; } }
      @media (min-width: 1920px) {
        .gallery__image__item {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .gallery__image {
        margin: 0 0 1.04167vw; } }
    @media (min-width: 1920px) {
      .gallery__image {
        margin: 0 0 20px; } }
  .gallery__prev, .gallery__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .gallery__prev {
    left: 10vmin; }
    @media (min-width: 1024px) {
      .gallery__prev {
        left: 1.66667vw; } }
    @media (min-width: 1920px) {
      .gallery__prev {
        left: 32px; } }
  .gallery__next {
    right: 10vmin; }
    @media (min-width: 1024px) {
      .gallery__next {
        right: 1.66667vw; } }
    @media (min-width: 1920px) {
      .gallery__next {
        right: 32px; } }
  .gallery__thumbs__item {
    border-radius: 5vmin;
    padding-bottom: 67%;
    background: 50% 50% no-repeat;
    background-size: cover;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer; }
    .swiper-slide-thumb-active .gallery__thumbs__item {
      opacity: 0.5; }
    @media (min-width: 1024px) {
      .gallery__thumbs__item {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .gallery__thumbs__item {
        border-radius: 16px; } }
  @media (min-width: 1024px) {
    .gallery {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .gallery {
      margin-bottom: 104px; } }

.about-game {
  position: relative;
  z-index: 5;
  margin: 0 -3.125vmin 15vmin;
  padding: 17.5vmin 3.125vmin 11.5625vmin;
  color: #fff;
  background: #000; }
  .about-game__image {
    position: absolute;
    right: -8.4375vmin;
    top: -1.5625vmin;
    z-index: -1;
    pointer-events: none; }
    .about-game__image img {
      width: 41.5625vmin; }
      @media (min-width: 1024px) {
        .about-game__image img {
          width: 8.90625vw; } }
      @media (min-width: 1920px) {
        .about-game__image img {
          width: 171px; } }
    @media (min-width: 1024px) {
      .about-game__image {
        right: -1.25vw;
        top: -1.25vw; } }
    @media (min-width: 1920px) {
      .about-game__image {
        right: -24px;
        top: -24px; } }
  .about-game__title {
    margin-top: 0; }
    @media (max-width: 1023px) {
      .about-game__title {
        margin-bottom: 5vmin;
        font-size: 10vmin;
        line-height: 10vmin; } }
  .about-game__date {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .about-game__date {
        margin-bottom: 1.5625vw; } }
    @media (min-width: 1920px) {
      .about-game__date {
        margin-bottom: 30px; } }
  .about-game__list {
    margin: 0 -3.125vmin; }
    .about-game__list table {
      border-collapse: collapse;
      width: 100%; }
      .about-game__list table td {
        padding: 1.25vmin 3.125vmin; }
        @media (min-width: 1024px) {
          .about-game__list table td {
            padding: 0.10417vw 0.52083vw; } }
        @media (min-width: 1920px) {
          .about-game__list table td {
            padding: 2px 10px; } }
    .about-game__list__key {
      color: #808080; }
    .about-game__list__value {
      width: 100%; }
    @media (min-width: 1024px) {
      .about-game__list {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .about-game__list {
        margin: 0 -10px; } }
  .about-game__limit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 8.75vmin; }
    .about-game__limit__age {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-right: 3.75vmin;
      border: solid 2px #fff;
      border-radius: 50%;
      width: 12.8125vmin;
      height: 12.8125vmin;
      font-weight: 700; }
      @media (min-width: 1024px) {
        .about-game__limit__age {
          margin-right: 0.625vw;
          width: 2.13542vw;
          height: 2.13542vw; } }
      @media (min-width: 1920px) {
        .about-game__limit__age {
          margin-right: 12px;
          width: 41px;
          height: 41px; } }
    .about-game__limit__text {
      width: 100%;
      font-weight: 700; }
    @media (min-width: 1024px) {
      .about-game__limit {
        margin-top: 1.5625vw; } }
    @media (min-width: 1920px) {
      .about-game__limit {
        margin-top: 30px; } }
  .about-game__button {
    margin-top: 10vmin; }
    .about-game__button .button {
      width: 100%;
      font-size: 4.375vmin;
      letter-spacing: normal; }
      @media (min-width: 1024px) {
        .about-game__button .button {
          font-size: 0.72917vw; } }
      @media (min-width: 1920px) {
        .about-game__button .button {
          font-size: 14px; } }
    @media (min-width: 1024px) {
      .about-game__button {
        margin-top: 1.66667vw; } }
    @media (min-width: 1920px) {
      .about-game__button {
        margin-top: 32px; } }
  @media (min-width: 1024px) {
    .about-game {
      margin: 0;
      border-radius: 0.83333vw;
      padding: 2.91667vw 2.70833vw; } }
  @media (min-width: 1920px) {
    .about-game {
      border-radius: 16px;
      padding: 56px 52px; } }

.share {
  margin-top: 10vmin; }
  .share__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .share__list li + li {
      margin-left: 2.5vmin; }
      @media (min-width: 1024px) {
        .share__list li + li {
          margin-left: 0.41667vw; } }
      @media (min-width: 1920px) {
        .share__list li + li {
          margin-left: 8px; } }
    .share__list li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: solid 1px #ccc;
      border-radius: 50%;
      width: 12.5vmin;
      height: 12.5vmin;
      fill: #f8f8f8; }
      .share__list li a svg {
        display: block;
        width: 5vmin;
        height: 5vmin;
        fill: inherit; }
        @media (min-width: 1024px) {
          .share__list li a svg {
            width: 0.83333vw;
            height: 0.83333vw; } }
        @media (min-width: 1920px) {
          .share__list li a svg {
            width: 16px;
            height: 16px; } }
      @media (min-width: 1024px) {
        .share__list li a {
          width: 2.08333vw;
          height: 2.08333vw; }
          .share__list li a:hover {
            border-color: #e30613;
            color: #fff;
            fill: #e30613;
            background: #e30613; } }
      @media (min-width: 1920px) {
        .share__list li a {
          width: 40px;
          height: 40px; } }
    @media (min-width: 1024px) {
      .share__list {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
  @media (min-width: 1024px) {
    .share {
      margin-top: 1.04167vw;
      border-radius: 0.83333vw;
      padding: 2.91667vw;
      text-align: center;
      background: #f8f8f8; } }
  @media (min-width: 1920px) {
    .share {
      margin-top: 20px;
      border-radius: 16px;
      padding: 56px; } }

.cases {
  position: relative;
  margin-bottom: 15vmin;
  color: #fff; }
  .cases__title {
    position: absolute;
    left: 6.25vmin;
    right: 9.375vmin;
    top: 6.25vmin;
    z-index: 10; }
    @media (min-width: 1024px) {
      .cases__title {
        left: 5.41667vw;
        right: 0;
        top: 4.58333vw;
        max-width: 17.08333vw; } }
    @media (min-width: 1920px) {
      .cases__title {
        left: 104px;
        top: 88px;
        max-width: 328px; } }
  .cases__slider {
    position: relative; }
    .cases__slider .swiper-slide {
      height: auto; }
  .cases__prev, .cases__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .cases__prev.swiper-button-disabled, .cases__next.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  .cases__prev {
    left: 10vmin; }
    @media (min-width: 1024px) {
      .cases__prev {
        left: 2.5vw; } }
    @media (min-width: 1920px) {
      .cases__prev {
        left: 48px; } }
  .cases__next {
    right: 10vmin; }
    @media (min-width: 1024px) {
      .cases__next {
        right: 2.5vw; } }
    @media (min-width: 1920px) {
      .cases__next {
        right: 48px; } }
  .cases__item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    border-radius: 2.5vmin;
    padding: 35.9375vmin 6.25vmin 10.9375vmin;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .cases__item__image {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
    @media (min-width: 1024px) {
      .cases__item__content {
        max-width: 26.04167vw; } }
    @media (min-width: 1920px) {
      .cases__item__content {
        max-width: 500px; } }
    @media (min-width: 1024px) {
      .cases__item__title {
        margin-bottom: 1.71875vw; } }
    @media (min-width: 1920px) {
      .cases__item__title {
        margin-bottom: 33px; } }
    @media (min-width: 1024px) {
      .cases__item__list ul li + li {
        margin-top: 0; } }
    @media (min-width: 1024px) {
      .cases__item__list ul {
        font-size: 0.83333vw; } }
    @media (min-width: 1920px) {
      .cases__item__list ul {
        font-size: 16px; } }
    @media (min-width: 1024px) {
      .cases__item {
        border-radius: 0.83333vw;
        padding: 4.58333vw 5.41667vw;
        height: 37.5vw; } }
    @media (min-width: 1920px) {
      .cases__item {
        border-radius: 16px;
        padding: 88px 104px;
        height: 720px; } }
  @media (min-width: 1024px) {
    .cases {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .cases {
      margin-bottom: 104px; } }

.tabs {
  margin-bottom: 15vmin; }
  .tabs__list {
    margin-bottom: 7.5vmin;
    font-weight: 700;
    font-size: 4.375vmin;
    line-height: 6.25vmin; }
    .tabs__list ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .tabs__list ul li {
        -ms-flex-negative: 0;
            flex-shrink: 0; }
        @media (min-width: 1024px) {
          .tabs__list ul li + li {
            margin-left: 1.25vw; } }
        @media (min-width: 1920px) {
          .tabs__list ul li + li {
            margin-left: 24px; } }
        .tabs__list ul li a {
          color: #7c7c7c; }
          .tabs__list ul li a.is-active {
            color: #e30613; }
          @media (min-width: 1024px) {
            .tabs__list ul li a:hover {
              color: #e30613; } }
        @media (max-width: 1023px) {
          .tabs__list ul li {
            padding: 4.6875vmin 2.5vmin;
            background: #f8f8f8; }
            .tabs__list ul li:first-child {
              border-radius: 2.5vmin 0 0 2.5vmin;
              padding-left: 5vmin; }
            .tabs__list ul li:last-child {
              border-radius: 0 2.5vmin 2.5vmin 0;
              padding-right: 5vmin; } }
      @media (max-width: 1023px) {
        .tabs__list ul {
          overflow: auto;
          margin: 0 -3.125vmin;
          padding: 0 3.125vmin; } }
    @media (min-width: 1024px) {
      .tabs__list {
        margin-bottom: 2.08333vw;
        border-radius: 0.41667vw;
        padding: 1.30208vw 1.66667vw;
        font-size: 1.04167vw;
        line-height: 1.66667vw;
        background: #f8f8f8; } }
    @media (min-width: 1920px) {
      .tabs__list {
        margin-bottom: 40px;
        border-radius: 8px;
        padding: 25px 32px;
        font-size: 20px;
        line-height: 32px; } }
  .tabs__item {
    display: none; }
    .tabs__item.is-active {
      display: block;
      -webkit-animation: tabShow 0.4s;
              animation: tabShow 0.4s; }
  @media (min-width: 1024px) {
    .tabs {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .tabs {
      margin-bottom: 104px; } }

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

@keyframes tabShow {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.table {
  margin-bottom: 15vmin; }
  .table table {
    border-collapse: collapse;
    width: 100%;
    text-align: left; }
    .table table th,
    .table table td {
      border-bottom: solid 1px #ccc;
      padding: 7.5vmin 6.25vmin; }
      .table table th:first-child,
      .table table td:first-child {
        padding-left: 0; }
      .table table th:last-child,
      .table table td:last-child {
        padding-right: 0; }
      @media (min-width: 1024px) {
        .table table th,
        .table table td {
          padding: 1.25vw 1.5625vw; } }
      @media (min-width: 1920px) {
        .table table th,
        .table table td {
          padding: 24px 30px; } }
    .table table th {
      vertical-align: bottom;
      padding-top: 0;
      padding-bottom: 5vmin;
      font-weight: 700; }
      @media (min-width: 1024px) {
        .table table th {
          padding-bottom: 1.09375vw; } }
      @media (min-width: 1920px) {
        .table table th {
          padding-bottom: 21px; } }
    .table table td {
      vertical-align: top; }
    @media (max-width: 1023px) {
      .table table {
        min-width: 293.75vmin; } }
  .table a {
    border-bottom: solid 1px currentColor; }
    @media (min-width: 1024px) {
      .table a:hover {
        color: #e30613; } }
  @media (max-width: 1023px) {
    .table {
      overflow: auto; }
      .table::-webkit-scrollbar {
        width: 3px;
        height: 3px;
        background-color: transparent; }
      .table::-webkit-scrollbar-thumb {
        background-color: #e30613; } }
  @media (min-width: 1024px) {
    .table {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .table {
      margin-bottom: 104px; } }

.accordion {
  margin-bottom: 15vmin; }
  .accordion__item {
    border: solid 1px #f8f8f8;
    border-radius: 2.5vmin;
    padding: 12.5vmin 7.5vmin;
    background: #f8f8f8;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer; }
    .accordion__item__head {
      position: relative; }
      .accordion__item__head__text {
        margin: 0;
        padding-right: 17.1875vmin;
        -webkit-transition: 0.4s;
        -o-transition: 0.4s;
        transition: 0.4s; }
        @media (max-width: 1023px) {
          .accordion__item__head__text {
            font-size: 7.5vmin;
            line-height: 9.375vmin; } }
        @media (min-width: 1024px) {
          .accordion__item__head__text {
            padding-right: 4.0625vw; } }
        @media (min-width: 1920px) {
          .accordion__item__head__text {
            padding-right: 78px; } }
      .accordion__item__head__arrow {
        position: absolute;
        right: 0;
        top: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        border-radius: 50%;
        width: 12.5vmin;
        height: 12.5vmin;
        background: #e30613;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%); }
        .accordion__item__head__arrow svg {
          display: block;
          width: 6.25vmin;
          height: 6.25vmin;
          fill: none;
          stroke-width: 2px;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg);
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          @media (min-width: 1024px) {
            .accordion__item__head__arrow svg {
              width: 1.25vw;
              height: 1.25vw; } }
          @media (min-width: 1920px) {
            .accordion__item__head__arrow svg {
              width: 24px;
              height: 24px; } }
        @media (min-width: 1024px) {
          .accordion__item__head__arrow {
            width: 2.5vw;
            height: 2.5vw; } }
        @media (min-width: 1920px) {
          .accordion__item__head__arrow {
            width: 48px;
            height: 48px; } }
    .accordion__item__content {
      display: none;
      padding-top: 10vmin; }
      @media (min-width: 1024px) {
        .accordion__item__content {
          padding-top: 1.66667vw; } }
      @media (min-width: 1920px) {
        .accordion__item__content {
          padding-top: 32px; } }
    .accordion__item:hover {
      border-color: #e30613; }
      .accordion__item:hover .accordion__item__head__text {
        color: #e30613; }
    .accordion__item.is-active .accordion__item__head__arrow svg {
      -webkit-transform: rotate(0deg);
          -ms-transform: rotate(0deg);
              transform: rotate(0deg); }
    .accordion__item + .accordion__item {
      margin-top: 5vmin; }
      @media (min-width: 1024px) {
        .accordion__item + .accordion__item {
          margin-top: 1.25vw; } }
      @media (min-width: 1920px) {
        .accordion__item + .accordion__item {
          margin-top: 24px; } }
    @media (min-width: 1024px) {
      .accordion__item {
        border-radius: 0.83333vw;
        padding: 2.03125vw; } }
    @media (min-width: 1920px) {
      .accordion__item {
        border-radius: 16px;
        padding: 39px; } }
  @media (min-width: 1024px) {
    .accordion {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .accordion {
      margin-bottom: 104px; } }

.file {
  margin-bottom: 7.5vmin; }
  .file__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    vertical-align: top; }
  .file__icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 8.75vmin;
    border-radius: 50%;
    width: 22.5vmin;
    height: 22.5vmin;
    background: #e30613;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .file__icon svg {
      display: block;
      width: 8.125vmin;
      height: 10.625vmin;
      fill: none; }
      @media (min-width: 1024px) {
        .file__icon svg {
          width: 1.35417vw;
          height: 1.77083vw; } }
      @media (min-width: 1920px) {
        .file__icon svg {
          width: 26px;
          height: 34px; } }
    @media (min-width: 1024px) {
      .file__icon {
        margin-right: 1.45833vw;
        width: 3.75vw;
        height: 3.75vw; } }
    @media (min-width: 1920px) {
      .file__icon {
        margin-right: 28px;
        width: 72px;
        height: 72px; } }
  .file__arrow {
    position: absolute;
    left: 16.25vmin;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    width: 10vmin;
    height: 10vmin;
    background: #e30613;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .file__arrow svg {
      display: block;
      width: 2.5vmin;
      height: 3.4375vmin; }
      @media (min-width: 1024px) {
        .file__arrow svg {
          width: 0.41667vw;
          height: 0.57292vw; } }
      @media (min-width: 1920px) {
        .file__arrow svg {
          width: 8px;
          height: 11px; } }
    @media (min-width: 1024px) {
      .file__arrow {
        left: 2.70833vw;
        width: 1.66667vw;
        height: 1.66667vw; } }
    @media (min-width: 1920px) {
      .file__arrow {
        left: 52px;
        width: 32px;
        height: 32px; } }
  .file__content {
    padding-top: 2.5vmin; }
    @media (min-width: 1024px) {
      .file__content {
        padding-top: 0.41667vw; } }
    @media (min-width: 1920px) {
      .file__content {
        padding-top: 8px; } }
  .file__title {
    margin: 0 0 1.25vmin;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media (min-width: 1024px) {
      .file__title {
        margin: 0 0 0.20833vw; } }
    @media (min-width: 1920px) {
      .file__title {
        margin: 0 0 4px; } }
  .file__info {
    font-weight: 500;
    font-size: 3.75vmin;
    line-height: 4.375vmin;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
    @media (min-width: 1024px) {
      .file__info {
        font-size: 0.625vw;
        line-height: 0.72917vw; } }
    @media (min-width: 1920px) {
      .file__info {
        font-size: 12px;
        line-height: 14px; } }
  .file:last-child {
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .file {
      margin-bottom: 1.25vw; }
      .file:hover .file__title {
        color: #e30613; }
      .file:hover .file__icon {
        opacity: 0.8; } }
  @media (min-width: 1920px) {
    .file {
      margin-bottom: 24px; } }

.contacts {
  margin-bottom: 15vmin; }
  .contacts__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin -6.25vmin; }
    @media (min-width: 1024px) {
      .contacts__row {
        margin: 0 -0.52083vw -1.04167vw; } }
    @media (min-width: 1920px) {
      .contacts__row {
        margin: 0 -10px -20px; } }
  .contacts__col {
    margin-bottom: 5vmin;
    padding: 0 3.125vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .contacts__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 33.33334%; } }
    @media (min-width: 1920px) {
      .contacts__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .contacts__block {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 2.5vmin;
    padding: 21.875vmin 10vmin 15vmin;
    height: 100%;
    color: #fff;
    background: #000; }
    .contacts__block__image {
      position: absolute;
      right: 0;
      top: 0;
      z-index: -1;
      pointer-events: none; }
    .contacts__block__title {
      margin: 0 0 10vmin; }
      @media (min-width: 1024px) {
        .contacts__block__title {
          margin: 0 0 1.66667vw; } }
      @media (min-width: 1920px) {
        .contacts__block__title {
          margin: 0 0 32px; } }
    .contacts__block__text {
      margin-bottom: 7.5vmin;
      max-width: 125vmin; }
      @media (min-width: 1024px) {
        .contacts__block__text {
          margin-bottom: 1.25vw;
          max-width: 20.83333vw; } }
      @media (min-width: 1920px) {
        .contacts__block__text {
          margin-bottom: 24px;
          max-width: 400px; } }
    .contacts__block__footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-top: auto; }
      @media (max-width: 1023px) {
        .contacts__block__footer {
          -webkit-box-orient: vertical;
          -webkit-box-direction: reverse;
              -ms-flex-direction: column-reverse;
                  flex-direction: column-reverse; } }
      @media (min-width: 1024px) {
        .contacts__block__footer {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
    .contacts__block__bottom {
      margin-top: auto; }
    .contacts__block__button {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
      .contacts__block__button .button {
        width: 100%;
        min-width: 56.25vmin;
        font-weight: 700;
        font-size: 4.375vmin;
        letter-spacing: 0; }
        @media (min-width: 1024px) {
          .contacts__block__button .button {
            width: auto;
            min-width: 9.375vw;
            font-size: 0.72917vw; } }
        @media (min-width: 1920px) {
          .contacts__block__button .button {
            min-width: 180px;
            font-size: 14px; } }
      @media (min-width: 1024px) {
        .contacts__block__button {
          margin-right: 2.08333vw; } }
      @media (min-width: 1920px) {
        .contacts__block__button {
          margin-right: 40px; } }
    .contacts__block__list {
      margin-bottom: 7.5vmin;
      font-weight: 300;
      font-size: 5.625vmin;
      line-height: 7.5vmin; }
      .contacts__block__list li {
        position: relative;
        padding-left: 12.5vmin; }
        .contacts__block__list li + li {
          margin-top: 4.0625vmin; }
          @media (min-width: 1024px) {
            .contacts__block__list li + li {
              margin-top: 0.41667vw; } }
          @media (min-width: 1920px) {
            .contacts__block__list li + li {
              margin-top: 8px; } }
        @media (min-width: 1024px) {
          .contacts__block__list li a:hover {
            color: #e30613; } }
        @media (min-width: 1024px) {
          .contacts__block__list li {
            padding-left: 2.60417vw; } }
        @media (min-width: 1920px) {
          .contacts__block__list li {
            padding-left: 50px; } }
      .contacts__block__list__icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 7.5vmin;
        height: 7.5vmin; }
        @media (min-width: 1024px) {
          .contacts__block__list__icon {
            width: 1.5625vw;
            height: 1.5625vw; } }
        @media (min-width: 1920px) {
          .contacts__block__list__icon {
            width: 30px;
            height: 30px; } }
      @media (min-width: 1024px) {
        .contacts__block__list {
          margin-bottom: 0;
          font-size: 1.04167vw;
          line-height: 1.66667vw; } }
      @media (min-width: 1920px) {
        .contacts__block__list {
          font-size: 20px;
          line-height: 32px; } }
    .contacts__block--cooperation {
      background: #e30613; }
      .contacts__block--cooperation .contacts__block__image img {
        width: 53.125vmin; }
        @media (min-width: 1024px) {
          .contacts__block--cooperation .contacts__block__image img {
            width: 14.32292vw; } }
        @media (min-width: 1920px) {
          .contacts__block--cooperation .contacts__block__image img {
            width: 275px; } }
      @media (max-width: 1023px) {
        .contacts__block--cooperation .contacts__block__image {
          top: -4.6875vmin; } }
    .contacts__block--consultation .contacts__block__image img {
      width: 34.0625vmin; }
      @media (min-width: 1024px) {
        .contacts__block--consultation .contacts__block__image img {
          width: 9.21875vw; } }
      @media (min-width: 1920px) {
        .contacts__block--consultation .contacts__block__image img {
          width: 177px; } }
    .contacts__block--presentation .contacts__block__image img {
      width: 31.875vmin; }
      @media (min-width: 1024px) {
        .contacts__block--presentation .contacts__block__image img {
          width: 11.51042vw; } }
      @media (min-width: 1920px) {
        .contacts__block--presentation .contacts__block__image img {
          width: 221px; } }
    @media (min-width: 1024px) {
      .contacts__block {
        border-radius: 0.83333vw;
        padding: 4.58333vw 1.875vw 4.58333vw 3.75vw; } }
    @media (min-width: 1920px) {
      .contacts__block {
        border-radius: 16px;
        padding: 88px 36px 88px 72px; } }
  .contacts:last-child {
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .contacts {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .contacts {
      margin-bottom: 104px; } }

@media (min-width: 1024px) {
  .contacts--2 .contacts__col {
    width: 50%; } }

@media (min-width: 1024px) {
  .contacts--2 .contacts__block__list li + li {
    margin-top: 0;
    margin-left: 2.08333vw; } }

@media (min-width: 1920px) {
  .contacts--2 .contacts__block__list li + li {
    margin-left: 40px; } }

@media (min-width: 1024px) {
  .contacts--2 .contacts__block__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.goods {
  margin-bottom: -11.25vmin;
  padding: 10vmin 0 5vmin;
  background: #f8f8f8; }
  .goods__title {
    max-width: 35.3125vmin; }
    @media (min-width: 1024px) {
      .goods__title {
        margin-bottom: 4.16667vw;
        max-width: none; } }
    @media (min-width: 1920px) {
      .goods__title {
        margin-bottom: 80px; } }
  @media (min-width: 1024px) {
    .goods .carousel__nav {
      top: -7.29167vw; } }
  @media (min-width: 1920px) {
    .goods .carousel__nav {
      top: -140px; } }
  @media (min-width: 1024px) {
    .goods .swiper-container {
      overflow: hidden;
      margin: 0 -0.9375vw -0.9375vw;
      padding: 0 0.9375vw 0.9375vw; } }
  @media (min-width: 1920px) {
    .goods .swiper-container {
      margin: 0 -18px -18px;
      padding: 0 18px 18px; } }
  .goods .swiper-slide {
    height: auto; }
  .goods__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .goods__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .goods__row {
        margin: 0 -10px; } }
  .goods__col {
    margin-bottom: 5vmin;
    padding: 0 3.125vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .goods__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .goods__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .goods__item {
    display: block;
    border-radius: 2.5vmin;
    padding: 2.5vmin 2.5vmin 7.5vmin;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff; }
    .goods__item__image {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-bottom: 7.5vmin;
      border-radius: 2.5vmin;
      padding-bottom: 73.67%;
      width: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
      @media (min-width: 1024px) {
        .goods__item__image {
          margin-right: 2.5vw;
          margin-bottom: 0;
          border-radius: 0.83333vw;
          padding-bottom: 0;
          width: 20.15625vw;
          min-height: 16.875vw; } }
      @media (min-width: 1920px) {
        .goods__item__image {
          margin-right: 48px;
          border-radius: 16px;
          width: 387px;
          min-height: 324px; } }
    .goods__item__content {
      padding: 0 5vmin;
      width: 100%; }
      @media (min-width: 1024px) {
        .goods__item__content {
          padding: 5vmin 0 0; } }
      @media (min-width: 1920px) {
        .goods__item__content {
          padding: 16px 0 0; } }
    .goods__item__title {
      margin-bottom: 2.5vmin; }
      @media (min-width: 1024px) {
        .goods__item__title {
          margin-bottom: 0.83333vw; } }
      @media (min-width: 1920px) {
        .goods__item__title {
          margin-bottom: 16px; } }
    .goods__item__info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 6.875vmin; }
      @media (min-width: 1024px) {
        .goods__item__info {
          margin-bottom: 1.14583vw; } }
      @media (min-width: 1920px) {
        .goods__item__info {
          margin-bottom: 22px; } }
    .goods__item__date {
      margin-right: 2.5vmin; }
      .goods__item__date span {
        display: inline-block;
        vertical-align: middle;
        border: 1px solid #e30613;
        border-radius: 5vmin;
        padding: 0 3.125vmin;
        font-weight: 500;
        font-size: 3.125vmin;
        line-height: 6.875vmin;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: #fff;
        background: #e30613; }
        @media (min-width: 1024px) {
          .goods__item__date span {
            border-radius: 0.83333vw;
            padding: 0 0.52083vw;
            font-size: 0.625vw;
            line-height: 1.14583vw; } }
        @media (min-width: 1920px) {
          .goods__item__date span {
            border-radius: 16px;
            padding: 0 10px;
            font-size: 12px;
            line-height: 22px; } }
      @media (min-width: 1024px) {
        .goods__item__date {
          margin-right: 0.41667vw; } }
      @media (min-width: 1920px) {
        .goods__item__date {
          margin-right: 8px; } }
    .goods__item__tag {
      display: inline-block;
      vertical-align: middle;
      margin-right: 2.5vmin;
      border: solid 1px #000;
      border-radius: 5vmin;
      padding: 0 2.8125vmin;
      font-weight: 500;
      font-size: 3.125vmin;
      line-height: 6.875vmin;
      letter-spacing: 0.1em;
      text-transform: uppercase; }
      @media (min-width: 1024px) {
        .goods__item__tag {
          margin-right: 0.41667vw;
          border-radius: 0.83333vw;
          padding: 0 0.46875vw;
          font-size: 0.625vw;
          line-height: 1.14583vw; } }
      @media (min-width: 1920px) {
        .goods__item__tag {
          margin-right: 8px;
          border-radius: 16px;
          padding: 0 9px;
          font-size: 12px;
          line-height: 22px; } }
    .goods__item__list {
      margin: 5.625vmin -2.5vmin 3.125vmin;
      min-width: 0; }
      .goods__item__list table {
        border-collapse: collapse;
        width: 100%; }
        .goods__item__list table td {
          padding: 1.875vmin 2.5vmin; }
          @media (min-width: 1024px) {
            .goods__item__list table td {
              padding: 0.10417vw 0.9375vw; } }
          @media (min-width: 1920px) {
            .goods__item__list table td {
              padding: 2px 18px; } }
      .goods__item__list__key {
        color: #808080; }
      .goods__item__list__value {
        width: 100%; }
      @media (max-width: 1023px) {
        .goods__item__list {
          font-size: 4.0625vmin;
          line-height: 5vmin; } }
      @media (min-width: 1024px) {
        .goods__item__list {
          margin: 1.14583vw -0.9375vw; } }
      @media (min-width: 1920px) {
        .goods__item__list {
          margin: 22px -18px; } }
    .goods__item__limit {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 6.875vmin; }
      .goods__item__limit__age {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-right: 3.75vmin;
        border: solid 2px #000;
        border-radius: 50%;
        width: 11.875vmin;
        height: 11.875vmin;
        font-weight: 700;
        text-align: center; }
        @media (min-width: 1024px) {
          .goods__item__limit__age {
            margin-right: 0.625vw;
            width: 2.13542vw;
            height: 2.13542vw; } }
        @media (min-width: 1920px) {
          .goods__item__limit__age {
            margin-right: 12px;
            width: 41px;
            height: 41px; } }
      .goods__item__limit__text {
        width: 100%;
        font-weight: 700; }
      @media (min-width: 1024px) {
        .goods__item__limit {
          margin-top: 1.14583vw; } }
      @media (min-width: 1920px) {
        .goods__item__limit {
          margin-top: 22px; } }
    @media (min-width: 1024px) {
      .goods__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 0.83333vw;
        padding: 1.66667vw; }
        .goods__item:hover {
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25); } }
    @media (min-width: 1920px) {
      .goods__item {
        border-radius: 16px;
        padding: 32px; }
        .goods__item:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  .goods .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6.25vmin;
    padding: 0 3.125vmin;
    width: 100%;
    text-align: center; }
    @media (min-width: 1024px) {
      .goods .pagination {
        margin-top: 3.125vw;
        padding: 0; } }
    @media (min-width: 1920px) {
      .goods .pagination {
        margin-top: 60px; } }
  @media (min-width: 1024px) {
    .goods {
      margin-bottom: -8.33333vw;
      padding: 4.16667vw 0 5.20833vw; } }
  @media (min-width: 1920px) {
    .goods {
      margin-bottom: -160px;
      padding: 80px 0 100px; } }

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .pagination__more {
    margin-bottom: 10vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .pagination__more {
        margin-bottom: 2.5vw; } }
    @media (min-width: 1920px) {
      .pagination__more {
        margin-bottom: 48px; } }
  .pagination__prev, .pagination__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: solid 1px #ccc;
    border-radius: 50%;
    width: 17.5vmin;
    height: 17.5vmin;
    font-weight: 700;
    text-align: center;
    background: #fff; }
    .pagination__prev svg, .pagination__next svg {
      width: 7.8125vmin;
      height: 7.5vmin; }
      @media (min-width: 1024px) {
        .pagination__prev svg, .pagination__next svg {
          width: 1.30208vw;
          height: 1.25vw; } }
      @media (min-width: 1920px) {
        .pagination__prev svg, .pagination__next svg {
          width: 25px;
          height: 24px; } }
    .pagination__prev.is-active, .pagination__next.is-active {
      border-color: #e30613;
      color: #fff;
      background: #e30613; }
    @media (min-width: 1024px) {
      .pagination__prev, .pagination__next {
        width: 2.91667vw;
        height: 2.91667vw; }
        .pagination__prev:hover, .pagination__next:hover {
          border-color: #e30613;
          color: #fff;
          background: #e30613; } }
    @media (min-width: 1920px) {
      .pagination__prev, .pagination__next {
        width: 56px;
        height: 56px; } }
  .pagination__prev {
    margin-right: 5vmin; }
    .pagination__prev svg {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
    @media (min-width: 1024px) {
      .pagination__prev {
        margin-right: 0.83333vw; } }
    @media (min-width: 1920px) {
      .pagination__prev {
        margin-right: 16px; } }
  .pagination__next {
    margin-left: 5vmin; }
    @media (min-width: 1024px) {
      .pagination__next {
        margin-left: 0.83333vw; } }
    @media (min-width: 1920px) {
      .pagination__next {
        margin-left: 16px; } }
  .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .pagination ul li + li {
      margin-left: 1.25vmin; }
      @media (min-width: 1024px) {
        .pagination ul li + li {
          margin-left: 0.20833vw; } }
      @media (min-width: 1920px) {
        .pagination ul li + li {
          margin-left: 4px; } }
    .pagination ul li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border: solid 1px #ccc;
      border-radius: 50%;
      width: 17.5vmin;
      height: 17.5vmin;
      font-weight: 700;
      text-align: center;
      background: #fff; }
      .pagination ul li a.is-active {
        border-color: #e30613;
        color: #fff;
        background: #e30613; }
      @media (max-width: 1023px) {
        .pagination ul li a {
          font-size: 5vmin; } }
      @media (min-width: 1024px) {
        .pagination ul li a {
          width: 2.91667vw;
          height: 2.91667vw; }
          .pagination ul li a:hover {
            border-color: #e30613;
            color: #fff;
            background: #e30613; } }
      @media (min-width: 1920px) {
        .pagination ul li a {
          width: 56px;
          height: 56px; } }

.form__submit {
  margin-top: 12.5vmin;
  text-align: center; }
  @media (min-width: 1024px) {
    .form__submit {
      margin-top: 2.08333vw; } }
  @media (min-width: 1920px) {
    .form__submit {
      margin-top: 40px; } }

.subscribe {
  position: relative;
  z-index: 5;
  margin: 0 -3.125vmin 15vmin;
  padding: 17.5vmin 3.125vmin 11.5625vmin;
  color: #fff;
  background: #000; }
  .subscribe__image {
    position: absolute;
    right: 4.0625vmin;
    top: -8.75vmin;
    z-index: -1;
    pointer-events: none; }
    .subscribe__image img {
      width: 36.5625vmin; }
      @media (min-width: 1024px) {
        .subscribe__image img {
          width: 6.61458vw; } }
      @media (min-width: 1920px) {
        .subscribe__image img {
          width: 127px; } }
    @media (min-width: 1024px) {
      .subscribe__image {
        right: 0.67708vw;
        top: -1.45833vw; } }
    @media (min-width: 1920px) {
      .subscribe__image {
        right: 13px;
        top: -28px; } }
  .subscribe__title {
    margin-top: 0;
    max-width: 75vmin; }
    @media (min-width: 1024px) {
      .subscribe__title {
        margin: 0 0 1.71875vw;
        max-width: none; } }
    @media (min-width: 1920px) {
      .subscribe__title {
        margin: 0 0 33px; } }
  .subscribe__input {
    margin-bottom: 7.5vmin; }
    .subscribe__input .input {
      margin-bottom: 0; }
      .subscribe__input .input__field input {
        border-color: #303030;
        color: #fff;
        background: #303030; }
        .subscribe__input .input__field input:focus {
          border-color: #fff; }
        .subscribe__input .input__field input::-webkit-input-placeholder {
          color: #fff; }
        .subscribe__input .input__field input::-moz-placeholder {
          color: #fff; }
        .subscribe__input .input__field input:-ms-input-placeholder {
          color: #fff; }
        .subscribe__input .input__field input::-ms-input-placeholder {
          color: #fff; }
        .subscribe__input .input__field input::placeholder {
          color: #fff; }
        .subscribe__input .input__field input.error {
          border-color: #e30613; }
    @media (min-width: 1024px) {
      .subscribe__input {
        margin-bottom: 1.66667vw; } }
    @media (min-width: 1920px) {
      .subscribe__input {
        margin-bottom: 32px; } }
  .subscribe__checkbox {
    margin-bottom: 7.5vmin; }
    .subscribe__checkbox .checkbox {
      margin-bottom: 0;
      font-size: 4.375vmin;
      line-height: 6.25vmin; }
      .subscribe__checkbox .checkbox label i {
        top: 0.9375vmin;
        border-color: #fff;
        border-radius: 1.875vmin;
        background: #000; }
        @media (min-width: 1024px) {
          .subscribe__checkbox .checkbox label i {
            top: 0.15625vw;
            border-radius: 0.3125vw; } }
        @media (min-width: 1920px) {
          .subscribe__checkbox .checkbox label i {
            top: 3px;
            border-radius: 6px; } }
      .subscribe__checkbox .checkbox label a {
        font-weight: 700; }
        .subscribe__checkbox .checkbox label a:hover {
          color: #e30613; }
      @media (min-width: 1024px) {
        .subscribe__checkbox .checkbox {
          font-size: 0.72917vw;
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .subscribe__checkbox .checkbox {
          font-size: 14px;
          line-height: 20px; } }
    @media (min-width: 1024px) {
      .subscribe__checkbox {
        margin-bottom: 2.5vw; } }
    @media (min-width: 1920px) {
      .subscribe__checkbox {
        margin-bottom: 48px; } }
  .subscribe__button {
    margin-bottom: 7.5vmin; }
    .subscribe__button .button {
      width: 100%;
      font-weight: 700;
      font-size: 4.375vmin;
      letter-spacing: normal; }
      @media (min-width: 1024px) {
        .subscribe__button .button {
          font-size: 0.72917vw; } }
      @media (min-width: 1920px) {
        .subscribe__button .button {
          font-size: 14px; } }
    @media (min-width: 1024px) {
      .subscribe__button {
        margin-bottom: 1.66667vw; } }
    @media (min-width: 1920px) {
      .subscribe__button {
        margin-bottom: 32px; } }
  .subscribe__text {
    font-size: 4.375vmin;
    line-height: 6.25vmin; }
    @media (min-width: 1024px) {
      .subscribe__text {
        font-size: 0.72917vw;
        line-height: 1.04167vw; } }
    @media (min-width: 1920px) {
      .subscribe__text {
        font-size: 14px;
        line-height: 20px; } }
  @media (min-width: 1024px) {
    .subscribe {
      margin: 0;
      border-radius: 0.83333vw;
      padding: 2.91667vw; } }
  @media (min-width: 1920px) {
    .subscribe {
      border-radius: 16px;
      padding: 56px; } }

.poster {
  position: relative;
  margin-bottom: 15vmin; }
  .poster .swiper-slide {
    height: auto; }
  .poster__item {
    position: relative;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    border-radius: 2.5vmin;
    padding: 10vmin 6.25vmin;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #fff; }
    .poster__item__image {
      position: absolute;
      left: 0;
      top: 0;
      z-index: -1;
      width: 200%;
      height: 100%;
      background: 50% 100% no-repeat;
      background-size: cover; }
      @media (max-width: 1023px) {
        .poster__item__image::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.7); } }
      @media (min-width: 1024px) {
        .poster__item__image {
          width: 100%; } }
    @media (min-width: 1024px) {
      .poster__item__content {
        margin-left: auto;
        width: 30.52083vw; } }
    @media (min-width: 1920px) {
      .poster__item__content {
        width: 586px; } }
    @media (min-width: 1024px) {
      .poster__item__subtitle {
        margin-bottom: 0.83333vw; } }
    @media (min-width: 1920px) {
      .poster__item__subtitle {
        margin-bottom: 16px; } }
    .poster__item__title {
      margin-top: 0; }
      @media (min-width: 1024px) {
        .poster__item__title {
          margin-bottom: 3.125vw; } }
      @media (min-width: 1920px) {
        .poster__item__title {
          margin-bottom: 60px; } }
    .poster__item__point {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .poster__item__point__icon {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 5vmin; }
        .poster__item__point__icon img {
          width: 11.875vmin; }
          @media (min-width: 1024px) {
            .poster__item__point__icon img {
              width: 2.5vw; } }
          @media (min-width: 1920px) {
            .poster__item__point__icon img {
              width: 48px; } }
        @media (min-width: 1024px) {
          .poster__item__point__icon {
            margin-right: 1.25vw; } }
        @media (min-width: 1920px) {
          .poster__item__point__icon {
            margin-right: 24px; } }
      .poster__item__point + .poster__item__point {
        margin-top: 7.5vmin; }
        @media (min-width: 1024px) {
          .poster__item__point + .poster__item__point {
            margin-top: 1.66667vw; } }
        @media (min-width: 1920px) {
          .poster__item__point + .poster__item__point {
            margin-top: 32px; } }
    .poster__item__text {
      margin-top: 7.5vmin; }
      @media (min-width: 1024px) {
        .poster__item__text {
          margin-top: 1.66667vw; } }
      @media (min-width: 1920px) {
        .poster__item__text {
          margin-top: 32px; } }
    @media (min-width: 1024px) {
      .poster__item {
        border-radius: 0.83333vw;
        padding: 2.08333vw 7.91667vw 2.08333vw 0;
        height: 39.84375vw; } }
    @media (min-width: 1920px) {
      .poster__item {
        border-radius: 16px;
        padding: 40px 152px 40px 0;
        height: 765px; } }
  .poster__prev, .poster__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .poster__prev.swiper-button-disabled, .poster__next.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  .poster__prev {
    left: 10vmin; }
    @media (min-width: 1024px) {
      .poster__prev {
        left: 2.5vw; } }
    @media (min-width: 1920px) {
      .poster__prev {
        left: 48px; } }
  .poster__next {
    right: 10vmin; }
    @media (min-width: 1024px) {
      .poster__next {
        right: 2.5vw; } }
    @media (min-width: 1920px) {
      .poster__next {
        right: 48px; } }
  @media (min-width: 1024px) {
    .poster {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .poster {
      margin-bottom: 104px; } }

.modal {
  padding: 12.5vmin 6.25vmin;
  width: 100%; }
  .modal .h2 {
    text-align: center; }
    @media (min-width: 1024px) {
      .modal .h2 {
        margin-bottom: 3.64583vw; } }
    @media (min-width: 1920px) {
      .modal .h2 {
        margin-bottom: 70px; } }
  .modal .input {
    margin-bottom: 5vmin; }
    @media (min-width: 1024px) {
      .modal .input {
        margin-bottom: 0.83333vw; } }
    @media (min-width: 1920px) {
      .modal .input {
        margin-bottom: 16px; } }
  .modal .checkbox {
    margin-top: 8.125vmin; }
    @media (min-width: 1024px) {
      .modal .checkbox {
        margin-top: 1.66667vw; } }
    @media (min-width: 1920px) {
      .modal .checkbox {
        margin-top: 32px; } }
  @media (min-width: 1024px) {
    .modal {
      border-radius: 0.83333vw;
      padding: 4.16667vw;
      max-width: 38.4375vw; } }
  @media (min-width: 1920px) {
    .modal {
      border-radius: 16px;
      padding: 80px;
      max-width: 738px; } }

.modal--alert {
  width: auto; }
  @media (min-width: 1024px) {
    .modal--alert {
      max-width: 23.95833vw; } }
  @media (min-width: 1920px) {
    .modal--alert {
      max-width: 460px; } }

@media (min-width: 1024px) {
  .page-styles__title {
    margin-bottom: 1.66667vw; } }

@media (min-width: 1920px) {
  .page-styles__title {
    margin-bottom: 32px; } }

.page-styles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 15vmin; }
  .page-styles__wrapper__content {
    max-width: 100%; }
    @media (max-width: 1023px) {
      .page-styles__wrapper__content .share {
        margin-top: 10vmin; } }
    @media (min-width: 1024px) {
      .page-styles__wrapper__content {
        width: 46.35417vw; } }
    @media (min-width: 1920px) {
      .page-styles__wrapper__content {
        width: 890px; } }
  @media (max-width: 1023px) {
    .page-styles__wrapper__side__content {
      margin-bottom: 15vmin; } }
  @media (min-width: 1024px) {
    .page-styles__wrapper__side {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 22.65625vw; } }
  @media (min-width: 1920px) {
    .page-styles__wrapper__side {
      width: 435px; } }
  @media (min-width: 1024px) {
    .page-styles__wrapper {
      -webkit-box-orient: inherit;
      -webkit-box-direction: inherit;
          -ms-flex-direction: inherit;
              flex-direction: inherit;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-styles__wrapper {
      margin-bottom: 104px; } }

@media (min-width: 1024px) {
  .page-styles__content {
    max-width: 62.08333vw; } }

@media (min-width: 1920px) {
  .page-styles__content {
    max-width: 1192px; } }

.page-styles__lists {
  margin: 0 0 15vmin; }
  .page-styles__lists__col {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-styles__lists__col {
        margin-bottom: 0;
        margin-left: 5.20833vw;
        max-width: 18.48958vw; } }
    @media (min-width: 1920px) {
      .page-styles__lists__col {
        margin-left: 100px;
        max-width: 355px; } }
  @media (min-width: 1024px) {
    .page-styles__lists {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 5.41667vw -5.20833vw; } }
  @media (min-width: 1920px) {
    .page-styles__lists {
      margin: 0 0 104px -100px; } }

@media (max-width: 1023px) {
  .page-styles__news .news__title {
    font-size: 10vmin;
    line-height: 10vmin; } }

@media (max-width: 1023px) {
  .page-styles__buttons__col + .page-styles__buttons__col {
    margin-top: 10vmin; } }

@media (min-width: 1024px) {
  .page-styles__buttons__col {
    margin-left: 10.41667vw; } }

@media (min-width: 1920px) {
  .page-styles__buttons__col {
    margin-left: 200px; } }

@media (max-width: 1023px) {
  .page-styles__buttons__item .prev {
    width: 15vmin;
    height: 15vmin; } }

.page-styles__buttons__item .next {
  margin-left: 2.5vmin; }
  @media (max-width: 1023px) {
    .page-styles__buttons__item .next {
      width: 15vmin;
      height: 15vmin; } }
  @media (min-width: 1024px) {
    .page-styles__buttons__item .next {
      margin-left: 0.41667vw; } }
  @media (min-width: 1920px) {
    .page-styles__buttons__item .next {
      margin-left: 8px; } }

.page-styles__buttons__item + .page-styles__buttons__item {
  margin-top: 7.5vmin; }
  @media (min-width: 1024px) {
    .page-styles__buttons__item + .page-styles__buttons__item {
      margin-top: 1.25vw; } }
  @media (min-width: 1920px) {
    .page-styles__buttons__item + .page-styles__buttons__item {
      margin-top: 24px; } }

@media (max-width: 1023px) {
  .page-styles__buttons__item .button + .button {
    margin-top: 5vmin; } }

.page-styles__buttons__dark {
  margin: 0 -3.125vmin;
  padding: 10vmin 3.125vmin;
  background: #000; }
  @media (min-width: 1024px) {
    .page-styles__buttons__dark {
      margin: 0;
      border-radius: 0.83333vw;
      padding: 1.66667vw; } }
  @media (min-width: 1920px) {
    .page-styles__buttons__dark {
      border-radius: 16px;
      padding: 32px; } }

@media (min-width: 1024px) {
  .page-styles__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 5.41667vw -10.41667vw; } }

@media (min-width: 1920px) {
  .page-styles__buttons {
    margin: 0 0 104px -200px; } }

@media (min-width: 1024px) {
  .page-styles__fields__col {
    margin-left: 8.85417vw;
    min-width: 22.65625vw; } }

@media (min-width: 1920px) {
  .page-styles__fields__col {
    margin-left: 170px;
    min-width: 435px; } }

@media (min-width: 1024px) {
  .page-styles__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -8.85417vw; } }

@media (min-width: 1920px) {
  .page-styles__fields {
    margin-left: -170px; } }

@media (min-width: 1024px) {
  .page-styles__check__col {
    margin-left: 4.16667vw; } }

@media (min-width: 1920px) {
  .page-styles__check__col {
    margin-left: 80px; } }

@media (min-width: 1024px) {
  .page-styles__check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -4.16667vw; } }

@media (min-width: 1920px) {
  .page-styles__check {
    margin-left: -80px; } }

.page-search__field {
  position: relative;
  margin-bottom: 7.5vmin; }
  .page-search__field input {
    display: block;
    outline: none;
    border: 1px solid #000;
    border-radius: 2.5vmin;
    padding: 0 7.5vmin;
    width: 100%;
    height: 20vmin;
    background: #fff; }
    @media (min-width: 1024px) {
      .page-search__field input {
        border-radius: 0.41667vw;
        padding: 0 1.25vw;
        height: 3.33333vw; } }
    @media (min-width: 1920px) {
      .page-search__field input {
        border-radius: 8px;
        padding: 0 24px;
        height: 64px; } }
  .page-search__field__submit {
    position: absolute;
    right: 4.375vmin;
    top: 50%;
    outline: 0;
    border: none;
    padding: 3.125vmin;
    color: #000;
    background: #fff;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .page-search__field__submit svg {
      display: block;
      width: 5vmin;
      height: 5vmin; }
      @media (min-width: 1024px) {
        .page-search__field__submit svg {
          width: 0.83333vw;
          height: 0.83333vw; } }
      @media (min-width: 1920px) {
        .page-search__field__submit svg {
          width: 16px;
          height: 16px; } }
    @media (min-width: 1024px) {
      .page-search__field__submit {
        right: 0.72917vw;
        padding: 0.52083vw; }
        .page-search__field__submit:hover {
          color: #e30613; } }
    @media (min-width: 1920px) {
      .page-search__field__submit {
        right: 14px;
        padding: 10px; } }
  @media (min-width: 1024px) {
    .page-search__field {
      margin-bottom: 1.66667vw; } }
  @media (min-width: 1920px) {
    .page-search__field {
      margin-bottom: 32px; } }

.page-search__found {
  margin-bottom: 10vmin;
  font-weight: 700; }
  @media (min-width: 1024px) {
    .page-search__found {
      margin-bottom: 3.33333vw; } }
  @media (min-width: 1920px) {
    .page-search__found {
      margin-bottom: 64px; } }

.page-search__item {
  display: block;
  border-radius: 2.5vmin;
  padding: 7.5vmin;
  background: #f8f8f8; }
  .page-search__item__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-search__item__text {
        margin-bottom: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-search__item__text {
        margin-bottom: 24px; } }
  .page-search__item__info {
    font-weight: 500;
    font-size: 2.5vmin;
    line-height: 3.125vmin;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aeaeae;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    .page-search__item__info li {
      display: inline; }
      .page-search__item__info li + li {
        position: relative;
        padding-left: 6.875vmin; }
        .page-search__item__info li + li::before {
          content: "";
          position: absolute;
          left: 2.5vmin;
          top: 1.25vmin;
          border-radius: 50%;
          width: 0.625vmin;
          height: 0.625vmin;
          background: currentColor; }
          @media (min-width: 1024px) {
            .page-search__item__info li + li::before {
              left: 0.41667vw;
              top: 0.26042vw;
              width: 0.15625vw;
              height: 0.15625vw; } }
          @media (min-width: 1920px) {
            .page-search__item__info li + li::before {
              left: 8px;
              top: 5px;
              width: 3px;
              height: 3px; } }
        @media (min-width: 1024px) {
          .page-search__item__info li + li {
            padding-left: 1.19792vw; } }
        @media (min-width: 1920px) {
          .page-search__item__info li + li {
            padding-left: 23px; } }
    @media (min-width: 1024px) {
      .page-search__item__info {
        font-size: 0.625vw;
        line-height: 0.72917vw; } }
    @media (min-width: 1920px) {
      .page-search__item__info {
        font-size: 12px;
        line-height: 14px; } }
  .page-search__item + .page-search__item {
    margin-top: 5vmin; }
    @media (min-width: 1024px) {
      .page-search__item + .page-search__item {
        margin-top: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-search__item + .page-search__item {
        margin-top: 16px; } }
  @media (min-width: 1024px) {
    .page-search__item {
      border-radius: 0.83333vw;
      padding: 2.08333vw; }
      .page-search__item:hover {
        color: #fff;
        background: #000; }
        .page-search__item:hover .page-search__item__info {
          color: #e5e5e5; } }
  @media (min-width: 1920px) {
    .page-search__item {
      border-radius: 16px;
      padding: 40px; } }

.page-search .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15vmin;
  text-align: center; }
  @media (min-width: 1024px) {
    .page-search .pagination {
      margin-top: 2.91667vw; } }
  @media (min-width: 1920px) {
    .page-search .pagination {
      margin-top: 56px; } }

@media (min-width: 1024px) {
  .page-search {
    max-width: 62.13542vw; } }

@media (min-width: 1920px) {
  .page-search {
    max-width: 1193px; } }

.page-coming-soon__filter {
  margin-bottom: 7.5vmin; }
  .page-coming-soon__filter__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-coming-soon__filter__item__label {
      margin-right: 2.5vmin; }
      @media (min-width: 1024px) {
        .page-coming-soon__filter__item__label {
          margin-right: 0.41667vw; } }
      @media (min-width: 1920px) {
        .page-coming-soon__filter__item__label {
          margin-right: 8px; } }
    .page-coming-soon__filter__item__select .input {
      margin: 0; }
      .page-coming-soon__filter__item__select .input__field select {
        border: none;
        padding: 0 5.625vmin 0 0;
        height: 6.25vmin;
        font-weight: 700;
        background: url("../images/triangle.svg") #fff 100% 55% no-repeat; }
        @media (min-width: 1024px) {
          .page-coming-soon__filter__item__select .input__field select {
            padding: 0 0.9375vw 0 0;
            height: 1.25vw; } }
        @media (min-width: 1920px) {
          .page-coming-soon__filter__item__select .input__field select {
            padding: 0 18px 0 0;
            height: 24px; } }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection--single {
        height: 6.25vmin; }
        @media (min-width: 1024px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection--single {
            height: 1.25vw; } }
        @media (min-width: 1920px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection--single {
            height: 24px; } }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection__rendered {
        border: none;
        padding: 0 5vmin 0 0;
        font-weight: 700;
        line-height: 6.25vmin; }
        @media (min-width: 1024px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection__rendered {
            padding: 0 0.83333vw 0 0;
            line-height: 1.25vw; } }
        @media (min-width: 1920px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection__rendered {
            padding: 0 16px 0 0;
            line-height: 24px; } }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection__placeholder {
        color: inherit; }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-selection__arrow {
        right: 0; }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-dropdown {
        width: auto !important; }
      .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-results__options {
        padding-right: 6.25vmin; }
        @media (min-width: 1024px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-results__options {
            padding-right: 1.04167vw; } }
        @media (min-width: 1920px) {
          .page-coming-soon__filter__item__select .input__field .select2-container--default .select2-results__options {
            padding-right: 20px; } }
    .page-coming-soon__filter__item + .page-coming-soon__filter__item {
      margin-top: 5vmin; }
      @media (min-width: 1024px) {
        .page-coming-soon__filter__item + .page-coming-soon__filter__item {
          margin-top: 0;
          margin-left: 1.66667vw; } }
      @media (min-width: 1920px) {
        .page-coming-soon__filter__item + .page-coming-soon__filter__item {
          margin-left: 32px; } }
  @media (min-width: 1024px) {
    .page-coming-soon__filter {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 3.28125vw; } }
  @media (min-width: 1920px) {
    .page-coming-soon__filter {
      margin-bottom: 63px; } }

.page-coming-soon__item {
  position: relative;
  margin: 0 -6.25vmin 6.25vmin;
  padding: 62.5vmin 6.25vmin 10vmin;
  color: #fff; }
  .page-coming-soon__item__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #000 0 0 no-repeat;
    background-size: 156.25vmin; }
    @media (min-width: 1024px) {
      .page-coming-soon__item__image {
        background: 50% 50% no-repeat;
        background-size: cover; } }
  @media (min-width: 1024px) {
    .page-coming-soon__item__content {
      margin-left: 59.16667vw; } }
  @media (min-width: 1920px) {
    .page-coming-soon__item__content {
      margin-left: 1136px; } }
  .page-coming-soon__item__title {
    margin-bottom: 2.5vmin; }
    @media (min-width: 1024px) {
      .page-coming-soon__item__title {
        margin-bottom: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__title {
        margin-bottom: 16px; } }
  .page-coming-soon__item__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 6.875vmin; }
    @media (min-width: 1024px) {
      .page-coming-soon__item__info {
        margin-bottom: 1.14583vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__info {
        margin-bottom: 22px; } }
  .page-coming-soon__item__date {
    margin-right: 2.5vmin; }
    .page-coming-soon__item__date span {
      display: inline-block;
      vertical-align: middle;
      border: 1px solid #e30613;
      border-radius: 5vmin;
      padding: 0 3.125vmin;
      font-weight: 500;
      font-size: 3.125vmin;
      line-height: 6.875vmin;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: #e30613; }
      @media (min-width: 1024px) {
        .page-coming-soon__item__date span {
          border-radius: 0.83333vw;
          padding: 0 0.52083vw;
          font-size: 0.625vw;
          line-height: 1.14583vw; } }
      @media (min-width: 1920px) {
        .page-coming-soon__item__date span {
          border-radius: 16px;
          padding: 0 10px;
          font-size: 12px;
          line-height: 22px; } }
    @media (min-width: 1024px) {
      .page-coming-soon__item__date {
        margin-right: 0.41667vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__date {
        margin-right: 8px; } }
  .page-coming-soon__item__tag {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2.5vmin;
    border: solid 1px #fff;
    border-radius: 5vmin;
    padding: 0 2.8125vmin;
    font-weight: 500;
    font-size: 3.125vmin;
    line-height: 6.875vmin;
    letter-spacing: 0.1em;
    text-transform: uppercase; }
    @media (min-width: 1024px) {
      .page-coming-soon__item__tag {
        margin-right: 0.41667vw;
        border-radius: 0.83333vw;
        padding: 0 0.46875vw;
        font-size: 0.625vw;
        line-height: 1.14583vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__tag {
        margin-right: 8px;
        border-radius: 16px;
        padding: 0 9px;
        font-size: 12px;
        line-height: 22px; } }
  .page-coming-soon__item__list {
    margin: 5.625vmin -2.5vmin 3.125vmin;
    min-width: 0; }
    .page-coming-soon__item__list table {
      border-collapse: collapse;
      width: 100%; }
      .page-coming-soon__item__list table td {
        padding: 1.875vmin 2.5vmin; }
        @media (min-width: 1024px) {
          .page-coming-soon__item__list table td {
            padding: 0.10417vw 0.9375vw; } }
        @media (min-width: 1920px) {
          .page-coming-soon__item__list table td {
            padding: 2px 18px; } }
    .page-coming-soon__item__list__key {
      color: #808080; }
    .page-coming-soon__item__list__value {
      width: 100%; }
    @media (max-width: 1023px) {
      .page-coming-soon__item__list {
        font-size: 4.0625vmin;
        line-height: 5vmin; } }
    @media (min-width: 1024px) {
      .page-coming-soon__item__list {
        margin: 1.14583vw -0.9375vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__list {
        margin: 22px -18px; } }
  .page-coming-soon__item__limit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 6.875vmin; }
    .page-coming-soon__item__limit__age {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-right: 3.75vmin;
      border: solid 2px #fff;
      border-radius: 50%;
      width: 11.875vmin;
      height: 11.875vmin;
      font-weight: 700;
      text-align: center; }
      @media (min-width: 1024px) {
        .page-coming-soon__item__limit__age {
          margin-right: 0.625vw;
          padding-top: 1px;
          width: 2.13542vw;
          height: 2.13542vw; } }
      @media (min-width: 1920px) {
        .page-coming-soon__item__limit__age {
          margin-right: 12px;
          width: 41px;
          height: 41px; } }
    .page-coming-soon__item__limit__text {
      width: 100%;
      font-weight: 700; }
    @media (min-width: 1024px) {
      .page-coming-soon__item__limit {
        margin-top: 2.34375vw; } }
    @media (min-width: 1920px) {
      .page-coming-soon__item__limit {
        margin-top: 45px; } }
  @media (min-width: 1024px) {
    .page-coming-soon__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 0 1.14583vw;
      padding: 8.59375vw 4.16667vw 6.45833vw;
      min-height: 33.85417vw; } }
  @media (min-width: 1920px) {
    .page-coming-soon__item {
      margin: 0 0 22px;
      padding: 165px 80px 124px;
      min-height: 650px; } }

.page-coming-soon .goods {
  margin-bottom: 0;
  padding: 0;
  background: transparent; }
  .page-coming-soon .goods__item {
    background: #f8f8f8; }

@media (min-width: 1024px) {
  .page-game-detail__title {
    margin-bottom: 2.60417vw; } }

@media (min-width: 1920px) {
  .page-game-detail__title {
    margin-bottom: 50px; } }

.page-game-detail__text {
  margin-bottom: 12.5vmin; }
  @media (min-width: 1024px) {
    .page-game-detail__text {
      margin-bottom: 4.6875vw;
      max-width: 46.35417vw; } }
  @media (min-width: 1920px) {
    .page-game-detail__text {
      margin-bottom: 90px;
      max-width: 890px; } }

@media (min-width: 1024px) {
  .page-game-detail__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.page-game-detail__list {
  width: 100%; }

.page-game-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .page-game-detail__item__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4.6875vmin; }
    .page-game-detail__item__icon img {
      width: 14.375vmin; }
      @media (min-width: 1024px) {
        .page-game-detail__item__icon img {
          width: 2.70833vw; } }
      @media (min-width: 1920px) {
        .page-game-detail__item__icon img {
          width: 52px; } }
    @media (min-width: 1024px) {
      .page-game-detail__item__icon {
        margin-right: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__item__icon {
        margin-right: 24px; } }
  .page-game-detail__item__content {
    width: 100%; }
    @media (min-width: 1024px) {
      .page-game-detail__item__content {
        line-height: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__item__content {
        line-height: 20px; } }
  .page-game-detail__item__title {
    margin-bottom: 2.5vmin;
    font-weight: 700; }
    @media (min-width: 1024px) {
      .page-game-detail__item__title {
        margin-bottom: 0.41667vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__item__title {
        margin-bottom: 8px; } }
  .page-game-detail__item__text {
    font-size: 4.375vmin; }
    @media (min-width: 1024px) {
      .page-game-detail__item__text {
        font-size: 0.72917vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__item__text {
        font-size: 14px; } }
  .page-game-detail__item + .page-game-detail__item {
    margin-top: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-game-detail__item + .page-game-detail__item {
        margin-top: 1.66667vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__item + .page-game-detail__item {
        margin-top: 32px; } }

.page-game-detail__video {
  position: relative;
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 7.5vmin;
  border-radius: 2.5vmin;
  width: 100%; }
  .page-game-detail__video__play {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 3.125vmin;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .page-game-detail__video__play svg {
      width: 17.5vmin;
      height: 17.5vmin; }
      @media (min-width: 1024px) {
        .page-game-detail__video__play svg {
          width: 4.47917vw;
          height: 4.47917vw; } }
      @media (min-width: 1920px) {
        .page-game-detail__video__play svg {
          width: 86px;
          height: 86px; } }
    @media (min-width: 1024px) {
      .page-game-detail__video__play {
        margin-left: 0.52083vw; } }
    @media (min-width: 1920px) {
      .page-game-detail__video__play {
        margin-left: 10px; } }
  @media (min-width: 1024px) {
    .page-game-detail__video {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-top: 0;
      margin-left: 1.04167vw;
      border-radius: 0.83333vw;
      width: 30.52083vw; } }
  @media (min-width: 1920px) {
    .page-game-detail__video {
      margin-left: 20px;
      border-radius: 16px;
      width: 586px; } }

.page-game-detail .goods {
  margin-top: 12.5vmin; }
  @media (min-width: 1024px) {
    .page-game-detail .goods {
      margin-top: 4.16667vw; } }
  @media (min-width: 1920px) {
    .page-game-detail .goods {
      margin-top: 80px; } }

.page-not-found {
  position: relative;
  z-index: 5;
  background: #050505; }
  .page-not-found__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: 100% 13% no-repeat;
    background-size: 100%; }
    @media (min-width: 1024px) {
      .page-not-found__image {
        background: 100% 50% no-repeat;
        background-size: 76.25vw; } }
    @media (min-width: 1920px) {
      .page-not-found__image {
        background-size: 1464px; } }
  .page-not-found__content {
    padding: 78.125vmin 0 12.5vmin;
    color: #fff; }
    @media (min-width: 1024px) {
      .page-not-found__content {
        padding: 16.61458vw 0 18.17708vw;
        max-width: 30.57292vw; } }
    @media (min-width: 1920px) {
      .page-not-found__content {
        padding: 319px 0 349px;
        max-width: 587px; } }
  @media (min-width: 1024px) {
    .page-not-found__title {
      max-width: 18.90625vw; } }
  @media (min-width: 1920px) {
    .page-not-found__title {
      max-width: 363px; } }
  .page-not-found__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-not-found__text {
        margin-bottom: 2.08333vw; } }
    @media (min-width: 1920px) {
      .page-not-found__text {
        margin-bottom: 40px; } }
  .page-not-found__links__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-not-found__links__item__icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 5vmin; }
      .page-not-found__links__item__icon svg {
        width: 6.25vmin;
        height: 6.25vmin;
        fill: none; }
        @media (min-width: 1024px) {
          .page-not-found__links__item__icon svg {
            width: 1.04167vw;
            height: 1.04167vw; } }
        @media (min-width: 1920px) {
          .page-not-found__links__item__icon svg {
            width: 20px;
            height: 20px; } }
      @media (min-width: 1024px) {
        .page-not-found__links__item__icon {
          margin-right: 0.83333vw; } }
      @media (min-width: 1920px) {
        .page-not-found__links__item__icon {
          margin-right: 16px; } }
    .page-not-found__links__item:hover {
      color: #e30613; }
    .page-not-found__links__item + .page-not-found__links__item {
      margin-top: 5vmin; }
      @media (min-width: 1024px) {
        .page-not-found__links__item + .page-not-found__links__item {
          margin-top: 0;
          margin-left: 0.83333vw;
          border-left: 1px solid rgba(255, 255, 255, 0.2);
          padding-left: 0.83333vw; } }
      @media (min-width: 1920px) {
        .page-not-found__links__item + .page-not-found__links__item {
          margin-left: 16px;
          padding-left: 16px; } }
  @media (min-width: 1024px) {
    .page-not-found__links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  @media (min-width: 1024px) {
    .page-not-found {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      min-height: calc(100vh - 31.66667vw); } }
  @media (min-width: 1920px) {
    .page-not-found {
      min-height: calc(100vh - 608px); } }

.page-contacts__side {
  margin-top: 10vmin; }
  @media (min-width: 1024px) {
    .page-contacts__side {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin: 0 1.04167vw 0 0;
      width: 22.65625vw; } }
  @media (min-width: 1920px) {
    .page-contacts__side {
      margin-right: 20px;
      width: 435px; } }

.page-contacts__map {
  position: relative;
  width: 100%;
  min-width: 0; }
  .page-contacts__map__container {
    overflow: hidden;
    border-radius: 0 0 5vmin 5vmin;
    height: 125vmin; }
    @media (min-width: 1024px) {
      .page-contacts__map__container {
        border-radius: 0.83333vw;
        height: 100%;
        min-height: 41.66667vw; } }
    @media (min-width: 1920px) {
      .page-contacts__map__container {
        border-radius: 16px;
        min-height: 800px; } }
  .page-contacts__map__content {
    border-radius: 5vmin 5vmin 0 0;
    padding: 7.5vmin;
    background: #f8f8f8; }
    @media (min-width: 1024px) {
      .page-contacts__map__content {
        position: absolute;
        left: 4.58333vw;
        right: 4.58333vw;
        top: 4.58333vw;
        z-index: 5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 0.83333vw;
        padding: 2.91667vw 3.33333vw;
        background: #fff; } }
    @media (min-width: 1920px) {
      .page-contacts__map__content {
        left: 88px;
        right: 88px;
        top: 88px;
        border-radius: 16px;
        padding: 56px 64px; } }
  .page-contacts__map__offices {
    margin-bottom: 10vmin;
    font-weight: 700;
    font-size: 6.25vmin;
    line-height: 1.12; }
    .page-contacts__map__offices li + li {
      margin-top: 5vmin; }
      @media (min-width: 1024px) {
        .page-contacts__map__offices li + li {
          margin-top: 1.04167vw; } }
      @media (min-width: 1920px) {
        .page-contacts__map__offices li + li {
          margin-top: 20px; } }
    .page-contacts__map__offices li a {
      opacity: 0.2; }
      .page-contacts__map__offices li a.is-active {
        opacity: 1; }
      @media (min-width: 1024px) {
        .page-contacts__map__offices li a:hover {
          opacity: 1; } }
    @media (min-width: 1024px) {
      .page-contacts__map__offices {
        margin: 0 2.91667vw 0 0;
        font-size: 1.66667vw; } }
    @media (min-width: 1920px) {
      .page-contacts__map__offices {
        margin-right: 56px;
        font-size: 32px; } }
  .page-contacts__map__list__item {
    display: none; }
    .page-contacts__map__list__item li {
      position: relative;
      padding: 0.3125vmin 0 0.3125vmin 10.3125vmin; }
      .page-contacts__map__list__item li + li {
        margin-top: 5vmin; }
        @media (min-width: 1024px) {
          .page-contacts__map__list__item li + li {
            margin-top: 1.25vw; } }
        @media (min-width: 1920px) {
          .page-contacts__map__list__item li + li {
            margin-top: 24px; } }
      @media (min-width: 1024px) {
        .page-contacts__map__list__item li a:hover {
          color: #e30613; } }
      @media (min-width: 1024px) {
        .page-contacts__map__list__item li {
          padding: 0.15625vw 0 0.15625vw 2.60417vw; } }
      @media (min-width: 1920px) {
        .page-contacts__map__list__item li {
          padding: 3px 0 3px 50px; } }
    .page-contacts__map__list__item__icon {
      position: absolute;
      left: 0;
      top: 0;
      width: 6.5625vmin;
      height: 6.5625vmin; }
      @media (min-width: 1024px) {
        .page-contacts__map__list__item__icon {
          width: 1.5625vw;
          height: 1.5625vw; } }
      @media (min-width: 1920px) {
        .page-contacts__map__list__item__icon {
          width: 30px;
          height: 30px; } }
    .page-contacts__map__list__item.is-active {
      display: block; }
    @media (min-width: 1024px) {
      .page-contacts__map__list__item {
        font-size: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-contacts__map__list__item {
        font-size: 20px; } }

.page-contacts__support {
  margin-bottom: 7.5vmin;
  border-radius: 5vmin;
  padding: 7.5vmin;
  color: #fff;
  background: #000; }
  .page-contacts__support__phone {
    margin-bottom: 2.5vmin;
    font-weight: 300;
    font-size: 6.25vmin;
    line-height: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-contacts__support__phone a:hover {
        color: #e30613; } }
    @media (min-width: 1024px) {
      .page-contacts__support__phone {
        margin-bottom: 0.41667vw;
        font-size: 1.25vw;
        line-height: 1.51042vw; } }
    @media (min-width: 1920px) {
      .page-contacts__support__phone {
        margin-bottom: 8px;
        font-size: 24px;
        line-height: 29px; } }
  .page-contacts__support__text {
    font-size: 3.75vmin;
    line-height: 5.9375vmin;
    color: #b3b3b3; }
    @media (min-width: 1024px) {
      .page-contacts__support__text {
        font-size: 0.83333vw;
        line-height: 0.98958vw; } }
    @media (min-width: 1920px) {
      .page-contacts__support__text {
        font-size: 16px;
        line-height: 19px; } }
  .page-contacts__support__email {
    margin-top: 5vmin;
    font-weight: 300;
    font-size: 5.625vmin;
    line-height: 6.875vmin; }
    @media (min-width: 1024px) {
      .page-contacts__support__email a:hover {
        color: #e30613; } }
    @media (min-width: 1024px) {
      .page-contacts__support__email {
        margin-top: 1.25vw;
        font-size: 1.04167vw;
        line-height: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-contacts__support__email {
        margin-top: 24px;
        font-size: 20px;
        line-height: 24px; } }
  @media (min-width: 1024px) {
    .page-contacts__support {
      margin-bottom: 1.25vw;
      border-radius: 0.83333vw;
      padding: 2.91667vw 2.5vw; } }
  @media (min-width: 1920px) {
    .page-contacts__support {
      margin-bottom: 24px;
      border-radius: 16px;
      padding: 56px 48px; } }

.page-contacts__list {
  border-radius: 5vmin;
  padding: 7.5vmin;
  background: #f8f8f8; }
  .page-contacts__list__item__key {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 6.25vmin;
    line-height: 1.2; }
    @media (min-width: 1024px) {
      .page-contacts__list__item__key {
        margin-bottom: 0.41667vw;
        font-size: 1.25vw;
        line-height: 1.33; } }
    @media (min-width: 1920px) {
      .page-contacts__list__item__key {
        margin-bottom: 8px;
        font-size: 24px; } }
  .page-contacts__list__item__value {
    font-weight: 300; }
    @media (min-width: 1024px) {
      .page-contacts__list__item__value {
        font-size: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-contacts__list__item__value {
        font-size: 20px; } }
  @media (min-width: 1024px) {
    .page-contacts__list__item a:hover {
      color: #e30613; } }
  .page-contacts__list__item + .page-contacts__list__item {
    margin-top: 3.75vmin;
    border-top: solid 1px #e9e9e9;
    padding-top: 3.75vmin; }
    @media (min-width: 1024px) {
      .page-contacts__list__item + .page-contacts__list__item {
        margin-top: 1.25vw;
        padding-top: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-contacts__list__item + .page-contacts__list__item {
        margin-top: 24px;
        padding-top: 24px; } }
  .page-contacts__list__callback {
    margin-top: 10vmin; }
    .page-contacts__list__callback .button {
      width: 100%; }
    @media (min-width: 1024px) {
      .page-contacts__list__callback {
        margin-top: 2.08333vw; } }
    @media (min-width: 1920px) {
      .page-contacts__list__callback {
        margin-top: 40px; } }
  @media (min-width: 1024px) {
    .page-contacts__list {
      border-radius: 0.83333vw;
      padding: 2.91667vw 2.5vw; } }
  @media (min-width: 1920px) {
    .page-contacts__list {
      border-radius: 16px;
      padding: 56px 48px; } }

@media (min-width: 1024px) {
  .page-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }

.page-news__menu {
  margin-bottom: 7.5vmin;
  padding: 6.875vmin 0;
  background: #f8f8f8; }
  .page-news__menu__list ul {
    text-align: center; }
    .page-news__menu__list ul li {
      display: inline-block;
      vertical-align: middle; }
      .page-news__menu__list ul li + li {
        margin-left: 5vmin; }
        @media (min-width: 1024px) {
          .page-news__menu__list ul li + li {
            margin-left: 2.5vw; } }
        @media (min-width: 1920px) {
          .page-news__menu__list ul li + li {
            margin-left: 48px; } }
      .page-news__menu__list ul li label {
        position: relative;
        display: inline-block;
        cursor: pointer; }
        .page-news__menu__list ul li label input {
          position: absolute;
          left: 50%;
          top: 50%;
          z-index: -1;
          width: 1px;
          height: 1px;
          opacity: 0;
          -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%); }
          .page-news__menu__list ul li label input:checked ~ span {
            color: #e30613; }
        .page-news__menu__list ul li label span {
          font-weight: 700;
          font-size: 5.625vmin;
          color: rgba(0, 0, 0, 0.3);
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          @media (min-width: 1024px) {
            .page-news__menu__list ul li label span {
              font-size: 1.25vw; } }
          @media (min-width: 1920px) {
            .page-news__menu__list ul li label span {
              font-size: 24px; } }
        @media (min-width: 1024px) {
          .page-news__menu__list ul li label:hover span {
            color: #e30613; } }
    @media (max-width: 1023px) {
      .page-news__menu__list ul {
        overflow: auto;
        margin: 0 -3.125vmin;
        padding: 0 3.125vmin 3.75vmin;
        white-space: nowrap; } }
  @media (min-width: 1024px) {
    .page-news__menu {
      margin-bottom: 2.5vw;
      padding: 2.1875vw 0; } }
  @media (min-width: 1920px) {
    .page-news__menu {
      margin-bottom: 48px;
      padding: 42px 0; } }

.page-news__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -3.125vmin; }
  @media (min-width: 1024px) {
    .page-news__row {
      margin: 0 -0.52083vw; } }
  @media (min-width: 1920px) {
    .page-news__row {
      margin: 0 -10px; } }

.page-news__col {
  margin-bottom: 6.25vmin;
  padding: 0 3.125vmin;
  width: 100%; }
  .page-news__col .subscribe {
    margin-bottom: 0; }
  @media (min-width: 1024px) {
    .page-news__col {
      margin-bottom: 1.04167vw;
      padding: 0 0.52083vw;
      width: 25%; } }
  @media (min-width: 1920px) {
    .page-news__col {
      margin-bottom: 20px;
      padding: 0 10px; } }

@media (min-width: 1024px) {
  .page-news__col--big {
    width: 50%; } }

.page-news__item {
  position: relative;
  display: block;
  height: 100%; }
  .page-news__item__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 5vmin;
    border-radius: 2.5vmin;
    padding-bottom: 73.603%; }
    .page-news__item__image span {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: 50% 50% no-repeat;
      background-size: cover; }
    @media (min-width: 1024px) {
      .page-news__item__image {
        margin-bottom: 0.83333vw;
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-news__item__image {
        margin-bottom: 16px;
        border-radius: 16px; } }
  .page-news__item__title {
    margin: 0 0 5vmin;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media (min-width: 1024px) {
      .page-news__item__title {
        margin: 0 0 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-news__item__title {
        margin: 0 0 16px; } }
  .page-news__item__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-news__item__text {
        margin-bottom: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-news__item__text {
        margin-bottom: 24px; } }
  .page-news__item__info {
    font-weight: 500;
    font-size: 3.75vmin;
    line-height: 4.375vmin;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3); }
    .page-news__item__info ul li {
      display: inline; }
      .page-news__item__info ul li + li {
        position: relative;
        padding-left: 6.875vmin; }
        .page-news__item__info ul li + li::before {
          content: "";
          position: absolute;
          left: 2.5vmin;
          top: 1.5625vmin;
          border-radius: 50%;
          width: 0.9375vmin;
          height: 0.9375vmin;
          background: currentColor; }
          @media (min-width: 1024px) {
            .page-news__item__info ul li + li::before {
              left: 0.41667vw;
              top: 0.26042vw;
              width: 0.15625vw;
              height: 0.15625vw; } }
          @media (min-width: 1920px) {
            .page-news__item__info ul li + li::before {
              left: 8px;
              top: 5px;
              width: 3px;
              height: 3px; } }
        @media (min-width: 1024px) {
          .page-news__item__info ul li + li {
            padding-left: 1.14583vw; } }
        @media (min-width: 1920px) {
          .page-news__item__info ul li + li {
            padding-left: 22px; } }
    @media (min-width: 1024px) {
      .page-news__item__info {
        font-size: 0.625vw;
        line-height: 0.72917vw; } }
    @media (min-width: 1920px) {
      .page-news__item__info {
        font-size: 12px;
        line-height: 14px; } }
  .page-news__item:hover .page-news__item__title {
    color: #e30613; }

@media (min-width: 1024px) {
  .page-news__item--big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 29.11458vw;
    color: #fff; }
    .page-news__item--big .page-news__item__image {
      position: absolute;
      z-index: -1;
      padding-bottom: 62.81%;
      width: 100%; }
    .page-news__item--big .page-news__item__content {
      margin-top: auto;
      padding: 0 21.40625vw 2.91667vw 2.91667vw; }
    .page-news__item--big .page-news__item__info {
      color: rgba(255, 255, 255, 0.3); } }

@media (min-width: 1920px) {
  .page-news__item--big {
    height: 559px; }
    .page-news__item--big .page-news__item__content {
      padding: 0 411px 56px 56px; } }

.page-news .pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6.25vmin;
  padding: 0 3.125vmin;
  width: 100%;
  text-align: center; }
  @media (min-width: 1024px) {
    .page-news .pagination {
      margin-top: 3.54167vw;
      padding: 0; } }
  @media (min-width: 1920px) {
    .page-news .pagination {
      margin-top: 68px; } }

.page-news-detail__text {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-news-detail__text {
      margin-bottom: 2.91667vw;
      max-width: 46.35417vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__text {
      margin-bottom: 56px;
      max-width: 890px; } }

@media (min-width: 1024px) {
  .page-news-detail__title {
    margin: 4.16667vw 0 2.5vw; } }

@media (min-width: 1920px) {
  .page-news-detail__title {
    margin: 80px 0 48px; } }

.page-news-detail__row {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-news-detail__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-bottom: 2.8125vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__row {
      margin-bottom: 54px; } }

.page-news-detail__feature {
  margin: 7.5vmin -3.125vmin;
  padding: 10vmin 3.125vmin;
  background: #f8f8f8; }
  @media (min-width: 1024px) {
    .page-news-detail__feature {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin: 0 0 0 8.90625vw;
      border-radius: 0.83333vw;
      padding: 2.08333vw;
      width: 22.65625vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__feature {
      margin: 0 0 0 171px;
      border-radius: 16px;
      padding: 40px;
      width: 435px; } }

.page-news-detail__slider {
  position: relative;
  margin: 0 -3.125vmin 7.5vmin; }
  .page-news-detail__slider__prev, .page-news-detail__slider__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .page-news-detail__slider__prev.swiper-button-disabled, .page-news-detail__slider__next.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  @media (min-width: 1024px) {
    .page-news-detail__slider__prev {
      left: 1.66667vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__slider__prev {
      left: 32px; } }
  @media (min-width: 1024px) {
    .page-news-detail__slider__next {
      right: 1.66667vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__slider__next {
      right: 32px; } }
  @media (min-width: 1024px) {
    .page-news-detail__slider {
      margin: 0 0 4.16667vw;
      border-radius: 0.83333vw; } }
  @media (min-width: 1920px) {
    .page-news-detail__slider {
      margin: 0 0 80px;
      border-radius: 16px; } }

.page-partners__list {
  margin-bottom: 12.5vmin;
  padding: 11.875vmin 0 17.1875vmin;
  background: #f6f6f6; }
  @media (min-width: 1024px) {
    .page-partners__list__block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .page-partners__list__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%; }
  .page-partners__list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7.5vmin; }
    .page-partners__list__item__icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 7.1875vmin; }
      .page-partners__list__item__icon img {
        width: 10vmin; }
        @media (min-width: 1024px) {
          .page-partners__list__item__icon img {
            width: 1.66667vw; } }
        @media (min-width: 1920px) {
          .page-partners__list__item__icon img {
            width: 32px; } }
      @media (min-width: 1024px) {
        .page-partners__list__item__icon {
          margin-right: 1.19792vw; } }
      @media (min-width: 1920px) {
        .page-partners__list__item__icon {
          margin-right: 23px; } }
    .page-partners__list__item__text {
      margin: 0;
      width: 100%;
      color: rgba(0, 0, 0, 0.2);
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      @media (min-width: 1024px) {
        .page-partners__list__item__text {
          line-height: 1.875vw; }
          .page-partners__list__item__text:hover {
            color: #e30613; } }
      @media (min-width: 1920px) {
        .page-partners__list__item__text {
          line-height: 36px; } }
    .page-partners__list__item.is-active .page-partners__list__item__text {
      color: #000; }
    @media (min-width: 1024px) {
      .page-partners__list__item {
        margin-bottom: 2.08333vw; } }
    @media (min-width: 1920px) {
      .page-partners__list__item {
        margin-bottom: 40px; } }
  .page-partners__list__button {
    margin-top: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-partners__list__button .button {
        min-width: 14.73958vw; } }
    @media (min-width: 1920px) {
      .page-partners__list__button .button {
        min-width: 283px; } }
    @media (min-width: 1024px) {
      .page-partners__list__button {
        margin-top: auto; } }
  .page-partners__list__right {
    width: 100%; }
    .page-partners__list__right__item {
      display: none; }
      .page-partners__list__right__item.is-active {
        display: block;
        -webkit-animation: tabShow 0.4s;
                animation: tabShow 0.4s; }
    @media (min-width: 1024px) {
      .page-partners__list__right {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-left: 8.95833vw;
        width: 62.08333vw; } }
    @media (min-width: 1920px) {
      .page-partners__list__right {
        margin-left: 172px;
        width: 1192px; } }
  .page-partners__list__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.5625vmin -3.125vmin; }
    @media (min-width: 1024px) {
      .page-partners__list__row {
        margin: 0 -0.52083vw -1.04167vw; } }
    @media (min-width: 1920px) {
      .page-partners__list__row {
        margin: 0 -10px -20px; } }
  .page-partners__list__col {
    margin-bottom: 3.125vmin;
    padding: 0 1.5625vmin;
    width: 50%; }
    @media (min-width: 1024px) {
      .page-partners__list__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .page-partners__list__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .page-partners__list__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
    border-radius: 2.5vmin;
    height: 25vmin;
    background: #fff; }
    .page-partners__list__image img {
      max-width: 40.625vmin;
      max-height: 18.75vmin;
      -o-object-fit: contain;
         object-fit: contain; }
    @media (min-width: 1024px) {
      .page-partners__list__image {
        border-radius: 0.83333vw;
        height: 7.5vw;
        -webkit-filter: grayscale(100%);
                filter: grayscale(100%); }
        .page-partners__list__image img {
          max-width: 10.41667vw;
          max-height: 5.20833vw; }
        .page-partners__list__image:hover {
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
          -webkit-filter: grayscale(0);
                  filter: grayscale(0); } }
    @media (min-width: 1920px) {
      .page-partners__list__image {
        border-radius: 16px;
        height: 144px; }
        .page-partners__list__image img {
          max-width: 200px;
          max-height: 100px; }
        .page-partners__list__image:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  @media (min-width: 1024px) {
    .page-partners__list {
      margin-bottom: 7.13542vw;
      padding: 5.41667vw 0; } }
  @media (min-width: 1920px) {
    .page-partners__list {
      margin-bottom: 137px;
      padding: 104px 0; } }

@media (max-width: 1023px) {
  .page-partners-detail .benefits__col {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit; } }

.page-partners-detail__heading {
  margin-bottom: 7.5vmin; }
  .page-partners-detail__heading__title {
    margin: 0; }
  .page-partners-detail__heading__button {
    margin-top: 5vmin; }
    @media (min-width: 1024px) {
      .page-partners-detail__heading__button .button {
        min-width: 14.73958vw; } }
    @media (min-width: 1920px) {
      .page-partners-detail__heading__button .button {
        min-width: 283px; } }
    @media (min-width: 1024px) {
      .page-partners-detail__heading__button {
        margin-top: 0;
        margin-left: auto; } }
  @media (min-width: 1024px) {
    .page-partners-detail__heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 4.6875vw; } }
  @media (min-width: 1920px) {
    .page-partners-detail__heading {
      margin-bottom: 90px; } }

.page-partners-detail__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -3.125vmin -3.125vmin; }
  @media (min-width: 1024px) {
    .page-partners-detail__row {
      margin: 0 -0.52083vw; } }
  @media (min-width: 1920px) {
    .page-partners-detail__row {
      margin: 0 -10px; } }

.page-partners-detail__col {
  margin-bottom: 3.125vmin;
  padding: 0 3.125vmin;
  width: 100%; }
  @media screen and (orientation: landscape) {
    .page-partners-detail__col {
      width: 50%; } }
  @media (min-width: 1024px) {
    .page-partners-detail__col {
      margin-bottom: 0;
      padding: 0 0.52083vw;
      width: 25%; } }
  @media (min-width: 1920px) {
    .page-partners-detail__col {
      padding: 0 10px; } }

.page-partners-detail__item {
  position: relative;
  z-index: 5;
  display: block;
  border-radius: 2.5vmin;
  padding: 6.25vmin;
  height: 100vmin;
  background: #f8f8f8; }
  .page-partners-detail__item__title {
    margin-bottom: 5vmin; }
    @media (min-width: 1024px) {
      .page-partners-detail__item__title {
        margin-bottom: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-partners-detail__item__title {
        margin-bottom: 16px; } }
  .page-partners-detail__item__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: 50% 100% no-repeat;
    background-size: 85% auto; }
    @media (min-width: 1024px) {
      .page-partners-detail__item__image {
        background: 50% 100% no-repeat;
        background-size: 100% auto; } }
  @media (min-width: 1024px) {
    .page-partners-detail__item {
      border-radius: 0.83333vw;
      padding: 2.91667vw;
      height: 28.22917vw; }
      .page-partners-detail__item:hover {
        color: #fff;
        background: -o-radial-gradient(52.53% 100%, 81.97% 81.27%, rgba(255, 255, 255, 0.27) 0%, rgba(255, 255, 255, 0) 100%), #000;
        background: radial-gradient(81.97% 81.27% at 52.53% 100%, rgba(255, 255, 255, 0.27) 0%, rgba(255, 255, 255, 0) 100%), #000; } }
  @media (min-width: 1920px) {
    .page-partners-detail__item {
      border-radius: 16px;
      padding: 56px;
      height: 542px; } }

.page-publisher__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -3.125vmin 15vmin; }
  @media (min-width: 1024px) {
    .page-publisher__row {
      margin: 0 -0.52083vw 4.375vw; } }
  @media (min-width: 1920px) {
    .page-publisher__row {
      margin: 0 -10px 84px; } }

.page-publisher__col {
  margin-bottom: 6.25vmin;
  padding: 0 3.125vmin;
  width: 100%; }
  @media (min-width: 1024px) {
    .page-publisher__col {
      margin-bottom: 1.04167vw;
      padding: 0 0.52083vw;
      width: 33.33334%; } }
  @media (min-width: 1920px) {
    .page-publisher__col {
      margin-bottom: 20px;
      padding: 0 10px; } }

@media (min-width: 1024px) {
  .page-publisher__col--big {
    width: 66.667%; } }

@media (min-width: 1024px) {
  .page-publisher__about__title {
    margin-bottom: 2.5vw; } }

@media (min-width: 1920px) {
  .page-publisher__about__title {
    margin-bottom: 48px; } }

.page-publisher__about__text .text-lead {
  margin-bottom: 0; }

@media (min-width: 1024px) {
  .page-publisher__about__text {
    max-width: 25.57292vw; } }

@media (min-width: 1920px) {
  .page-publisher__about__text {
    max-width: 491px; } }

.page-publisher__item {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  border-radius: 2.5vmin;
  padding: 6.25vmin;
  height: 109.375vmin;
  color: #fff; }
  .page-publisher__item__content {
    margin-top: auto; }
  @media (min-width: 1024px) {
    .page-publisher__item__title {
      max-width: 20.83333vw; } }
  @media (min-width: 1920px) {
    .page-publisher__item__title {
      max-width: 400px; } }
  @media (min-width: 1024px) {
    .page-publisher__item__text {
      display: -webkit-box;
      overflow: hidden;
      height: 3.75vw;
      max-width: 28.80208vw;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3; } }
  @media (min-width: 1920px) {
    .page-publisher__item__text {
      height: 72px;
      max-width: 553px; } }
  .page-publisher__item__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: 50% 100% no-repeat;
    background-size: cover; }
  @media (min-width: 1024px) {
    .page-publisher__item {
      border-radius: 0.83333vw;
      padding: 2.91667vw;
      height: 28.02083vw; }
      .page-publisher__item:hover {
        z-index: 10; } }
  @media (min-width: 1920px) {
    .page-publisher__item {
      border-radius: 16px;
      padding: 56px;
      height: 538px; } }

.page-publisher .services {
  margin-bottom: 0; }

.page-distribution .services__distribution {
  margin-top: 18.75vmin;
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-distribution .services__distribution__content {
      max-width: 43.69792vw; } }
  @media (min-width: 1920px) {
    .page-distribution .services__distribution__content {
      max-width: 839px; } }
  @media (min-width: 1024px) {
    .page-distribution .services__distribution__text {
      margin-bottom: 2.5vw;
      max-width: 34.53125vw; } }
  @media (min-width: 1920px) {
    .page-distribution .services__distribution__text {
      margin-bottom: 48px;
      max-width: 663px; } }
  .page-distribution .services__distribution__list {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-distribution .services__distribution__list {
        margin-bottom: 1.25vw; } }
    @media (min-width: 1920px) {
      .page-distribution .services__distribution__list {
        margin-bottom: 24px; } }
  @media (min-width: 1024px) {
    .page-distribution .services__distribution__col {
      margin-bottom: 2.08333vw;
      width: 33.33334%; } }
  @media (min-width: 1920px) {
    .page-distribution .services__distribution__col {
      margin-bottom: 40px; } }
  @media (min-width: 1024px) {
    .page-distribution .services__distribution__image {
      width: 49.94792vw; } }
  @media (min-width: 1920px) {
    .page-distribution .services__distribution__image {
      width: 959px; } }
  @media (min-width: 1024px) {
    .page-distribution .services__distribution {
      margin-top: 0;
      margin-bottom: 5.41667vw;
      padding: 3.75vw 3.33333vw; } }
  @media (min-width: 1920px) {
    .page-distribution .services__distribution {
      margin-bottom: 104px;
      padding: 72px 64px; } }

.page-distribution__stores {
  margin-bottom: 15vmin; }
  .page-distribution__stores__content {
    width: 100%; }
  .page-distribution__stores__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-distribution__stores__text {
        margin-bottom: 2.5vw;
        max-width: 21.77083vw; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__text {
        margin-bottom: 48px;
        max-width: 418px; } }
  .page-distribution__stores__tab ul li + li {
    margin-top: 6.25vmin; }
    @media (min-width: 1024px) {
      .page-distribution__stores__tab ul li + li {
        margin-top: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__tab ul li + li {
        margin-top: 20px; } }
  .page-distribution__stores__tab ul li a {
    color: rgba(0, 0, 0, 0.2); }
    .page-distribution__stores__tab ul li a:hover {
      color: #e30613; }
    .page-distribution__stores__tab ul li a.is-active {
      color: #000; }
  .page-distribution__stores__list {
    margin-top: 7.5vmin; }
    .page-distribution__stores__list__item {
      display: none; }
      .page-distribution__stores__list__item.is-active {
        display: block;
        -webkit-animation: tabShow 0.4s;
                animation: tabShow 0.4s; }
    @media (min-width: 1024px) {
      .page-distribution__stores__list {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: 0;
        margin-left: 6.61458vw;
        width: 62.08333vw; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__list {
        margin-left: 127px;
        width: 1192px; } }
  .page-distribution__stores__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.5625vmin -3.125vmin; }
    @media (min-width: 1024px) {
      .page-distribution__stores__row {
        margin: 0 -0.52083vw -1.04167vw; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__row {
        margin: 0 -10px -20px; } }
  .page-distribution__stores__col {
    margin-bottom: 3.125vmin;
    padding: 0 1.5625vmin;
    width: 50%; }
    @media (min-width: 1024px) {
      .page-distribution__stores__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .page-distribution__stores__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 2.5vmin;
    height: 25vmin;
    background: #f8f8f8; }
    .page-distribution__stores__item img {
      position: absolute;
      left: 50%;
      top: 50%;
      max-width: 31.25vmin;
      max-height: 25vmin;
      opacity: 0;
      -webkit-transform: translate(-50%, -50%) scale(0.5);
          -ms-transform: translate(-50%, -50%) scale(0.5);
              transform: translate(-50%, -50%) scale(0.5);
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s; }
      .page-distribution__stores__item img.is-active {
        z-index: 5;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
                transform: translate(-50%, -50%) scale(1);
        -webkit-transition: 1s;
        -o-transition: 1s;
        transition: 1s; }
      @media (min-width: 1024px) {
        .page-distribution__stores__item img {
          max-width: 10.15625vw;
          max-height: 4.16667vw; } }
      @media (min-width: 1920px) {
        .page-distribution__stores__item img {
          max-width: 195px;
          max-height: 80px; } }
    @media (min-width: 1024px) {
      .page-distribution__stores__item {
        border-radius: 0.83333vw;
        height: 7.5vw; } }
    @media (min-width: 1920px) {
      .page-distribution__stores__item {
        border-radius: 16px;
        height: 144px; } }
  @media (min-width: 1024px) {
    .page-distribution__stores {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-distribution__stores {
      margin-bottom: 104px; } }

.page-distribution__brands {
  margin-bottom: 18.75vmin;
  padding: 12.5vmin 0 9.375vmin;
  background: #f6f6f6; }
  @media (min-width: 1024px) {
    .page-distribution__brands__title {
      margin-bottom: 3.75vw; } }
  @media (min-width: 1920px) {
    .page-distribution__brands__title {
      margin-bottom: 72px; } }
  .page-distribution__brands__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.5625vmin; }
    @media (min-width: 1024px) {
      .page-distribution__brands__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-distribution__brands__row {
        margin: 0 -10px; } }
  .page-distribution__brands__col {
    margin-bottom: 3.125vmin;
    padding: 0 1.5625vmin;
    width: 50%; }
    @media (min-width: 1024px) {
      .page-distribution__brands__col {
        margin-bottom: 1.04167vw;
        padding: 0 0.52083vw;
        width: 16.6667%; } }
    @media (min-width: 1920px) {
      .page-distribution__brands__col {
        margin-bottom: 20px;
        padding: 0 10px; } }
  .page-distribution__brands__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: visible;
    border-radius: 2.5vmin;
    height: 25vmin;
    background: #fff; }
    .page-distribution__brands__item img {
      max-width: 45.3125vmin;
      max-height: 23.125vmin; }
      @media (min-width: 1024px) {
        .page-distribution__brands__item img {
          max-width: 14.73958vw;
          max-height: 7.5vw; } }
      @media (min-width: 1920px) {
        .page-distribution__brands__item img {
          max-width: 283px;
          max-height: 144px; } }
    @media (min-width: 1024px) {
      .page-distribution__brands__item {
        border-radius: 0.83333vw;
        height: 7.5vw;
        opacity: 0.7;
        -webkit-filter: grayscale(100%);
                filter: grayscale(100%); }
        .page-distribution__brands__item:hover {
          -webkit-box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
                  box-shadow: 0 0.36458vw 0.52083vw rgba(0, 0, 0, 0.25);
          opacity: 1;
          -webkit-filter: grayscale(0);
                  filter: grayscale(0); } }
    @media (min-width: 1920px) {
      .page-distribution__brands__item {
        border-radius: 16px;
        height: 144px; }
        .page-distribution__brands__item:hover {
          -webkit-box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25);
                  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.25); } }
  @media (min-width: 1024px) {
    .page-distribution__brands {
      margin-bottom: 5.41667vw;
      padding: 4.16667vw 0 3.125vw; } }
  @media (min-width: 1920px) {
    .page-distribution__brands {
      margin-bottom: 104px;
      padding: 80px 0 60px; } }

.page-distribution .services {
  margin-bottom: 0; }

@media (min-width: 1024px) {
  .page-cooperation__subtitle {
    margin-bottom: 2.86458vw; } }

@media (min-width: 1920px) {
  .page-cooperation__subtitle {
    margin-bottom: 55px; } }

.page-cooperation__rule {
  margin: 0 0 15vmin; }
  .page-cooperation__rule__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -7.8125vmin; }
    @media (min-width: 1024px) {
      .page-cooperation__rule__row {
        margin: 0 -1.30208vw; } }
    @media (min-width: 1920px) {
      .page-cooperation__rule__row {
        margin: 0 -25px; } }
  .page-cooperation__rule__col {
    padding: 0 7.8125vmin;
    width: 100%; }
    .page-cooperation__rule__col + .page-cooperation__rule__col .page-cooperation__rule__item__point::before {
      content: "";
      position: absolute;
      right: 50%;
      bottom: 100%;
      margin-bottom: 4.0625vmin;
      border-left: 1px dashed #ccc;
      width: 1px;
      height: 6.25vmin; }
      @media (min-width: 1024px) {
        .page-cooperation__rule__col + .page-cooperation__rule__col .page-cooperation__rule__item__point::before {
          right: 100%;
          top: 50%;
          margin-right: 2.86458vw;
          margin-bottom: 0;
          border-bottom: 1px dashed #ccc;
          border-left: none;
          width: 9.53125vw;
          height: 1px; } }
      @media (min-width: 1920px) {
        .page-cooperation__rule__col + .page-cooperation__rule__col .page-cooperation__rule__item__point::before {
          margin-right: 55px;
          width: 183px; } }
    @media (max-width: 1023px) {
      .page-cooperation__rule__col + .page-cooperation__rule__col {
        margin-top: 12.5vmin; } }
    @media (min-width: 1024px) {
      .page-cooperation__rule__col {
        padding: 0 1.30208vw;
        width: 20%; } }
    @media (min-width: 1920px) {
      .page-cooperation__rule__col {
        padding: 0 25px; } }
  .page-cooperation__rule__item {
    text-align: center; }
    .page-cooperation__rule__item__point {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0 auto 3.75vmin;
      border: 1px solid #e30613;
      border-radius: 50%;
      width: 18.75vmin;
      height: 18.75vmin; }
      .page-cooperation__rule__item__point svg {
        margin-top: 1.5625vmin;
        width: 13.4375vmin;
        height: 7.5vmin; }
        @media (min-width: 1024px) {
          .page-cooperation__rule__item__point svg {
            margin-top: 0;
            width: 2.44792vw;
            height: 1.45833vw; } }
        @media (min-width: 1920px) {
          .page-cooperation__rule__item__point svg {
            width: 47px;
            height: 28px; } }
      @media (min-width: 1024px) {
        .page-cooperation__rule__item__point {
          margin: 0 auto 1.5625vw;
          width: 3.75vw;
          height: 3.75vw; } }
      @media (min-width: 1920px) {
        .page-cooperation__rule__item__point {
          margin: 0 auto 30px;
          width: 72px;
          height: 72px; } }
    .page-cooperation__rule__item__point--red {
      background: #e30613; }
    .page-cooperation__rule__item__text {
      margin-bottom: 0; }
  @media (min-width: 1024px) {
    .page-cooperation__rule {
      margin: 5.72917vw 0 8.33333vw; } }
  @media (min-width: 1920px) {
    .page-cooperation__rule {
      margin: 110px 0 160px; } }

.page-cooperation__button {
  text-align: center;
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-cooperation__button {
      margin-bottom: 8.33333vw; } }
  @media (min-width: 1920px) {
    .page-cooperation__button {
      margin-bottom: 160px; } }

.page-cooperation .poster {
  margin-bottom: 0; }

.page-about__menu {
  margin-bottom: 11.25vmin;
  padding: 6.5625vmin 0;
  background: #f8f8f8; }
  .page-about__menu__list ul {
    text-align: center; }
    .page-about__menu__list ul li {
      display: inline-block;
      vertical-align: middle; }
      .page-about__menu__list ul li + li {
        margin-left: 5vmin; }
        @media (min-width: 1024px) {
          .page-about__menu__list ul li + li {
            margin-left: 2.5vw; } }
        @media (min-width: 1920px) {
          .page-about__menu__list ul li + li {
            margin-left: 48px; } }
      .page-about__menu__list ul li a {
        margin: 0;
        color: rgba(0, 0, 0, 0.3); }
        .page-about__menu__list ul li a:hover {
          color: #e30613; }
    @media (max-width: 1023px) {
      .page-about__menu__list ul {
        overflow: auto;
        margin: 0 -3.125vmin;
        padding: 0 3.125vmin;
        white-space: nowrap; }
        .page-about__menu__list ul::-webkit-scrollbar {
          display: none;
          width: 0;
          height: 0; } }
  @media (min-width: 1024px) {
    .page-about__menu {
      margin-bottom: 4.42708vw;
      padding: 2.13542vw 0; } }
  @media (min-width: 1920px) {
    .page-about__menu {
      margin-bottom: 85px;
      padding: 41px 0; } }

.page-about__mission {
  margin-bottom: 15vmin; }
  .page-about__mission__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .page-about__mission__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-about__mission__row {
        margin: 0 -10px; } }
  .page-about__mission__col {
    padding: 0 3.125vmin;
    width: 100%; }
    @media (max-width: 1023px) {
      .page-about__mission__col + .page-about__mission__col {
        margin-top: 5vmin; } }
    @media (min-width: 1024px) {
      .page-about__mission__col {
        padding: 0 0.52083vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .page-about__mission__col {
        padding: 0 10px; } }
  .page-about__mission__item {
    margin: 0 -3.125vmin;
    padding: 10vmin 3.125vmin;
    height: 100%;
    background: #f2f2f2; }
    .page-about__mission__item__title {
      margin-bottom: 7.5vmin;
      font-weight: 700;
      font-size: 10vmin;
      line-height: 10vmin; }
      @media (min-width: 1024px) {
        .page-about__mission__item__title {
          margin-bottom: 1.66667vw;
          font-size: 2.08333vw;
          line-height: 2.5vw; } }
      @media (min-width: 1920px) {
        .page-about__mission__item__title {
          margin-bottom: 32px;
          font-size: 40px;
          line-height: 48px; } }
    .page-about__mission__item__text {
      margin-bottom: 0; }
    @media (min-width: 1024px) {
      .page-about__mission__item {
        margin: 0;
        border-radius: 0.83333vw;
        padding: 3.75vw; } }
    @media (min-width: 1920px) {
      .page-about__mission__item {
        border-radius: 16px;
        padding: 72px; } }
  @media (min-width: 1024px) {
    .page-about__mission {
      margin-bottom: 9.375vw; } }
  @media (min-width: 1920px) {
    .page-about__mission {
      margin-bottom: 180px; } }

.page-about__today {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-about__today__title {
      margin-bottom: 3.64583vw; } }
  @media (min-width: 1920px) {
    .page-about__today__title {
      margin-bottom: 70px; } }
  .page-about__today__content {
    position: relative; }
    @media (min-width: 1024px) {
      .page-about__today__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .page-about__today__item {
    width: 100%; }
    @media (min-width: 1024px) {
      .page-about__today__item {
        width: 21.45833vw; } }
    @media (min-width: 1920px) {
      .page-about__today__item {
        width: 412px; } }
  .page-about__today__image {
    margin: 5vmin 0; }
    .page-about__today__image img {
      width: 100%; }
    @media (min-width: 1024px) {
      .page-about__today__image {
        position: absolute;
        left: 50%;
        top: -5.52083vw;
        z-index: -1;
        margin: 0;
        width: 56.25vw;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%); } }
    @media (min-width: 1920px) {
      .page-about__today__image {
        top: -106px;
        width: 1080px; } }
  .page-about__today__text {
    margin: 0;
    font-weight: 400; }
    .page-about__today__text a:hover {
      color: #e30613; }
    .page-about__today__text + .page-about__today__text {
      margin-top: 5vmin; }
      @media (min-width: 1024px) {
        .page-about__today__text + .page-about__today__text {
          margin-top: 2.91667vw; } }
      @media (min-width: 1920px) {
        .page-about__today__text + .page-about__today__text {
          margin-top: 56px; } }
  @media (min-width: 1024px) {
    .page-about__today {
      margin-bottom: 13.28125vw; } }
  @media (min-width: 1920px) {
    .page-about__today {
      margin-bottom: 255px; } }

.page-about__growth {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-about__growth__title {
      margin-bottom: 3.33333vw; } }
  @media (min-width: 1920px) {
    .page-about__growth__title {
      margin-bottom: 64px; } }
  .page-about__growth__text {
    margin-bottom: 10vmin; }
    @media (min-width: 1024px) {
      .page-about__growth__text {
        margin-bottom: 3.125vw;
        max-width: 41.66667vw; } }
    @media (min-width: 1920px) {
      .page-about__growth__text {
        margin-bottom: 60px;
        max-width: 800px; } }
  .page-about__growth__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .page-about__growth__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-about__growth__row {
        margin: 0 -10px; } }
  @media (min-width: 1024px) {
    .page-about__growth__row--width-25 .page-about__growth__col {
      width: 25%; } }
  .page-about__growth__col {
    padding: 0 3.125vmin;
    width: 100%; }
    @media (max-width: 1023px) {
      .page-about__growth__col + .page-about__growth__col {
        margin-top: 5vmin; } }
    @media (min-width: 1024px) {
      .page-about__growth__col {
        padding: 0 0.52083vw;
        width: 33.33334%; } }
    @media (min-width: 1920px) {
      .page-about__growth__col {
        padding: 0 10px; } }
  .page-about__growth__item {
    position: relative;
    z-index: 5;
    border-radius: 2.5vmin;
    padding: 23.4375vmin 10vmin 15vmin;
    height: 100%;
    background: #f8f8f8; }
    .page-about__growth__item__image {
      position: absolute;
      right: 0;
      top: 0;
      z-index: -1;
      pointer-events: none; }
      .page-about__growth__item__image img {
        width: 26.5625vmin; }
        @media (min-width: 1024px) {
          .page-about__growth__item__image img {
            width: 7.91667vw; } }
        @media (min-width: 1920px) {
          .page-about__growth__item__image img {
            width: 152px; } }
    .page-about__growth__item__title {
      margin-top: 0; }
      @media (min-width: 1024px) {
        .page-about__growth__item__title {
          margin-bottom: 1.25vw;
          max-width: 17.44792vw; } }
      @media (min-width: 1920px) {
        .page-about__growth__item__title {
          margin-bottom: 24px;
          max-width: 335px; } }
    @media (min-width: 1024px) {
      .page-about__growth__item {
        border-radius: 0.83333vw;
        padding: 2.34375vw 7.91667vw 2.5vw 2.70833vw; } }
    @media (min-width: 1920px) {
      .page-about__growth__item {
        border-radius: 16px;
        padding: 45px 152px 48px 52px; } }
  .page-about__growth__item--dark {
    color: #fff;
    background: #000; }
  .page-about__growth__item--red {
    color: #fff;
    background: #e30613; }
  @media (min-width: 1024px) {
    .page-about__growth {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-about__growth {
      margin-bottom: 104px; } }

.page-about__team {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-about__team__title {
      margin-bottom: 2.5vw; } }
  @media (min-width: 1920px) {
    .page-about__team__title {
      margin-bottom: 48px; } }
  .page-about__team__heading {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-about__team__heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        margin-bottom: 3.33333vw; } }
    @media (min-width: 1920px) {
      .page-about__team__heading {
        margin-bottom: 64px; } }
  .page-about__team__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-about__team__text {
        margin-right: auto;
        margin-bottom: 0;
        max-width: 36.77083vw; } }
    @media (min-width: 1920px) {
      .page-about__team__text {
        max-width: 706px; } }
  .page-about__team__menu ul {
    text-align: center; }
    .page-about__team__menu ul li {
      display: inline-block;
      vertical-align: middle; }
      .page-about__team__menu ul li + li {
        margin-left: 5vmin; }
        @media (min-width: 1024px) {
          .page-about__team__menu ul li + li {
            margin-left: 1.25vw; } }
        @media (min-width: 1920px) {
          .page-about__team__menu ul li + li {
            margin-left: 24px; } }
      .page-about__team__menu ul li a {
        font-weight: 700;
        font-size: 6.25vmin;
        color: rgba(0, 0, 0, 0.5); }
        .page-about__team__menu ul li a:hover {
          color: #e30613; }
        .page-about__team__menu ul li a.is-active {
          color: #e30613; }
        @media (min-width: 1024px) {
          .page-about__team__menu ul li a {
            font-size: 1.04167vw; } }
        @media (min-width: 1920px) {
          .page-about__team__menu ul li a {
            font-size: 20px; } }
    @media (max-width: 1023px) {
      .page-about__team__menu ul {
        overflow: auto;
        margin: 0 -3.125vmin;
        padding: 0 3.125vmin;
        white-space: nowrap; }
        .page-about__team__menu ul::-webkit-scrollbar {
          display: none;
          width: 0;
          height: 0; } }
  .page-about__team__tab {
    display: none; }
    .page-about__team__tab.is-active {
      display: block;
      -webkit-animation: tabShow 0.4s;
              animation: tabShow 0.4s; }
  .page-about__team__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .page-about__team__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-about__team__row {
        margin: 0 -10px; } }
  .page-about__team__col {
    padding: 0 3.125vmin;
    width: 100%; }
    @media (max-width: 1023px) {
      .page-about__team__col + .page-about__team__col {
        margin-top: 7.5vmin; } }
    @media (min-width: 1024px) {
      .page-about__team__col {
        padding: 0 0.52083vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .page-about__team__col {
        padding: 0 10px; } }
  .page-about__team__item__image {
    overflow: hidden;
    margin-bottom: 5vmin;
    border-radius: 2.5vmin; }
    @media (min-width: 1024px) {
      .page-about__team__item__image {
        margin-bottom: 1.66667vw;
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-about__team__item__image {
        margin-bottom: 32px;
        border-radius: 16px; } }
  .page-about__team__item__name {
    margin-top: 0;
    margin-bottom: 5vmin; }
    .page-about__team__item__name span {
      display: block; }
    @media (min-width: 1024px) {
      .page-about__team__item__name {
        margin-bottom: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-about__team__item__name {
        margin-bottom: 16px; } }
  @media (min-width: 1024px) {
    .page-about__team {
      margin-bottom: 8.07292vw; } }
  @media (min-width: 1920px) {
    .page-about__team {
      margin-bottom: 155px; } }

.page-about__history {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-about__history__title {
      margin-bottom: 2.5vw; } }
  @media (min-width: 1920px) {
    .page-about__history__title {
      margin-bottom: 48px; } }
  .page-about__history__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 153px 0 196px; }
    @media (min-width: 1024px) {
      .page-about__history__container {
        padding: 0 7.96875vw 0 10.20833vw; } }
    @media (min-width: 1920px) {
      .page-about__history__container {
        padding: 0 153px 0 196px; } }
  .page-about__history__years {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 176px;
    width: 538px;
    font-weight: 700;
    font-size: 168px;
    line-height: 0.86;
    color: #e30613; }
    .page-about__history__years__container {
      position: relative;
      z-index: 5;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 300px 0;
      height: calc(100vh - 7.91667vw); }
      @media (min-width: 1024px) {
        .page-about__history__years__container {
          padding: 15.625vw 0; } }
      @media (min-width: 1920px) {
        .page-about__history__years__container {
          padding: 300px 0;
          height: calc(100vh - 152px); } }
      @media (min-height: 1200px) {
        .is-device-ipad .page-about__history__years__container {
          margin-top: -44.27083vw;
          margin-bottom: -44.27083vw; } }
    .page-about__history__years__circle {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 5;
      width: 538px;
      height: 538px;
      -webkit-transform: translate3d(-50%, -50%, 0) rotate(90deg);
              transform: translate3d(-50%, -50%, 0) rotate(90deg); }
      @media (min-width: 1024px) {
        .page-about__history__years__circle {
          width: 28.02083vw;
          height: 28.02083vw; } }
      @media (min-width: 1920px) {
        .page-about__history__years__circle {
          width: 538px;
          height: 538px; } }
    .page-about__history__years__progress {
      stroke-dasharray: 1687;
      stroke-dashoffset: 1687; }
    .page-about__history__years__left {
      position: relative;
      width: 200px;
      height: 145px;
      text-align: right; }
      .page-about__history__years__left__list {
        position: absolute; }
        .page-about__history__years__left__list__item {
          color: #f8f8f8;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          .page-about__history__years__left__list__item.is-active {
            color: #e30613; }
      @media (min-width: 1024px) {
        .page-about__history__years__left {
          width: 10.41667vw;
          height: 7.55208vw; } }
      @media (min-width: 1920px) {
        .page-about__history__years__left {
          width: 200px;
          height: 145px; } }
    .page-about__history__years__right {
      position: relative;
      width: 200px;
      height: 145px; }
      .page-about__history__years__right__list {
        position: absolute; }
        .page-about__history__years__right__list__item {
          color: #f8f8f8;
          -webkit-transition: 0.4s;
          -o-transition: 0.4s;
          transition: 0.4s; }
          .page-about__history__years__right__list__item.is-active {
            color: #e30613; }
      @media (min-width: 1024px) {
        .page-about__history__years__right {
          width: 10.41667vw;
          height: 7.55208vw; } }
      @media (min-width: 1920px) {
        .page-about__history__years__right {
          width: 200px;
          height: 145px; } }
    @media (min-width: 1024px) {
      .page-about__history__years {
        margin-right: 9.16667vw;
        width: 28.02083vw;
        font-size: 8.75vw; } }
    @media (min-width: 1920px) {
      .page-about__history__years {
        margin-right: 176px;
        width: 538px;
        font-size: 168px; } }
  .page-about__history__list {
    padding: 300px 0 230px;
    width: 100%; }
    .page-about__history__list__item {
      padding: 48px 0;
      color: #ccc;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .page-about__history__list__item__text {
        font-size: 20px;
        line-height: 1.6; }
        @media (min-width: 1024px) {
          .page-about__history__list__item__text {
            font-size: 1.04167vw; } }
        @media (min-width: 1920px) {
          .page-about__history__list__item__text {
            font-size: 20px; } }
      .page-about__history__list__item.is-active {
        color: #000; }
      .page-about__history__list__item + .page-about__history__list__item {
        border-top: 1px solid #e0e0e0; }
      @media (min-width: 1024px) {
        .page-about__history__list__item {
          padding: 2.5vw 0; } }
      @media (min-width: 1920px) {
        .page-about__history__list__item {
          padding: 48px 0; } }
    @media (min-width: 1024px) {
      .page-about__history__list {
        padding: 15.625vw 0 11.97917vw; } }
    @media (min-width: 1920px) {
      .page-about__history__list {
        padding: 300px 0 230px; } }
  .page-about__history__slider {
    position: relative;
    z-index: 5; }
    .page-about__history__slider .swiper-container {
      overflow: visible; }
    .page-about__history__slider .swiper-slide {
      width: 62.5vmin; }
    .page-about__history__slider__circle {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 5;
      width: 56.25vmin;
      height: 56.25vmin;
      -webkit-transform: translate3d(-50%, -50%, 0) rotate(90deg);
              transform: translate3d(-50%, -50%, 0) rotate(90deg);
      pointer-events: none; }
    .page-about__history__slider__progress {
      stroke-dasharray: 1687;
      stroke-dashoffset: 1687;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
    .page-about__history__slider__year {
      padding: 25vmin 0;
      font-weight: 700;
      font-size: 21.875vmin;
      line-height: 0.86;
      text-align: center;
      color: #f8f8f8;
      -webkit-transition: 0.4s;
      -o-transition: 0.4s;
      transition: 0.4s; }
      .swiper-slide-active .page-about__history__slider__year {
        color: #e30613; }
  .page-about__history__list-mobile__tab {
    display: none; }
    .page-about__history__list-mobile__tab.is-active {
      display: block;
      -webkit-animation: historyTab 0.6s;
              animation: historyTab 0.6s; }
  .page-about__history__list-mobile__item {
    font-size: 5vmin;
    line-height: 1.6; }
    .page-about__history__list-mobile__item + .page-about__history__list-mobile__item {
      margin-top: 7.5vmin;
      border-top: 1px solid #e0e0e0;
      padding-top: 7.5vmin; }
  @media (min-width: 1024px) {
    .page-about__history {
      margin-bottom: 5.20833vw; } }
  @media (min-width: 1920px) {
    .page-about__history {
      margin-bottom: 100px; } }

.page-about__show {
  margin-bottom: 15vmin;
  padding: 9.375vmin 0;
  color: #fff;
  background: #000; }
  .page-about__show__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (max-width: 1023px) {
      .page-about__show__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
  .page-about__show__slider {
    position: relative;
    margin-top: 7.5vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .page-about__show__slider {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: 0;
        margin-right: 8.4375vw;
        width: 42.29167vw; } }
    @media (min-width: 1920px) {
      .page-about__show__slider {
        margin-right: 162px;
        width: 812px; } }
  .page-about__show__image {
    overflow: hidden;
    border-radius: 5vmin; }
    @media (min-width: 1024px) {
      .page-about__show__image {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-about__show__image {
        border-radius: 16px; } }
  .page-about__show__prev, .page-about__show__next {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .page-about__show__prev.swiper-button-disabled, .page-about__show__next.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  @media (min-width: 1024px) {
    .page-about__show__prev {
      left: 1.25vw; } }
  @media (min-width: 1920px) {
    .page-about__show__prev {
      left: 24px; } }
  @media (min-width: 1024px) {
    .page-about__show__next {
      right: 1.25vw; } }
  @media (min-width: 1920px) {
    .page-about__show__next {
      right: 24px; } }
  .page-about__show__content {
    width: 100%; }
  @media (min-width: 1024px) {
    .page-about__show__title {
      margin-bottom: 1.66667vw; } }
  @media (min-width: 1920px) {
    .page-about__show__title {
      margin-bottom: 32px; } }
  .page-about__show__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-about__show__text {
        margin-bottom: 2.39583vw; } }
    @media (min-width: 1920px) {
      .page-about__show__text {
        margin-bottom: 46px; } }
  .page-about__show__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-about__show__logo__igro-mir img {
      width: 51.5625vmin; }
      @media (min-width: 1024px) {
        .page-about__show__logo__igro-mir img {
          width: 8.59375vw; } }
      @media (min-width: 1920px) {
        .page-about__show__logo__igro-mir img {
          width: 165px; } }
    .page-about__show__logo__buka {
      position: relative;
      margin-top: 1.25vmin;
      margin-left: 15.625vmin; }
      .page-about__show__logo__buka::before, .page-about__show__logo__buka::after {
        content: "";
        position: absolute;
        left: -13.125vmin;
        top: 50%;
        margin-top: -2.5vmin;
        width: 10.9375vmin;
        height: 2px;
        background: #fff;
        -webkit-transform: translateY(-50%) rotate(45deg);
            -ms-transform: translateY(-50%) rotate(45deg);
                transform: translateY(-50%) rotate(45deg); }
        @media (min-width: 1024px) {
          .page-about__show__logo__buka::before, .page-about__show__logo__buka::after {
            left: -3.125vw;
            margin-top: -0.41667vw;
            width: 1.82292vw;
            height: 2px; } }
        @media (min-width: 1920px) {
          .page-about__show__logo__buka::before, .page-about__show__logo__buka::after {
            left: -60px;
            margin-top: -8px;
            width: 35px; } }
      .page-about__show__logo__buka::after {
        -webkit-transform: translateY(-50%) rotate(135deg);
            -ms-transform: translateY(-50%) rotate(135deg);
                transform: translateY(-50%) rotate(135deg); }
      .page-about__show__logo__buka img {
        width: 26.25vmin; }
        @media (min-width: 1024px) {
          .page-about__show__logo__buka img {
            width: 4.375vw; } }
        @media (min-width: 1920px) {
          .page-about__show__logo__buka img {
            width: 84px; } }
      @media (min-width: 1024px) {
        .page-about__show__logo__buka {
          margin-top: 0.20833vw;
          margin-left: 4.21875vw; } }
      @media (min-width: 1920px) {
        .page-about__show__logo__buka {
          margin-top: 4px;
          margin-left: 81px; } }
  @media (min-width: 1024px) {
    .page-about__show {
      margin-bottom: 10.20833vw;
      padding: 5.41667vw 7.23958vw; } }
  @media (min-width: 1920px) {
    .page-about__show {
      margin-bottom: 196px;
      padding: 104px 139px; } }

.page-about__life {
  margin-bottom: 15vmin; }
  .page-about__life__content {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  @media (min-width: 1024px) {
    .page-about__life__title {
      margin-bottom: 3.33333vw; } }
  @media (min-width: 1920px) {
    .page-about__life__title {
      margin-bottom: 64px; } }
  .page-about__life__subtitle {
    margin-top: 0; }
    @media (min-width: 1024px) {
      .page-about__life__subtitle {
        max-width: 22.65625vw; } }
    @media (min-width: 1920px) {
      .page-about__life__subtitle {
        max-width: 435px; } }
  @media (min-width: 1024px) {
    .page-about__life__text {
      max-width: 22.65625vw; } }
  @media (min-width: 1920px) {
    .page-about__life__text {
      max-width: 435px; } }
  .page-about__life__nav {
    margin-top: auto; }
    @media (min-width: 1024px) {
      .page-about__life__nav {
        margin-bottom: 2.70833vw; } }
    @media (min-width: 1920px) {
      .page-about__life__nav {
        margin-bottom: 52px; } }
  .page-about__life__slider {
    position: relative;
    width: 100%; }
    @media (min-width: 1024px) {
      .page-about__life__slider .swiper-slide-active .page-about__life__image {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); } }
    @media (min-width: 1024px) {
      .page-about__life__slider {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-left: 5.15625vw;
        width: 38.4375vw; }
        .page-about__life__slider::before {
          content: "";
          position: absolute;
          right: 100%;
          top: 0;
          z-index: 5;
          width: 100vh;
          height: 100%;
          background: #fff; }
        .page-about__life__slider .swiper-container {
          overflow: visible; }
        .page-about__life__slider .swiper-wrapper {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
    @media (min-width: 1920px) {
      .page-about__life__slider {
        margin-left: 99px;
        width: 738px; } }
  .page-about__life__image {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s; }
    @media (min-width: 1024px) {
      .page-about__life__image {
        width: 38.4375vw;
        -webkit-transform: scale(0.85);
            -ms-transform: scale(0.85);
                transform: scale(0.85); } }
    @media (min-width: 1920px) {
      .page-about__life__image {
        width: 738px; } }
  .page-about__life__scrollbar {
    margin-top: 7.5vmin;
    width: 100%;
    height: 1px;
    background: #ccc; }
    .page-about__life__scrollbar .swiper-scrollbar-drag {
      height: 1px;
      background: #e30613; }
    @media (min-width: 1024px) {
      .page-about__life__scrollbar {
        margin-top: 2.65625vw; } }
    @media (min-width: 1920px) {
      .page-about__life__scrollbar {
        margin-top: 51px; } }
  @media (min-width: 1024px) {
    .page-about__life {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 7.03125vw; } }
  @media (min-width: 1920px) {
    .page-about__life {
      margin-bottom: 135px; } }

.page-about__pairs {
  margin-bottom: 15vmin; }
  .page-about__pairs__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .page-about__pairs__row {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-about__pairs__row {
        margin: 0 -10px; } }
  .page-about__pairs__col {
    padding: 0 3.125vmin;
    width: 100%; }
    @media (max-width: 1023px) {
      .page-about__pairs__col + .page-about__pairs__col {
        margin-top: 5vmin; } }
    @media (min-width: 1024px) {
      .page-about__pairs__col {
        padding: 0 0.52083vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .page-about__pairs__col {
        padding: 0 10px; } }
  .page-about__pairs__item {
    position: relative;
    z-index: 5;
    border-radius: 2.5vmin;
    padding: 23.4375vmin 10vmin 15vmin;
    height: 100%;
    color: #fff;
    background: #000; }
    .page-about__pairs__item__image {
      position: absolute;
      right: 0;
      top: 0;
      z-index: -1;
      pointer-events: none; }
      .page-about__pairs__item__image img {
        width: 37.5vmin; }
        @media (min-width: 1024px) {
          .page-about__pairs__item__image img {
            width: 19.53125vw; } }
        @media (min-width: 1920px) {
          .page-about__pairs__item__image img {
            width: 375px; } }
    @media (min-width: 1024px) {
      .page-about__pairs__item__content {
        max-width: 18.95833vw; } }
    @media (min-width: 1920px) {
      .page-about__pairs__item__content {
        max-width: 364px; } }
    .page-about__pairs__item__title {
      margin-top: 0; }
      @media (min-width: 1024px) {
        .page-about__pairs__item__title {
          margin: 0 0 32px;
          margin-bottom: 1.66667vw;
          max-width: 13.54167vw; } }
      @media (min-width: 1920px) {
        .page-about__pairs__item__title {
          margin-bottom: 32px;
          max-width: 260px; } }
    .page-about__pairs__item__text {
      margin-bottom: 7.5vmin; }
      @media (min-width: 1024px) {
        .page-about__pairs__item__text {
          margin-bottom: 2.5vw; } }
      @media (min-width: 1920px) {
        .page-about__pairs__item__text {
          margin-bottom: 48px; } }
    .page-about__pairs__item__button .button {
      width: 100%; }
      @media (min-width: 1024px) {
        .page-about__pairs__item__button .button {
          width: auto;
          min-width: 9.375vw; } }
      @media (min-width: 1920px) {
        .page-about__pairs__item__button .button {
          min-width: 180px; } }
    @media (min-width: 1024px) {
      .page-about__pairs__item {
        border-radius: 0.83333vw;
        padding: 3.75vw; } }
    @media (min-width: 1920px) {
      .page-about__pairs__item {
        border-radius: 16px;
        padding: 72px; } }
  @media (min-width: 1024px) {
    .page-about__pairs {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-about__pairs {
      margin-bottom: 104px; } }

.page-about .news {
  margin-bottom: 0; }

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

@keyframes historyTab {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.page-marketing__text {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-marketing__text {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-marketing__text {
      margin-bottom: 104px; } }

.page-marketing__benefits {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-marketing__benefits__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-marketing__benefits__title {
      margin-bottom: 50px; } }
  @media (min-width: 1024px) {
    .page-marketing__benefits__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -2.60417vw; } }
  @media (min-width: 1920px) {
    .page-marketing__benefits__list {
      margin: 0 -50px; } }
  .page-marketing__benefits__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 7.5vmin; }
    .page-marketing__benefits__item__icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 4.6875vmin; }
      .page-marketing__benefits__item__icon img {
        width: 14.375vmin; }
        @media (min-width: 1024px) {
          .page-marketing__benefits__item__icon img {
            width: 2.70833vw; } }
        @media (min-width: 1920px) {
          .page-marketing__benefits__item__icon img {
            width: 52px; } }
      @media (min-width: 1024px) {
        .page-marketing__benefits__item__icon {
          margin-right: 1.25vw; } }
      @media (min-width: 1920px) {
        .page-marketing__benefits__item__icon {
          margin-right: 24px; } }
    .page-marketing__benefits__item__content {
      width: 100%; }
      @media (min-width: 1024px) {
        .page-marketing__benefits__item__content {
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .page-marketing__benefits__item__content {
          line-height: 20px; } }
    .page-marketing__benefits__item__title {
      margin-bottom: 2.5vmin;
      font-weight: 700; }
      @media (min-width: 1024px) {
        .page-marketing__benefits__item__title {
          margin-bottom: 0.41667vw; } }
      @media (min-width: 1920px) {
        .page-marketing__benefits__item__title {
          margin-bottom: 8px; } }
    .page-marketing__benefits__item__text {
      font-size: 4.375vmin; }
      @media (min-width: 1024px) {
        .page-marketing__benefits__item__text {
          font-size: 0.72917vw; } }
      @media (min-width: 1920px) {
        .page-marketing__benefits__item__text {
          font-size: 14px; } }
    @media (min-width: 1024px) {
      .page-marketing__benefits__item {
        margin-bottom: 1.66667vw;
        padding: 0 2.60417vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .page-marketing__benefits__item {
        margin-bottom: 32px;
        padding: 0 50px; } }
  .page-marketing__benefits__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin 0; }
    @media (min-width: 1024px) {
      .page-marketing__benefits__row {
        margin: 2.60417vw -0.52083vw 0; } }
    @media (min-width: 1920px) {
      .page-marketing__benefits__row {
        margin: 50px -10px 0; } }
  .page-marketing__benefits__col {
    margin-bottom: 2.5vmin;
    padding: 0 3.125vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .page-marketing__benefits__col {
        margin-bottom: 0;
        padding: 0 0.52083vw;
        width: 50%; } }
    @media (min-width: 1920px) {
      .page-marketing__benefits__col {
        padding: 0 10px; } }
  .page-marketing__benefits__image img {
    border-radius: 2.5vmin; }
    @media (min-width: 1024px) {
      .page-marketing__benefits__image img {
        border-radius: 0.83333vw; } }
    @media (min-width: 1920px) {
      .page-marketing__benefits__image img {
        border-radius: 16px; } }
  @media (min-width: 1024px) {
    .page-marketing__benefits {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-marketing__benefits {
      margin-bottom: 104px; } }

.page-marketing__support {
  margin-bottom: 5.625vmin; }
  @media (min-width: 1024px) {
    .page-marketing__support__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-marketing__support__title {
      margin-bottom: 50px; } }
  .page-marketing__support__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    @media (min-width: 1024px) {
      .page-marketing__support__row {
        margin: 0 -3.125vw; } }
    @media (min-width: 1920px) {
      .page-marketing__support__row {
        margin: 0 -60px; } }
  .page-marketing__support__col {
    margin-bottom: 12.5vmin;
    padding: 0 3.125vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .page-marketing__support__col {
        margin-bottom: 3.125vw;
        padding: 0 3.125vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .page-marketing__support__col {
        margin-bottom: 60px;
        padding: 0 60px; } }
  .page-marketing__support__item__image {
    margin-bottom: 5vmin;
    text-align: center; }
    .page-marketing__support__item__image img {
      border-radius: 2.5vmin;
      width: 88.4375vmin; }
      @media (min-width: 1024px) {
        .page-marketing__support__item__image img {
          border-radius: 0.83333vw;
          width: 100%; } }
      @media (min-width: 1920px) {
        .page-marketing__support__item__image img {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .page-marketing__support__item__image {
        margin-bottom: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-marketing__support__item__image {
        margin-bottom: 20px; } }
  .page-marketing__support__item__title {
    margin-top: 0;
    text-align: center; }
  .page-marketing__support__item__text {
    text-align: justify; }
  @media (min-width: 1024px) {
    .page-marketing__support {
      margin-bottom: 3.85417vw; } }
  @media (min-width: 1920px) {
    .page-marketing__support {
      margin-bottom: 74px; } }

.page-marketing__work {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-marketing__work__title {
      margin-bottom: 2.60417vw;
      max-width: 62.13542vw; } }
  @media (min-width: 1920px) {
    .page-marketing__work__title {
      margin-bottom: 50px;
      max-width: 1193px; } }
  .page-marketing__work__slider {
    position: relative; }
    @media (min-width: 1024px) {
      .page-marketing__work__slider .swiper-container {
        overflow: visible; } }
    .page-marketing__work__slider .swiper-slide {
      width: auto;
      height: auto; }
  .page-marketing__work__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .page-marketing__work__item__head {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 5vmin; }
      @media (min-width: 1024px) {
        .page-marketing__work__item__head {
          margin-bottom: 1.25vw; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__head {
          margin-bottom: 24px; } }
    .page-marketing__work__item__number {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin: 0 5vmin 0 0;
      border: 1px solid #e30613;
      border-radius: 50%;
      width: 15.625vmin;
      height: 15.625vmin; }
      @media (min-width: 1024px) {
        .page-marketing__work__item__number {
          margin: 0 6.25vmin 0 0;
          width: 3.125vw;
          height: 3.125vw; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__number {
          margin: 0 20px 0 0;
          width: 60px;
          height: 60px; } }
    .page-marketing__work__item__title {
      margin: 0; }
    .page-marketing__work__item__text {
      margin-bottom: 5vmin; }
      @media (min-width: 1024px) {
        .page-marketing__work__item__text {
          margin-bottom: 1.25vw; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__text {
          margin-bottom: 24px; } }
    .page-marketing__work__item__list {
      margin-bottom: 5vmin; }
      .page-marketing__work__item__list ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
        @media (min-width: 1024px) {
          .page-marketing__work__item__list ul li {
            margin: 0 0 0.52083vw;
            padding-right: 1.14583vw;
            width: 50%; } }
        @media (min-width: 1920px) {
          .page-marketing__work__item__list ul li {
            margin: 0 0 10px;
            padding-right: 22px; } }
      @media (min-width: 1024px) {
        .page-marketing__work__item__list {
          margin-bottom: 0.72917vw; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__list {
          margin-bottom: 14px; } }
    @media (min-width: 1024px) {
      .page-marketing__work__item .styled-list ul li + li {
        margin-top: 0; } }
    .page-marketing__work__item__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: auto -3.125vmin -2.5vmin; }
      @media (min-width: 1024px) {
        .page-marketing__work__item__row {
          margin: auto -0.52083vw 0; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__row {
          margin: auto -10px 0; } }
    .page-marketing__work__item__col {
      margin-bottom: 2.5vmin;
      padding: 0 3.125vmin;
      width: 100%; }
      @media (min-width: 1024px) {
        .page-marketing__work__item__col {
          margin-bottom: 0;
          padding: 0 0.52083vw;
          width: 50%; } }
      @media (min-width: 1920px) {
        .page-marketing__work__item__col {
          padding: 0 10px; } }
    .page-marketing__work__item__image {
      text-align: center; }
    @media (min-width: 1024px) {
      .page-marketing__work__item {
        width: 39.58333vw;
        height: 100%; } }
    @media (min-width: 1920px) {
      .page-marketing__work__item {
        width: 760px; } }
  .page-marketing__work__next, .page-marketing__work__prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .page-marketing__work__next.swiper-button-disabled, .page-marketing__work__prev.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  .page-marketing__work__prev {
    left: 10vmin; }
    @media (min-width: 1024px) {
      .page-marketing__work__prev {
        left: 2.5vw; } }
    @media (min-width: 1920px) {
      .page-marketing__work__prev {
        left: 48px; } }
  .page-marketing__work__next {
    right: 10vmin; }
    @media (min-width: 1024px) {
      .page-marketing__work__next {
        right: 2.5vw; } }
    @media (min-width: 1920px) {
      .page-marketing__work__next {
        right: 48px; } }
  @media (min-width: 1024px) {
    .page-marketing__work {
      margin-bottom: 7.8125vw; } }
  @media (min-width: 1920px) {
    .page-marketing__work {
      margin-bottom: 150px; } }

.page-marketing .services {
  margin-bottom: 0; }

.page-localization__text {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-localization__text {
      margin-bottom: 5.41667vw;
      max-width: 41.66667vw; } }
  @media (min-width: 1920px) {
    .page-localization__text {
      margin-bottom: 104px;
      max-width: 800px; } }

.page-localization__best {
  margin-bottom: 2.5vmin; }
  @media (min-width: 1024px) {
    .page-localization__best__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-localization__best__title {
      margin-bottom: 50px; } }
  .page-localization__best__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -6.25vmin; }
    @media (min-width: 1024px) {
      .page-localization__best__row {
        margin: 0 -1.04167vw; } }
    @media (min-width: 1920px) {
      .page-localization__best__row {
        margin: 0 -20px; } }
  .page-localization__best__col {
    margin-bottom: 12.5vmin;
    padding: 0 6.25vmin;
    width: 100%; }
    .page-localization__best__col + .page-localization__best__col .page-localization__best__item::before {
      content: "";
      position: absolute;
      left: 0;
      top: -6.25vmin;
      width: 100%;
      height: 1px;
      background: #000; }
      @media (min-width: 1024px) {
        .page-localization__best__col + .page-localization__best__col .page-localization__best__item::before {
          left: -1.04167vw;
          top: 0;
          width: 1px;
          height: 100%; } }
      @media (min-width: 1920px) {
        .page-localization__best__col + .page-localization__best__col .page-localization__best__item::before {
          left: -20px; } }
    @media (min-width: 1024px) {
      .page-localization__best__col {
        margin-bottom: 0;
        padding: 0 1.04167vw;
        width: 25%; } }
    @media (min-width: 1920px) {
      .page-localization__best__col {
        padding: 0 20px; } }
  .page-localization__best__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%; }
    .page-localization__best__item__text {
      margin-top: auto; }
  @media (min-width: 1024px) {
    .page-localization__best {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-localization__best {
      margin-bottom: 104px; } }

.page-localization__studios {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-localization__studios__title {
      margin-bottom: 2.60417vw;
      max-width: 62.13542vw; } }
  @media (min-width: 1920px) {
    .page-localization__studios__title {
      margin-bottom: 50px;
      max-width: 1193px; } }
  @media (min-width: 1024px) {
    .page-localization__studios {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-localization__studios {
      margin-bottom: 104px; } }

.page-localization__room-tour {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-localization__room-tour__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-localization__room-tour__title {
      margin-bottom: 50px; } }
  .page-localization__room-tour__slider {
    position: relative; }
    @media (max-width: 1023px) {
      .page-localization__room-tour__slider {
        margin: 0 -6.25vmin; } }
  @media (max-width: 1023px) {
    .page-localization__room-tour__image img {
      height: 95.3125vmin;
      -o-object-fit: cover;
         object-fit: cover; } }
  .page-localization__room-tour__next, .page-localization__room-tour__prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
    .page-localization__room-tour__next.swiper-button-disabled, .page-localization__room-tour__prev.swiper-button-disabled {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }
  .page-localization__room-tour__prev {
    left: 10vmin; }
    @media (min-width: 1024px) {
      .page-localization__room-tour__prev {
        left: 2.5vw; } }
    @media (min-width: 1920px) {
      .page-localization__room-tour__prev {
        left: 48px; } }
  .page-localization__room-tour__next {
    right: 10vmin; }
    @media (min-width: 1024px) {
      .page-localization__room-tour__next {
        right: 2.5vw; } }
    @media (min-width: 1920px) {
      .page-localization__room-tour__next {
        right: 48px; } }
  @media (min-width: 1024px) {
    .page-localization__room-tour {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-localization__room-tour {
      margin-bottom: 104px; } }

.page-localization .services {
  margin-bottom: 0; }

.page-qa__kinds {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-qa__kinds__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-qa__kinds__title {
      margin-bottom: 50px; } }
  .page-qa__kinds__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1023px) {
      .page-qa__kinds__row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .page-qa__kinds__list {
    width: 100%; }
  .page-qa__kinds__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .page-qa__kinds__item__icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 4.6875vmin; }
      .page-qa__kinds__item__icon img {
        width: 14.375vmin; }
        @media (min-width: 1024px) {
          .page-qa__kinds__item__icon img {
            width: 2.70833vw; } }
        @media (min-width: 1920px) {
          .page-qa__kinds__item__icon img {
            width: 52px; } }
      @media (min-width: 1024px) {
        .page-qa__kinds__item__icon {
          margin-right: 1.25vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__item__icon {
          margin-right: 24px; } }
    .page-qa__kinds__item__content {
      width: 100%; }
      @media (min-width: 1024px) {
        .page-qa__kinds__item__content {
          line-height: 1.04167vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__item__content {
          line-height: 20px; } }
    .page-qa__kinds__item__title {
      margin-bottom: 2.5vmin;
      font-weight: 700; }
      @media (min-width: 1024px) {
        .page-qa__kinds__item__title {
          margin-bottom: 0.41667vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__item__title {
          margin-bottom: 8px; } }
    .page-qa__kinds__item__text {
      font-size: 4.375vmin; }
      @media (min-width: 1024px) {
        .page-qa__kinds__item__text {
          font-size: 0.72917vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__item__text {
          font-size: 14px; } }
    .page-qa__kinds__item + .page-qa__kinds__item {
      margin-top: 7.5vmin; }
      @media (min-width: 1024px) {
        .page-qa__kinds__item + .page-qa__kinds__item {
          margin-top: 1.66667vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__item + .page-qa__kinds__item {
          margin-top: 32px; } }
  .page-qa__kinds__image {
    margin-top: 7.5vmin; }
    .page-qa__kinds__image img {
      border-radius: 2.5vmin;
      width: 100%; }
      @media (min-width: 1024px) {
        .page-qa__kinds__image img {
          border-radius: 0.83333vw; } }
      @media (min-width: 1920px) {
        .page-qa__kinds__image img {
          border-radius: 16px; } }
    @media (min-width: 1024px) {
      .page-qa__kinds__image {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-top: 0;
        margin-left: 8.33333vw;
        width: 46.35417vw; } }
    @media (min-width: 1920px) {
      .page-qa__kinds__image {
        margin-left: 160px;
        width: 890px; } }
  @media (min-width: 1024px) {
    .page-qa__kinds {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-qa__kinds {
      margin-bottom: 104px; } }

.page-qa__technical {
  margin-bottom: 12.5vmin; }
  @media (min-width: 1024px) {
    .page-qa__technical__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-qa__technical__title {
      margin-bottom: 50px; } }
  .page-qa__technical__text {
    margin-bottom: 7.5vmin; }
    @media (min-width: 1024px) {
      .page-qa__technical__text {
        margin-bottom: 3.125vw;
        max-width: 41.66667vw; } }
    @media (min-width: 1920px) {
      .page-qa__technical__text {
        margin-bottom: 60px;
        max-width: 800px; } }
  .page-qa__technical__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -1.5625vmin 2.5vmin; }
    @media (min-width: 1024px) {
      .page-qa__technical__row {
        margin: 0 -0.52083vw 3.125vw; } }
    @media (min-width: 1920px) {
      .page-qa__technical__row {
        margin: 0 -10px 60px; } }
  .page-qa__technical__col {
    margin-bottom: 7.5vmin;
    padding: 0 1.5625vmin;
    width: 100%; }
    @media (min-width: 1024px) {
      .page-qa__technical__col {
        margin-bottom: 0;
        padding: 0 0.52083vw;
        width: 33.33334%; } }
    @media (min-width: 1920px) {
      .page-qa__technical__col {
        padding: 0 10px; } }
  .page-qa__technical__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6.25vmin;
    height: 100%;
    background: #f2f2f2; }
    .page-qa__technical__item__image {
      margin-bottom: 5vmin; }
      .page-qa__technical__item__image img {
        width: 16.25vmin; }
        @media (min-width: 1024px) {
          .page-qa__technical__item__image img {
            width: 2.70833vw; } }
        @media (min-width: 1920px) {
          .page-qa__technical__item__image img {
            width: 52px; } }
      @media (min-width: 1024px) {
        .page-qa__technical__item__image {
          margin-bottom: 1.66667vw; } }
      @media (min-width: 1920px) {
        .page-qa__technical__item__image {
          margin-bottom: 32px; } }
    @media (max-width: 1023px) {
      .page-qa__technical__item__list ul {
        line-height: 4.375vmin;
        font-weight: bold; }
        .page-qa__technical__item__list ul li::before {
          top: 0.9375vmin; } }
    @media (min-width: 1024px) {
      .page-qa__technical__item {
        padding: 1.04167vw; } }
    @media (min-width: 1920px) {
      .page-qa__technical__item {
        padding: 20px; } }
  .page-qa__technical__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -3.125vmin; }
    .page-qa__technical__inner__col {
      margin-bottom: 2.5vmin;
      padding: 0 3.125vmin;
      width: 100%; }
      @media (min-width: 1024px) {
        .page-qa__technical__inner__col {
          margin-bottom: 0;
          padding: 0 0.52083vw;
          width: 50%; } }
      @media (min-width: 1920px) {
        .page-qa__technical__inner__col {
          padding: 0 10px; } }
    @media (min-width: 1024px) {
      .page-qa__technical__inner {
        margin: 0 -0.52083vw; } }
    @media (min-width: 1920px) {
      .page-qa__technical__inner {
        margin: 0 -10px; } }
  @media (min-width: 1024px) {
    .page-qa__technical {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-qa__technical {
      margin-bottom: 104px; } }

.page-qa .services {
  margin-bottom: 0; }

.page-porting__text {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-porting__text {
      margin-bottom: 5.41667vw;
      max-width: 41.66667vw; } }
  @media (min-width: 1920px) {
    .page-porting__text {
      margin-bottom: 104px;
      max-width: 800px; } }

.page-porting__include {
  margin-bottom: 15vmin; }
  @media (min-width: 1024px) {
    .page-porting__include__title {
      margin-bottom: 2.60417vw; } }
  @media (min-width: 1920px) {
    .page-porting__include__title {
      margin-bottom: 50px; } }
  .page-porting__include__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1023px) {
      .page-porting__include__row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  @media (min-width: 1024px) {
    .page-porting__include__list {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 3.125vw;
      width: 18.22917vw; } }
  @media (min-width: 1920px) {
    .page-porting__include__list {
      margin-right: 60px;
      width: 350px; } }
  .page-porting__include__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 7.5vmin; }
    .page-porting__include__item__icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      margin-right: 4.6875vmin; }
      .page-porting__include__item__icon img {
        width: 14.375vmin; }
        @media (min-width: 1024px) {
          .page-porting__include__item__icon img {
            width: 2.70833vw; } }
        @media (min-width: 1920px) {
          .page-porting__include__item__icon img {
            width: 52px; } }
      @media (min-width: 1024px) {
        .page-porting__include__item__icon {
          margin-right: 1.25vw; } }
      @media (min-width: 1920px) {
        .page-porting__include__item__icon {
          margin-right: 24px; } }
    .page-porting__include__item__text {
      margin: 0; }
    @media (min-width: 1024px) {
      .page-porting__include__item {
        margin-bottom: 1.66667vw; } }
    @media (min-width: 1920px) {
      .page-porting__include__item {
        margin-bottom: 32px; } }
  .page-porting__include__text {
    max-width: 800px;
    width: 100%; }
  @media (min-width: 1024px) {
    .page-porting__include {
      margin-bottom: 5.41667vw; } }
  @media (min-width: 1920px) {
    .page-porting__include {
      margin-bottom: 104px; } }

.page-porting .services {
  margin-bottom: 0; }

  
.header {
  z-index: 105;
}
.header__mobile {
  position: fixed;
  bottom: 0;
  z-index: 90;
  height: auto;
}

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