

/* Start:/bitrix/templates/map/css/main.css?1641818998138337*/
@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap");
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  *::after, *::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }

html {
  position: relative;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }
    @media (min-width: 1025px) {
      html.is-lock-scroll #inner-box,
      html.is-lock-scroll body #inner-box {
        overflow: hidden; } }
  @media (min-width: 1025px) {
    html {
      font-size: calc(100vw / 1440 * 10); } }

body {
  overflow-x: hidden;
  min-height: 100vh;
  -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%;
  color: #3c4a5f;
  -webkit-tap-highlight-color: transparent;
  background-color: #f6f6f6; }
  body-longread {
    font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 400; }
  body.scroll-lock {
    overflow: hidden; }

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: auto;
  max-width: 1400px; }

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; }
  a.link {
    text-decoration: underline; }

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

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

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

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

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

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

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

iframe {
  display: block; }

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

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

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

.wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 2em;
  max-width: 112em; }
  @media (min-width: 1025px) {
    .wrapper {
      padding: 0; } }
  @media (max-width: 767px) {
    .wrapper {
      padding: 0; } }

.section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100vh; }

.flex-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around; }

[data-action] [data-action-default] {
  display: initial; }

[data-action] [data-action-hover] {
  display: none; }

.has-hover [data-action]:not([disabled]):hover [data-action-default] {
  display: none; }

.has-hover [data-action]:not([disabled]):hover [data-action-hover] {
  display: initial; }

.custom-dotted, .tree-menu .menu-heading li, #inner-box .sidebar-container .sidebar .menu-heading li, .tree-menu .menu-side > li > div > .item, #inner-box .sidebar-container .sidebar .menu-side > li > div > .item, .longread-sidebar__item a, #inner-box .content-container .content .company__link, #inner-box .content-container .breadcrumbs span.dotted {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #667894), color-stop(25.1%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: -o-linear-gradient(left, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
  background-image: linear-gradient(to right, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 4px 1px;
  background-repeat: repeat-x;
  cursor: pointer; }
  .has-hover .custom-dotted:not([disabled]):hover, .has-hover .tree-menu .menu-heading li:not([disabled]):hover, .tree-menu .menu-heading .has-hover li:not([disabled]):hover, .has-hover #inner-box .sidebar-container .sidebar .menu-heading li:not([disabled]):hover, #inner-box .sidebar-container .sidebar .menu-heading .has-hover li:not([disabled]):hover, .has-hover .tree-menu .menu-side > li > div > .item:not([disabled]):hover, .tree-menu .has-hover .menu-side > li > div > .item:not([disabled]):hover, .has-hover #inner-box .sidebar-container .sidebar .menu-side > li > div > .item:not([disabled]):hover, #inner-box .sidebar-container .sidebar .has-hover .menu-side > li > div > .item:not([disabled]):hover, .has-hover .longread-sidebar__item a:not([disabled]):hover, .longread-sidebar__item .has-hover a:not([disabled]):hover, .has-hover #inner-box .content-container .content .company__link:not([disabled]):hover, #inner-box .content-container .content .has-hover .company__link:not([disabled]):hover, .has-hover #inner-box .content-container .breadcrumbs span.dotted:not([disabled]):hover, #inner-box .content-container .breadcrumbs .has-hover span.dotted:not([disabled]):hover {
    background-image: none; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.map__group {
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s; }
  .map__group#gorod-moskva, .map__group#gorod-spb {
    color: #3c4a5f; }
  .map__group.export {
    color: #aab2bd;
    cursor: pointer; }
    .map__group.export.hover {
      color: #3c4a5f !important; }
    @media (min-width: 1025px) {
      .map__group.export:hover {
        color: #3c4a5f !important; } }
  .map__group.active {
    color: #3c4a5f !important; }

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

.is-hide {
  opacity: 0; }

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

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

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

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

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

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

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

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

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

/* stylelint-enable */
.header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  padding-top: 25px;
  width: 100%;
  height: 0; }
  .header a {
    display: inline-block;
    vertical-align: top;
    height: 96px; }
    .header a.logo {
      width: 99px; }
    .header a.logo-partner {
      width: 124px; }
    .header a.header-back {
      margin-right: calc(50% - 140px);
      height: 34px; }
  .header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px; }
    @media (min-width: 1025px) {
      .header .wrapper {
        padding: 0; } }
  .header__burger {
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: -3.25px 0;
    margin-left: auto;
    width: 39px;
    color: #000; }
    .header__burger span {
      display: block;
      margin: 6.5px 0;
      width: 39px;
      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, 8px) rotate(-45deg);
          -ms-transform: translate(0, 8px) rotate(-45deg);
              transform: translate(0, 8px) rotate(-45deg); }
    .header__burger.is-active span:last-child {
      -webkit-transform: translate(0, -6px) rotate(45deg);
          -ms-transform: translate(0, -6px) rotate(45deg);
              transform: translate(0, -6px) rotate(45deg); }
  .header__text {
    max-width: 440px;
    font-weight: 900;
    font-size: 17px;
    line-height: 18px; }
    .header__text span {
      display: block;
      margin-top: 5px;
      font-weight: 400;
      font-size: 15px;
      line-height: 22px;
      opacity: 0.5; }
    @media (max-width: 767px) {
      .header__text {
        display: none; } }
  .header .header-back {
    position: relative;
    left: -10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: auto;
    margin-bottom: 26px; }
    .header .header-back svg {
      width: 30px;
      height: 30px; }
    .header .header-back-caption {
      font-family: "Oswald", sans-serif;
      font-weight: 500;
      font-size: 16px;
      letter-spacing: -0.01em;
      text-transform: uppercase; }
  @media (max-width: 767px) {
    .header {
      z-index: 20;
      padding-top: 10px;
      width: auto;
      height: 20px;
      text-align: center; }
      .header a.logo {
        margin-top: 6px;
        width: 88px;
        height: 56px; }
      .header a.logo-partner {
        width: 93px;
        height: 70px; } }
  @media (min-width: 1025px) {
    .header {
      padding-left: 358px; } }
  @media (min-width: 1600px) {
    .header {
      padding-left: 555px; } }
  @media (min-width: 1900px) {
    .header {
      padding-left: 624px; } }

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 8;
  margin-top: auto;
  padding: 0 10px 10px 0;
  width: 790px; }
  .footer .copyright {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px; }
    @media (max-width: 1024px) {
      .footer .copyright {
        padding-top: 27px;
        width: 100%;
        font-size: 13px;
        line-height: 18px; } }
  .footer .social-links {
    font-size: 0;
    text-align: right; }
    .footer .social-links a {
      display: inline-block;
      margin: 0 0 0 20px;
      width: 50px;
      height: 50px; }
      .has-hover .footer .social-links a:not([disabled]):hover {
        color: #4a6fa6; }
    @media (max-width: 1024px) {
      .footer .social-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%; }
        .footer .social-links a {
          margin: 0; } }
  @media (max-width: 1024px) {
    .footer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      position: static;
      left: initial;
      bottom: initial;
      padding: 20px 26px;
      width: 100%; } }
  @media (min-width: 1025px) {
    .footer {
      left: 358px; } }
  @media (min-width: 1025px) and (max-height: 700px) {
    .footer {
      padding-bottom: 20px; } }
  @media (min-width: 1600px) {
    .footer {
      left: 555px; } }
  @media (min-width: 1900px) {
    .footer {
      left: 624px; } }

.popup {
  position: absolute;
  left: 0;
  z-index: 100;
  padding: 20px 30px;
  width: 350px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15), 0 5px 15px -7px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15), 0 5px 15px -7px rgba(0, 0, 0, 0.5);
  font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
  color: #3c4a5f;
  background: #fff;
  will-change: transform; }
  .popup.only-region {
    padding: 10px 20px;
    width: auto;
    white-space: nowrap; }
  .popup__close {
    position: absolute;
    right: 10px;
    top: 10px;
    display: block;
    width: 30px;
    height: 30px;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTQgLjdsLS43LS43TDcgNi4zLjcgMCAwIC43IDYuMyA3IDAgMTMuM2wuNy43TDcgNy43bDYuMyA2LjMuNy0uN0w3LjcgN3oiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==) 50% no-repeat;
    opacity: 0.3;
    -webkit-transition: opacity 0.24s;
    -o-transition: opacity 0.24s;
    transition: opacity 0.24s;
    cursor: pointer; }
    .popup__close:hover {
      opacity: 1; }
  .popup__list {
    margin-top: 7px; }
  .popup__item {
    margin-bottom: 12px; }
    .has-hover .popup__item:not([disabled]):hover {
      color: #4a6fa6;
      cursor: pointer; }
  .popup__title {
    font-weight: 300;
    font-size: 14px;
    line-height: 23px; }
  .popup__descr {
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: -0.01em;
    text-transform: uppercase; }
  .popup__name {
    font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.01em; }

#app-main {
  position: relative;
  width: 100%; }

.tree-menu, #inner-box .sidebar-container .sidebar {
  overflow: hidden;
  padding: 20px; }
  .tree-menu .logo, #inner-box .sidebar-container .sidebar .logo {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 2px;
    width: 99px;
    height: 33px; }
    .tree-menu .logo.logo-partner, #inner-box .sidebar-container .sidebar .logo.logo-partner {
      width: 124px; }
      @media (max-width: 767px) {
        .tree-menu .logo.logo-partner, #inner-box .sidebar-container .sidebar .logo.logo-partner {
          width: 93px;
          height: 70px; } }
    @media (max-width: 767px) {
      .tree-menu .logo, #inner-box .sidebar-container .sidebar .logo {
        margin-top: 6px;
        width: 88px;
        height: 56px; } }
  .tree-menu .menu-heading li, #inner-box .sidebar-container .sidebar .menu-heading li {
    position: relative;
    display: inline-block;
    margin: 0 0 0 32px;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px; }
    .tree-menu .menu-heading li:first-child, #inner-box .sidebar-container .sidebar .menu-heading li:first-child {
      margin-left: 0; }
    .tree-menu .menu-heading li.active, #inner-box .sidebar-container .sidebar .menu-heading li.active {
      background-image: none;
      cursor: default;
      pointer-events: none; }
      .tree-menu .menu-heading li.active::before, #inner-box .sidebar-container .sidebar .menu-heading li.active::before {
        content: " ";
        position: absolute;
        left: -14px;
        top: 8px;
        border-radius: 50%;
        width: 7px;
        height: 7px;
        background-color: #3c4a5f; }
  .tree-menu .menu-side, #inner-box .sidebar-container .sidebar .menu-side {
    margin: 30px 0 0; }
    .tree-menu .menu-side > li, #inner-box .sidebar-container .sidebar .menu-side > li {
      margin: 0 0 31px; }
      .tree-menu .menu-side > li > div > .item, #inner-box .sidebar-container .sidebar .menu-side > li > div > .item {
        display: inline-block;
        font-weight: 500;
        font-size: 17px;
        line-height: 23px; }
      .tree-menu .menu-side > li .i, #inner-box .sidebar-container .sidebar .menu-side > li .i {
        display: inline-block;
        margin: 0 0 0 7px;
        font-weight: 400;
        font-style: italic;
        font-size: 13px;
        line-height: 23px; }
      .tree-menu .menu-side > li ul, #inner-box .sidebar-container .sidebar .menu-side > li ul {
        position: absolute;
        left: -200px;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-10px);
            -ms-transform: translateY(-10px);
                transform: translateY(-10px);
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: opacity 0.3s, -webkit-transform 0.3s;
        -o-transition: opacity 0.3s, transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
        transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; }
        .tree-menu .menu-side > li ul li, #inner-box .sidebar-container .sidebar .menu-side > li ul li {
          list-style-type: none;
          margin: 0 0 20px;
          cursor: pointer; }
          .tree-menu .menu-side > li ul li .item, #inner-box .sidebar-container .sidebar .menu-side > li ul li .item,
          .tree-menu .menu-side > li ul li .region,
          #inner-box .sidebar-container .sidebar .menu-side > li ul li .region {
            font-weight: 500;
            font-size: 13px;
            line-height: 18px; }
          
          .tree-menu .menu-side > li ul li .region,
          #inner-box .sidebar-container .sidebar .menu-side > li ul li .region {
            font-weight: 400;
            color: #667894; }
          .tree-menu .menu-side > li ul li.list-item.is-select, #inner-box .sidebar-container .sidebar .menu-side > li ul li.list-item.is-select {
            list-style-type: disc;
            color: #4a6fa6; }
      .tree-menu .menu-side > li.open ul, #inner-box .sidebar-container .sidebar .menu-side > li.open ul {
        position: static;
        z-index: 0;
        padding: 20px 0 0 20px;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0); }
  @media (min-width: 1025px) {
    .tree-menu, #inner-box .sidebar-container .sidebar {
      overflow: auto;
      padding: 26px 28px 0;
      width: 100%;
      height: 100vh;
      background: #fff; } }
  @media (min-width: 1600px) {
    .tree-menu, #inner-box .sidebar-container .sidebar {
      padding: 26px 68px 0; } }
  @media (min-width: 1900px) {
    .tree-menu, #inner-box .sidebar-container .sidebar {
      padding: 26px 93px 0; } }

.longread-header {
  position: relative;
  margin-top: 50px;
  margin-bottom: 30px; }
  .longread-header .container {
    z-index: 2;
    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; }
    .body-longread .longread-header .container {
      max-width: 100%; }
    @media (max-width: 1024px) {
      .longread-header .container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    @media (max-width: 767px) {
      .longread-header .container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        max-width: 65.6vmin; } }
  .longread-header .logo {
    position: relative;
    left: 14px;
    width: 135px;
    height: 45px; }
    .longread-header .logo-partner {
      position: relative;
      left: -28px;
      top: 8px;
      width: 130px;
      height: 100px; }
      @media (max-width: 767px) {
        .longread-header .logo-partner {
          left: -1.86667vmin;
          top: 0;
          width: 21.86667vmin;
          height: 16.8vmin; } }
    @media (max-width: 767px) {
      .longread-header .logo {
        left: 1.6vmin;
        top: -1.6vmin;
        width: 26.4vmin;
        height: 8.8vmin; } }
  .longread-header__burger {
    display: none; }
    .longread-header__burger::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: -1;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      background: #f6f6f6;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    @media (max-width: 1200px) {
      .longread-header__burger {
        position: fixed;
        left: 24px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 36px;
        height: 24px;
        cursor: pointer; }
        .longread-header__burger div {
          border-radius: 10px;
          width: 100%;
          height: 4px;
          background: #3c4a5f; } }
    @media (max-width: 767px) {
      .longread-header__burger {
        left: 6.13333vmin;
        top: 8vmin;
        width: 9.6vmin;
        height: 6.4vmin; }
        .longread-header__burger::before {
          width: 14.93333vmin;
          height: 14.93333vmin; }
        .longread-header__burger div {
          height: 1.06667vmin; } }
  .longread-header-menu {
    display: none; }
    @media (max-width: 1200px) {
      .longread-header-menu {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 101;
        display: block;
        overflow-y: scroll;
        padding: 22.66667vmin 10.66667vmin 4.26667vmin 6.93333vmin;
        width: 100%;
        height: var(--vh, 100vh);
        color: #fff;
        background: #667894;
        -webkit-transform: translate(-100%);
            -ms-transform: translate(-100%);
                transform: translate(-100%);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        .longread-header-menu__group {
          margin-top: 6.66667vmin; }
          .longread-header-menu__group:first-child {
            margin-top: 0; }
        .longread-header-menu__title {
          margin-bottom: 4.8vmin;
          font-weight: 700;
          font-size: 4.53333vmin;
          line-height: 5.33333vmin; }
          .longread-header-menu__title br {
            display: none; }
        .longread-header-menu__item {
          margin-top: 3.73333vmin;
          font-size: 16px; }
          .longread-header-menu__item a {
            background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #aab2bd), color-stop(25.1%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0)));
            background-image: -o-linear-gradient(left, #aab2bd 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
            background-image: linear-gradient(to right, #aab2bd 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
            background-position: bottom;
            background-size: 4px 1px;
            background-repeat: repeat-x; }
          .longread-header-menu__item br {
            display: none; }
          .longread-header-menu__item:first-child {
            margin-top: 0; }
        .longread-header-menu__close {
          position: absolute;
          left: 6.93333vmin;
          top: 5.33333vmin;
          width: 10.66667vmin;
          height: 10.66667vmin;
          cursor: pointer; }
          .longread-header-menu__close::before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            border-radius: 5px;
            width: 100%;
            height: 1.06667vmin;
            background: #fff;
            -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                    transform: rotate(45deg); }
          .longread-header-menu__close::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            border-radius: 5px;
            width: 100%;
            height: 1.06667vmin;
            background: #fff;
            -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                    transform: rotate(-45deg); }
        .longread-header-menu.opened {
          -webkit-transform: translate(0);
              -ms-transform: translate(0);
                  transform: translate(0); } }
  .longread-header__title {
    margin: 0 0 0 -5px;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -0.042em;
    text-align: center;
    text-transform: uppercase; }
    @media (max-width: 1024px) {
      .longread-header__title {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
    @media (max-width: 767px) {
      .longread-header__title {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-top: 4.8vmin;
        max-width: 84vmin;
        font-size: 10.13333vmin;
        line-height: 12vmin; } }
  @media (max-width: 767px) {
    .longread-header {
      z-index: 100;
      margin-top: 4.26667vmin;
      margin-bottom: 9.06667vmin;
      padding: 0; } }

.longread-newexport__intro {
  margin-bottom: 52px;
  max-width: 1260px; }
  @media (max-width: 767px) {
    .longread-newexport__intro {
      margin-bottom: 13.33333vmin;
      padding: 0 5.86667vmin;
      max-width: 100%; } }

.longread-newexport__text {
  margin-bottom: 15px;
  padding-right: 10px;
  font-size: 17px;
  line-height: 30px; }
  .longread-newexport__text p.for-mobile {
    margin-bottom: 4.8vmin; }
  @media (max-width: 767px) {
    .longread-newexport__text {
      margin-bottom: 4.26667vmin;
      padding-right: 0;
      font-size: 4.26667vmin;
      line-height: 7.46667vmin; } }

.longread-newexport__smallText {
  font-size: 17px;
  line-height: 30px; }
  @media (max-width: 767px) {
    .longread-newexport__smallText {
      padding-right: 0;
      font-size: 4.26667vmin;
      line-height: 7.46667vmin; } }

.longread-newexport-wagon {
  position: relative;
  margin-bottom: 22px;
  width: 1400px;
  height: 372px; }
  .longread-newexport-wagon__cistern {
    width: 100%; }
    .longread-newexport-wagon__cistern--overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 824px;
      height: 352px;
      opacity: 0;
      -webkit-transition: opacity 1s;
      -o-transition: opacity 1s;
      transition: opacity 1s; }
      .longread-newexport.is-active .longread-newexport-wagon__cistern--overlay {
        opacity: 1; }
      @media (max-width: 767px) {
        .longread-newexport-wagon__cistern--overlay {
          left: 0;
          top: 0;
          width: 100%;
          height: auto; } }
  @media (max-width: 767px) {
    .body-longread .longread-newexport-wagon.container {
      padding: 0; } }
  @media (max-width: 767px) {
    .longread-newexport-wagon {
      margin-bottom: 56px;
      width: 100%;
      height: auto; } }

.longread-newexport-title {
  position: relative;
  margin: 0 0 20px 0; }
  .longread-newexport-title h2 {
    margin: 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: -0.04em;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .longread-newexport-title h2 {
        font-size: 6.4vmin;
        line-height: 1.3;
        letter-spacing: -0.04em;
        text-align: left; }
        .longread-newexport-title h2.longread-newexport-title__replace {
          font-size: 6.93333vmin; } }
  .longread-newexport-title__normal {
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s; }
    @media (max-width: 767px) {
      .longread-newexport-title__normal {
        font-size: 8.53333vmin;
        line-height: 8.53333vmin;
        letter-spacing: -0.04; } }
  @media (max-width: 767px) {
    .longread-newexport-title {
      margin: 0 0 5.33333vmin 0; } }

.longread-newexport-increase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 74px;
  max-width: 878px; }
  .longread-newexport-increase__head {
    margin-top: 74px;
    width: 271px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__head {
        margin: 0 0 11.2vmin 0;
        width: 100%; } }
  .longread-newexport-increase__title {
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-newexport-increase__title {
        margin: 0 0 2.13333vmin 0;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-newexport-increase__text {
    margin-top: 10px;
    font-weight: 300;
    font-size: 15px;
    line-height: 22px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__text {
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  .longread-newexport-increase__chart {
    position: relative;
    left: -6px;
    top: -6px;
    width: 538px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__chart {
        left: 1.06667vmin;
        top: 0;
        width: 88vmin; } }
  .longread-newexport-increase__image {
    width: 538px;
    height: 252px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__image {
        width: 81.33333vmin;
        height: 42.13333vmin; } }
  .longread-newexport-increase__grid {
    position: absolute;
    left: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    grid-gap: 190px 0;
    -ms-grid-columns: 75px 0 75px 0 75px;
    grid-template-columns: repeat(3, 75px);
    -ms-grid-rows: -webkit-min-content 190px -webkit-min-content;
    -ms-grid-rows: min-content 190px min-content;
    grid-template-rows: -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content;
    width: 100%; }
  .longread-newexport-increase__grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }
  .longread-newexport-increase__grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3; }
  .longread-newexport-increase__grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5; }
  .longread-newexport-increase__grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1; }
  .longread-newexport-increase__grid > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3; }
  .longread-newexport-increase__grid > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5; }
    @media (max-width: 767px) {
      .longread-newexport-increase__grid {
        grid-gap: 36.26667vmin 0;
        -ms-grid-columns: 17.06667vmin 0 17.06667vmin 0 17.06667vmin;
        grid-template-columns: repeat(3, 17.06667vmin); } }
  .longread-newexport-increase__item {
    position: relative;
    text-align: center; }
    .longread-newexport-increase__item:nth-child(1) {
      top: 96px; }
      @media (max-width: 767px) {
        .longread-newexport-increase__item:nth-child(1) {
          top: 11.73333vmin; } }
    .longread-newexport-increase__item:nth-child(2) {
      top: 60px; }
      @media (max-width: 767px) {
        .longread-newexport-increase__item:nth-child(2) {
          top: 4.8vmin; } }
    @media (max-width: 767px) {
      .longread-newexport-increase__item:nth-child(3) {
        top: -10.66667vmin; } }
    .longread-newexport-increase__item:nth-child(2), .longread-newexport-increase__item:nth-child(5) {
      left: -10px; }
      @media (max-width: 767px) {
        .longread-newexport-increase__item:nth-child(2), .longread-newexport-increase__item:nth-child(5) {
          left: 2.66667vmin; } }
  .longread-newexport-increase__number {
    display: block;
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 17px;
    line-height: 18px;
    letter-spacing: -0.04em; }
    @media (max-width: 767px) {
      .longread-newexport-increase__number {
        font-size: 4vmin;
        line-height: 5.33333vmin; } }
  .longread-newexport-increase__currency {
    font-size: 15px;
    line-height: 22px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__currency {
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  .longread-newexport-increase__year {
    font-size: 15px;
    line-height: 25px; }
    @media (max-width: 767px) {
      .longread-newexport-increase__year {
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  @media (max-width: 767px) {
    .longread-newexport-increase {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 21.33333vmin;
      padding: 0 5.86667vmin;
      max-width: 100%; } }

.longread-whatismost {
  margin-bottom: 92px; }
  .longread-whatismost .container {
    max-width: 820px; }
    @media (max-width: 767px) {
      .longread-whatismost .container {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 0 5.6vmin;
        max-width: 100%; } }
  .longread-whatismost__title {
    display: none; }
    @media (max-width: 767px) {
      .longread-whatismost__title {
        display: block;
        margin: 0 0 2.66667vmin 0;
        font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
        font-weight: 500;
        font-size: 5.86667vmin;
        line-height: 1.2;
        letter-spacing: -0.01em; } }
  .longread-whatismost__item:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 30px; }
  @media (max-width: 767px) {
    .longread-whatismost__item {
      width: 100%; } }
  .longread-whatismost__text {
    font-size: 17px;
    line-height: 30px; }
    .longread-whatismost__text p {
      margin: 0 0 34px 0;
      padding-right: 10px; }
      @media (max-width: 767px) {
        .longread-whatismost__text p {
          margin: 0 0 11.46667vmin 0;
          padding-right: 0; } }
    @media (max-width: 767px) {
      .longread-whatismost__text {
        font-size: 4vmin;
        line-height: 7.2vmin; } }
  .longread-whatismost-chart {
    position: relative;
    left: 40px;
    top: -53px;
    display: block;
    margin: 62px auto 0 auto;
    width: 666px;
    height: 482px; }
    .longread-whatismost-chart__head {
      position: absolute;
      left: -17%;
      top: 45%;
      max-width: 300px;
      -webkit-transform: translateY(-55px);
          -ms-transform: translateY(-55px);
              transform: translateY(-55px); }
      @media (max-width: 767px) {
        .longread-whatismost-chart__head {
          position: relative;
          left: 0;
          top: 18.13333vmin;
          margin-bottom: 12.26667vmin;
          max-width: 100%;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; } }
    .longread-whatismost-chart__title {
      margin: 0 0 7px 0;
      font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
      font-weight: 500;
      font-size: 30px;
      line-height: 30px;
      letter-spacing: -0.01em; }
      @media (max-width: 767px) {
        .longread-whatismost-chart__title {
          margin-bottom: 2.13333vmin;
          font-size: 5.86667vmin;
          line-height: 1.2; } }
    .longread-whatismost-chart__text {
      font-weight: 300;
      font-size: 15px;
      line-height: 23px; }
      @media (max-width: 767px) {
        .longread-whatismost-chart__text {
          font-size: 3.46667vmin;
          line-height: 4.8vmin; } }
    @media (max-width: 767px) {
      .longread-whatismost-chart__main {
        position: relative;
        left: -24vmin;
        top: 9.33333vmin;
        width: 112.53333vmin;
        height: 89.6vmin; }
        .longread-whatismost-chart__main img {
          -webkit-transform: rotate(328deg);
              -ms-transform: rotate(328deg);
                  transform: rotate(328deg); } }
    .longread-whatismost-chart__image {
      width: 100%; }
    .longread-whatismost-chart__number {
      position: absolute;
      font-weight: 900;
      font-size: 17px;
      line-height: 18px;
      color: #fff; }
      .longread-whatismost-chart__number:nth-child(1) {
        right: 311px;
        top: 126px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__number:nth-child(1) {
            right: 61.06667vmin;
            top: 21.06667vmin; } }
      .longread-whatismost-chart__number:nth-child(2) {
        right: 153px;
        top: 274px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__number:nth-child(2) {
            right: 29.06667vmin;
            top: 30.66667vmin; } }
      .longread-whatismost-chart__number:nth-child(3) {
        right: 241px;
        top: 415px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__number:nth-child(3) {
            right: 27.2vmin;
            top: 56.8vmin; } }
      .longread-whatismost-chart__number:nth-child(4) {
        right: 383px;
        bottom: 55px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__number:nth-child(4) {
            right: 49.6vmin;
            bottom: 13.06667vmin; } }
      .longread-whatismost-chart__number:nth-child(5) {
        right: 471px;
        top: 319px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__number:nth-child(5) {
            right: 70.13333vmin;
            top: 64.53333vmin; } }
      @media (max-width: 767px) {
        .longread-whatismost-chart__number {
          font-size: 4vmin;
          line-height: 5.33333vmin; } }
    .longread-whatismost-chart__label {
      position: absolute;
      font-size: 15px;
      line-height: 21px; }
      .longread-whatismost-chart__label:nth-child(1) {
        right: 255px;
        top: 44px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__label:nth-child(1) {
            right: 48vmin;
            top: 4.8vmin; } }
      .longread-whatismost-chart__label:nth-child(2) {
        right: -19px;
        top: 276px;
        max-width: 124px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__label:nth-child(2) {
            left: 89.06667vmin;
            right: auto;
            top: 21.33333vmin;
            max-width: 33.06667vmin; } }
        @media (max-width: 768px) and (orientation: landscape) {
          .longread-whatismost-chart__label:nth-child(2) {
            right: -19.73333vmin; } }
      .longread-whatismost-chart__label:nth-child(3) {
        right: 86px;
        bottom: -24px;
        max-width: 124px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__label:nth-child(3) {
            right: -7.73333vmin;
            bottom: 15.2vmin;
            max-width: 33.06667vmin; } }
      .longread-whatismost-chart__label:nth-child(4) {
        right: 460px;
        bottom: -2px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__label:nth-child(4) {
            right: 40.53333vmin;
            bottom: -0.26667vmin; } }
      .longread-whatismost-chart__label:nth-child(5) {
        right: 555px;
        bottom: 118px;
        max-width: 124px; }
        @media (max-width: 767px) {
          .longread-whatismost-chart__label:nth-child(5) {
            right: 55.2vmin;
            bottom: 28.53333vmin;
            max-width: 33.06667vmin; } }
      @media (max-width: 767px) {
        .longread-whatismost-chart__label {
          font-size: 3.46667vmin;
          line-height: 5.33333vmin; } }
    @media (max-width: 767px) {
      .longread-whatismost-chart {
        left: 0;
        margin-top: 0;
        width: 100%;
        height: auto; } }
  .longread-whatismost .longread-footer-resource {
    margin-bottom: 87px; }
  @media (max-width: 767px) {
    .longread-whatismost {
      margin-bottom: 11.73333vmin; } }

.longread-wheremost {
  position: relative;
  margin-bottom: 100px; }
  .longread-wheremost .container {
    max-width: 840px; }
    @media (max-width: 767px) {
      .longread-wheremost .container {
        padding: 0 5.6vmin;
        max-width: 100%; } }
  .longread-wheremost__title {
    margin: 0 0 10px 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-wheremost__title {
        margin: 0 0 2.66667vmin 0;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-wheremost__subtitle {
    margin: 0 0 26px 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 23px; }
    @media (max-width: 767px) {
      .longread-wheremost__subtitle {
        margin: 0 0 5.86667vmin 0;
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  .longread-wheremost__text {
    position: absolute;
    left: 403px;
    bottom: -10px;
    max-width: 400px;
    font-size: 15px;
    line-height: 22px; }
    @media (max-width: 767px) {
      .longread-wheremost__text {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        font-size: 4.26667vmin;
        line-height: 7.46667vmin; } }
  .longread-wheremost-chart__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px; }
    .longread-wheremost-chart__item:nth-child(1) .longread-wheremost-truck {
      width: 226px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(1) .longread-wheremost-truck {
          width: 28vmin; } }
    .longread-wheremost-chart__item:nth-child(2) .longread-wheremost-truck {
      width: 171px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(2) .longread-wheremost-truck {
          margin-left: 13.33333vmin;
          width: 26.66667vmin;
          margin-right: 12.53333vmin; }
          .longread-wheremost-chart__item:nth-child(2) .longread-wheremost-truck::before {
            left: -13.33333vmin;
            width: 13.33333vmin;
            background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start-2.svg"); }
          .longread-wheremost-chart__item:nth-child(2) .longread-wheremost-truck::after {
            right: -12vmin;
            -webkit-clip-path: inset(0 0 0 0vmin);
                    clip-path: inset(0 0 0 0vmin); } }
    .longread-wheremost-chart__item:nth-child(3) .longread-wheremost-truck {
      width: 122px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(3) .longread-wheremost-truck {
          margin-left: 13.33333vmin;
          width: 16.8vmin;
          margin-right: 12.53333vmin; }
          .longread-wheremost-chart__item:nth-child(3) .longread-wheremost-truck::before {
            left: -13.33333vmin;
            width: 13.33333vmin;
            background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start-2.svg"); } }
    .longread-wheremost-chart__item:nth-child(4) .longread-wheremost-truck {
      width: 122px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(4) .longread-wheremost-truck {
          margin-left: 13.33333vmin;
          width: 17.6vmin;
          margin-right: 12.53333vmin; }
          .longread-wheremost-chart__item:nth-child(4) .longread-wheremost-truck::before {
            left: -13.33333vmin;
            width: 13.33333vmin;
            background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start-2.svg"); }
          .longread-wheremost-chart__item:nth-child(4) .longread-wheremost-truck::after {
            right: -11.46667vmin;
            -webkit-clip-path: inset(0 0 0 0vmin);
                    clip-path: inset(0 0 0 0vmin); } }
    .longread-wheremost-chart__item:nth-child(5) .longread-wheremost-truck {
      width: 45px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(5) .longread-wheremost-truck {
          margin-left: 13.33333vmin;
          width: 2.66667vmin;
          margin-right: 12.53333vmin; }
          .longread-wheremost-chart__item:nth-child(5) .longread-wheremost-truck::before {
            left: -13.33333vmin;
            width: 13.33333vmin;
            background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start-2.svg"); }
          .longread-wheremost-chart__item:nth-child(5) .longread-wheremost-truck::after {
            right: -12.26667vmin;
            -webkit-clip-path: inset(0 0 0 0vmin);
                    clip-path: inset(0 0 0 0vmin); } }
    .longread-wheremost-chart__item:nth-child(6) .longread-wheremost-truck {
      width: 18px; }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(6) .longread-wheremost-truck::before {
          -webkit-clip-path: inset(0 1.6vmin 0 0);
                  clip-path: inset(0 1.6vmin 0 0); } }
      @media (max-width: 767px) {
        .longread-wheremost-chart__item:nth-child(6) .longread-wheremost-truck {
          margin-left: 13.33333vmin;
          width: 0vmin;
          margin-right: 6.13333vmin; }
          .longread-wheremost-chart__item:nth-child(6) .longread-wheremost-truck::before {
            left: -13.33333vmin;
            width: 13.33333vmin;
            background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start-2.svg"); }
          .longread-wheremost-chart__item:nth-child(6) .longread-wheremost-truck::after {
            right: -4.26667vmin;
            -webkit-clip-path: inset(0 0 0 6.4vmin);
                    clip-path: inset(0 0 0 6.4vmin); } }
    @media (max-width: 767px) {
      .longread-wheremost-chart__item {
        margin-bottom: 8vmin; } }
  .longread-wheremost-chart__truck {
    margin-right: 20px; }
    @media (max-width: 767px) {
      .longread-wheremost-chart__truck {
        margin-right: 2.66667vmin; } }
  @media (max-width: 767px) {
    .longread-wheremost-chart__data {
      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; } }
  .longread-wheremost-chart__country {
    display: block;
    font-size: 15px;
    line-height: 27px; }
    @media (max-width: 767px) {
      .longread-wheremost-chart__country {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  .longread-wheremost-chart__sum {
    font-weight: 900;
    font-size: 17px;
    line-height: 18px; }
    @media (max-width: 767px) {
      .longread-wheremost-chart__sum {
        font-size: 4vmin;
        line-height: 5.33333vmin; } }
  @media (max-width: 767px) {
    .longread-wheremost-chart {
      margin-bottom: 11.73333vmin; } }
  .longread-wheremost-truck {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 47px 0 76px;
    height: 52px;
    background: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-mid.svg") no-repeat;
    background-size: cover; }
    .longread-wheremost-truck::before, .longread-wheremost-truck::after {
      content: "";
      position: absolute;
      top: 0;
      display: inline-block;
      height: 52px;
      background-size: cover;
      background-repeat: no-repeat; }
      @media (max-width: 767px) {
        .longread-wheremost-truck::before, .longread-wheremost-truck::after {
          height: 13.86667vmin; } }
    .longread-wheremost-truck::before {
      left: -76px;
      width: 76px;
      background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-start.svg"); }
      @media (max-width: 767px) {
        .longread-wheremost-truck::before {
          left: -20.26667vmin;
          width: 20.26667vmin; } }
    .longread-wheremost-truck::after {
      right: -47px;
      width: 47px;
      background-image: url("/bitrix/templates/map/css/../images/longread/wheremost/truck-end.svg"); }
      @media (max-width: 767px) {
        .longread-wheremost-truck::after {
          right: -12.53333vmin;
          width: 12.53333vmin; } }
    @media (max-width: 767px) {
      .longread-wheremost-truck {
        margin: 0 12.53333vmin 0 20.26667vmin;
        height: 13.86667vmin; } }
  @media (max-width: 767px) {
    .longread-wheremost {
      margin-bottom: 24vmin; } }

.longread-map {
  margin-bottom: 110px; }
  .longread-map .container {
    position: relative;
    max-width: 820px; }
    @media (max-width: 767px) {
      .longread-map .container {
        padding: 0 5.6vmin;
        max-width: 100%; } }
  .longread-map__title {
    margin: 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-map__title {
        position: relative;
        z-index: 1;
        font-size: 7.46667vmin;
        line-height: 7.73333vmin; } }
  .longread-map__text {
    display: none;
    font-size: 15px;
    line-height: 22px;
    text-decoration: underline; }
    @media (max-width: 767px) {
      .longread-map__text {
        display: block;
        margin-bottom: 8vmin;
        font-size: 4.26667vmin;
        line-height: 7.46667vmin; } }
  .longread-map__image {
    position: relative;
    width: 853px; }
    @media (max-width: 767px) {
      .longread-map__image {
        left: 0;
        top: -9.6vmin;
        width: 100%; } }
  .longread-map__link {
    position: relative;
    display: block; }
  @media (max-width: 767px) {
    .longread-map {
      margin-bottom: 0; } }

.longread-history {
  overflow: hidden;
  margin-bottom: 60px; }
  .longread-history > .container {
    position: relative;
    margin-bottom: 22px;
    max-width: 688px !important; }
    .longread-history > .container:first-child {
      max-width: 820px !important; }
      @media (max-width: 767px) {
        .longread-history > .container:first-child {
          max-width: 100% !important; } }
    @media (max-width: 767px) {
      .longread-history > .container {
        margin-bottom: 31.46667vmin;
        padding: 0 6.13333vmin;
        max-width: 100% !important; } }
  .longread-history__title {
    margin: 0 0 20px 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 41px;
    letter-spacing: -0.04em;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .longread-history__title {
        margin: 0 0 3.73333vmin 0;
        font-size: 6.4vmin;
        line-height: 1.3;
        text-align: left; } }
  .longread-history__text {
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.02em; }
    @media (max-width: 767px) {
      .longread-history__text {
        font-size: 4.26667vmin;
        line-height: 7.46667vmin; } }
  @media (max-width: 767px) {
    .longread-history {
      overflow: hidden;
      margin-bottom: 0; } }

.longread-period {
  position: relative;
  margin: 0 auto; }
  .longread-period::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff; }
  .longread-period .container {
    margin: 0 auto; }
  .longread-period__wrapper {
    position: relative; }
  @media (min-width: 1025px) {
    .longread-period__container .container:nth-of-type(1) {
      margin-top: 34px;
      max-width: 715px; }
    .longread-period__container .container:nth-of-type(2) {
      padding-right: 25px;
      max-width: 730px; }
    .longread-period__container .container:nth-of-type(3) {
      max-width: 710px; }
    .longread-period__container .container:nth-of-type(4) {
      max-width: 720px; }
    .longread-period__container .container:nth-of-type(5) {
      max-width: 720px; } }
  @media (max-width: 767px) {
    .longread-period__container {
      position: relative;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      margin-bottom: 8vmin;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
      .longread-period__container .container {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        padding: 0 !important; } }
  .longread-period__navigation {
    display: none; }
    @media (max-width: 767px) {
      .longread-period__navigation {
        position: absolute;
        left: 0;
        top: 90.66667vmin;
        z-index: 10;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%; } }
  .longread-period__pagination {
    display: none; }
    @media (max-width: 767px) {
      .longread-period__pagination {
        position: relative;
        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-bottom: 8vmin;
        padding: 0 16vmin;
        width: 100%; }
        .longread-period__pagination::before {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: -26.66667vmin;
          bottom: -8vmin;
          z-index: -1;
          background: #fff; } }
  @media (max-width: 767px) {
    .longread-period__bullet {
      border-radius: 50%;
      width: 3.46667vmin;
      height: 3.46667vmin;
      background: #aab2bd;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      cursor: pointer; }
      .longread-period__bullet.active {
        background: #3c4a5f;
        pointer-events: none; } }
  .longread-period__prev, .longread-period__next {
    display: none;
    width: 38px;
    height: 68px;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    cursor: pointer; }
    .longread-period__prev.disabled, .longread-period__next.disabled {
      opacity: 0.3;
      pointer-events: none; }
    @media (max-width: 767px) {
      .longread-period__prev, .longread-period__next {
        display: block; } }
  .longread-period__prev {
    margin-left: -8px; }
  .longread-period__next {
    margin-right: -8px; }
  .longread-period__title {
    margin: 0 0 16px 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-period__title {
        margin: 0 0 2.13333vmin 0;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-period__text {
    font-size: 17px;
    line-height: 30px; }
    @media (max-width: 767px) {
      .longread-period__text {
        font-size: 4.26667vmin;
        line-height: 7.46667vmin; } }
  .longread-period__image {
    position: absolute;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain; }
  .longread-period--middleages {
    margin-bottom: 30px;
    padding: 40px 40px 52px 38px; }
    .longread-period--middleages::after {
      -webkit-clip-path: polygon(0.24% 0%, 100% 0%, 99.63% 90.92%, 0% 99.67%);
              clip-path: polygon(0.24% 0%, 100% 0%, 99.63% 90.92%, 0% 99.67%); }
      @media (max-width: 767px) {
        .longread-period--middleages::after {
          -webkit-clip-path: polygon(0.78% 12.6%, 100% 0%, 99.09% 100.21%, 0% 99.67%);
                  clip-path: polygon(0.78% 12.6%, 100% 0%, 99.09% 100.21%, 0% 99.67%); } }
    .longread-period--middleages .container {
      max-width: 578px; }
      @media (max-width: 767px) {
        .longread-period--middleages .container {
          max-width: 100%; } }
    .longread-period--middleages .longread-period__image--bee {
      right: -28px;
      bottom: 10px;
      width: 86px;
      height: 113px; }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--bee {
          right: 1.33333vmin;
          top: 12.8vmin;
          bottom: auto;
          width: 11.73333vmin; } }
    .longread-period--middleages .longread-period__image--honey {
      right: -17px;
      bottom: -18px;
      width: 130px;
      height: auto; }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--honey {
          right: -4.8vmin;
          top: 18.66667vmin;
          bottom: auto;
          width: 33.86667vmin; } }
    .longread-period--middleages .longread-period__image--knight {
      right: -60px;
      top: -46px;
      width: 110px;
      height: auto;
      -webkit-transform: rotate(-11deg);
          -ms-transform: rotate(-11deg);
              transform: rotate(-11deg); }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--knight {
          right: 62.93333vmin;
          top: -10.13333vmin;
          width: 25.33333vmin;
          -webkit-transform: rotate(0);
              -ms-transform: rotate(0);
                  transform: rotate(0); } }
    .longread-period--middleages .longread-period__image--oxra {
      left: -63px;
      bottom: 22px;
      width: 89px;
      height: auto; }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--oxra {
          left: 74.4vmin;
          bottom: -2.66667vmin;
          width: 24vmin;
          -webkit-transform: rotate(245deg);
              -ms-transform: rotate(245deg);
                  transform: rotate(245deg); } }
    .longread-period--middleages .longread-period__image--sapogi {
      right: 160px;
      bottom: 283px;
      width: 60px;
      height: auto; }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--sapogi {
          right: 12.8vmin;
          top: -13.86667vmin;
          bottom: auto;
          width: 21.33333vmin; } }
    .longread-period--middleages .longread-period__image--shjuba {
      right: -137px;
      bottom: 67px;
      width: 108px;
      -webkit-transform: rotate(11deg);
          -ms-transform: rotate(11deg);
              transform: rotate(11deg); }
      @media (max-width: 767px) {
        .longread-period--middleages .longread-period__image--shjuba {
          right: 39.46667vmin;
          top: -13.86667vmin;
          bottom: auto;
          width: 21.86667vmin;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; } }
    @media (max-width: 767px) {
      .longread-period--middleages {
        left: 0;
        padding: 32.53333vmin 9.6vmin 4.26667vmin 9.6vmin;
        max-width: 100%; } }
  .longread-period--newtime {
    margin-bottom: 0;
    padding: 76px 44px 35px 47px;
    max-width: 989px; }
    .longread-period--newtime::after {
      -webkit-clip-path: polygon(0.61% 3.96%, 100.05% 0.18%, 100% 93.17%, -0.11% 100%);
              clip-path: polygon(0.61% 3.96%, 100.05% 0.18%, 100% 93.17%, -0.11% 100%);
      background-image: url("/bitrix/templates/map/css/../images/longread/history/newtime/kanat@2x.png");
      background-position: 0 360px;
      background-size: contain;
      background-repeat: repeat-x; }
      @media (max-width: 767px) {
        .longread-period--newtime::after {
          -webkit-clip-path: polygon(0% 0%, 100% 5%, 100% 97%, 0% 96%);
                  clip-path: polygon(0% 0%, 100% 5%, 100% 97%, 0% 96%);
          background-position: 0 134.66667vmin;
          background-size: 160%; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--newtime::after {
          background-image: none; } }
    @media (max-width: 767px) {
      .longread-period--newtime .container {
        max-width: 100%; } }
    .longread-period--newtime .longread-period__title {
      margin-bottom: 14px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__title {
          margin-bottom: 4.26667vmin; } }
    .longread-period--newtime .longread-period__text p {
      margin-bottom: 14px; }
      .longread-period--newtime .longread-period__text p:nth-child(1) {
        margin-bottom: 90px; }
        @media (max-width: 767px) {
          .longread-period--newtime .longread-period__text p:nth-child(1) {
            margin-bottom: 26.66667vmin; } }
        @media (max-width: 768px) and (orientation: landscape) {
          .longread-period--newtime .longread-period__text p:nth-child(1) {
            margin-bottom: 6.4vmin; } }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__text p:nth-child(2) {
          margin-bottom: 51.46667vmin;
          padding-left: 0; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--newtime .longread-period__text p:nth-child(2) {
          margin-bottom: 6.4vmin; } }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__text p:nth-child(3) {
          padding-left: 0; } }
    .longread-period--newtime .longread-period__image--bread {
      right: -85px;
      top: 252px;
      width: 132px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--bread {
          right: 21.06667vmin;
          top: 215.46667vmin;
          width: 33.06667vmin; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--newtime .longread-period__image--bread {
          display: none; } }
    .longread-period--newtime .longread-period__image--caviar {
      right: -99px;
      top: 72px;
      width: 157px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--caviar {
          right: -1.86667vmin;
          top: 232.8vmin;
          width: 46.4vmin; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--newtime .longread-period__image--caviar {
          display: none; } }
    .longread-period--newtime .longread-period__image--gun {
      left: -57px;
      top: -4px;
      width: 139px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--gun {
          display: none; } }
    .longread-period--newtime .longread-period__image--salo {
      right: -15px;
      top: -7px;
      width: 123px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--salo {
          right: 7.46667vmin;
          top: -5.06667vmin;
          width: 42.13333vmin; } }
    .longread-period--newtime .longread-period__image--stone {
      right: -88px;
      bottom: 119px;
      width: 103px;
      -webkit-transform: rotate(-148deg);
          -ms-transform: rotate(-148deg);
              transform: rotate(-148deg); }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--stone {
          left: 57.06667vmin;
          right: auto;
          bottom: -10.66667vmin;
          width: 29.6vmin;
          -webkit-transform: rotate(-81deg);
              -ms-transform: rotate(-81deg);
                  transform: rotate(-81deg); } }
    .longread-period--newtime .longread-period__image--wheat {
      left: -170px;
      top: 390px;
      width: 206px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--wheat {
          display: none; } }
    .longread-period--newtime .longread-period__image--wheat-mobile {
      display: none; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--wheat-mobile {
          left: 9.06667vmin;
          top: 220.53333vmin;
          display: block;
          width: 46.66667vmin;
          -webkit-transform: rotate(-20deg);
              -ms-transform: rotate(-20deg);
                  transform: rotate(-20deg); } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--newtime .longread-period__image--wheat-mobile {
          display: none; } }
    .longread-period--newtime .longread-period__image--xox {
      left: 163px;
      top: -34px;
      width: 191px; }
      @media (max-width: 767px) {
        .longread-period--newtime .longread-period__image--xox {
          left: 2.13333vmin;
          top: -17.6vmin;
          width: 57.33333vmin; } }
    @media (max-width: 767px) {
      .longread-period--newtime {
        left: 0;
        padding: 16.26667vmin 6.13333vmin 19.2vmin 6.13333vmin;
        max-width: 100%; } }
  .longread-period--prerevolution {
    padding: 98px 116px 94px 35px;
    width: 106%; }
    .longread-period--prerevolution::after {
      left: -14px;
      -webkit-clip-path: polygon(0.04% 9.11%, 98.35% 0.2%, 96.31% 92.14%, 1.8% 95.35%);
              clip-path: polygon(0.04% 9.11%, 98.35% 0.2%, 96.31% 92.14%, 1.8% 95.35%); }
      @media (max-width: 767px) {
        .longread-period--prerevolution::after {
          left: 0;
          -webkit-clip-path: polygon(0% 8.42%, 100.27% 1.9%, 100% 98.39%, 0% 100%);
                  clip-path: polygon(0% 8.42%, 100.27% 1.9%, 100% 98.39%, 0% 100%); } }
    .longread-period--prerevolution .container {
      max-width: 1200px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .container {
          max-width: 100%; } }
    .longread-period--prerevolution .longread-period__title {
      margin-bottom: 14px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__title {
          margin-bottom: 6.66667vmin; } }
    .longread-period--prerevolution .longread-period__text p:first-child {
      margin-bottom: 14px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__text p:first-child {
          margin-bottom: 7.46667vmin;
          padding-right: 0; } }
    @media (max-width: 767px) {
      .longread-period--prerevolution .longread-period__text {
        grid-gap: 11.46667vmin 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }
    .longread-period--prerevolution .longread-period__image--butter {
      left: 115px;
      top: 4px;
      width: 96px;
      -webkit-transform: rotate(-44deg);
          -ms-transform: rotate(-44deg);
              transform: rotate(-44deg); }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__image--butter {
          left: auto;
          right: 5.33333vmin;
          top: 9.06667vmin;
          width: 24vmin; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--prerevolution .longread-period__image--butter {
          display: none; } }
    .longread-period--prerevolution .longread-period__image--tree {
      display: none; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__image--tree {
          left: 53.33333vmin;
          bottom: 1.33333vmin;
          display: block;
          width: 32.26667vmin; } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--prerevolution .longread-period__image--tree {
          display: none; } }
    .longread-period--prerevolution .longread-period__image--carbon {
      right: 67px;
      bottom: 21px;
      width: 95px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__image--carbon {
          right: 45.86667vmin;
          top: auto;
          bottom: -8vmin;
          width: 39.2vmin; } }
    .longread-period--prerevolution .longread-period__image--egg {
      left: 600px;
      top: -26px;
      width: 68px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__image--egg {
          left: 57.6vmin;
          top: -13.33333vmin;
          bottom: auto;
          width: 23.46667vmin; } }
    .longread-period--prerevolution .longread-period__image--tea {
      right: 120px;
      top: 32px;
      width: 195px; }
      @media (max-width: 767px) {
        .longread-period--prerevolution .longread-period__image--tea {
          right: 48.26667vmin;
          top: 2.13333vmin;
          width: 44vmin; } }
    @media (max-width: 767px) {
      .longread-period--prerevolution {
        margin-left: 0;
        padding: 33.6vmin 8vmin 26.66667vmin 8vmin;
        max-width: 100%; } }
  .longread-period--ussr {
    padding: 64px 85px 84px 41px;
    width: 105%; }
    .longread-period--ussr::after {
      left: -34px;
      -webkit-clip-path: polygon(-0.01% 2.69%, 100% 0%, 99.98% 98.68%, 2.25% 92.13%);
              clip-path: polygon(-0.01% 2.69%, 100% 0%, 99.98% 98.68%, 2.25% 92.13%); }
      @media (max-width: 767px) {
        .longread-period--ussr::after {
          left: 0;
          -webkit-clip-path: polygon(0% 0%, 100% 5%, 100% 99%, 0% 97%);
                  clip-path: polygon(0% 0%, 100% 5%, 100% 99%, 0% 97%); } }
    .longread-period--ussr .container {
      max-width: 783px; }
      @media (max-width: 767px) {
        .longread-period--ussr .container {
          max-width: 100%; } }
    .longread-period--ussr .longread-period__title {
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__title {
          margin-bottom: 3.2vmin; } }
    .longread-period--ussr .longread-period__image--barel {
      right: -50px;
      top: -8px;
      width: 144px; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__image--barel {
          right: 8.8vmin;
          top: -16vmin;
          width: 50.66667vmin;
          -webkit-transform: rotate(74deg);
              -ms-transform: rotate(74deg);
                  transform: rotate(74deg); } }
    .longread-period--ussr .longread-period__image--tree {
      right: -27px;
      bottom: 193px;
      width: 114px; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__image--tree {
          right: 18.66667vmin;
          bottom: -11.73333vmin;
          display: none;
          width: 28vmin;
          height: 24.26667vmin; } }
    .longread-period--ussr .longread-period__image--oats {
      left: -52px;
      top: -50px;
      width: 56px; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__image--oats {
          left: 7.2vmin;
          top: -34.13333vmin;
          display: none;
          width: 39.2vmin;
          height: 36vmin;
          -webkit-transform: rotate(6deg);
              -ms-transform: rotate(6deg);
                  transform: rotate(6deg); } }
    .longread-period--ussr .longread-period__image--oats-mobile {
      display: none; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__image--oats-mobile {
          left: 5.33333vmin;
          top: -41.6vmin;
          z-index: -1;
          display: block;
          width: 48.53333vmin; } }
    .longread-period--ussr .longread-period__image--pipe {
      right: 3px;
      bottom: 0.08px;
      width: 270px; }
      @media (max-width: 767px) {
        .longread-period--ussr .longread-period__image--pipe {
          left: -2.66667vmin;
          bottom: -4.8vmin;
          -webkit-clip-path: inset(23.73333vmin 0 0 0);
                  clip-path: inset(23.73333vmin 0 0 0);
          width: 114.66667vmin;
          height: auto;
          max-width: none;
          -webkit-transform: scale(-0.95, 1);
              -ms-transform: scale(-0.95, 1);
                  transform: scale(-0.95, 1); } }
      @media (max-width: 768px) and (orientation: landscape) {
        .longread-period--ussr .longread-period__image--pipe {
          left: auto;
          right: -12.8vmin;
          bottom: -26.66667vmin; } }
    @media (max-width: 767px) {
      .longread-period--ussr {
        margin-bottom: 0;
        margin-left: 0;
        padding: 17.06667vmin 6.13333vmin 24vmin 6.13333vmin;
        width: 100%;
        max-width: 100%; } }
  .longread-period--modern-russia {
    margin-bottom: 46px;
    padding: 23px 85px 100px 41px;
    width: 105%; }
    .longread-period--modern-russia::after {
      left: -34px;
      top: -14px;
      -webkit-clip-path: polygon(-0.01% 0.69%, 100% 7%, 100.98% 97.68%, 2.25% 88.13%);
              clip-path: polygon(-0.01% 0.69%, 100% 7%, 100.98% 97.68%, 2.25% 88.13%);
      height: 108%; }
      @media (max-width: 767px) {
        .longread-period--modern-russia::after {
          left: 0;
          top: -10.93333vmin;
          -webkit-clip-path: polygon(0% 10%, 100% 8%, 100% 99%, 0% 97%);
                  clip-path: polygon(0% 10%, 100% 8%, 100% 99%, 0% 97%); } }
    .longread-period--modern-russia .longread-period__title {
      margin-bottom: 10px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__title {
          margin-bottom: 3.2vmin; } }
    .longread-period--modern-russia .longread-period__text {
      position: relative;
      z-index: 2;
      width: 93%; }
      .longread-period--modern-russia .longread-period__text br {
        display: none; }
        @media (max-width: 767px) {
          .longread-period--modern-russia .longread-period__text br {
            display: inline; } }
    .longread-period--modern-russia .longread-period__image--helicopter {
      left: -172px;
      top: -74px;
      width: 335px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--helicopter {
          left: 3.73333vmin;
          top: -21.06667vmin;
          width: 92vmin; } }
    .longread-period--modern-russia .longread-period__image--buran {
      right: 264px;
      bottom: -18px;
      width: 148px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--buran {
          right: 37.33333vmin;
          bottom: -10.66667vmin;
          width: 61.6vmin; } }
    .longread-period--modern-russia .longread-period__image--ural {
      right: 101px;
      bottom: -3px;
      width: 163px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--ural {
          right: 4.26667vmin;
          bottom: -4vmin;
          width: 49.33333vmin; } }
    .longread-period--modern-russia .longread-period__image--uvelka {
      right: -4px;
      bottom: 64px;
      width: 84px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--uvelka {
          display: none; } }
    .longread-period--modern-russia .longread-period__image--juice {
      right: 41px;
      bottom: 131px;
      z-index: 2;
      width: 57px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--juice {
          display: none; } }
    .longread-period--modern-russia .longread-period__image--deonica-blue {
      right: -53px;
      bottom: 144px;
      z-index: 2;
      width: 128px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--deonica-blue {
          display: none; } }
    .longread-period--modern-russia .longread-period__image--noodles {
      right: 35px;
      bottom: 186px;
      width: 114px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--noodles {
          right: -11.73333vmin;
          bottom: 137.6vmin;
          width: 34.4vmin; } }
    .longread-period--modern-russia .longread-period__image--ketzup {
      right: -29px;
      bottom: 334px;
      width: 73px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--ketzup {
          right: 0vmin;
          bottom: 176.53333vmin;
          width: 22.13333vmin; } }
    .longread-period--modern-russia .longread-period__image--adyg {
      right: -25px;
      bottom: 263px;
      width: 90px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--adyg {
          display: none; } }
    .longread-period--modern-russia .longread-period__image--deonica {
      right: 45px;
      top: 47px;
      width: 46px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--deonica {
          display: none; } }
    .longread-period--modern-russia .longread-period__image--raketa {
      right: 105px;
      top: 10px;
      width: 53px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--raketa {
          right: 11.46667vmin;
          top: -4.26667vmin;
          width: 21.86667vmin; } }
    .longread-period--modern-russia .longread-period__image--soya {
      right: -106px;
      top: 73px;
      width: 227px; }
      @media (max-width: 767px) {
        .longread-period--modern-russia .longread-period__image--soya {
          right: -22.66667vmin;
          top: -7.46667vmin;
          width: 47.73333vmin; } }
    @media (max-width: 767px) {
      .longread-period--modern-russia {
        margin-bottom: 0;
        margin-left: 0;
        padding: 17.06667vmin 6.13333vmin 24vmin 6.13333vmin;
        width: 100%;
        max-width: 100%; } }

.longread-structure {
  position: relative;
  margin-bottom: 103px; }
  .longread-structure .container {
    max-width: 840px; }
    @media (max-width: 767px) {
      .longread-structure .container {
        padding: 0 6.4vmin 0 4.26667vmin;
        max-width: 100%; } }
  .longread-structure__head {
    margin: 0 0 78px 0; }
    @media (max-width: 767px) {
      .longread-structure__head {
        margin: 0 0 7.46667vmin 0;
        padding: 0; } }
  .longread-structure__title {
    margin: 0 0 10px 0;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-structure__title {
        margin: 0 0 2.66667vmin 0;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-structure__subtitle {
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px; }
    @media (max-width: 767px) {
      .longread-structure__subtitle {
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  .longread-structure-chart {
    position: relative; }
    .longread-structure-chart__image {
      width: 424px;
      height: auto;
      -o-object-fit: contain;
         object-fit: contain; }
      @media (max-width: 767px) {
        .longread-structure-chart__image {
          display: none; } }
    @media (max-width: 767px) {
      .longread-structure-chart__items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .longread-structure-chart__item {
      position: absolute;
      left: 0;
      top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .longread-structure-chart__item::before {
        content: "";
        display: none;
        margin-right: 4.26667vmin;
        height: 100%; }
        @media (max-width: 767px) {
          .longread-structure-chart__item::before {
            display: block; } }
      .longread-structure-chart__item:nth-child(1) {
        left: 15px;
        top: -11px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        max-width: 112px; }
        .longread-structure-chart__item:nth-child(1)::before {
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1; }
        .longread-structure-chart__item:nth-child(1) .longread-structure-chart__name {
          margin-bottom: 7px; }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(1) .longread-structure-chart__name {
              color: #fff; } }
        @media (max-width: 767px) {
          .longread-structure-chart__item:nth-child(1) .longread-structure-chart__num {
            color: #fff; } }
        @media (max-width: 767px) {
          .longread-structure-chart__item:nth-child(1) {
            position: relative;
            left: 0;
            top: 0;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            margin-bottom: 2.13333vmin;
            padding-left: 4.26667vmin;
            height: 8vmin;
            max-width: 100%; } }
      .longread-structure-chart__item:nth-child(2) {
        position: relative;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 85px;
        margin-left: 0; }
        .longread-structure-chart__item:nth-child(2)::after {
          content: "";
          position: absolute;
          left: 50px;
          top: -58px;
          display: block;
          border-bottom: 1px dashed #3c4a5f;
          width: 101px;
          height: 1px;
          opacity: 0.5;
          -webkit-transform: rotate(90deg);
              -ms-transform: rotate(90deg);
                  transform: rotate(90deg); }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(2)::after {
              display: none; } }
        @media (max-width: 767px) {
          .longread-structure-chart__item:nth-child(2) {
            position: static;
            margin: 0; } }
      .longread-structure-chart__item:nth-child(3) {
        left: 313px;
        top: 429px; }
      .longread-structure-chart__item:nth-child(4) {
        left: 396px;
        top: 357px; }
      .longread-structure-chart__item:nth-child(5) {
        left: 421px;
        top: 301px; }
      .longread-structure-chart__item:nth-child(6) {
        left: 435px;
        top: 253px; }
      .longread-structure-chart__item:nth-child(7) {
        left: 472px;
        top: 211px; }
        .longread-structure-chart__item:nth-child(7)::after {
          content: "";
          position: absolute;
          left: -61px;
          top: 11px;
          display: block;
          border-bottom: 1px dashed #3c4a5f;
          width: 46px;
          height: 1px;
          opacity: 0.2;
          -webkit-transform: rotate(180deg);
              -ms-transform: rotate(180deg);
                  transform: rotate(180deg); }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(7)::after {
              display: none; } }
      .longread-structure-chart__item:nth-child(8) {
        left: 505px;
        top: 165px; }
        .longread-structure-chart__item:nth-child(8)::after {
          content: "";
          position: absolute;
          left: -100px;
          top: 23px;
          display: block;
          border-bottom: 1px dashed #3c4a5f;
          width: 90px;
          height: 1px;
          opacity: 0.2;
          -webkit-transform: rotate(172deg);
              -ms-transform: rotate(172deg);
                  transform: rotate(172deg); }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(8)::after {
              display: none; } }
        .longread-structure-chart__item:nth-child(8) .longread-structure-chart__name {
          white-space: nowrap; }
      .longread-structure-chart__item:nth-child(9) {
        left: 593px;
        top: 107px; }
        .longread-structure-chart__item:nth-child(9)::after {
          content: "";
          position: absolute;
          left: -200px;
          top: 43px;
          display: block;
          border-bottom: 1px dashed #3c4a5f;
          width: 200px;
          height: 1px;
          opacity: 0.2;
          -webkit-transform: rotate(165deg);
              -ms-transform: rotate(165deg);
                  transform: rotate(165deg); }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(9)::after {
              display: none; } }
        .longread-structure-chart__item:nth-child(9) .longread-structure-chart__name {
          white-space: nowrap; }
      .longread-structure-chart__item:nth-child(10) {
        left: 646px;
        top: 57px; }
        .longread-structure-chart__item:nth-child(10)::after {
          content: "";
          position: absolute;
          left: -270px;
          top: 65px;
          display: block;
          border-bottom: 1px dashed #3c4a5f;
          width: 270px;
          height: 1px;
          opacity: 0.2;
          -webkit-transform: rotate(161deg);
              -ms-transform: rotate(161deg);
                  transform: rotate(161deg); }
          @media (max-width: 767px) {
            .longread-structure-chart__item:nth-child(10)::after {
              display: none; } }
      .longread-structure-chart__item:nth-child(11) {
        left: 443px;
        top: 82px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; }
        .longread-structure-chart__item:nth-child(11) .longread-structure-chart__name {
          margin-bottom: 3px; }
        @media (max-width: 767px) {
          .longread-structure-chart__item:nth-child(11) {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row; } }
      @media (max-width: 767px) {
        .longread-structure-chart__item {
          position: static;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          margin-top: 2.13333vmin;
          height: 8vmin; } }
      .longread-structure-chart__item:nth-child(1)::before {
        width: 65.6vmin;
        background-color: #283240; }
      .longread-structure-chart__item:nth-child(2)::before {
        width: 13.6vmin;
        background-color: #3c4a5f; }
      .longread-structure-chart__item:nth-child(3)::before {
        width: 8.26667vmin;
        background-color: #50627e; }
      .longread-structure-chart__item:nth-child(4)::before {
        width: 4.53333vmin;
        background-color: #5d7393; }
      .longread-structure-chart__item:nth-child(5)::before {
        width: 4.26667vmin;
        background-color: #798caa; }
      .longread-structure-chart__item:nth-child(6)::before {
        width: 2.93333vmin;
        background-color: #8e9eb7; }
      .longread-structure-chart__item:nth-child(7)::before {
        width: 2.66667vmin;
        background-color: #a2b0c4; }
      .longread-structure-chart__item:nth-child(8)::before {
        width: 1.6vmin;
        background-color: #b7c2d2; }
      .longread-structure-chart__item:nth-child(9)::before {
        width: 1.33333vmin;
        background-color: #ccd3df; }
      .longread-structure-chart__item:nth-child(10)::before {
        width: 1.06667vmin;
        background-color: #e1e5ec; }
      .longread-structure-chart__item:nth-child(11)::before {
        width: 1.86667vmin;
        background-color: #495a74; }
    .longread-structure-chart__num {
      display: inline-block;
      margin-right: 8px;
      font-weight: 900;
      font-size: 17px;
      line-height: 18px;
      letter-spacing: -0.04em; }
      @media (max-width: 767px) {
        .longread-structure-chart__num {
          margin-right: 1.06667vmin;
          font-size: 3.73333vmin;
          line-height: 6.13333vmin; } }
    .longread-structure-chart__name {
      display: inline-block;
      font-size: 15px;
      line-height: 22px; }
      @media (max-width: 767px) {
        .longread-structure-chart__name {
          font-size: 3.73333vmin;
          line-height: 5.33333vmin; } }
    .longread-structure-chart__text {
      position: relative;
      margin-top: 25px;
      margin-left: 0;
      width: 670px;
      font-size: 15px;
      line-height: 22px; }
      .longread-structure-chart__text sup {
        position: absolute;
        left: -15px;
        top: 2px;
        font-size: 14px;
        line-height: 1; }
      @media (max-width: 767px) {
        .longread-structure-chart__text {
          margin-top: 11.73333vmin;
          margin-left: 0;
          padding: 0;
          width: 100%;
          font-size: 3.46667vmin;
          line-height: 4.8vmin; } }
  @media (max-width: 767px) {
    .longread-structure {
      margin-bottom: 12.26667vmin;
      padding-top: 16vmin; } }

.longread-footer .container {
  max-width: 1000px; }
  @media (max-width: 767px) {
    .longread-footer .container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding: 0 6.13333vmin 0 5.86667vmin;
      max-width: 100%; } }

.longread-footer-support {
  margin-bottom: 32px;
  max-width: 755px; }
  .longread-footer-support__title {
    margin-bottom: 20px;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-footer-support__title {
        margin-bottom: 6.66667vmin;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-footer-support__text {
    font-size: 19px;
    line-height: 33px; }
    @media (max-width: 767px) {
      .longread-footer-support__text {
        font-size: 4vmin;
        line-height: 7.2vmin; } }
  @media (max-width: 767px) {
    .longread-footer-support {
      margin-bottom: 9.6vmin;
      max-width: 100%; } }

.longread-footer-resource {
  display: -ms-grid;
  display: grid;
  grid-gap: 60px;
  -ms-grid-columns: 158px 60px 121px 60px 110px 60px 278px;
  grid-template-columns: 158px 121px 110px 278px;
  -ms-grid-rows: -webkit-fit-content;
  -ms-grid-rows: fit-content;
  grid-template-rows: -webkit-fit-content;
  grid-template-rows: fit-content;
  margin-bottom: 48px; }

.longread-footer-resource > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }

.longread-footer-resource > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3; }

.longread-footer-resource > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5; }

.longread-footer-resource > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 7; }
  @media (max-width: 767px) {
    .longread-footer-resource__item:nth-child(1) .longread-footer-resource__name {
      max-width: 40vmin; }
    .longread-footer-resource__item:nth-child(2) .longread-footer-resource__name {
      max-width: 30.66667vmin; }
    .longread-footer-resource__item:nth-child(3) .longread-footer-resource__name {
      max-width: 27.46667vmin; }
    .longread-footer-resource__item:nth-child(4) .longread-footer-resource__name {
      max-width: 65.33333vmin; } }
  .longread-footer-resource__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (max-width: 767px) {
      .longread-footer-resource__link {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .longread-footer-resource__logo {
    margin-bottom: 5px;
    width: 52px;
    height: 52px;
    color: #3c4a5f; }
    @media (max-width: 767px) {
      .longread-footer-resource__logo {
        margin-right: 2.66667vmin; } }
  .longread-footer-resource__name {
    border-bottom: 1px solid #aab2bd;
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 17px;
    line-height: 23px;
    -webkit-transition: color 0.4s, border-color 0.4s;
    -o-transition: color 0.4s, border-color 0.4s;
    transition: color 0.4s, border-color 0.4s; }
    .has-hover .longread-footer-resource__name:not([disabled]):hover {
      border-bottom-color: #4a6fa6;
      color: #4a6fa6; }
    @media (max-width: 767px) {
      .longread-footer-resource__name {
        font-size: 4.53333vmin;
        line-height: 6.13333vmin; } }
  @media (max-width: 767px) {
    .longread-footer-resource {
      grid-gap: 4.8vmin;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      margin-bottom: 16.53333vmin; } }

.longread-footer-bottom {
  padding: 16px 0 80px 0;
  width: 100%;
  background: #eef0f3; }

.longread-footer-sources {
  margin-bottom: 62px; }
  .longread-footer-sources__title {
    margin-bottom: 34px;
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -0.01em; }
    @media (max-width: 767px) {
      .longread-footer-sources__title {
        margin-top: 10.13333vmin;
        margin-bottom: 11.73333vmin;
        font-size: 5.86667vmin;
        line-height: 1.2; } }
  .longread-footer-sources__items {
    display: -ms-grid;
    display: grid;
    grid-gap: 0 70px;
    -ms-grid-columns: 236px 70px 259px 70px 182px;
    grid-template-columns: 236px 259px 182px;
    -ms-grid-rows: -webkit-fit-content;
    -ms-grid-rows: fit-content;
    grid-template-rows: -webkit-fit-content;
    grid-template-rows: fit-content; }
  .longread-footer-sources__items > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1; }
  .longread-footer-sources__items > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3; }
  .longread-footer-sources__items > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5; }
    @media (max-width: 767px) {
      .longread-footer-sources__items {
        grid-gap: 5.33333vmin 0;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr; } }
  .longread-footer-sources__text {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 22px; }
    .longread-footer-sources__text::before {
      content: "—";
      position: absolute;
      left: 0;
      top: 0;
      display: inline-block; }
    .longread-footer-sources__text a {
      text-decoration: underline; }
      .has-hover .longread-footer-sources__text a:not([disabled]):hover {
        color: #4a6fa6; }
    @media (max-width: 767px) {
      .longread-footer-sources__text {
        padding-left: 5.33333vmin;
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  @media (max-width: 767px) {
    .longread-footer-sources {
      margin-bottom: 14.93333vmin; } }

.longread-footer-copyright {
  display: -ms-grid;
  display: grid;
  grid-gap: 0 77px;
  -ms-grid-columns: 202px 77px 547px;
  grid-template-columns: 202px 547px;
  margin-bottom: 30px; }
  .longread-footer-copyright__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .longread-footer-copyright__logos .logo {
      position: relative;
      top: 6px;
      margin-left: 24px;
      width: 92px;
      height: 29px; }
      .longread-footer-copyright__logos .logo-partner {
        position: relative;
        width: 92px;
        height: 68px; }
        @media (max-width: 767px) {
          .longread-footer-copyright__logos .logo-partner {
            left: -7.46667vmin;
            top: -0.53333vmin;
            width: 21.86667vmin;
            height: 16.8vmin; } }
      @media (max-width: 767px) {
        .longread-footer-copyright__logos .logo {
          left: 6px;
          margin-left: 0;
          width: 26.4vmin;
          height: 8.8vmin; } }
    @media (max-width: 767px) {
      .longread-footer-copyright__logos {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-bottom: 8.53333vmin; } }
  .longread-footer-copyright__text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px; }
    @media (max-width: 767px) {
      .longread-footer-copyright__text {
        margin-top: 0;
        font-weight: 500;
        font-size: 3.46667vmin;
        line-height: 4.8vmin; } }
  @media (max-width: 767px) {
    .longread-footer-copyright {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      margin-bottom: 10.66667vmin; } }

.longread-footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 300px; }
  .longread-footer-social__link {
    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: none;
    padding: 0;
    width: 50px;
    height: 50px;
    color: #3c4a5f;
    background: transparent; }
    .has-hover .longread-footer-social__link:not([disabled]):hover {
      color: #4a6fa6; }
    @media (max-width: 767px) {
      .longread-footer-social__link {
        margin: 0 2.66667vmin;
        border: 1px solid rgba(102, 120, 148, 0.2);
        width: 13.33333vmin;
        height: 13.33333vmin; } }
  .longread-footer-social__icon {
    width: 34px;
    height: 34px; }
    @media (max-width: 767px) {
      .longread-footer-social__icon {
        width: 9.06667vmin;
        height: 9.06667vmin; } }
  @media (max-width: 767px) {
    .longread-footer-social {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin-bottom: 6.93333vmin;
      max-width: 100%; } }

.longread-sidebar {
  position: fixed;
  left: -265px;
  top: 70px;
  z-index: 10;
  width: 100%;
  pointer-events: none; }
  .longread-sidebar__group {
    margin-top: 50px;
    width: 185px; }
    .longread-sidebar__group:first-child {
      margin-top: 0; }
  .longread-sidebar__title {
    font-weight: 700;
    font-size: 15px;
    line-height: 17px; }
  .longread-sidebar__item {
    margin-top: 16px; }
    .longread-sidebar__item a {
      display: inline;
      font-size: 14px;
      line-height: 20px;
      color: #3c4a5f;
      pointer-events: all; }
      .longread-sidebar__item a:hover {
        color: #4a6fa6;
        background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #4a6fa6), color-stop(25.1%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0))) !important;
        background-image: -o-linear-gradient(left, #4a6fa6 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%) !important;
        background-image: linear-gradient(to right, #4a6fa6 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%) !important; }
  @media (max-width: 1440px) {
    .body-longread .longread-sidebar .container {
      max-width: 100%; } }
  @media (max-width: 1200px) {
    .longread-sidebar {
      display: none; } }
  @media (max-width: 1440px) {
    .longread-sidebar {
      left: 44px; } }

.body-longread .container {
  max-width: 820px; }
  @media (max-width: 1024px) {
    .body-longread .container {
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .body-longread .container {
      padding: 0 5.33333vmin;
      max-width: 100%; } }

.body-longread main {
  overflow-x: hidden;
  margin: 0;
  max-width: initial; }

#inner-box {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 109;
  overflow: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  @media (max-width: 767px) {
    #inner-box::before {
      content: "";
      position: fixed;
      left: 0;
      top: 0;
      z-index: 1;
      display: block;
      width: 100%;
      height: 20px;
      -webkit-box-shadow: 0 0 40px 40px #f6f6f6;
              box-shadow: 0 0 40px 40px #f6f6f6;
      background-color: #f6f6f6; } }
  #inner-box .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s; }
    @media (max-width: 767px) {
      #inner-box .inner-container {
        display: block; } }
  #inner-box .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    display: none;
    width: 100%;
    width: calc(100% - 12px);
    height: 100%;
    background-color: rgba(230, 230, 230, 0.5); }
    @media (max-width: 767px) {
      #inner-box .overlay {
        display: none; } }
  #inner-box .close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9; }
    #inner-box .close button {
      position: relative;
      border: none;
      width: 33px;
      height: 33px;
      background: #3c4a5f;
      -webkit-transition: background 0.24s;
      -o-transition: background 0.24s;
      transition: background 0.24s; }
      #inner-box .close button::before {
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
      #inner-box .close button::before, #inner-box .close button::after {
        content: " ";
        position: absolute;
        left: 5px;
        top: 15px;
        width: 24px;
        height: 3px;
        background: #fff;
        -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transition: background 0.24s;
        -o-transition: background 0.24s;
        transition: background 0.24s; }
      #inner-box .close button::after {
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      #inner-box .close button:hover {
        background: #fff; }
        #inner-box .close button:hover::before, #inner-box .close button:hover::after {
          background: #3c4a5f; }
  #inner-box .sidebar-container {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 300px;
            flex: 1 0 300px;
    margin-top: 110px;
    width: 300px; }
    #inner-box .sidebar-container .sidebar {
      position: sticky;
      right: 0;
      top: 0;
      float: right;
      width: 100%;
      background-color: #fff; }
      @media (max-width: 767px) {
        #inner-box .sidebar-container .sidebar {
          padding: 0 16px;
          padding-top: 16px; }
          #inner-box .sidebar-container .sidebar ul.menu-heading {
            padding-right: 20px;
            text-align: center; }
          #inner-box .sidebar-container .sidebar ul.menu-side {
            margin-top: 45px; } }
    @media (min-width: 1025px) {
      #inner-box .sidebar-container {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 386px;
                flex: 1 0 386px;
        overflow: auto;
        margin-top: 210px;
        padding-bottom: 20px;
        width: 386px;
        height: calc(100vh - 262px); } }
    @media (max-width: 767px) {
      #inner-box .sidebar-container {
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        margin-top: 0;
        width: 100%; } }
  #inner-box .sidebar__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    left: 0;
    top: -52px;
    width: 60px;
    height: 52px;
    background-color: #fff; }
    #inner-box .sidebar__close svg {
      width: 20px;
      height: 15px; }
  #inner-box .content-container {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 100vh;
    background-color: #fff; }
    #inner-box .content-container .content {
      padding: 30px 50px;
      width: 100%;
      background-color: #fff; }
      #inner-box .content-container .content .h3 {
        margin: 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 1; }
        @media (min-width: 1025px) {
          #inner-box .content-container .content .h3:not(:last-child) {
            margin-right: 20px; } }
        @media (max-width: 767px) {
          #inner-box .content-container .content .h3 {
            display: none; } }
      #inner-box .content-container .content .company {
        font-weight: 500;
        font-size: 18px;
        line-height: 1.4em;
        color: #667894; }
        #inner-box .content-container .content .company__link {
          display: inline-block; }
        @media (max-width: 767px) {
          #inner-box .content-container .content .company {
            font-size: 13px;
            line-height: 18px; } }
      #inner-box .content-container .content .h1 {
        margin: 2px 0 26px;
        font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
        font-weight: 500;
        font-size: 35px;
        line-height: 37px;
        letter-spacing: -0.04em;
        text-transform: uppercase; }
        @media (max-width: 767px) {
          #inner-box .content-container .content .h1 {
            font-size: 28px;
            line-height: 29px; } }
      #inner-box .content-container .content .image img {
        max-width: 100%; }
      #inner-box .content-container .content .text {
        margin: 30px 0;
        font-size: 16px;
        line-height: 27px; }
        @media (max-width: 767px) {
          #inner-box .content-container .content .text {
            margin: 18px 0;
            font-size: 14px;
            line-height: 24px; } }
      #inner-box .content-container .content .export-country,
      #inner-box .content-container .content .staff-amount {
        margin: 0 0 30px;
        padding: 4px 0 0 44px;
        min-height: 26px;
        font-style: 16px;
        line-height: 27px;
        background-image: url("/bitrix/templates/map/css/../images/sprites/svg/profile.svg");
        background-position: 0 0;
        background-size: 30px auto;
        background-repeat: no-repeat; }
        @media (max-width: 767px) {
          #inner-box .content-container .content .export-country,
          #inner-box .content-container .content .staff-amount {
            margin: 0 0 18px;
            padding: 0;
            font-size: 14px;
            line-height: 24px;
            background-image: none !important; } }
      #inner-box .content-container .content .export-country {
        font-size: 15px;
        background-image: url("https://www.kp.ru/putevoditel/spetsproekty/glavnye-ehksportery-rossii/bitrix/templates/map/images/sprites/svg/globe.svg"); }
      #inner-box .content-container .content .tree-menu, #inner-box .content-container .content .sidebar-container .sidebar, #inner-box .sidebar-container .content-container .content .sidebar {
        position: relative;
        padding: 0; }
        #inner-box .content-container .content .tree-menu .menu-heading, #inner-box .content-container .content .sidebar-container .sidebar .menu-heading, #inner-box .sidebar-container .content-container .content .sidebar .menu-heading {
          text-align: center; }
      @media (max-width: 767px) {
        #inner-box .content-container .content {
          padding: 80px 15px 30px;
          width: 100%; }
          #inner-box .content-container .content .divider {
            position: relative;
            left: -15px;
            margin: 34px 0;
            width: calc(100% + 30px);
            height: 1px;
            background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #667894), color-stop(25.1%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0)));
            background-image: -o-linear-gradient(left, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
            background-image: linear-gradient(to right, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
            background-position: bottom;
            background-size: 4px 1px;
            background-repeat: repeat-x; } }
    #inner-box .content-container .breadcrumbs {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding-bottom: 16px;
      white-space: nowrap; }
      #inner-box .content-container .breadcrumbs span {
        display: inline-block;
        margin: 0 6px;
        height: 25px;
        font-weight: 500;
        font-size: 14px;
        line-height: 23px; }
      #inner-box .content-container .breadcrumbs svg {
        width: 30px;
        height: 30px; }
      @media (min-width: 1025px) {
        #inner-box .content-container .breadcrumbs {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-flow: row wrap;
                  flex-flow: row wrap;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      @media (max-width: 767px) {
        #inner-box .content-container .breadcrumbs {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
    @media (min-width: 1025px) {
      #inner-box .content-container {
        overflow: auto;
        height: calc(100vh - 52px);
        background-color: #fff; }
        #inner-box .content-container::-webkit-scrollbar {
          width: 0; }
        #inner-box .content-container::-webkit-scrollbar-track {
          -webkit-box-shadow: none;
                  box-shadow: none; }
        #inner-box .content-container::-webkit-scrollbar-thumb {
          background-color: transparent; } }
    @media (max-width: 767px) {
      #inner-box .content-container {
        width: 100%; } }
  #inner-box.animated {
    opacity: 1; }
    #inner-box.animated .inner-container {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
  @media (min-width: 1025px) {
    #inner-box {
      margin-left: 319px;
      padding-left: 0;
      width: calc(100% - 319px); } }
  @media (min-width: 1600px) {
    #inner-box {
      margin-right: 50px;
      margin-left: 400px;
      width: calc(100% - 450px); } }
  @media (min-width: 1900px) {
    #inner-box {
      margin-right: 103px;
      margin-left: 450px;
      width: calc(100% - 553px); } }
  @media (max-width: 767px) {
    #inner-box {
      padding-left: 0; } }

#map-container {
  position: relative;
  margin: 0 auto;
  padding-top: 6.5em;
  width: 100%; }
  #map-container .map-loader {
    position: absolute;
    left: 50%;
    top: 40%;
    z-index: 9;
    font-weight: 700;
    font-size: 30px;
    color: #ccc;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
  @media (min-width: 1025px) {
    #map-container {
      padding-top: 30px;
      padding-left: 24px; } }
  @media (min-width: 1400px) {
    #map-container {
      padding-top: 50px;
      padding-left: 28px; } }
  @media (min-width: 1600px) {
    #map-container {
      margin: 0 auto;
      padding-right: 50px;
      padding-left: 68px; } }
  @media (min-width: 1900px) {
    #map-container {
      padding-right: 280px;
      padding-left: 88px; } }
  @media (max-width: 1023px) {
    #map-container {
      padding-top: 9.5em; } }

@media (max-width: 1024px) {
  #map-container-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 21.33333vmin;
    height: 96.53333vmin; } }
  @media (max-width: 1024px) and (orientation: landscape) {
    #map-container-mobile {
      padding-top: 0; } }

.map--container {
  width: 100%;
  height: 100%; }

@media (min-width: 1025px) {
  .map-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 319px 1fr;
    grid-template-columns: 319px 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr; }
  .map-section > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
  .map-section > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; } }

@media (min-width: 1600px) {
  .map-section {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr; }
  .map-section > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
  .map-section > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; } }

@media (min-width: 1900px) {
  .map-section {
    -ms-grid-columns: 450px 1fr;
    grid-template-columns: 450px 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr; }
  .map-section > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1; }
  .map-section > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2; } }

@media (max-width: 1024px) {
  .map-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

.map-container .map__icon {
  width: 100%;
  color: #f6f6f6; }
  @media (min-width: 1025px) {
    .map-container .map__icon {
      position: relative;
      top: -20px; } }
  @media (max-width: 1024px) {
    .map-container .map__icon {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      outline: none;
      width: 100%;
      height: auto;
      min-height: 100%;
      -webkit-transition: -webkit-transform 0.2s;
      transition: -webkit-transform 0.2s;
      -o-transition: transform 0.2s;
      transition: transform 0.2s;
      transition: transform 0.2s, -webkit-transform 0.2s; }
      .map-container .map__icon svg {
        z-index: 1 !important;
        outline: none;
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s; }
      .map-container .map__icon.touchmove {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; }
        .map-container .map__icon.touchmove svg {
          outline: none;
          -webkit-transition: none;
          -o-transition: none;
          transition: none; } }

.map-container .map-wrapper {
  position: relative;
  z-index: 5;
  overflow: visible;
  margin: 0 auto;
  padding: 0 2em;
  height: 0;
  max-width: 112em; }
  @media (min-width: 1025px) {
    .map-container .map-wrapper {
      padding: 0; } }
  @media (max-width: 1024px) {
    .map-container .map-wrapper {
      padding: 0; } }

.main-title {
  margin: 0 0 21px 3px;
  font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 23px;
  line-height: 29px;
  letter-spacing: -0.03em;
  text-transform: uppercase; }
  .sidebar .main-title {
    display: none; }
    @media (max-width: 1024px) {
      .sidebar .main-title {
        position: relative;
        top: 0;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 15px;
        font-weight: 500;
        font-size: 24px;
        line-height: 25px;
        letter-spacing: -0.03em;
        text-align: center;
        text-transform: uppercase; } }

.map-container-mobile .main-title {
  position: static;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase; }
  .map-container-mobile .main-title span {
    display: block;
    margin-bottom: 8px;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 0;
    text-transform: none;
    opacity: 0.5; }

.map-container-mobile .tree-menu, .map-container-mobile #inner-box .sidebar-container .sidebar, #inner-box .sidebar-container .map-container-mobile .sidebar {
  padding: 10px 20px; }
  .map-container-mobile .tree-menu ul.menu-heading, .map-container-mobile #inner-box .sidebar-container .sidebar ul.menu-heading, #inner-box .sidebar-container .map-container-mobile .sidebar ul.menu-heading {
    padding-right: 20px;
    text-align: center; }
  .map-container-mobile .tree-menu ul.menu-side, .map-container-mobile #inner-box .sidebar-container .sidebar ul.menu-side, #inner-box .sidebar-container .map-container-mobile .sidebar ul.menu-side {
    margin-top: 45px; }
  .map-container-mobile .tree-menu.tree-menu-all, .map-container-mobile #inner-box .sidebar-container .tree-menu-all.sidebar, #inner-box .sidebar-container .map-container-mobile .tree-menu-all.sidebar {
    position: relative; }
    .map-container-mobile .tree-menu.tree-menu-all::before, .map-container-mobile #inner-box .sidebar-container .tree-menu-all.sidebar::before, #inner-box .sidebar-container .map-container-mobile .tree-menu-all.sidebar::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 1px;
      background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #667894), color-stop(25.1%, rgba(255, 255, 255, 0)), color-stop(0%, rgba(255, 255, 255, 0)));
      background-image: -o-linear-gradient(left, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
      background-image: linear-gradient(to right, #667894 25%, rgba(255, 255, 255, 0) 25.1%, rgba(255, 255, 255, 0) 0%);
      background-position: bottom;
      background-size: 4px 1px;
      background-repeat: repeat-x; }
    .map-container-mobile .tree-menu.tree-menu-all ul.menu-side, .map-container-mobile #inner-box .sidebar-container .tree-menu-all.sidebar ul.menu-side, #inner-box .sidebar-container .map-container-mobile .tree-menu-all.sidebar ul.menu-side {
      margin-top: 16px; }

.map-container-small {
  position: relative;
  left: 1em;
  top: -2.5em;
  padding-top: 3em;
  width: 27em;
  pointer-events: none; }
  .map-container-small .description {
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 auto;
    padding: 0 0 10px 24px;
    width: 19.4em;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.01em;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0); }
    .map-container-small .description .selected {
      margin-top: 20px;
      font-weight: 700;
      text-align: center; }
    @media (max-width: 1023px) {
      .map-container-small .description {
        font-size: 10px; } }
  .map-container-small #map-target {
    width: 100%; }
    .map-container-small #map-target svg {
      width: 100%;
      height: 100%;
      fill: none; }
  @media (min-width: 1025px) {
    .map-container-small {
      left: 7.44681vh;
      top: -7.44681vh;
      padding-top: 5.74468vh;
      width: 48.40426vh;
      height: 20.42553vh; } }
  @media (max-width: 1023px) {
    .map-container-small {
      left: -1em;
      top: -1.5em;
      padding-top: 1em;
      width: 23em; } }

.yamaps-custom-baloon {
  padding: 10px 18px;
  font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
  color: #3c4a5f; }
  .yamaps-custom-baloon .yamaps-company-item {
    margin-bottom: 12px; }
    .has-hover .yamaps-custom-baloon .yamaps-company-item:not([disabled]):hover {
      color: #4a6fa6;
      cursor: pointer; }
  .yamaps-custom-baloon .yamaps-region-title {
    margin-bottom: 7px;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px; }
  .yamaps-custom-baloon .yamaps-company-descr {
    font-family: "Oswald", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: -0.01em;
    text-transform: uppercase; }
  .yamaps-custom-baloon .yamaps-company-name {
    font-family: "Roboto", -apple-system, "Segoe UI", "Impact", sans-serif;
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.01em; }

.map__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: absolute;
  right: 20px;
  top: 157px;
  z-index: 10; }

@media (min-width: 1025px) {
  .map__icon svg {
    height: 70vh; } }

.map__btn {
  margin: 0;
  border: none;
  padding: 0;
  width: 28px;
  height: 28px;
  color: #fff;
  background: none; }
  .map__btn:not(:last-child) {
    margin-bottom: 35px; }
  .map__btn svg {
    width: 100%;
    height: 100%; }
  .map__btn:disabled {
    color: #667894; }
  .map__btn.decrease svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }

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

/* End */
/* /bitrix/templates/map/css/main.css?1641818998138337 */
