<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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);
* =&gt; (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* =&gt; (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);
* =&gt; (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);
* =&gt; (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("&lt;svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"&gt;...&lt;/svg&gt;");
*/
/**
* 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
*/
@import url("https://fonts.googleapis.com/css2?family=Piazzolla:ital,wght@0,400;0,500;0,900;1,300;1,400;1,500&amp;display=swap");

.sprite-map-russia {
  display: inline-block;
  vertical-align: middle;
  width: 394px;
  height: 293px;
  background: url("/borders/images/sprites.png") 0px 0px/394px 293px no-repeat;
}

@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .sprite-map-russia {
    background-image: url("/borders/images/sprites@2x.png");
  }
}

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

@font-face {
  src: url("/borders/fonts/ProximaNova-Semibold.woff2") format("woff2"), url("/borders/fonts/ProximaNova-Semibold.woff") format("woff");
  font-family: "Proxima Nova";
  font-weight: 600;
  font-style: normal;
}

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

@font-face {
  src: url("/borders/fonts/ProximaNova-Black.woff2") format("woff2"), url("/borders/fonts/ProximaNova-Black.woff") format("woff");
  font-family: "Proxima Nova";
  font-weight: 900;
  font-style: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tippy-box[data-animation=shift-away][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=top] {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=bottom] {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=left] {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

.tippy-box[data-animation=shift-away][data-state=hidden][data-placement^=right] {
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
}

/**
Ion.RangeSlider, 2.3.1
© Denis Ineshin, 2010 - 2019, IonDen.com
Build date: 2019-12-19 16:51:02
*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}

.irs-handle {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}

.irs-handle.type_last {
  z-index: 2;
}

.irs-min,
.irs-max {
  position: absolute;
  display: block;
  cursor: default;
}

.irs-min {
  left: 0;
}

.irs-max {
  right: 0;
}

.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}

.irs-grid-pol.small {
  height: 4px;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs--flat {
  height: 40px;
}

.irs--flat.irs-with-grid {
  height: 60px;
}

.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px;
}

.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}

.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}

.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}

.irs--flat .irs-handle &gt; i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}

.irs--flat .irs-handle.state_hover &gt; i:first-child,
.irs--flat .irs-handle:hover &gt; i:first-child {
  background-color: #a43540;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  color: white;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}

.irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}

.irs--flat .irs-grid-text {
  color: #999;
}

.irs--big {
  height: 55px;
}

.irs--big.irs-with-grid {
  height: 70px;
}

.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ddd), color-stop(150%, white));
  background: -o-linear-gradient(top, #ddd -50%, white 150%);
  background: linear-gradient(to bottom, #ddd -50%, white 150%);
  border: 1px solid #ccc;
  border-radius: 12px;
}

.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #428bca), to(#b9d4ec));
  background: -o-linear-gradient(top, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}

.irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px;
}

.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}

.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #B4B9BE), to(white));
  background: -o-linear-gradient(top, white 0%, #B4B9BE 30%, white 100%);
  background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  border-radius: 30px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #919BA5), to(white));
  background: -o-linear-gradient(top, white 0%, #919BA5 30%, white 100%);
  background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
}

.irs--big .irs-min,
.irs--big .irs-max {
  top: 0;
  padding: 1px 5px;
  color: white;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px;
}

.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  color: white;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
  background: -o-linear-gradient(top, #428bca 0%, #3071a9 100%);
  background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  border-radius: 3px;
}

.irs--big .irs-grid-pol {
  background-color: #428bca;
}

.irs--big .irs-grid-text {
  color: #428bca;
}

.irs--modern {
  height: 55px;
}

.irs--modern.irs-with-grid {
  height: 55px;
}

.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0e4ea), to(#d1d6e0));
  background: -o-linear-gradient(top, #e0e4ea 0%, #d1d6e0 100%);
  background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px;
}

.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: -webkit-gradient(linear, left top, left bottom, from(#20b426), to(#18891d));
  background: -o-linear-gradient(top, #20b426 0%, #18891d 100%);
  background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}

.irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px;
}

.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}

.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle &gt; i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.irs--modern .irs-handle &gt; i:nth-child(2) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e6e6));
  background: -o-linear-gradient(top, white 0%, #e9e6e6 100%);
  background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
  border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle &gt; i:nth-child(3) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #919ba5), to(#ffffff));
  background: -o-linear-gradient(top, #ffffff 0%, #919ba5 30%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}

.irs--modern .irs-handle.state_hover &gt; i:nth-child(1),
.irs--modern .irs-handle:hover &gt; i:nth-child(1) {
  border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover &gt; i:nth-child(3),
.irs--modern .irs-handle:hover &gt; i:nth-child(3) {
  border-color: #48536a;
}

.irs--modern .irs-min,
.irs--modern .irs-max {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: white;
  background-color: #d1d6e0;
  border-radius: 5px;
}

.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: white;
  border-radius: 5px;
}

.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}

.irs--modern .irs-grid {
  height: 25px;
}

.irs--modern .irs-grid-pol {
  background-color: #dedede;
}

.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}

.irs--sharp.irs-with-grid {
  height: 57px;
}

.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: black;
  border-radius: 2px;
}

.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}

.irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px;
}

.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}

.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}

.irs--sharp .irs-handle &gt; i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
  background-color: black;
}

.irs--sharp .irs-handle.state_hover &gt; i:first-child,
.irs--sharp .irs-handle:hover &gt; i:first-child {
  border-top-color: black;
}

.irs--sharp .irs-min,
.irs--sharp .irs-max {
  color: white;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  border-radius: 2px;
}

.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: white;
  border-radius: 2px;
}

.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}

.irs--sharp .irs-grid {
  height: 25px;
}

.irs--sharp .irs-grid-pol {
  background-color: #dedede;
}

.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--round {
  height: 50px;
}

.irs--round.irs-with-grid {
  height: 65px;
}

.irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px;
}

.irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa;
}

.irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}

.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: white;
  border-radius: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #f0f6ff;
}

.irs--round .irs-min,
.irs--round .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: white;
  border-radius: 4px;
}

.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa;
}
.align-center {
  text-align: center;
}

.irs--round .irs-grid {
  height: 25px;
}

.irs--round .irs-grid-pol {
  background-color: #dedede;
}

.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}

.irs--square {
  height: 50px;
}

.irs--square.irs-with-grid {
  height: 60px;
}

.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}

.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: black;
}

.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}

.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid black;
  background-color: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}

.irs--square .irs-min,
.irs--square .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}

.irs--square .irs-from,
.irs--square .irs-to,
.irs--square .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: black;
  color: white;
}

.irs--square .irs-grid {
  height: 25px;
}

.irs--square .irs-grid-pol {
  background-color: #dedede;
}

.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}

.lazyBlure {
  width: 100%;
}

.lazy-blur {
  position: relative;
  overflow: hidden;
}

.lazy-blur img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lazy-blur__imgL {
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.lazy-blur__imgS {
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.done &gt; .lazy-blur__imgL {
  opacity: 1;
}

.done &gt; .lazy-blur__imgS {
  opacity: 0;
}

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

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Piazzolla", serif;
  font-weight: 400;
  font-size: 0.83333vw;
  color: #171717;
  background: #fff;
  scroll-behavior: smooth;
}

html.has-cursor,
html.has-cursor * {
  cursor: none !important;
}

html.is-lock-scroll,
html.is-lock-scroll body {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
  text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

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

p {
  margin: 0;
}

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

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

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

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0;
}

figure img,
picture img {
  width: 100%;
}

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

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

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

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

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

.lazy-blur video {
  height: auto;
}

iframe {
  display: block;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100%;
  color: currentColor;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

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

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 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);
}

.lazy-blur {
  width: 100%;
  height: 100%;
}

.lazy-blur img {
  -o-object-fit: cover;
  object-fit: cover;
}

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

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

.is-hide {
  opacity: 0;
}

@media (max-width: 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 */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2100;
  border-bottom: 1px solid #d0d0d0;
  width: 100vw;
  -webkit-transition: border-color 1.5s, background-color 1.5s, opacity 1.5s;
  -o-transition: border-color 1.5s, background-color 1.5s, opacity 1.5s;
  transition: border-color 1.5s, background-color 1.5s, opacity 1.5s;
}

.header &gt; .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;
  padding: 0 9.42708vw 0 7.55208vw;
  height: 3.64583vw;
  max-width: 100%;
}

@media (max-width: 1366px) {
  .header &gt; .container {
    padding: 0 7.9795vw 0 12.22548vw;
    height: 3.51391vw;
  }
}

@media (max-width: 1023px) {
  .header &gt; .container {
    padding: 0;
    height: 14.44444vmin;
  }
}

.header__logo {
  width: 10.0625vw;
  height: 1.875vw;
  font-size: 16px;
  font-weight: bold;
  color: black;
  opacity: 1;
  -webkit-transition: color 0.4s, opacity 0.4s;
  -o-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
}

.is-menu-opened .header__logo {
  opacity: 0;
}

.has-hover .header__logo:not([disabled]):hover {
  color: #27c34a;
  opacity: 1;
}

@media (max-width: 1366px) {
  .header__logo {
    top: 0.43924vw;
    width: 4.83163vw;
    height: 2.19619vw;
  }
}

@media (max-width: 1023px) {
  .header__logo {
    left: 2.22222vmin;
    top: 0;
    width: 24.44444vmin;
    height: auto;
    margin-left: 5vmin;
    color: #979797;
    font-size: 3vmin;
  }
}

.header__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: auto;
  margin-left: 3.64583vw;
  padding-left: 3.64583vw;
  height: 100%;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 900;
  font-size: 1.14583vw;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transition: color 0.4s, opacity 0.4s;
  -o-transition: color 0.4s, opacity 0.4s;
  transition: color 0.4s, opacity 0.4s;
}

.header__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1px;
  height: 1.66667vw;
  background: #d0d0d0;
}

.title-active .header__title {
  opacity: 1;
}

.is-menu-opened .header__title {
  opacity: 0;
}

.has-hover .header__title:not([disabled]):hover {
  color: #27c34a;
}

@media (max-width: 1366px) {
  .header__title {
    margin-left: 3.29429vw;
    padding-top: 0.87848vw;
    padding-left: 4.02635vw;
    font-size: 1.46413vw;
  }
}

@media (max-width: 1023px) {
  .header__title {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0.27778vmin 0 0 1.11111vmin;
    padding: 0;
    font-size: 4.51111vmin;
    color: #27c34a;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .header__title::before {
    display: none;
  }
}

.header__burger {
  z-index: 100;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 5vmin;
  width: 8.88889vmin;
  color: #979797;
}

.header__burger span {
  display: block;
  margin: 1.66667vmin 0;
  width: 8.88889vmin;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.header__burger.is-active span:first-child {
  -webkit-transform: translate(0, 2.77778vmin) rotate(-45deg);
  -ms-transform: translate(0, 2.77778vmin) rotate(-45deg);
  transform: translate(0, 2.77778vmin) rotate(-45deg);
}

.header__burger.is-active span:last-child {
  -webkit-transform: translate(0, -1.11111vmin) rotate(45deg);
  -ms-transform: translate(0, -1.11111vmin) rotate(45deg);
  transform: translate(0, -1.11111vmin) rotate(45deg);
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.header-social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-social__item {
  display: block;
  margin-right: 0.41667vw;
  width: 1.875vw;
  height: 1.875vw;
  color: black;
  font-size: 18px
}

.header-social__item:last-child {
  margin-right: 0;
}

.has-hover .header-social__item:not([disabled]):hover {
  color: #27c34a;
}

@media (max-width: 1366px) {
  .header-social__item {
    margin-right: 1.02489vw;
    width: 2.48902vw;
    height: 2.48902vw;
  }
}

@media (max-width: 1366px) {
  .header-social {
    top: 0.43924vw;
  }
}

@media (max-width: 1023px) {
  .header-social {
    display: none;
  }
}

.header.is-active {
  background-color: #fff;
}

.header.is-menu-opened {
  border-bottom-color: transparent;
  background: #fff;
}

@media (max-width: 1023px) {
  .header {
    opacity: 0;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }

  .header.is-active-m {
    opacity: 1;
  }

  .header.is-lead-m {
    opacity: 1;
  }

  .header.is-menu-opened {
    background-color: #fff;
  }

  .header.is-comics-m {
    opacity: 0;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  padding: 20px 30px;
  width: 100%;
}

.footer__developer {
  margin-left: auto;
  font-size: 12px;
  line-height: 16px;
}

.footer__copy {
  font-size: 12px;
  line-height: 16px;
}

.menu {
  position: relative;
  left: 0;
  top: 0;
  z-index: 10;
  font-style: italic;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1.25vw;
  padding-right: 6.25vw;
  letter-spacing: 0.07em;
  text-align: right;
}

.menu__item.is-active .menu__link {
  color: #27c34a;
}

.menu__item--sub {
  margin-bottom: 0;
}

.menu__item--sub .menu__link {
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 0.20833vw;
}

@media (max-width: 1366px) {
  .menu__item {
    margin-bottom: 1.31772vw;
    padding-right: 3.95315vw;
  }
}

.menu__link {
  display: inline-block;
  padding-left: 1.04167vw;
  line-height: 0.83333vw;
  color: #171717;
}

.has-hover .menu__link:not([disabled]):hover {
  color: #27c34a;
}

@media (max-width: 1366px) {
  .menu__link {
    padding-left: 2.19619vw;
    font-size: 1.02489vw;
    line-height: 1.1713vw;
  }
}

.menu-sub {
  margin-top: 1.04167vw;
  padding-left: 6.77083vw;
}

.menu-sub__item {
  margin-bottom: 1.14583vw;
  text-align: left;
}

.menu-sub__item.is-active .menu-sub__link {
  color: #27c34a;
}

@media (max-width: 1366px) {
  .menu-sub__item {
    margin-bottom: 1.39092vw;
  }
}

.menu-sub__link {
  display: block;
  color: #d0d0d0;
}

.has-hover .menu-sub__link:not([disabled]):hover {
  color: #27c34a;
}

@media (max-width: 1366px) {
  .menu-sub__link {
    font-size: 1.02489vw;
    line-height: 1.1713vw;
  }
}

@media (max-width: 1366px) {
  .menu-sub {
    padding-left: 7.32064vw;
  }
}

.menu-mobile {
  position: fixed;
  left: 0;
  top: 14.44444vmin;
  width: 100%;
  height: calc(100% - 14.44444vmin);
  font-style: italic;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  pointer-events: none;
}

.menu-mobile .container {
  padding-top: 3.33333vmin;
  max-width: 81.11111vmin;
}

.menu-mobile__item {
  font-size: 5.55556vmin;
  line-height: 4.44444vmin;
}

.menu-mobile__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 2.22222vmin;
  border: 1px solid #171717;
  padding: 0 3.88889vmin;
  height: 13.33333vmin;
  color: #979797;
}

.menu-mobile-sub__link {
  position: relative;
  border: 1px solid #89f977;
  color: #171717;
}

.menu-mobile-sub__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 13.33333vmin;
}

.menu-mobile-sub__image .lazy-blur img {
  left: auto;
  right: 0;
  width: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.menu-mobile-social {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 36.94444vmin;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(27.16%, #f3f3f3));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #f3f3f3 27.16%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #f3f3f3 27.16%);
}

.menu-mobile-social__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  max-width: 81.11111vmin;
}

.menu-mobile-social__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;
  width: 12.22222vmin;
  height: 12.22222vmin;
  color: #171717;
}

.has-hover .menu-mobile-social__item:not([disabled]):hover {
  color: #27c34a;
}

.is-menu-opened .menu-mobile {
  overflow-y: scroll;
  opacity: 1;
  pointer-events: all;
}

.menu.is-active {
  opacity: 1;
}

.note {
  position: relative;
  margin: 0 auto 3.75vw 0;
  border: 1px solid #27c34a;
  border-radius: 14px;
  padding: 1.875vw 5.72917vw 1.875vw 1.875vw;
  max-width: 40.3125vw;
}

.note__icon {
  position: absolute;
  right: 1.71875vw;
  top: 1.35417vw;
  width: 2.5vw;
  height: 2.5vw;
}

@media (max-width: 1366px) {
  .note__icon {
    right: 2.41581vw;
    top: 1.90337vw;
    width: 3.51391vw;
    height: 3.51391vw;
  }
}

@media (max-width: 1023px) {
  .note__icon {
    display: none;
  }
}

.note__text {
  font-family: "Proxima Nova", sans-serif;
  font-size: 0.83333vw;
  line-height: 1.35417vw;
  color: #979797;
}

@media (max-width: 1366px) {
  .note__text {
    font-size: 1.1713vw;
    line-height: 1.90337vw;
  }
}

@media (max-width: 1023px) {
  .note__text {
    font-size: 4.44444vmin;
    line-height: 7.36111vmin;
  }
}

.note__link {
  display: block;
  font-family: "Proxima Nova", sans-serif;
  font-size: 0.83333vw;
  line-height: 1.35417vw;
  text-decoration: underline;
  color: #27c34a;
}

.note__link i {
  font-style: normal;
}

.note__link--text {
  text-decoration: none;
  color: #171717;
  cursor: default;
}

.has-hover .note__link:not([disabled]):hover {
  color: #171717;
}

@media (max-width: 1366px) {
  .note__link {
    font-size: 1.1713vw;
    line-height: 1.90337vw;
  }
}

@media (max-width: 1023px) {
  .note__link {
    font-size: 4.44444vmin;
    line-height: 7.22222vmin;
  }
}

@media (max-width: 1366px) {
  .note {
    margin: 4.68521vw auto 5.27086vw 0;
    padding: 2.63543vw 8.05271vw 2.63543vw 2.63543vw;
    max-width: 56.66179vw;
  }
}

@media (max-width: 1023px) {
  .note {
    margin: 0 0 12.22222vmin 0;
    border-color: #89f977;
    border-right: none;
    border-left: none;
    border-radius: 0;
    padding: 7.77778vmin 0;
    max-width: 100%;
  }
}

[data-tippy-content] {
  color: #27c34a;
  cursor: help;
}

.tippy-box[data-theme~="green"],
.tippy-box[data-theme~="green-full"] {
  border-radius: 14px;
  padding: 0.41667vw 0.83333vw;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-size: 0.83333vw;
  color: #171717;
  background-color: #89f977;
}

@media (max-width: 1366px) {
  .tippy-box[data-theme~="green"],
  .tippy-box[data-theme~="green-full"] {
    padding: 0.73206vw 1.75695vw;
    font-size: 1.02489vw;
  }
}

@media (max-width: 1023px) {
  .tippy-box[data-theme~="green"],
  .tippy-box[data-theme~="green-full"] {
    padding: 2.22222vmin 15vmin 2.22222vmin 3.88889vmin;
    max-width: 94.44444vmin !important;
    -webkit-box-shadow: 0 1px 4px 0 #89f977;
    box-shadow: 0 1px 4px 0 #89f977;
    font-size: 4.44444vmin;
    line-height: 5.55556vmin;
    color: #89f977;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTQiIGhlaWdodD0iNTIiIHZpZXdCb3g9IjAgMCA1NCA1MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjciIGN5PSIyNiIgcj0iMTEiIHN0cm9rZT0iIzk3OTc5NyIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0yNCAyM0wyNyAyNkwzMCAyMyIgc3Ryb2tlPSIjOTc5Nzk3IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMzAgMjlMMjcgMjZMMjQgMjkiIHN0cm9rZT0iIzk3OTc5NyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
    background-position: 100% 0;
    background-size: 15vmin;
    background-repeat: no-repeat;
    background-color: #171717;
  }
}

.tippy-box[data-theme~="green-full"] {
  padding: 1.45833vw 1.14583vw;
}

@media (max-width: 1366px) {
  .tippy-box[data-theme~="green-full"] {
    max-width: 35.87116vw !important;
  }
}

@media (max-width: 1023px) {
  .tippy-box[data-theme~="green-full"] {
    padding: 2.22222vmin 15vmin 2.22222vmin 3.88889vmin;
    max-width: 94.44444vmin !important;
  }
}

.skeleton {
  position: relative;
  margin: 5.20833vw 0 5.20833vw -0.41667vw;
  width: 100%;
}

.skeleton::before {
  content: "";
  position: absolute;
  left: 1.14583vw;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background: #d0d0d0;
}

@media (max-width: 1023px) {
  .skeleton::before {
    display: none;
  }
}

.skeleton__head {
  border-bottom: 1px solid #d0d0d0;
  padding: 0.83333vw 0 0 2.5vw;
  max-width: 14.21875vw;
}

@media (max-width: 1023px) {
  .skeleton__head {
    border: none;
    padding: 0;
    max-width: 100%;
  }
}

.skeleton__main {
  margin-bottom: 0;
  padding-left: 1.14583vw;
}

@media (max-width: 1023px) {
  .skeleton__main {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 5.55556vmin;
    padding-left: 0;
    width: 100%;
  }
}

.skeleton__image .lazy-blur {
  width: 100%;
  height: 100%;
}

.skeleton__image .lazy-blur img {
  -o-object-fit: cover;
  object-fit: cover;
}

.skeleton__foot {
  border-top: 1px solid #d0d0d0;
  padding: 1.14583vw 0 0.20833vw 2.5vw;
}

@media (max-width: 1023px) {
  .skeleton__foot {
    margin-right: -2.22222vmin;
    border: none;
    padding: 0;
  }
}

.skeleton__text {
  font-family: "Piazzolla", serif;
  font-style: italic;
  font-size: 0.9375vw;
  line-height: 1.35417vw;
}

@media (max-width: 1023px) {
  .skeleton__text {
    font-size: 4.16667vmin;
    line-height: 7.22222vmin;
  }
}

.skeleton__side {
  position: absolute;
  right: 100%;
  bottom: 1.45833vw;
  width: 15.9375vw;
  height: 14.6875vw;
  -webkit-transform: translateX(6.25vw);
  -ms-transform: translateX(6.25vw);
  transform: translateX(6.25vw);
}

@media (max-width: 1023px) {
  .skeleton__side {
    display: none;
  }
}

@media (max-width: 1366px) {
  .skeleton {
    margin: 5.20833vw 0 5.20833vw 2.48902vw;
  }
}

@media (max-width: 1023px) {
  .skeleton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 13.33333vmin 0;
  }
}

.top {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 30vh;
  background-color: transparent;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.top__title {
  position: relative;
  left: -0.78125vw;
  margin: 0;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 900;
  font-size: 6.6875vw;
  line-height: 0;
  color: #fff;
  opacity: 0;
  -webkit-transition: color 1.5s, -webkit-transform 1s;
  transition: color 1.5s, -webkit-transform 1s;
  -o-transition: color 1.5s, transform 1s;
  transition: color 1.5s, transform 1s;
  transition: color 1.5s, transform 1s, -webkit-transform 1s;
}

@media (max-width: 1366px) {
  .top__title {
    font-size: 11.54173vw;
  }
}

@media (max-width: 1023px) {
  .top__title {
    margin-top: 1.66667vmin;
    font-size: 15.44444vmin;
    color: #fff;
    opacity: 1;
  }
}

.top.is-active .top__title {
  color: #171717;
  opacity: 1;
  -webkit-transform: translateY(-5.20833vw);
  -ms-transform: translateY(-5.20833vw);
  transform: translateY(-5.20833vw);
}

@media (max-width: 1023px) {
  .top.is-active {
    opacity: 0;
  }
}

.top.is-lead-end {
  background: #fff;
}

.hero {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background: #fff;
}

.hero .container {
  max-width: 61.04167vw;
}

@media (max-width: 1366px) {
  .hero .container {
    max-width: 65.8858vw;
  }
}

@media (max-width: 1023px) {
  .hero .container {
    padding: 0 2.22222vmin;
    max-width: 100%;
  }
}

.hero__back {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

@media (max-width: 1023px) {
  .hero__back--landscape {
    display: none;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .hero__back--landscape {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .hero__back:not(.hero__back--landscape) {
    display: block;
    opacity: 1;
  }
}

@media (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .hero__back:not(.hero__back--landscape) {
    display: block;
    opacity: 1;
  }
}

.hero__title {
  position: relative;
  left: -0.78125vw;
  margin: 0;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 900;
  font-size: 9.6875vw;
  line-height: 0;
  color: #fff;
  opacity: 1;
  -webkit-transition: color 1.5s, -webkit-transform 1s;
  transition: color 1.5s, -webkit-transform 1s;
  -o-transition: color 1.5s, transform 1s;
  transition: color 1.5s, transform 1s;
  transition: color 1.5s, transform 1s, -webkit-transform 1s;
}

@media (max-width: 1366px) {
  .hero__title {
    font-size: 10.54173vw;
  }
}

@media (max-width: 1023px) {
  .hero__title {
    margin-top: 1.66667vmin;
    font-size: 14.44444vmin;
    color: #fff;
    opacity: 1;
  }
}

.hero__top {
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 30vh;
  background-color: transparent;
  -webkit-transition: background-color 0.5s, opacity 0.5s;
  -o-transition: background-color 0.5s, opacity 0.5s;
  transition: background-color 0.5s, opacity 0.5s;
}

@media (max-width: 1023px) {
  .hero__top {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
  }
}

.hero__subtitle {
  margin: 0 0 2.60417vw 0;
  font-weight: 400;
  font-style: italic;
  font-size: 1.875vw;
  opacity: 0;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@media (max-width: 1366px) {
  .hero__subtitle {
    margin: 0 0 3.66032vw 0;
    font-size: 1.61054vw;
  }
}

@media (max-width: 1023px) {
  .hero__subtitle {
    margin: -7.22222vmin 0 8.88889vmin 0;
    font-size: 6.66667vmin;
    line-height: 6.11111vmin;
    text-align: center;
    color: #27c34a;
  }
}

.hero__text {
  font-size: 1.25vw;
  line-height: 1.875vw;
  opacity: 0;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

@media (max-width: 1023px) {
  .hero__text .br {
    display: block;
    height: 8.88889vmin;
  }
}

@media (max-width: 1366px) {
  .hero__text {
    font-size: 1.31772vw;
    line-height: 2.19619vw;
  }
}

@media (max-width: 1023px) {
  .hero__text {
    font-size: 4.44444vmin;
    line-height: 7.22222vmin;
    text-align: center;
  }
}

.hero__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3.125vw;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  width: 2.23958vw;
  height: 2.23958vw;
  background: transparent;
  opacity: 0;
  -webkit-transition: opacity 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  -o-transition: opacity 0.4s, transform 0.4s, border-color 0.4s;
  transition: opacity 0.4s, transform 0.4s, border-color 0.4s;
  transition: opacity 0.4s, transform 0.4s, border-color 0.4s, -webkit-transform 0.4s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  cursor: default;
}

.hero__btn svg {
  position: relative;
  left: 0;
  top: 1px;
  display: inline-block;
  width: 1.09375vw;
  height: 1.09375vw;
}

@media (max-width: 1366px) {
  .hero__btn svg {
    width: 0.87848vw;
    height: 0.87848vw;
  }
}

@media (max-width: 1023px) {
  .hero__btn svg {
    width: 4.44444vmin;
    height: 4.44444vmin;
    stroke-width: 2px;
  }
}

@media (max-width: 1366px) {
  .hero__btn {
    margin-top: 2.48902vw;
    width: 1.90337vw;
    height: 1.90337vw;
  }
}

@media (max-width: 1023px) {
  .hero__btn {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 0;
    border: 2px solid #e5e5e5;
    width: 10.55556vmin;
    height: 10.55556vmin;
    color: #fff;
    background: rgba(23, 23, 23, 0.5);
    opacity: 1;
    -webkit-transform: translate(-50%, 180%);
    -ms-transform: translate(-50%, 180%);
    transform: translate(-50%, 180%);
  }
}

.hero-parallax {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  -webkit-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

.hero-parallax__item {
  width: 100vw;
  height: 100vh;
}

.hero-parallax__item .hero-parallax__image {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.hero-parallax__item--scene-1 {
  z-index: 5;
}

.hero-parallax__item--scene-2 {
  z-index: 4;
}

.hero-parallax__item--scene-3 {
  z-index: 3;
}

.hero-parallax__item--scene-4 {
  z-index: 2;
  margin-left: 3.125vw;
}

.hero-parallax__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.hero-parallax__image img {
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-parallax__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 1.5s;
  -o-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

/*@media (max-width: 1023px) {*/
/*.hero-parallax {*/
/*display: none; } }*/
@media (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
  .hero-parallax {
    display: none;
  }
}

.hero.is-active .hero__back {
  opacity: 0;
}

@media (max-width: 1023px) {
  .hero.is-active .hero__back {
    opacity: 0.1;
  }
}

@media (max-width: 1023px) {
  .hero.is-active .hero__top {
    background-color: transparent;
    opacity: 0;
  }
}

.hero.is-active .hero__title {
  color: #171717;
  opacity: 1;
  -webkit-transform: translateY(-5.20833vw);
  -ms-transform: translateY(-5.20833vw);
  transform: translateY(-5.20833vw);
}

.hero.is-active .hero__subtitle,
.hero.is-active .hero__text,
.hero.is-active .hero__btn {
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.hero.is-active .hero__btn {
  -webkit-animation-name: fade-in-bottom, hide-border;
  animation-name: fade-in-bottom, hide-border;
  -webkit-animation-delay: 1s, 2s;
  animation-delay: 1s, 2s;
}

.hero.is-active .hero__btn svg {
  -webkit-animation: scrollDown 1.5s 3s ease-in-out infinite;
  animation: scrollDown 1.5s 3s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .hero.is-active .hero__btn {
    opacity: 0;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    -webkit-animation: none;
    animation: none;
  }
}

.hero.is-active .hero-parallax {
  opacity: 0;
}

@media (max-width: 1023px) {
  .hero.is-active {
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .hero.mobile-scroll-down .hero__back {
    opacity: 0;
  }
}

@media (max-width: 1023px) {
  .hero {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 500px;
  }
}

@-webkit-keyframes fade-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes hide-border {
  0% {
    border-color: #d0d0d0;
  }
  100% {
    border-color: transparent;
  }
}

@keyframes hide-border {
  0% {
    border-color: #d0d0d0;
  }
  100% {
    border-color: transparent;
  }
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.52083vw);
    transform: translateY(0.52083vw);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.52083vw);
    transform: translateY(0.52083vw);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.intro {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: #fff;
}

.intro .container {
  max-width: 61.04167vw;
}

.intro__title {
  margin: 0;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 900;
  font-size: 9.6875vw;
}

.intro__subtitle {
  margin: 0 0 2.60417vw 0;
  font-weight: 400;
  font-style: italic;
  font-size: 1.875vw;
}

.intro__text {
  font-size: 1.25vw;
  line-height: 1.875vw;
}

.intro__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 3.125vw;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  width: 2.23958vw;
  height: 2.23958vw;
  background: transparent;
}

.intro__btn svg {
  width: 1.04167vw;
  height: 1.04167vw;
}

.content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: -3.02083vw;
}

.content__side {
  position: fixed;
  left: 0;
  top: 10.41667vw;
  z-index: 2;
  width: 14.63542vw;
}

@media (max-width: 1023px) {
  .content__side {
    display: none;
  }
}

.content__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  padding: 0 7.08333vw 0 14.63542vw;
}

@media (max-width: 1366px) {
  .content__main {
    padding: 0 1.75695vw 0 20.57101vw;
  }
}

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

@media (max-width: 1023px) {
  .content {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}

.article {
  position: relative;
  background: #fff;
}

.article &gt; .container {
  max-width: 58.79167vw;
}

@media (max-width: 1366px) {
  .article &gt; .container {
    margin-left: 1.77083vw;
    max-width: 62.5183vw;
  }
}

@media (max-width: 1023px) {
  .article &gt; .container {
    margin-left: auto;
    padding: 0 3.33333vmin;
    max-width: 100%;
  }
}

.article .note {
  margin-top: 3.75vw;
}

@media (max-width: 1366px) {
  .article .note {
    margin-top: 4.5388vw;
    margin-bottom: 4.09956vw;
  }
}

@media (max-width: 1023px) {
  .article .note {
    margin-top: 12.5vmin;
  }
}

.article__text {
  font-size: 1.14583vw;
  line-height: 1.50333vw;
  letter-spacing: -0.016em;
  margin-top: 1vh;
}

.article__text span[data-tippy-content] {
  padding-top: 10.41667vw;
  font-weight: 900;
  font-size: 1.14583vw;
}

@media (max-width: 1366px) {
  .article__text span[data-tippy-content] {
    font-size: 1.31772vw;
  }
}

@media (max-width: 1023px) {
  .article__text span[data-tippy-content] {
    margin-bottom: 8.33333vmin;
    padding: 0.55556vmin;
    font-size: 5vmin;
    line-height: 8.61111vmin;
  }
}

@media (max-width: 1366px) {
  .article__text {
    margin-bottom: 2.92826vw;
    font-size: 1.31772vw;
    line-height: 2.78184vw;
  }
}

.article-map {
  margin-top: 2.6875vw;
}

.article-map .container {
  max-width: 58.95833vw;
}

@media (max-width: 1366px) {
  .article-map .container {
    max-width: 59.59004vw;
  }
}

@media (max-width: 1023px) {
  h1 {
    font-size: 6em;
  }

  .article-map .container {
    padding: 0 1.38889vmin;
    max-width: 100%;
  }
}

.article-map__head {
  position: relative;
  margin: 1vh 0 1.1875vw 0;
  text-align: center;
  border-top: 2px solid #e8e8e8;
}

.article-map__title {
  font-family: "Proxima Nova", sans-serif;
  font-size: 1.1vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: none;
  -webkit-transition: display 0.4s;
  -o-transition: display 0.4s;
  transition: display 0.4s;
}

.article-map__title.is-active {
  display: block;
}

@media (max-width: 1366px) {
  .article-map__title {
    font-size: 1.1713vw;
  }
}

@media (max-width: 1023px) {
  .article-map__title {
    width: 100%;
    font-size: 3.16667vmin;
  }
}

.article-map__main {
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  width: 100%;
}

@media (max-width: 1023px) {
  .article-map__main {
    border: none;
    height: auto;
  }
}

.article-map__gallery {
  position: relative;
}

@media (max-width: 1023px) {
  .article-map__gallery {
    margin-bottom: 1.94444vmin;
  }
}

.article-map__image {
  border-radius: 12px;
  width: 100%;
  opacity: 0;
}

.article-map__image:first-child {
  opacity: 1;
}

/*@media (max-width: 1023px) {*/
  /*.article-map__image {*/
    /*height: 48.61111vmin;*/
  /*}*/
/*}*/

.article-map__foot {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*.article-map__foot .container {*/
/*max-width: 35.52083vw; }*/
/*@media (max-width: 1366px) {*/
/*.article-map__foot .container {*/
/*max-width: 49.92679vw; } }*/
/*@media (max-width: 1023px) {*/
/*.article-map__foot .container {*/
/*max-width: 100%; } }*/
.article-map__foot .irs--round .irs-grid-pol {
  top: -6px;
  height: 6px;
  background: #171717;
}

.article-map__foot .irs--round .irs-bar {
  top: 36px;
  height: 6px;
  background-color: rgba(137, 249, 119, 0.7);
}

.article-map__foot .irs--round .irs-line {
  top: 36px;
  border-radius: 12px;
  height: 6px;
  -webkit-box-shadow: 0 0 0 1px #e5e5e5 inset;
  box-shadow: 0 0 0 1px #e5e5e5 inset;
  background: -webkit-gradient(linear, right top, left top, from(rgba(229, 229, 229, 0.5)), color-stop(48.18%, #e5e5e5), to(rgba(229, 229, 229, 0.5)));
  background: -o-linear-gradient(right, rgba(229, 229, 229, 0.5) 0%, #e5e5e5 48.18%, rgba(229, 229, 229, 0.5) 100%);
  background: linear-gradient(270deg, rgba(229, 229, 229, 0.5) 0%, #e5e5e5 48.18%, rgba(229, 229, 229, 0.5) 100%);
}

.article-map__foot .irs--round .irs-handle {
  top: 30px;
  border: 1px solid #979797;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  -webkit-box-shadow: 0 0 4px 0 #979797 inset;
  box-shadow: 0 0 4px 0 #979797 inset;
  background-color: #d0d0d0;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  cursor: pointer;
}

.article-map__foot .irs--round .irs-handle i {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: inherit;
  width: 100%;
  height: 100%;
}

.article-map__foot .irs--round .irs-handle i:first-of-type {
  z-index: -1;
  border-radius: inherit;
  background: #89f977;
  -webkit-animation: pulsar 2s ease-in-out infinite;
  animation: pulsar 2s ease-in-out infinite;
}

.article-map__foot .irs--round .irs-handle i:nth-of-type(2) {
  z-index: 1;
  -webkit-box-shadow: 0 0 4px 0 #979797 inset;
  box-shadow: 0 0 4px 0 #979797 inset;
  background-color: #d0d0d0;
}

@media (max-width: 1023px) {
  .article-map__foot .irs--round .irs-handle i:nth-of-type(2) {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAyNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC43IiBkPSJNMTYgMTNMMjMgN0wxNiAxIiBzdHJva2U9IiM5Nzk3OTciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBvcGFjaXR5PSIwLjciIGQ9Ik04IDFMMSA3TDggMTMiIHN0cm9rZT0iIzk3OTc5NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
    background-position: 50% 51%;
    background-size: 22px;
    background-repeat: no-repeat;
  }
}

.article-map__foot .irs--round .irs-handle:hover, .article-map__foot .irs--round .irs-handle:active {
  border-color: #89f977;
  -webkit-box-shadow: 0 0 4px 0 #979797 inset, 0 0 6px 0 #27c34a;
  box-shadow: 0 0 4px 0 #979797 inset, 0 0 6px 0 #27c34a;
}

.article-map__foot .irs--round .irs-handle:hover i, .article-map__foot .irs--round .irs-handle:active i {
  opacity: 0;
  -webkit-animation: none;
  animation: none;
}

@media (max-width: 1023px) {
  .article-map__foot .irs--round .irs-handle {
    top: 23px;
    border-width: 2px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAyNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggb3BhY2l0eT0iMC43IiBkPSJNMTYgMTNMMjMgN0wxNiAxIiBzdHJva2U9IiM5Nzk3OTciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBvcGFjaXR5PSIwLjciIGQ9Ik04IDFMMSA3TDggMTMiIHN0cm9rZT0iIzk3OTc5NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
    background-position: 50%;
    background-size: 22px;
    background-repeat: no-repeat;
  }
}

.article-map__foot .irs-grid {
  bottom: -2px;
}

.article-map__foot .irs-grid-pol.small {
  display: none;
}

.article-map__foot .irs-grid-text {
  opacity: 0;
}

.article-map__foot .showcase__mark {
  position: absolute;
  top: 10px;
  display: block;
  font-family: "Proxima Nova", sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #171717;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 1023px) {
  .article-map__foot .showcase__mark span {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 10px;
  }
}

@media (max-width: 1366px) {
  .article-map__foot .showcase__mark {
    font-size: 0.73206vw;
    line-height: 1.46413vw;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 1023px) {
  .article-map__foot .showcase__mark {
    top: 29px;
    width: 40px;
    font-weight: 700;
    font-size: 8px;
    line-height: 10px;
    white-space: pre-wrap;
    text-align: center;
  }
}

@media (max-width: 1366px) {
  .article-map {
    margin-left: -13.17716vw;
    padding-left: 0;
  }
}

@media (max-width: 1023px) {
  .article-map {
    margin-top: -4.44444vmin;
    margin-left: 0;
  }
}

.article-comics {
  margin-top: 9.79167vw;
  margin-bottom: 15.625vw;
  padding-left: 11.35417vw;
}

.article-comics .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

@media (max-width: 1023px) {
  .article-comics .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .article-comics .container {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
  }
}

.article-comics__item {
  position: relative;
}

.article-comics__item--left {
  width: 33.33333vw;
  height: 32.08333vw;
  -webkit-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}

.article-comics__item--left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 29.16667vw;
  background: #d0d0d0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 1366px) {
  .article-comics__item--left::after {
    height: 32.65007vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__item--left::after {
    display: none;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .article-comics__item--left::after {
    display: block;
  }
}

@media (max-width: 1023px) {
  .article-comics__item--left.is-end-slide {
    background: transparent;
  }
}

@media (max-width: 1366px) {
  .article-comics__item--left {
    width: 34.55344vw;
    height: 32.57687vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__item--left {
    z-index: 1;
    width: 100%;
    height: 100vmin;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(91.59%, #fff), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(top, #fff 91.59%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(180deg, #fff 91.59%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .article-comics__item--left {
    width: 83.33333vmin;
  }
}

.article-comics__item--right {
  margin-left: 2.91667vw;
  padding-top: 14.375vw;
  padding-bottom: 10.41667vw;
  width: 27.1875vw;
}

@media (max-width: 1366px) {
  .article-comics__item--right {
    margin-left: 2.19619vw;
    padding-top: 9.80966vw;
    padding-bottom: 0;
    width: 30.74671vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__item--right {
    margin-left: 0;
    padding-top: 7.22222vmin;
    width: 100%;
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .article-comics__item--right {
    width: 88.88889vmin;
  }
}

.article-comics__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 32.8125vw;
  height: 32.08333vw;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.article-comics__image.is-active {
  opacity: 1;
}

@media (max-width: 1366px) {
  .article-comics__image {
    width: 33.30893vw;
    height: 32.57687vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__image {
    left: 50%;
    width: 92.77778vmin;
    height: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media (max-width: 1023px) and (orientation: landscape) {
  .article-comics__image {
    width: 83.33333vmin;
  }
}

.article-comics__text {
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  font-size: 0.83333vw;
  line-height: 1.35417vw;
}

.article-comics__text::after {
  content: "";
  display: block;
  margin: 8.125vw auto;
  border-radius: 50%;
  width: 0.41667vw;
  height: 0.41667vw;
  background: #89f977;
}

@media (max-width: 1366px) {
  .article-comics__text::after {
    margin: 4.83163vw auto;
    width: 0.43924vw;
    height: 0.43924vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__text::after {
    margin: 10vmin auto;
    width: 1.66667vmin;
    height: 1.66667vmin;
  }
}

.article-comics__text:last-of-type::after {
  display: none;
}

@media (max-width: 1366px) {
  .article-comics__text {
    font-size: 1.1713vw;
    line-height: 1.90337vw;
  }
}

@media (max-width: 1023px) {
  .article-comics__text {
    padding: 0 1.66667vmin 0 3.33333vmin;
    font-size: 4.44444vmin;
    line-height: 7.22222vmin;
  }
}

@media (max-width: 1366px) {
  .article-comics {
    margin-bottom: 21.96193vw;
    padding-left: 0;
  }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .article-comics {
    margin-bottom: 5.20833vw;
  }
}

@media (min-width: 768px) and (max-width: 1365px) {
  .article-comics {
    margin-bottom: 26.04167vw;
  }
}

@media (max-width: 1023px) {
  .article-comics {
    margin-top: 0;
    margin-bottom: 28.88889vmin;
    padding-left: 0;
  }
}

@media (max-width: 1023px) {
  .article {
    padding-top: 6.66667vmin;
  }
}

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

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

.timeline {
  position: relative;
  margin-top: 5.625vw;
  margin-bottom: 12.5vw;
  padding-left: 4.16667vw;
  font-family: "Proxima Nova", sans-serif;
}

.timeline .container {
  max-width: 59.0625vw;
}

@media (max-width: 1023px) {
  .timeline .container {
    display: none;
  }
}

.timeline__head {
  margin-bottom: 1.66667vw;
}

.timeline__title {
  font-weight: 400;
  font-size: 0.83333vw;
  line-height: 1.35417vw;
  letter-spacing: 0.05em;
  text-align: center;
}

.timeline__main {
  position: relative;
  margin-bottom: 2.29167vw;
  border: 1px solid #89f977;
  border-radius: 12px;
  padding: 2.91667vw 1.45833vw;
  height: 21.25vw;
}

.timeline__main--period {
  height: 31.45833vw;
}

.timeline__scene {
  position: relative;
  height: 4.58333vw;
}

.timeline__foot {
  margin: 0 auto;
  max-width: 45.3125vw;
  font-weight: 400;
  font-size: 0.83333vw;
  line-height: 1.35417vw;
  letter-spacing: 0.07em;
  color: #979797;
}

.timeline__foot span {
  font-weight: 900;
  color: #27c34a;
}

@media (max-width: 1023px) {
  .timeline__foot {
    padding: 0 3.33333vmin;
    max-width: 100%;
    font-size: 3.33333vmin;
    line-height: 5.55556vmin;
    letter-spacing: 0;
  }
}

.timeline-left {
  position: absolute;
  left: -1px;
  top: -0.05208vw;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, white), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(left, white 10%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 10%, rgba(255, 255, 255, 0) 100%);
}

.timeline-left__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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Piazzolla", serif;
  font-style: italic;
  font-size: 0.625vw;
  line-height: 0.88542vw;
  letter-spacing: 0.07em;
  color: #171717;
}

.timeline-left__item--period {
  height: 1.30208vw;
  opacity: 0;
}

.timeline-left__item--era {
  height: 1.30208vw;
  opacity: 0;
}

.timeline-left__item--eon {
  height: 1.875vw;
}

.timeline-left__item--mln {
  height: 1.30208vw;
  color: #979797;
}

.timeline-right {
  position: absolute;
  right: -1px;
  top: -0.05208vw;
  z-index: 1;
  width: 5.20833vw;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(255, 255, 255, 0)), to(white));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 10%, white 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, white 100%);
  opacity: 0;
}

.timeline-chart__item {
  position: relative;
}

.timeline-chart__item .timeline-chart-grid {
  height: 100%;
}

.timeline-chart__item .timeline-chart-grid__suptitle {
  position: absolute;
  left: 0;
  top: -1.04167vw;
}

.timeline-chart__item .timeline-chart-grid__title {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.timeline-chart__item--period {
  position: relative;
  height: 1.30208vw;
}

.timeline-chart__item--period .timeline-chart__centerline {
  left: 0;
  top: 100%;
  width: 100%;
  opacity: 0;
}

.timeline-chart__item--period .timeline-chart-grid {
  -ms-grid-columns: 1fr 15.78125vw 22.1875vw 7.8125vw;
  grid-template-columns: 1fr 15.78125vw 22.1875vw 7.8125vw;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.timeline-chart__item--period .timeline-chart-grid &gt; *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.timeline-chart__item--period .timeline-chart-grid &gt; *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.timeline-chart__item--period .timeline-chart-grid &gt; *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.timeline-chart__item--period .timeline-chart-grid &gt; *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

.timeline-chart__item--period .timeline-chart-grid__title {
  z-index: 2;
  font-weight: 600;
  font-size: 0.57292vw;
  opacity: 0;
}

.timeline-chart__item--period .timeline-chart-grid__line {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.timeline-chart__item--era {
  position: relative;
  height: 1.30208vw;
}

.timeline-chart__item--era .timeline-chart-grid {
  -ms-grid-columns: 1fr 17.5vw 6.25vw;
  grid-template-columns: 1fr 17.5vw 6.25vw;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  margin-left: 6.25vw;
}

.timeline-chart__item--era .timeline-chart-grid &gt; *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.timeline-chart__item--era .timeline-chart-grid &gt; *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.timeline-chart__item--era .timeline-chart-grid &gt; *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.timeline-chart__item--era .timeline-chart-grid__vhrline {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 1px;
  height: 3.17708vw;
  background: #fff;
  opacity: 0;
}

.timeline-chart__item--era .timeline-chart-grid__title {
  opacity: 0;
}

.timeline-chart__item--era .timeline-chart-grid__suptitle {
  color: #f7596c;
  opacity: 0;
}

.timeline-chart__item--era .timeline-chart-grid__line {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
}

.timeline-chart__item--eon {
  height: 1.875vw;
}

.timeline-chart__item--eon .timeline-chart-grid {
  -ms-grid-columns: 1fr 5.36458vw;
  grid-template-columns: 1fr 5.36458vw;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.timeline-chart__item--eon .timeline-chart-grid &gt; *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.timeline-chart__item--eon .timeline-chart-grid &gt; *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

.timeline-chart__item--eon .timeline-chart-grid__title {
  top: 4.32292vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-chart__centerline {
  position: absolute;
  left: 6.25vw;
  top: 50%;
  display: block;
  width: calc(100% - 6.25vw);
  height: 1px;
  background: #979797;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.timeline-chart-grid {
  position: relative;
  display: -ms-grid;
  display: grid;
}

.timeline-chart-grid__title {
  font-weight: 700;
  font-size: 0.625vw;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.timeline-chart-grid__suptitle {
  font-family: "Piazzolla", serif;
  font-style: italic;
  font-size: 0.625vw;
  line-height: 0.88542vw;
  letter-spacing: 0.05em;
}

.timeline-chart-grid__suptitle b {
  font-weight: 600;
}

.timeline-chart-grid__line {
  height: 100%;
}

.timeline-chart-grid__item {
  position: relative;
  height: 100%;
}

.timeline-chart-grid__item--dokembriy {
  margin-left: 10.41667vw;
}

.timeline-chart-grid__item--dokembriy .timeline-chart-grid__suptitle {
  position: absolute;
  left: 0;
  top: -1.04167vw;
}

.timeline-chart-grid__item--dokembriy .timeline-chart-grid__line {
  background: #b26b89;
}

.timeline-chart-grid__item--fanerozoy .timeline-chart-grid__line {
  background: #aed2d5;
}

.timeline-chart-grid__item--paleozoy .timeline-chart-grid__line {
  background: #94a895;
}

.timeline-chart-grid__item--mezozoy .timeline-chart-grid__line {
  background: #a6e0e2;
}

.timeline-chart-grid__item--mezozoy .timeline-line {
  left: auto;
  right: -1px;
  top: 0;
  z-index: 2;
  margin: 0;
  border: 2px solid #f7596c;
  width: 16.45833vw;
  height: 2.23958vw;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCh0LvQvtC5XzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA2MjQgNDEuNCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNjI0IDQxLjQ7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRjc1OTZDO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTExNyw0MC42bDAuNiwwLjhsMzQtNDAuNkwxNTEsMEwxMTcsNDAuNnogTS0xLjQsMTEuNWw5LTEwLjhMNywwbC05LDEwLjdMLTEuNCwxMS41eiBNMzA3LjYsNDEuNGw5LTEwLjcKCWwwLjYsMC44bC05LDEwLjdMMzA3LjYsNDEuNHogTTQ1LjYsNDEuNGwzNC00MC42TDc5LDBMNDUsNDAuNkw0NS42LDQxLjR6IE0yMjMuNiwwLjhsLTM0LDQwLjZsLTAuNi0wLjhMMjIzLDBMMjIzLjYsMC44egoJIE0tMC40LDIxLjFsMTctMjAuM0wxNiwwTC0xLDIwLjNMLTAuNCwyMS4xeiBNMTYwLjYsMC44bC0zNCw0MC42bC0wLjYtMC44TDE2MCwwTDE2MC42LDAuOHogTTMxNS42LDIxLjFsLTE3LDIwLjNsMC42LDAuOGwxNy0yMC4zCglMMzE1LjYsMjEuMXogTTg4LjYsMC44bC0zNCw0MC42TDU0LDQwLjZMODgsMEw4OC42LDAuOHogTTE5OC42LDQxLjRsMzQtNDAuNkwyMzIsMGwtMzQsNDAuNkwxOTguNiw0MS40eiBNMjUuNiwwLjhsLTI2LDMxLjEKCUwtMSwzMS4xTDI1LDBMMjUuNiwwLjh6IE0xMzUuNiw0MS40bDM0LTQwLjZMMTY5LDBsLTM0LDQwLjZMMTM1LjYsNDEuNHogTTI4OS42LDQxLjRsMjYtMzEuMWwwLjYsMC44bC0yNiwzMS4xTDI4OS42LDQxLjR6CgkgTTYyLjYsNDIuNmwzNS00MS44TDk3LDBMNjIsNDEuOEw2Mi42LDQyLjZ6IE0yNDEuNiwwLjhsLTM1LDQxLjhsLTAuNi0wLjhMMjQxLDBMMjQxLjYsMC44eiBNMC42LDQxLjRsMzQtNDAuNkwzNCwwTDAsNDAuNgoJTDAuNiw0MS40eiBNMTc4LjYsMC44bC0zNCw0MC42bC0wLjYtMC44TDE3OCwwTDE3OC42LDAuOHogTTMxNC42LDAuOGwtMzQsNDAuNmwwLjYsMC44bDM0LTQwLjZMMzE0LjYsMC44eiBNMTA2LjYsMC44bC0zNCw0MC42CglMNzIsNDAuNkwxMDYsMEwxMDYuNiwwLjh6IE0yMTYuNiw0MS40bDM0LTQwLjZMMjUwLDBsLTM0LDQwLjZMMjE2LjYsNDEuNHogTTQzLjYsMC44bC0zNCw0MC42TDksNDAuNkw0MywwTDQzLjYsMC44eiBNMTUzLjYsNDEuNAoJbDM0LTQwLjZMMTg3LDBsLTM0LDQwLjZMMTUzLjYsNDEuNHogTTExNS42LDAuOGwtMzQsNDAuNkw4MSw0MC42TDExNSwwTDExNS42LDAuOHogTTIyNS42LDQxLjRsMzQtNDAuNkwyNTksMGwtMzQsNDAuNkwyMjUuNiw0MS40egoJIE01Mi42LDAuOGwtMzQsNDAuNkwxOCw0MC42TDUyLDBMNTIuNiwwLjh6IE0xNjIuNiw0MS40bDM0LTQwLjZMMTk2LDBsLTM0LDQwLjZMMTYyLjYsNDEuNHogTTEyNC42LDAuOGwtMzQsNDAuNkw5MCw0MC42TDEyNCwwCglMMTI0LjYsMC44eiBNMjM0LjYsNDEuNGwzNC00MC42TDI2OCwwbC0zNCw0MC42TDIzNC42LDQxLjR6IE02MS42LDAuOGwtMzQsNDAuNkwyNyw0MC42TDYxLDBMNjEuNiwwLjh6IE0xNzEuNiw0MS40bDM0LTQwLjZMMjA1LDAKCWwtMzQsNDAuNkwxNzEuNiw0MS40eiBNMTMzLjYsMC44bC0zNCw0MC42TDk5LDQwLjZMMTMzLDBMMTMzLjYsMC44eiBNMjQzLjYsNDEuNGwzNC00MC42TDI3NywwbC0zNCw0MC42TDI0My42LDQxLjR6IE0yOTYuNiwwLjgKCWwtMzQsNDAuNmwtMC42LTAuOEwyOTYsMEwyOTYuNiwwLjh6IE0zNi42LDQxLjRsMzQtNDAuNkw3MCwwTDM2LDQwLjZMMzYuNiw0MS40eiBNMjE0LjYsMC44bC0zNCw0MC42bC0wLjYtMC44TDIxNCwwTDIxNC42LDAuOHoKCSBNMTA4LjYsNDEuNGwzNC00MC42TDE0MiwwbC0zNCw0MC42TDEwOC42LDQxLjR6IE0yODYuNiwwLjhsLTM0LDQwLjZsLTAuNi0wLjhMMjg2LDBMMjg2LjYsMC44eiBNMjcyLjYsNDEuNGwzNC00MC42TDMwNiwwCglsLTM0LDQwLjZMMjcyLjYsNDEuNHoiLz4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTQyNS40LDQwLjVsMC42LDAuOGwzNC00MC42bC0wLjYtMC44TDQyNS40LDQwLjV6IE0zMDcsMTEuNGw5LTEwLjhsLTAuNi0wLjhsLTksMTAuN0wzMDcsMTEuNHogTTYxNiw0MS4yCglsOS0xMC44bDAuNiwwLjhsLTksMTAuOEw2MTYsNDEuMnogTTM1NCw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjZMMzU0LDQxLjJ6IE01MzIsMC42bC0zNCw0MC42bC0wLjYtMC44bDM0LTQwLjZMNTMyLDAuNnoKCSBNMzA4LDIwLjlsMTctMjAuM2wtMC42LTAuOGwtMTcsMjAuM0wzMDgsMjAuOXogTTQ2OSwwLjZsLTM0LDQwLjZsLTAuNi0wLjhsMzQtNDAuNkw0NjksMC42eiBNNjI0LDIwLjlsLTE3LDIwLjNsMC42LDAuOGwxNy0yMC4zCglMNjI0LDIwLjl6IE0zOTcsMC42bC0zNCw0MC42bC0wLjYtMC44bDM0LTQwLjZMMzk3LDAuNnogTTUwNyw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjZMNTA3LDQxLjJ6IE0zMzQsMC42bC0yNiwzMS4xbC0wLjYtMC44CglsMjYtMzEuMUwzMzQsMC42eiBNNDQ0LDQxLjJsMzQtNDAuNmwtMC42LTAuOGwtMzQsNDAuNkw0NDQsNDEuMnogTTU5OCw0MS4ybDI2LTMxLjFsMC42LDAuOGwtMjYsMzEuMUw1OTgsNDEuMnogTTM3MSw0Mi40bDM1LTQxLjgKCWwtMC42LTAuOGwtMzUsNDEuOEwzNzEsNDIuNHogTTU1MCwwLjZsLTM1LDQxLjhsLTAuNi0wLjhsMzUtNDEuOEw1NTAsMC42eiBNMzA5LDQxLjJsMzQtNDAuNmwtMC42LTAuOGwtMzQsNDAuNkwzMDksNDEuMnogTTQ4NywwLjYKCWwtMzQsNDAuNmwtMC42LTAuOGwzNC00MC42TDQ4NywwLjZ6IE02MjMsMC42bC0zNCw0MC42bDAuNiwwLjhsMzQtNDAuNkw2MjMsMC42eiBNNDE1LDAuNmwtMzQsNDAuNmwtMC42LTAuOGwzNC00MC42TDQxNSwwLjZ6CgkgTTUyNSw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjZMNTI1LDQxLjJ6IE0zNTIsMC42bC0zNCw0MC42bC0wLjYtMC44bDM0LTQwLjZMMzUyLDAuNnogTTQ2Miw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjYKCUw0NjIsNDEuMnogTTQyNCwwLjZsLTM0LDQwLjZsLTAuNi0wLjhsMzQtNDAuNkw0MjQsMC42eiBNNTM0LDQxLjJsMzQtNDAuNmwtMC42LTAuOGwtMzQsNDAuNkw1MzQsNDEuMnogTTM2MSwwLjZsLTM0LDQwLjZsLTAuNi0wLjgKCWwzNC00MC42TDM2MSwwLjZ6IE00NzEsNDEuMmwzNC00MC42bC0wLjYtMC44bC0zNCw0MC42TDQ3MSw0MS4yeiBNNDMzLDAuNmwtMzQsNDAuNmwtMC42LTAuOGwzNC00MC42TDQzMywwLjZ6IE01NDMsNDEuMmwzNC00MC42CglsLTAuNi0wLjhsLTM0LDQwLjZMNTQzLDQxLjJ6IE0zNzAsMC42bC0zNCw0MC42bC0wLjYtMC44bDM0LTQwLjZMMzcwLDAuNnogTTQ4MCw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjZMNDgwLDQxLjJ6IE00NDIsMC42CglsLTM0LDQwLjZsLTAuNi0wLjhsMzQtNDAuNkw0NDIsMC42eiBNNTUyLDQxLjJsMzQtNDAuNmwtMC42LTAuOGwtMzQsNDAuNkw1NTIsNDEuMnogTTYwNSwwLjZsLTM0LDQwLjZsLTAuNi0wLjhsMzQtNDAuNkw2MDUsMC42egoJIE0zNDUsNDEuMmwzNC00MC42bC0wLjYtMC44bC0zNCw0MC42TDM0NSw0MS4yeiBNNTIzLDAuNmwtMzQsNDAuNmwtMC42LTAuOGwzNC00MC42TDUyMywwLjZ6IE00MTcsNDEuMmwzNC00MC42bC0wLjYtMC44bC0zNCw0MC42CglMNDE3LDQxLjJ6IE01OTUsMC42bC0zNCw0MC42bC0wLjYtMC44bDM0LTQwLjZMNTk1LDAuNnogTTU4MSw0MS4ybDM0LTQwLjZsLTAuNi0wLjhsLTM0LDQwLjZMNTgxLDQxLjJ6Ii8+Cjwvc3ZnPgo=");
  background-size: cover;
  opacity: 0;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.timeline-chart-grid__item--mezozoy .timeline-line::after {
  display: none;
}

.timeline-chart-grid__item--mezozoy .timeline-line__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.timeline-chart-grid__item--mezozoy .timeline-line__item:nth-child(2n) .timeline-line__line {
  height: 100%;
}

.timeline-chart-grid__item--mezozoy .timeline-line__line {
  display: none;
}

.timeline-chart-grid__item--mezozoy .timeline-line__text {
  top: 3.4375vw;
  color: #f7596c;
}

.timeline-chart-grid__item--kaynozoy .timeline-chart-grid__suptitle {
  left: auto;
  right: 0;
  top: -1.97917vw;
  width: 7.8125vw;
  text-align: right;
}

.timeline-chart-grid__item--kaynozoy .timeline-chart-grid__line {
  background: #ede19d;
}

.timeline-chart-grid__item--kaynozoy .timeline-line {
  left: auto;
  right: 0;
  top: 0;
  z-index: 1;
  margin: 0;
  width: 0.20833vw;
  height: 2.23958vw;
  background: #f7596c;
  opacity: 0;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.timeline-chart-grid__item--kaynozoy .timeline-line::after {
  display: none;
}

.timeline-chart-grid__item--triasoviy .timeline-chart-grid__line {
  background: #9d71b1;
}

.timeline-chart-grid__item--yurskiy .timeline-chart-grid__line {
  background: #a0d9e6;
}

.timeline-chart-grid__item--melovoy .timeline-chart-grid__line {
  background: #c3e691;
}

.timeline-chart-grid__item--paleogen .timeline-chart-grid__line {
  background: #fde69e;
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 6.25vw;
  width: calc(100% - 6.25vw);
  height: 1.35417vw;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.timeline-line__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.timeline-line__item:nth-child(2n) .timeline-line__line {
  height: 0.625vw;
}

.timeline-line__line {
  width: 1px;
  height: 100%;
  background: #979797;
}

.timeline-line__text {
  position: absolute;
  left: 50%;
  top: 1.97917vw;
  font-weight: 600;
  font-size: 0.57292vw;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #979797;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-line--dokembriy {
  opacity: 1;
}

.timeline-line--fanerozoy .timeline-line__item:nth-child(2n) .timeline-line__line {
  height: 1.35417vw;
}

.timeline-line--fanerozoy .timeline-line__item:nth-child(2n+1) .timeline-line__line {
  height: 0.625vw;
}

.timeline-line--fanerozoy .timeline-line__item:nth-child(7) .timeline-line__text {
  left: -1.5625vw;
}

.timeline-line--fanerozoy .timeline-line__line {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

.timeline-line--fanerozoy .timeline-line__text {
  opacity: 0;
}

.timeline-line--period {
  top: 100%;
  z-index: 1;
  margin-left: 10.67708vw;
  width: calc(100% - 13.95833vw);
  height: 0.625vw;
}

.timeline-line--period .timeline-line__item:nth-child(1) .timeline-line__text {
  left: 0.52083vw;
}

.timeline-line--period .timeline-line__item:nth-child(2n) .timeline-line__line {
  height: 0.625vw;
}

.timeline-line--period .timeline-line__text {
  top: 1.875vw;
  opacity: 0;
}

.timeline-line--period .timeline-line__line {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

.timeline-line--yurskiyMelovoy {
  top: 100%;
  z-index: 2;
  margin-left: 10.26042vw;
  width: calc(100% - 18.125vw);
  height: 0.41667vw;
  opacity: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.timeline-line--yurskiyMelovoy::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: #f7596c;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.timeline-line--yurskiyMelovoy .timeline-line__item:nth-child(1) .timeline-line__text {
  left: -0.52083vw;
}

.timeline-line--yurskiyMelovoy .timeline-line__item:nth-child(2) {
  left: -3.22917vw;
}

.timeline-line--yurskiyMelovoy .timeline-line__item:nth-child(2n) .timeline-line__line {
  height: 0.41667vw;
}

.timeline-line--yurskiyMelovoy .timeline-line__text {
  top: 1.5625vw;
  color: #f7596c;
  opacity: 0;
}

.timeline-line--yurskiyMelovoy .timeline-line__line {
  width: 2px;
  background-color: #f7596c;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}

.timeline-tab {
  position: absolute;
  left: 50%;
  bottom: 4.27083vw;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  border-radius: 12px;
  width: 19.375vw;
  height: 1px;
  background: #c0c0c0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-tab__item {
  position: relative;
}

.timeline-tab__item.is-active .timeline-tab__button {
  -webkit-box-shadow: 0 0 0.20833vw 1px #89f977, 0 0 0.625vw 0.20833vw #fff inset;
  box-shadow: 0 0 0.20833vw 1px #89f977, 0 0 0.625vw 0.20833vw #fff inset;
  background-color: #27c34a;
}

.timeline-tab__item.is-active .timeline-tab__button::after {
  opacity: 1;
}

.timeline-tab__item.is-active .timeline-tab__text {
  color: #27c34a;
}

.timeline-tab__button {
  position: relative;
  top: -0.10417vw;
  border: 1px solid #646464;
  border-radius: 50%;
  width: 1.04167vw;
  height: 1.04167vw;
  -webkit-box-shadow: 0 0 0.625vw 0.20833vw #fff inset;
  box-shadow: 0 0 0.625vw 0.20833vw #fff inset;
  background: #979797;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  -o-transition: box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
}

.timeline-tab__button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 0.41667vw;
  height: 0.41667vw;
  -webkit-box-shadow: 0 0 0.20833vw 0 #27c349 inset, 0 0 0.20833vw 1px #27c34a;
  box-shadow: 0 0 0.20833vw 0 #27c349 inset, 0 0 0.20833vw 1px #27c34a;
  background: #89f977;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

@media (max-width: 1600px) {
  .timeline-tab__button::after {
    width: 0.5vw;
    height: 0.5vw;
  }
}

@media (max-width: 1440px) {
  .timeline-tab__button::after {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1024px) {
  .timeline-tab__button::after {
    width: 0.58594vw;
    height: 0.58594vw;
  }
}

.has-hover .timeline-tab__button:not([disabled]):hover {
  -webkit-box-shadow: 0 0 0.20833vw 1px #89f977, 0 0 0.625vw 0.20833vw #fff inset;
  box-shadow: 0 0 0.20833vw 1px #89f977, 0 0 0.625vw 0.20833vw #fff inset;
}

@media (max-width: 1600px) {
  .timeline-tab__button {
    width: 1vw;
    height: 1vw;
  }
}

@media (max-width: 1440px) {
  .timeline-tab__button {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1024px) {
  .timeline-tab__button {
    width: 1.36719vw;
    height: 1.36719vw;
  }
}

.timeline-tab__text {
  position: absolute;
  left: 50%;
  top: 1.5625vw;
  font-weight: 600;
  font-size: 0.52083vw;
  line-height: 1.04167vw;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.timeline-scroll {
  position: relative;
  display: none;
  margin-bottom: 22.22222vmin 0 12.5vmin 0;
}

.timeline-scroll__wrap {
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: 12.22222vmin;
  width: 100%;
  height: 150.55556vmin;
}

.timeline-scroll__image {
  height: 100%;
}

.timeline-scroll__image .lazy-blur img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top;
  object-position: top;
}

.timeline-scroll__scrollwrap {
  width: 210.27778vmin;
  height: 100%;
}

.timeline-scroll__button {
  position: absolute;
  right: 12.77778vmin;
  bottom: 16.11111vmin;
  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: 2px solid #27c34a;
  border-radius: 50%;
  width: 12.22222vmin;
  height: 12.22222vmin;
  -webkit-box-shadow: 0 0 1.94444vmin 0 rgba(151, 151, 151, 0.7) inset, 0 0 3.88889vmin 0 #27c34a;
  box-shadow: 0 0 1.94444vmin 0 rgba(151, 151, 151, 0.7) inset, 0 0 3.88889vmin 0 #27c34a;
  color: #fff;
  background: #89f977;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  pointer-events: none;
  gap: 0 1.11111vmin;
}

.timeline-scroll__button svg {
  width: 3.88889vmin;
  height: 3.88889vmin;
  fill: none;
}

.timeline-scroll__button svg:first-child {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.timeline-scroll__button.is-active {
  opacity: 0;
}

@media (max-width: 1023px) {
  .timeline-scroll {
    display: block;
    margin-top: 22.22222vmin;
  }
}

@media (max-width: 1366px) {
  .timeline {
    margin-left: -1.77083vw;
    padding-left: 0;
    max-width: 66.61786vw;
  }
}

@media (max-width: 1023px) {
  .timeline {
    margin-bottom: 21.66667vmin;
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
  }
}

.about {
  margin-bottom: 5.46875vw;
  border-top: 2px solid #e0e0e0;
  font-family: "Proxima Nova", sans-serif;
}

.about .container {
  margin-right: 0;
  margin-left: auto;
  width: 100%;
}
.authors {
  border-top: 2px solid #e0e0e0;
}
.about .container &gt; *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.about .container &gt; *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.about .container &gt; *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.about .container &gt; *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

@media (max-width: 1366px) {
  .about .container {
    grid-gap: 2.92826vw 0;
    margin-left: 2.48902vw;
    max-width: 69.98536vw;
  }
}

@media (max-width: 1023px) {
  .about .container {
    grid-gap: 8.33333vmin 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-left: auto;
    padding: 0 3.33333vmin;
    max-width: 100%;
  }
}

.about a {
  text-decoration: underline;
  color: #979797;
}

.has-hover .about a:not([disabled]):hover {
  color: #171717;
}

.about__title {
  font-weight: 900;
  font-size: 1.15833vw;
  line-height: 2.89583vw;
}

@media (max-width: 1366px) {
  .about__title {
    font-size: 3.95315vw;
    line-height: 4.83163vw;
  }
}

@media (max-width: 1023px) {
  .about__title {
    font-size: 6.11111vmin;
    line-height: 1;
    margin: 2vh 0;
  }
}

.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  align-items: flex-start;
}

.about__item:nth-child(2) {
  padding-right: 2.08333vw;
}

@media (max-width: 1366px) {
  .about__item {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }

  .about__item:nth-child(2) {
    padding-right: 0;
  }
}

@media (max-width: 1023px) {
  .about__item:nth-child(2) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.about__extra {
  margin-bottom: 1.875vw;
}

.about__extra p {
  margin-bottom: 0.9375vw;
  line-height: 1.04167vw;
}

@media (max-width: 1366px) {
  .about__extra p {
    font-size: 1.02489vw;
    line-height: 1.31772vw;
  }
}

@media (max-width: 1023px) {
  .about__extra p {
    margin-bottom: 3.33333vmin;
    font-size: 3.88889vmin;
    line-height: 5vmin;
  }
}

@media (max-width: 1023px) {
  .about__extra {
    margin-bottom: 3.33333vmin;
  }
}

.about__thanks {
  margin-bottom: 2.08333vw;
  font-weight: 900;
  font-size: 1.66667vw;
  line-height: 2.08333vw;
  text-transform: uppercase;
  color: #d0d0d0;
}

.about__thanks b {
  color: #979797;
}

@media (max-width: 1366px) {
  .about__thanks {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    margin-bottom: 0;
    padding-right: 2.92826vw;
    font-size: 2.04978vw;
    line-height: 2.48902vw;
  }
}

@media (max-width: 1023px) {
  .about__thanks {
    -ms-grid-column: 1;
    grid-column: 1;
    margin-right: -3.33333vmin;
    padding-right: 0;
    font-size: 5.27778vmin;
    line-height: 6.66667vmin;
  }
}

.about-creators {
  margin-bottom: 0.39583vw;
}

.about-creators__item {
  margin-bottom: 0.41667vw;
}

@media (max-width: 1023px) {
  .about-creators__item {
    margin-bottom: 1.66667vmin;
  }
}

.about-creators__title {
  font-weight: bold;
}

@media (max-width: 1366px) {
  .about-creators {
    margin-bottom: 1.46413vw;
    font-size: 1.02489vw;
    line-height: 1.31772vw;
  }
}

@media (max-width: 1023px) {
  .about-creators {
    font-size: 3.88889vmin;
    line-height: 5vmin;
  }
}

.about-copyright__item {
  line-height: 0.72917vw;
  letter-spacing: 0.03em;
}

@media (max-width: 1366px) {
  .about-copyright__item {
    font-size: 3.88889vmin;
    line-height: 1.02489vw;
  }
}


@media (max-width: 1023px) {
  .about-copyright__item {
    font-size: 3.88889vmin;
    line-height: 2.77778vmin;
  }
}

.about-copyright__logo {
  display: block;
  margin-right: 0.72917vw;
  width: 2.44792vw;
  height: 2.44792vw;
}

@media (max-width: 1366px) {
  .about-copyright__logo {
    margin-right: 0.87848vw;
    width: 3.07467vw;
    height: 3.07467vw;
  }
}

@media (max-width: 1023px) {
  .about-copyright__logo {
    margin-right: 2.22222vmin;
    width: 11.38889vmin;
    height: 11.38889vmin;
  }
}

.about-copyright__name {
  display: block;
  margin-bottom: 0.41667vw;
}

@media (max-width: 1023px) {
  .about-copyright__text {
    display: inline-block;
    margin-top: 1.11111vmin;
  }
}

@media (max-width: 1366px) {
  .about-copyright {
    position: absolute;
    top: 100%;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    margin-top: 2.48902vw;
  }
}

.about-sources__title {
  margin: 0 0 0.52083vw 0;
  font-weight: bold;
  font-size: 0.83333vw;
  line-height: 1.04167vw;
}

@media (max-width: 1366px) {
  .about-sources__title {
    -webkit-column-span: all;
    -moz-column-span: all;
    column-span: all;
    margin: -0.58565vw 0 0.73206vw 0;
    font-size: 1.02489vw;
    line-height: 1.31772vw;
  }
}

@media (max-width: 1023px) {
  .about-sources__title {
    margin: 0 0 2.77778vmin 0;
    font-size: 3.88889vmin;
    line-height: 5vmin;
  }
}

.about-sources__item {
  margin: 0 0 0.10417vw 0;
  font-size: 0.67708vw;
  line-height: 0.83333vw;
  letter-spacing: 0.01em;
}

@media (max-width: 1366px) {
  .about-sources__item {
    margin: 0 0 0.21962vw 0;
    font-size: 0.95168vw;
    line-height: 1.1713vw;
  }
}

@media (max-width: 1023px) {
  .about-sources__item {
    margin: 0 0 1.11111vmin 0;
    font-size: 3.61111vmin;
    line-height: 4.44444vmin;
  }
}

@media (max-width: 1366px) {
  .about-sources {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 3.07467vw;
    -moz-column-gap: 3.07467vw;
    column-gap: 3.07467vw;
  }
}

@media (max-width: 1023px) {
  .about-sources {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

@media (max-width: 1366px) {
  .about {
    margin-bottom: 7.68668vw;
  }
}

@media (max-width: 1023px) {
  .about {
    margin-bottom: 40.55556vmin;
  }
}

.mdi-telegram:before {
  content: "\F501";
}

.pin-spacer {
  height: 10px !important;
}

section.hero.js-panel.is-active {
  height: 200px;
  transition: width 2s, height 2s, background-color 2s, transform 2s;
}
.article-map__comments {
  border-top: 2px solid #e8e8e8;
  margin-top: 5vh;
  padding-top: 1vh;
}
.article-map__comment &gt; div:first-child {
  padding: 0 10px;
  font-style: italic;
}
.article-map__comment {
  display: none;
  font-size: 1.14583vw;
  margin-top: 7px;
  border: solid;
  border-width: 15px;
  border-radius: 5px;
  background: #e2cda0;
  border-image: url(/borders/images/comment-place.png) 100 100 100 100;
}

.article-map__comment.comment_active {
  display: block;
}

.comment__create {
  padding: 0 10px;
}

.comment__author {
  font-weight: bold;
  padding: 0 10px;
  margin-top: 5px;
}

.comment__text {
  padding: 0 10px;
}

.article-map__gallery button {
  position: absolute;
  top: 0;
  font-size: 100px;
  opacity: 0.7;
  background: #dedede;
  height: 100%;
  border: none;
  z-index: 1000;
}

.article-map__gallery button:hover {
  opacity: 1;
  background: #f9f9f9;
}

#prevImage {
  left: -7%;
}

#nextImage {
  right: -7%;
}

header.header.is-active-m.is-lead-m {
  opacity: 0;
}

@media (max-width: 1023px) {
  #prevImage {
    left: 0;
    opacity: 0.7;
    background: #dedede;
  }

  #nextImage {
    right: 0;
    opacity: 0.7;
    background: #dedede;
  }
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  cursor: none;
  /*Установите размер стекла лупы:*/
  width: 300px;
  height: 200px;
  top: 0;
  left: 0;
}


.footnote {
  display: none;
}

.footnote.active {
  display: block;
}

.fn_btn {
  vertical-align: middle;
}

.articles {
  display: flex;
  margin: 2vh -25px;
  justify-content: space-around;
  font-family:"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.article__block {
  width: 45%;
  border-image: url(/borders/images/comment-place.png) 100 100 100 100;
  border-style: solid;
  border-width: 15px;
  padding: 5px
}

.article__block &gt; div:first-child {
  display: flex;
  border-bottom: 1px solid #939393;
  padding: 10px
}

.article__photo {
  width: 50%;
  margin-left: -1vw;
}
.article__lead {
  padding: 10px 10px;
}
.article__head {
  display: flex;
  flex-direction: column;
  font-size: 1.364583vw;
  line-height: 1.70333vw;
  letter-spacing: 0;
}
.article__block:first-child .article__photo {
  display: flex;
  margin-right: 2vw;
  flex-direction: column;
  margin-top: -5px;
}.article__block:nth-child(2) .article__photo {
   width: 70%;
 }
.article__photo &gt; img:nth-child(2) {
  margin-top: -20%;
}
.fn_btn img {
  height: 2.4vmin;
}
.authors div {
  margin-bottom: 1vh;
}


@media (max-width: 1023px) {
  .article__text, .article-map__comment {
    font-size: 5vmin;
    line-height: 8.61111vmin;
    letter-spacing: -0.02em;
  }

  .articles {
    flex-direction: column;
    margin: 0 15px;
  }

  .article__block {
    width: 100%;
    margin-bottom: 3vh;
  }
  .article__block:first-child .article__photo {
    display: flex;
    margin-right: 1vw;
    flex-direction: column;
    margin-top: -5px;
    justify-content: space-around;
  }
  .article__block:nth-child(2) .article__photo {
    width: 90%;
  }

  .article__head {
    font-size: 5.34583vw;
    line-height: 8.61111vmin;
  }
  .fn_btn img {
    height: 4.4vmin;
  }

}</pre></body></html>