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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*! Pushy - v1.4.0 - 2020-12-28
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
  position: fixed;
  width: 200px;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: #191918;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */ }

.pushy a {
  display: block;
  color: #b3b3b1;
  padding: 15px 30px;
  text-decoration: none; }

.pushy a:hover {
  color: #FFF; }

.pushy ul:first-child {
  margin-top: 10px; }

.pushy.pushy-left {
  left: 0; }

.pushy.pushy-right {
  right: 0; }

.pushy-content {
  visibility: hidden; }

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0); }

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0); }

.pushy-right {
  -webkit-transform: translate3d(200px, 0, 0);
  -ms-transform: translate3d(200px, 0, 0);
  transform: translate3d(200px, 0, 0); }

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-200px, 0, 0);
  -ms-transform: translate3d(-200px, 0, 0);
  transform: translate3d(-200px, 0, 0); }

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible; }

/* Menu Transitions */
#container,
.pushy,
.push {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  -o-transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99), -webkit-transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99); }

.pushy-content {
  -webkit-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  -o-transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99); }

/* Site Overlay */
.site-overlay {
  display: none; }

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-animation: fade 500ms;
  animation: fade 500ms; }

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

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

/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Buttons */
  /* Submenu Icon */ }

.pushy-submenu > ul {
  padding-left: 15px;
  -webkit-transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out; }

.pushy-submenu > ul .pushy-link {
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out; }

.pushy-submenu button {
  width: 100%;
  color: #b3b3b1;
  padding: 15px 30px;
  text-align: left;
  background: transparent;
  border: 0; }

.pushy-submenu button:hover {
  color: #FFF; }

.pushy-submenu > a,
.pushy-submenu > button {
  position: relative; }

.pushy-submenu > a::after,
.pushy-submenu > button::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("../img/arrow.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -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; }

/* Submenu Movement */
.pushy-submenu-closed > ul {
  max-height: 0;
  overflow: hidden;
  visibility: hidden; }

.pushy-submenu-closed .pushy-link {
  opacity: 0; }

.pushy-submenu-open {
  /* Submenu Icon */ }

.pushy-submenu-open > ul {
  max-height: 1000px;
  visibility: visible; }

.pushy-submenu-open .pushy-link {
  opacity: 1; }

.pushy-submenu-open > a::after,
.pushy-submenu-open > button::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg); }

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

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

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "Gotham";
  color: #121A2B;
  background-color: #F9FBFF; }

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

p {
  margin: 0; }

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

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

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

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

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

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

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

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

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

iframe {
  display: block; }

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

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

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

input {
  outline: none; }

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

/* stylelint-disable */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    -webkit-animation-duration: 0.001s !important;
            animation-duration: 0.001s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-transition-duration: 0.001s !important;
         -o-transition-duration: 0.001s !important;
            transition-duration: 0.001s !important;
    -webkit-transition-delay: 0s !important;
         -o-transition-delay: 0s !important;
            transition-delay: 0s !important; } }

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

.is-hide {
  opacity: 0; }

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

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

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

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

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

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

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

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

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

/* stylelint-enable */
.header {
  background-color: #9D2323;
  color: #fff;
  position: relative;
  z-index: 2; }
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media (max-width: 1024px) {
      .header__contacts {
        display: none; } }
  .header__phone {
    font-size: 1.38889vw;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .header__phone {
        font-size: 20px; } }
  .header__email {
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .header__email {
        font-size: 14px; } }
  @media (max-width: 1024px) {
    .header__nav {
      display: none; } }

.btn-menu {
  width: 14.375vmin;
  height: 14.375vmin;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 1.25vmin;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25); }
  .btn-menu svg {
    width: 7.5vmin;
    height: 7.5vmin; }

.logo {
  width: 8.54167vw; }
  @media (min-width: 1800px) {
    .logo {
      width: 123px; } }
  @media (max-width: 1024px) {
    .logo {
      width: 25.9375vmin; } }

.nav {
  font-size: 1.04167vw; }
  .nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .nav ul li {
      position: relative; }
      .nav ul li > a {
        display: inline-block;
        padding: 2.77778vw 1.11111vw;
        position: relative; }
        .nav ul li > a:after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 0.20833vw;
          background-color: #fff;
          opacity: 0;
          -webkit-transition: all .3s ease-out;
          -o-transition: all .3s ease-out;
          transition: all .3s ease-out; }
          @media (min-width: 1800px) {
            .nav ul li > a:after {
              height: 3px; } }
        .nav ul li > a:hover:after {
          opacity: 1; }
        @media (min-width: 1800px) {
          .nav ul li > a {
            padding: 40px 16px; } }
      .nav ul li ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 18.75vw;
        display: block;
        z-index: 6;
        background-color: #fff;
        padding: 1.66667vw;
        color: #121A2B;
        border-radius: 0 0 0.27778vw 0.27778vw;
        -webkit-box-shadow: 0 0.48611vw 1.04167vw rgba(43, 62, 101, 0.05);
                box-shadow: 0 0.48611vw 1.04167vw rgba(43, 62, 101, 0.05);
        display: none; }
        .nav ul li ul li {
          margin-bottom: 0.83333vw; }
          .nav ul li ul li a:hover {
            color: #ff3d3d; }
          .nav ul li ul li a:after {
            display: none; }
          .nav ul li ul li:last-child {
            margin-bottom: 0; }
          @media (min-width: 1800px) {
            .nav ul li ul li {
              margin-bottom: 12px; } }
        .nav ul li ul a {
          padding: 0; }
        @media (min-width: 1800px) {
          .nav ul li ul {
            width: 270px;
            padding: 24px;
            border-radius: 0 0 4px 4px;
            -webkit-box-shadow: 0 7px 15px rgba(43, 62, 101, 0.05);
                    box-shadow: 0 7px 15px rgba(43, 62, 101, 0.05); } }
      .nav ul li:hover ul {
        display: block; }
  @media (min-width: 1800px) {
    .nav {
      font-size: 15px; } }

.footer {
  background-color: #121A2B;
  font-size: 1.11111vw;
  color: #fff; }
  .footer a:hover {
    color: #9D2323; }
  @media (max-width: 1024px) {
    .footer__logo {
      margin-bottom: 10vmin; } }
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 1024px) {
      .footer__top {
        display: block; } }
  .footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .footer__item svg {
      width: 1.66667vw;
      height: 1.66667vw;
      margin-right: 0.83333vw; }
      @media (min-width: 1800px) {
        .footer__item svg {
          width: 24px;
          height: 24px;
          margin-right: 12px; } }
      @media (max-width: 1024px) {
        .footer__item svg {
          width: 5.625vmin;
          height: 5.625vmin;
          margin-right: 3.75vmin; } }
    @media (max-width: 1024px) {
      .footer__item {
        margin-bottom: 7.5vmin; } }
  .footer__middle {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 2.5vw 0; }
    @media (min-width: 1800px) {
      .footer__middle {
        padding: 36px 0; } }
    @media (max-width: 1024px) {
      .footer__middle {
        display: none; } }
  .footer__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .footer__bottom {
    padding: 2.5vw 0; }
    @media (min-width: 1800px) {
      .footer__bottom {
        padding: 36px 0; } }
    @media (max-width: 1024px) {
      .footer__bottom {
        padding: 5vmin 0; } }
  .footer__copyright {
    text-align: center;
    font-size: 0.83333vw;
    color: #898D95; }
    @media (min-width: 1800px) {
      .footer__copyright {
        font-size: 12px; } }
    @media (max-width: 1024px) {
      .footer__copyright {
        font-size: 3.125vmin; } }
  .footer__phone {
    font-size: 1.38889vw;
    font-weight: 700; }
    @media (min-width: 1800px) {
      .footer__phone {
        font-size: 20px; } }
    @media (max-width: 1024px) {
      .footer__phone {
        font-size: 6.25vmin; } }
  @media (min-width: 1800px) {
    .footer {
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .footer {
      font-size: 4.375vmin; } }

.pushy {
  width: 85vmin;
  padding-top: 3.125vmin;
  background-color: #9D2323;
  padding-bottom: 15.625vmin;
  -webkit-transform: translate3d(-85.3125vmin, 0, 0);
          transform: translate3d(-85.3125vmin, 0, 0); }
  .pushy__menu a, .pushy__menu button {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4.375vmin 8.125vmin;
    padding-left: 0;
    margin-left: 6.875vmin;
    font-size: 5vmin;
    font-weight: 300; }
  .pushy__menu .pushy-submenu ul a, .pushy__menu .pushy-submenu ul button {
    text-transform: none;
    font-size: 4.375vmin; }
  .pushy__submenu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .pushy .pushy-submenu > a::after, .pushy .pushy-submenu > button::after {
    right: 11.25vmin !important;
    background: url(../images/sprites/svg/arrow-right.svg) no-repeat;
    background-size: contain;
    width: 5.625vmin;
    height: 5.625vmin; }

.subtitle {
  text-transform: uppercase;
  font-size: 0.83333vw;
  font-weight: 700;
  color: #898D95;
  margin-bottom: 1.11111vw; }
  @media (min-width: 1800px) {
    .subtitle {
      font-size: 12px;
      margin-bottom: 16px; } }
  @media (max-width: 1024px) {
    .subtitle {
      font-size: 3.125vmin;
      margin-bottom: 2.5vmin; } }

.title-h2 {
  font-size: 3.33333vw;
  margin-top: 0;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 2.22222vw; }
  .title-h2 span {
    color: #9D2323; }
  @media (min-width: 1800px) {
    .title-h2 {
      font-size: 48px;
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .title-h2 {
      font-size: 7.5vmin;
      margin-bottom: 7.5vmin; } }

.title-h1 {
  margin-top: 0;
  font-size: 3.33333vw;
  font-weight: 700;
  margin-bottom: 2.22222vw; }
  @media (min-width: 1800px) {
    .title-h1 {
      font-size: 48px;
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .title-h1 {
      font-size: 8.125vmin;
      margin-bottom: 7.5vmin; } }

.page {
  padding-bottom: 6.66667vw;
  min-height: calc(100vh - 12.01389vw); }
  @media (min-width: 1800px) {
    .page {
      padding-bottom: 96px;
      min-height: calc(100vh - 173px); } }
  @media (max-width: 1024px) {
    .page {
      padding-bottom: 12.5vmin;
      min-height: none; } }

.typography {
  font-size: 1.04167vw;
  font-weight: 300;
  line-height: 140%; }
  .typography p {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .typography p {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .typography p {
        margin-bottom: 5vmin; } }
  .typography h3 {
    text-transform: uppercase;
    color: #9D2323;
    margin-top: 2.22222vw;
    margin-bottom: 1.66667vw;
    font-weight: 700;
    font-size: 1.66667vw;
    line-height: 120%; }
    @media (min-width: 1800px) {
      .typography h3 {
        margin-top: 32px;
        margin-bottom: 24px;
        font-size: 24px; } }
    @media (max-width: 1024px) {
      .typography h3 {
        margin-top: 7.5vmin;
        margin-bottom: 5.625vmin;
        font-size: 6.875vmin; } }
  .typography h4 {
    font-weight: 700;
    font-size: 1.25vw; }
    @media (min-width: 1800px) {
      .typography h4 {
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .typography h4 {
        font-size: 5.625vmin; } }
  .typography h5 {
    font-weight: 700;
    font-size: 0.97222vw; }
    @media (min-width: 1800px) {
      .typography h5 {
        font-size: 14px; } }
    @media (max-width: 1024px) {
      .typography h5 {
        font-size: 4.375vmin; } }
  .typography table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.22222vw; }
    .typography table thead th {
      border-bottom: 0.13889vw solid #9D2323;
      text-align: left;
      padding: 0.69444vw; }
      @media (min-width: 1800px) {
        .typography table thead th {
          border-bottom: 2px solid #9D2323;
          padding: 10px; } }
      @media (max-width: 1024px) {
        .typography table thead th {
          border-bottom: 0.625vmin solid #9D2323;
          padding: 3.125vmin; } }
    .typography table td {
      border: 1px solid rgba(137, 141, 149, 0.2);
      padding: 0.69444vw; }
      @media (min-width: 1800px) {
        .typography table td {
          padding: 10px; } }
      @media (max-width: 1024px) {
        .typography table td {
          padding: 3.125vmin; } }
    @media (min-width: 1800px) {
      .typography table {
        margin-bottom: 32px; } }
    @media (max-width: 1024px) {
      .typography table {
        margin-bottom: 10vmin; } }
  .typography img {
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .typography img {
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .typography img {
        margin-bottom: 7.5vmin; } }
  .typography strong, .typography b {
    font-weight: 700; }
  .typography a {
    color: #9D2323; }
    .typography a:hover {
      opacity: 0.7; }
  .typography ol li {
    list-style-type: decimal;
    margin-bottom: 0.69444vw; }
    @media (min-width: 1800px) {
      .typography ol li {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .typography ol li {
        margin-bottom: 2.5vmin; } }
  @media (max-width: 1024px) {
    .typography ol {
      padding-left: 7.5vmin; } }
  .typography ul {
    padding-left: 1.66667vw; }
    .typography ul li {
      list-style-type: disc;
      margin-bottom: 0.69444vw; }
      @media (min-width: 1800px) {
        .typography ul li {
          margin-bottom: 10px; } }
      @media (max-width: 1024px) {
        .typography ul li {
          margin-bottom: 2.5vmin; } }
    @media (max-width: 1024px) {
      .typography ul {
        padding-left: 7.5vmin; } }
  .typography blockquote {
    color: #fff;
    background-color: #9D2323;
    font-size: 1.66667vw;
    line-height: 2.22222vw;
    margin-left: 0;
    padding: 1.66667vw; }
    @media (min-width: 1800px) {
      .typography blockquote {
        font-size: 24px;
        line-height: 32px;
        padding: 24px; } }
    @media (max-width: 1024px) {
      .typography blockquote {
        font-size: 5vmin;
        line-height: 7.5vmin;
        padding: 5vmin; } }
  @media (min-width: 1800px) {
    .typography {
      font-size: 15px; } }
  @media (max-width: 1024px) {
    .typography {
      font-size: 4.0625vmin; } }

.crumbs {
  font-size: 0.97222vw;
  color: #898D95;
  padding: 2.22222vw 0; }
  .crumbs a:hover {
    color: #9D2323; }
  .crumbs ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 0;
    margin: 0; }
    .crumbs ol li:after {
      content: "|";
      display: inline-block;
      margin-left: 0.27778vw;
      margin-right: 0.27778vw;
      color: #9D2323; }
      @media (min-width: 1800px) {
        .crumbs ol li:after {
          margin-left: 4px;
          margin-right: 4px; } }
      @media (max-width: 1024px) {
        .crumbs ol li:after {
          margin-left: 1.25vmin;
          margin-right: 1.25vmin; } }
    .crumbs ol li:last-child:after {
      display: none; }
  @media (min-width: 1800px) {
    .crumbs {
      font-size: 14px;
      padding: 32px 0; } }
  @media (max-width: 1024px) {
    .crumbs {
      font-size: 3.75vmin;
      padding: 5vmin 0; } }

.card {
  background: #FFFFFF;
  -webkit-box-shadow: 0 0.48611vw 1.04167vw rgba(43, 62, 101, 0.05);
          box-shadow: 0 0.48611vw 1.04167vw rgba(43, 62, 101, 0.05);
  padding: 1.66667vw;
  border-radius: 1.11111vw;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .card__wrapper {
    width: 100%; }
  .card__image {
    position: relative;
    overflow: hidden;
    border-radius: 0.55556vw;
    margin-bottom: 1.66667vw; }
    .card__image img {
      width: 100%;
      -webkit-transition: all .5s ease-out;
      -o-transition: all .5s ease-out;
      transition: all .5s ease-out; }
    .card__image:hover img {
      -webkit-transform: scale(1.1) rotate(3deg);
          -ms-transform: scale(1.1) rotate(3deg);
              transform: scale(1.1) rotate(3deg); }
    @media (min-width: 1800px) {
      .card__image {
        border-radius: 8px;
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .card__image {
        border-radius: 1.875vmin;
        margin-bottom: 3.75vmin; } }
  .card__title {
    margin-bottom: 0.83333vw;
    font-size: 1.38889vw;
    font-weight: 700;
    line-height: 120%; }
    .card__title a:hover {
      color: #9D2323; }
    @media (min-width: 1800px) {
      .card__title {
        margin-bottom: 12px;
        font-size: 20px; } }
    @media (max-width: 1024px) {
      .card__title {
        margin-bottom: 1.875vmin;
        font-size: 5vmin; } }
  .card__date {
    text-transform: uppercase;
    color: #898D95;
    font-weight: 700;
    margin-bottom: 0.83333vw;
    font-size: 0.83333vw; }
    @media (min-width: 1800px) {
      .card__date {
        margin-bottom: 12px;
        font-size: 12px; } }
    @media (max-width: 1024px) {
      .card__date {
        margin-bottom: 3.75vmin;
        font-size: 3.75vmin; } }
  .card__intro {
    font-size: 0.97222vw;
    color: #898D95;
    line-height: 150%;
    margin-bottom: 1.66667vw; }
    @media (min-width: 1800px) {
      .card__intro {
        font-size: 14px;
        margin-bottom: 24px; } }
    @media (max-width: 1024px) {
      .card__intro {
        font-size: 3.75vmin;
        margin-bottom: 7.5vmin; } }
  @media (min-width: 1800px) {
    .card {
      -webkit-box-shadow: 0 7px 15px rgba(43, 62, 101, 0.05);
              box-shadow: 0 7px 15px rgba(43, 62, 101, 0.05);
      padding: 24px;
      border-radius: 16px; } }
  @media (max-width: 1024px) {
    .card {
      -webkit-box-shadow: 0 2.1875vmin 4.6875vmin rgba(43, 62, 101, 0.05);
              box-shadow: 0 2.1875vmin 4.6875vmin rgba(43, 62, 101, 0.05);
      padding: 6.25vmin;
      border-radius: 3.75vmin; } }

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .pagination ul li {
    margin-right: 0.83333vw; }
    .pagination ul li a, .pagination ul li span {
      width: 3.75vw;
      height: 3.75vw;
      border: 1px solid #D8D7EC;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-radius: 0.27778vw;
      font-weight: 700;
      font-size: 1.11111vw; }
      .pagination ul li a svg, .pagination ul li span svg {
        width: 0.83333vw;
        height: 0.83333vw; }
        @media (min-width: 1800px) {
          .pagination ul li a svg, .pagination ul li span svg {
            width: 12px;
            height: 12px; } }
        @media (max-width: 1024px) {
          .pagination ul li a svg, .pagination ul li span svg {
            width: 2.5vmin;
            height: 2.5vmin; } }
      @media (min-width: 1800px) {
        .pagination ul li a, .pagination ul li span {
          width: 54px;
          height: 54px;
          border-radius: 4px;
          font-size: 16px; } }
      @media (max-width: 1024px) {
        .pagination ul li a, .pagination ul li span {
          width: 11.25vmin;
          height: 11.25vmin;
          border-radius: 1.25vmin;
          font-size: 4.375vmin; } }
    .pagination ul li a {
      color: #898D95; }
      .pagination ul li a:hover {
        border: 1px solid #9D2323;
        color: #9D2323; }
    .pagination ul li span {
      color: #fff;
      background-color: #9D2323;
      border: 1px solid #9D2323; }
    @media (min-width: 1800px) {
      .pagination ul li {
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .pagination ul li {
        margin-right: 2.5vmin; } }

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.97222vw;
  font-weight: 500;
  height: 3.88889vw;
  border-radius: 0.27778vw;
  padding: 0 1.66667vw; }
  .btn--border-red {
    border: 1px solid #9D2323;
    color: #121A2B !important; }
    .btn--border-red:hover {
      background-color: #9D2323;
      color: #fff !important;
      opacity: 1 !important; }
  @media (min-width: 1800px) {
    .btn {
      font-size: 14px;
      height: 56px;
      border-radius: 4px;
      padding: 0 24px; } }
  @media (max-width: 1024px) {
    .btn {
      font-size: 4.0625vmin;
      height: 13.75vmin;
      border-radius: 1.25vmin;
      padding: 0 5vmin; } }

.digits {
  background-color: #9D2323;
  padding: 6.66667vw 0 4.44444vw;
  color: #fff; }
  .digits__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .digits__container {
        margin-left: -10px;
        margin-right: -10px; } }
  @media (min-width: 1800px) {
    .digits {
      padding: 96px 0 64px; } }
  @media (max-width: 1024px) {
    .digits {
      padding: 18.75vmin 0 34px; } }

.digit {
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.22222vw; }
  .digit__ico {
    -ms-flex-preferred-size: 5.55556vw;
        flex-basis: 5.55556vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1.38889vw;
    height: 5.55556vw;
    border-radius: 0.41667vw;
    background-color: #881e1e;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3); }
    .digit__ico img {
      width: 2.77778vw;
      height: 2.77778vw; }
      @media (min-width: 1800px) {
        .digit__ico img {
          width: 40px;
          height: 40px; } }
      @media (max-width: 1024px) {
        .digit__ico img {
          width: 12.5vmin;
          height: 12.5vmin; } }
    @media (min-width: 1800px) {
      .digit__ico {
        -ms-flex-preferred-size: 80px;
            flex-basis: 80px;
        margin-right: 20px;
        height: 80px;
        border-radius: 6px; } }
    @media (max-width: 1024px) {
      .digit__ico {
        -ms-flex-preferred-size: 18.75vmin;
            flex-basis: 18.75vmin;
        margin-right: 6.25vmin;
        height: 18.75vmin;
        border-radius: 1.875vmin; } }
  .digit__title {
    font-weight: 700;
    font-size: 3.61111vw;
    padding-bottom: 1.38889vw;
    margin-bottom: 1.38889vw;
    position: relative; }
    .digit__title:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 6.94444vw;
      height: 0.20833vw;
      background-color: #fff; }
      @media (min-width: 1800px) {
        .digit__title:after {
          width: 100px;
          height: 3px; } }
      @media (max-width: 1024px) {
        .digit__title:after {
          width: 31.25vmin;
          height: 0.9375vmin; } }
    @media (min-width: 1800px) {
      .digit__title {
        font-size: 52px;
        padding-bottom: 20px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .digit__title {
        font-size: 10vmin;
        padding-bottom: 6.25vmin;
        margin-bottom: 6.25vmin; } }
  .digit__subtitle {
    font-size: 1.25vw; }
    @media (min-width: 1800px) {
      .digit__subtitle {
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .digit__subtitle {
        font-size: 5.625vmin; } }
  @media (min-width: 1800px) {
    .digit {
      margin-left: 10px;
      margin-right: 10px;
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .digit {
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 7.5vmin;
      margin-bottom: 10vmin; } }

.animation-image-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%); }
  @media (max-width: 1024px) {
    .animation-image-wrapper {
      -webkit-transform: none !important;
          -ms-transform: none !important;
              transform: none !important; } }

.animation-image {
  position: relative;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
  @media (max-width: 1024px) {
    .animation-image {
      -webkit-transform: none !important;
          -ms-transform: none !important;
              transform: none !important; } }

.title-animation {
  position: relative;
  overflow: hidden; }
  .title-animation span {
    display: block;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%); }
    @media (max-width: 1024px) {
      .title-animation span {
        -webkit-transform: none !important;
            -ms-transform: none !important;
                transform: none !important; } }

.content-animation {
  opacity: 0;
  -webkit-transform: translateY(10%);
      -ms-transform: translateY(10%);
          transform: translateY(10%); }
  @media (max-width: 1024px) {
    .content-animation {
      opacity: 1 !important;
      -webkit-transform: none !important;
          -ms-transform: none !important;
              transform: none !important; } }

::-moz-selection {
  background-color: #9D2323;
  color: #fff; }

::selection {
  background-color: #9D2323;
  color: #fff; }

.sliderblock {
  padding-top: 2.77778vw;
  padding-bottom: 2.77778vw; }
  .sliderblock .slider {
    position: relative;
    margin-bottom: 0 !important; }
    .sliderblock .slider__item img {
      width: 100%; }
  .sliderblock .btn-slider {
    outline: 0.41667vw solid #F9FBFF;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    z-index: 1;
    margin-top: -1.38889vw; }
    .sliderblock .btn-slider--prev {
      left: -1.94444vw; }
      @media (min-width: 1800px) {
        .sliderblock .btn-slider--prev {
          left: -28px; } }
      @media (max-width: 1024px) {
        .sliderblock .btn-slider--prev {
          left: -3.125vmin; } }
    .sliderblock .btn-slider--next {
      right: -1.94444vw; }
      @media (min-width: 1800px) {
        .sliderblock .btn-slider--next {
          right: -28px; } }
      @media (max-width: 1024px) {
        .sliderblock .btn-slider--next {
          right: -3.125vmin; } }
    @media (min-width: 1800px) {
      .sliderblock .btn-slider {
        outline: 6px solid #F9FBFF;
        margin-top: -20px; } }
    @media (max-width: 1024px) {
      .sliderblock .btn-slider {
        outline: 1.875vmin solid #F9FBFF;
        margin-top: -3.125vmin; } }
  @media (min-width: 1800px) {
    .sliderblock {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media (max-width: 1024px) {
    .sliderblock {
      padding-top: 6.25vmin;
      padding-bottom: 6.25vmin; } }

.btn-slider {
  width: 3.88889vw;
  height: 3.88889vw;
  border-radius: 0.27778vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #9D2323;
  background: none;
  background-color: #9D2323; }
  .btn-slider svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1800px) {
      .btn-slider svg {
        width: 24px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .btn-slider svg {
        width: 7.5vmin;
        height: 7.5vmin; } }
  .btn-slider:hover {
    background-color: #731a1a; }
  @media (min-width: 1800px) {
    .btn-slider {
      width: 56px;
      height: 56px;
      border-radius: 4px; } }
  @media (max-width: 1024px) {
    .btn-slider {
      width: 13.75vmin;
      height: 13.75vmin;
      border-radius: 1.25vmin; } }

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.38889vw; }
  .slick-dots li {
    margin: 0 0.27778vw;
    width: 0.55556vw;
    height: 0.55556vw;
    border-radius: 50%;
    background-color: #898D95;
    cursor: pointer; }
    .slick-dots li.slick-active {
      background-color: #9D2323; }
    .slick-dots li button {
      display: none; }
    @media (min-width: 1800px) {
      .slick-dots li {
        margin: 0 4px;
        width: 8px;
        height: 8px; } }
    @media (max-width: 1024px) {
      .slick-dots li {
        margin: 0 1.25vmin;
        width: 2.5vmin;
        height: 2.5vmin; } }
  @media (min-width: 1800px) {
    .slick-dots {
      margin-top: 20px; } }
  @media (max-width: 1024px) {
    .slick-dots {
      margin-top: 6.25vmin; } }

.news {
  padding: 3.88889vw 0 6.66667vw; }
  .news__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    .news__container .card {
      margin-left: 0.69444vw;
      margin-right: 0.69444vw;
      -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
          flex-basis: calc(33.33% - 1.38889vw); }
      @media (min-width: 1800px) {
        .news__container .card {
          margin-left: 10px;
          margin-right: 10px;
          -ms-flex-preferred-size: calc(33.33% - 20px);
              flex-basis: calc(33.33% - 20px); } }
      @media (max-width: 1024px) {
        .news__container .card {
          margin-left: 0;
          margin-right: 0;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          margin-bottom: 7.5vmin; } }
    @media (min-width: 1800px) {
      .news__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .news__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  @media (min-width: 1800px) {
    .news {
      padding: 56px 0 96px; } }
  @media (max-width: 1024px) {
    .news {
      padding: 6.25vmin 0 5vmin; } }
  .news--companypage {
    padding: 6.66667vw 0 6.66667vw; }
    @media (min-width: 1800px) {
      .news--companypage {
        padding: 96px 0 96px; } }
    @media (max-width: 1024px) {
      .news--companypage {
        padding: 12.5vmin 0 5vmin; } }
  .news--newspage {
    padding: 0 0 6.66667vw 0; }
    @media (min-width: 1800px) {
      .news--newspage {
        padding: 0 0 96px 0; } }
    @media (max-width: 1024px) {
      .news--newspage {
        padding: 12.5vmin 0 5vmin; } }

.company {
  background-color: #fff;
  padding: 6.66667vw 0;
  position: relative; }
  .company__wrapper {
    max-width: 50%;
    padding-right: 2.77778vw; }
    @media (min-width: 1800px) {
      .company__wrapper {
        padding-right: 40px; } }
    @media (max-width: 1024px) {
      .company__wrapper {
        max-width: 100%;
        padding-right: 0; } }
  .company__image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
    @media (max-width: 1024px) {
      .company__image {
        display: none; } }
  @media (min-width: 1800px) {
    .company {
      padding: 96px 0; } }
  @media (max-width: 1024px) {
    .company {
      padding: 12.5vmin 0; } }

.projects {
  padding: 6.66667vw 0;
  position: relative;
  overflow: hidden; }
  .projects__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.69444vw;
    margin-right: -0.69444vw; }
    @media (min-width: 1800px) {
      .projects__container {
        margin-left: -10px;
        margin-right: -10px; } }
    @media (max-width: 1024px) {
      .projects__container {
        margin-left: 0;
        margin-right: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .projects__content {
    -ms-flex-preferred-size: calc(41.66% - 1.38889vw);
        flex-basis: calc(41.66% - 1.38889vw);
    max-width: calc(41.66% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .projects__content {
        -ms-flex-preferred-size: calc(41.66% - 20px);
            flex-basis: calc(41.66% - 20px);
        max-width: calc(41.66% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .projects__content {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 7.5vmin; } }
  .projects__slider {
    -ms-flex-preferred-size: calc(58.3% - 1.38889vw);
        flex-basis: calc(58.3% - 1.38889vw);
    max-width: calc(58.3% - 1.38889vw);
    margin-left: 0.69444vw;
    margin-right: 0.69444vw; }
    @media (min-width: 1800px) {
      .projects__slider {
        -ms-flex-preferred-size: calc(58.3% - 20px);
            flex-basis: calc(58.3% - 20px);
        max-width: calc(58.3% - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .projects__slider {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  .projects__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .projects__btns > * {
      margin-right: 1.38889vw; }
      @media (min-width: 1800px) {
        .projects__btns > * {
          margin-right: 20px; } }
      @media (max-width: 1024px) {
        .projects__btns > * {
          margin-right: 3.125vmin; } }
    @media (max-width: 1024px) {
      .projects__btns .btn {
        white-space: nowrap; } }
    .projects__btns .btn-slide {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .projects__btns .btn-slider--prev {
      margin-right: 0.69444vw; }
      @media (min-width: 1800px) {
        .projects__btns .btn-slider--prev {
          margin-right: 10px; } }
      @media (max-width: 1024px) {
        .projects__btns .btn-slider--prev {
          margin-right: 1.25vmin; } }
    @media (max-width: 1024px) {
      .projects__btns .btn-slider--next {
        margin-right: 0; } }
  .projects .card {
    max-width: 29.65278vw; }
    .projects .card__title {
      min-height: 3.19444vw; }
      @media (min-width: 1800px) {
        .projects .card__title {
          min-height: 46px; } }
      @media (max-width: 1024px) {
        .projects .card__title {
          min-height: 14.375vmin; } }
    @media (min-width: 1800px) {
      .projects .card {
        max-width: 427px; } }
    @media (max-width: 1024px) {
      .projects .card {
        max-width: none; } }
  @media (min-width: 1800px) {
    .projects {
      padding: 96px 0; } }
  @media (max-width: 1024px) {
    .projects {
      padding: 12.5vmin 0; } }
  .projects--companypage {
    background-color: #fff; }
    .projects--companypage .card {
      border: 1px solid rgba(137, 141, 149, 0.15);
      -webkit-box-shadow: none;
              box-shadow: none; }
    @media (max-width: 1024px) {
      .projects--companypage {
        padding: 12.5vmin 0 6.25vmin; } }

.projects-slider {
  margin-left: -1.38889vw;
  margin-right: -27.77778vw; }
  .projects-slider__item {
    padding-right: 0.69444vw;
    padding-bottom: 1.38889vw;
    padding-left: 1.38889vw; }
    @media (min-width: 1800px) {
      .projects-slider__item {
        padding-right: 10px;
        padding-bottom: 20px;
        padding-left: 20px; } }
    @media (max-width: 1024px) {
      .projects-slider__item {
        padding-right: 3.125vmin;
        padding-left: 3.125vmin;
        padding-bottom: 6.25vmin; } }
  @media (min-width: 1800px) {
    .projects-slider {
      margin-left: -20px;
      margin-right: -400px; } }
  @media (max-width: 1024px) {
    .projects-slider {
      margin-left: -3.125vmin;
      margin-right: -3.125vmin; } }

.project-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.22222vw; }
  @media (min-width: 1800px) {
    .project-page__container {
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .project-page__container {
      margin-bottom: 10vmin;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.project-page__image {
  -ms-flex-preferred-size: calc(41.66% - 1.38889vw);
      flex-basis: calc(41.66% - 1.38889vw);
  max-width: calc(41.66% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .project-page__image {
      -ms-flex-preferred-size: calc(41.66% - 20px);
          flex-basis: calc(41.66% - 20px);
      max-width: calc(41.66% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .project-page__image {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 10vmin; } }

.project-page__content {
  -ms-flex-preferred-size: calc(58.34% - 1.38889vw);
      flex-basis: calc(58.34% - 1.38889vw);
  max-width: calc(58.34% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  padding-left: 4.51389vw; }
  @media (min-width: 1800px) {
    .project-page__content {
      -ms-flex-preferred-size: calc(58.34% - 20px);
          flex-basis: calc(58.34% - 20px);
      max-width: calc(58.34% - 20px);
      margin-left: 10px;
      margin-right: 10px;
      padding-left: 65px; } }
  @media (max-width: 1024px) {
    .project-page__content {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding-left: 0; } }

.project-page__char {
  max-width: 52.91667vw; }
  @media (min-width: 1800px) {
    .project-page__char {
      max-width: 762px; } }
  @media (max-width: 1024px) {
    .project-page__char {
      max-width: 100%; } }

.project-slider .btn-slider {
  outline: 0.41667vw solid #F9FBFF;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1;
  margin-top: -1.38889vw; }
  .project-slider .btn-slider--prev {
    left: -1.94444vw; }
    @media (min-width: 1800px) {
      .project-slider .btn-slider--prev {
        left: -28px; } }
    @media (max-width: 1024px) {
      .project-slider .btn-slider--prev {
        left: -3.125vmin; } }
  .project-slider .btn-slider--next {
    right: -1.94444vw; }
    @media (min-width: 1800px) {
      .project-slider .btn-slider--next {
        right: -28px; } }
    @media (max-width: 1024px) {
      .project-slider .btn-slider--next {
        right: -3.125vmin; } }
  @media (min-width: 1800px) {
    .project-slider .btn-slider {
      outline: 6px solid #F9FBFF;
      margin-top: -20px; } }
  @media (max-width: 1024px) {
    .project-slider .btn-slider {
      outline: 1.875vmin solid #F9FBFF;
      margin-top: -3.125vmin; } }

.contacts-page a:hover {
  color: #9D2323; }

.contacts-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw; }
  @media (min-width: 1800px) {
    .contacts-page__container {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1024px) {
    .contacts-page__container {
      margin-left: 0;
      margin-right: 0;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.contacts-page__content {
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .contacts-page__content {
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .contacts-page__content {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 10vmin; } }

.contacts-page__mapblock {
  -ms-flex-preferred-size: calc(66.66% - 1.38889vw);
      flex-basis: calc(66.66% - 1.38889vw);
  margin-left: 0.69444vw;
  margin-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .contacts-page__mapblock {
      -ms-flex-preferred-size: calc(66.66% - 20px);
          flex-basis: calc(66.66% - 20px);
      margin-left: 10px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .contacts-page__mapblock {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-left: 0;
      margin-right: 0; } }

.contacts-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.66667vw;
  font-size: 1.11111vw; }
  .contacts-page__item svg {
    width: 1.66667vw;
    height: 1.66667vw;
    margin-right: 0.83333vw; }
    @media (min-width: 1800px) {
      .contacts-page__item svg {
        width: 24px;
        height: 24px;
        margin-right: 12px; } }
    @media (max-width: 1024px) {
      .contacts-page__item svg {
        width: 7.5vmin;
        height: 7.5vmin;
        margin-right: 3.75vmin; } }
  @media (min-width: 1800px) {
    .contacts-page__item {
      margin-bottom: 24px;
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .contacts-page__item {
      margin-bottom: 7.5vmin;
      font-size: 5vmin; } }

.contacts-page__phone {
  font-weight: 700;
  font-size: 1.38889vw; }
  @media (min-width: 1800px) {
    .contacts-page__phone {
      font-size: 20px; } }
  @media (max-width: 1024px) {
    .contacts-page__phone {
      font-size: 6.25vmin; } }

.contacts-page__map {
  min-height: 26.38889vw;
  position: relative;
  overflow: hidden;
  border-radius: 1.11111vw;
  background-color: #E4EDFF; }
  .contacts-page__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    left: 0; }
  @media (min-width: 1800px) {
    .contacts-page__map {
      min-height: 380px;
      border-radius: 16px; } }
  @media (max-width: 1024px) {
    .contacts-page__map {
      min-height: 81.25vmin;
      border-radius: 5vmin; } }

.company-page {
  min-height: auto; }
  .company-page__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 1024px) {
      .company-page__wrapper {
        display: block; } }
  .company-page__content {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    padding-right: 2.77778vw; }
    @media (min-width: 1800px) {
      .company-page__content {
        padding-right: 40px; } }
    @media (max-width: 1024px) {
      .company-page__content {
        padding-right: 0;
        margin-bottom: 7.5vmin; } }
  .company-page__image {
    -ms-flex-preferred-size: 35%;
        flex-basis: 35%; }

.serts {
  padding: 6.66667vw 0; }
  .serts--cert, .serts--policy {
    background-color: #fff; }
  .serts ul li {
    margin-bottom: 1.38889vw; }
    .serts ul li a {
      font-weight: 500;
      font-size: 1.25vw;
      line-height: 1.4;
      border: 1px solid rgba(137, 141, 149, 0.4);
      display: block;
      padding: 0.83333vw 1.11111vw; }
      .serts ul li a:hover {
        border: 1px solid #9D2323;
        color: #9D2323; }
      @media (min-width: 1800px) {
        .serts ul li a {
          font-size: 18px;
          padding: 12px 16px; } }
      @media (max-width: 1024px) {
        .serts ul li a {
          font-size: 4.6875vmin;
          padding: 3.75vmin 5vmin; } }
    @media (min-width: 1800px) {
      .serts ul li {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .serts ul li {
        margin-bottom: 4.375vmin; } }
  @media (min-width: 1800px) {
    .serts {
      padding: 96px 0; } }
  @media (max-width: 1024px) {
    .serts {
      padding: 12.5vmin 0; } }

.doc-slider__item {
  padding-left: 0.69444vw;
  padding-right: 0.69444vw; }
  @media (min-width: 1800px) {
    .doc-slider__item {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1024px) {
    .doc-slider__item {
      padding-left: 0;
      padding-right: 0; } }

.doc-slider__title {
  font-weight: 700;
  font-size: 1.04167vw;
  margin-top: 0.83333vw; }
  @media (min-width: 1800px) {
    .doc-slider__title {
      font-size: 15px;
      margin-top: 12px; } }
  @media (max-width: 1024px) {
    .doc-slider__title {
      font-size: 4.6875vmin;
      margin-top: 3.75vmin; } }

.doc-slider .popup {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 0.41667vw;
  padding: 0.69444vw;
  border: 1px solid rgba(137, 141, 149, 0.15); }
  .doc-slider .popup img {
    width: 100%;
    border-radius: 0.41667vw;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1px solid rgba(137, 141, 149, 0.25);
            order: 1px solid rgba(137, 141, 149, 0.25); }
    @media (min-width: 1800px) {
      .doc-slider .popup img {
        border-radius: 6px; } }
    @media (max-width: 1024px) {
      .doc-slider .popup img {
        border-radius: 1.875vmin; } }
  @media (min-width: 1800px) {
    .doc-slider .popup {
      border-radius: 6px;
      padding: 10px; } }
  @media (max-width: 1024px) {
    .doc-slider .popup {
      border-radius: 1.875vmin;
      padding: 3.125vmin; } }

.doc-slider .btn-slider {
  position: absolute;
  top: 40%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); }
  .doc-slider .btn-slider--prev {
    left: -2.01389vw; }
    @media (min-width: 1800px) {
      .doc-slider .btn-slider--prev {
        left: -29px; } }
  .doc-slider .btn-slider--next {
    right: -2.01389vw; }
    @media (min-width: 1800px) {
      .doc-slider .btn-slider--next {
        right: -29px; } }

.news-page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -0.69444vw;
  margin-right: -0.69444vw;
  margin-bottom: 0.83333vw; }
  @media (min-width: 1800px) {
    .news-page__container {
      margin-left: -10px;
      margin-right: -10px;
      margin-bottom: 12px; } }
  @media (max-width: 1024px) {
    .news-page__container {
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 10px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.news-page .card {
  margin-left: 0.69444vw;
  margin-right: 0.69444vw;
  -ms-flex-preferred-size: calc(33.33% - 1.38889vw);
      flex-basis: calc(33.33% - 1.38889vw);
  margin-bottom: 1.38889vw; }
  @media (min-width: 1800px) {
    .news-page .card {
      margin-left: 10px;
      margin-right: 10px;
      -ms-flex-preferred-size: calc(33.33% - 20px);
          flex-basis: calc(33.33% - 20px);
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .news-page .card {
      margin-left: 0;
      margin-right: 0;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin-bottom: 7.5vmin; } }

.content-page--big .content-page__content {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-size: 1.38889vw;
  line-height: 150%; }
  @media (min-width: 1800px) {
    .content-page--big .content-page__content {
      font-size: 20px; } }
  @media (max-width: 1024px) {
    .content-page--big .content-page__content {
      font-size: 4.6875vmin; } }

.content-page--big .content-page__image {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%; }

.content-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 1024px) {
    .content-page__wrapper {
      display: block; } }

.content-page__content {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  padding-right: 2.77778vw; }
  @media (min-width: 1800px) {
    .content-page__content {
      padding-right: 40px; } }
  @media (max-width: 1024px) {
    .content-page__content {
      padding-right: 0;
      margin-bottom: 7.5vmin; } }

.content-page__image {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%; }
  .content-page__image img {
    border-radius: 0.83333vw; }
    @media (min-width: 1800px) {
      .content-page__image img {
        border-radius: 12px; } }
    @media (max-width: 1024px) {
      .content-page__image img {
        padding-right: 0;
        border-radius: 3.75vmin; } }

.content-page__date {
  border-radius: 2.5vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.55556vw 0.83333vw;
  font-size: 0.97222vw;
  font-weight: 500;
  border: 1px solid #898D95;
  margin-bottom: 2.22222vw;
  color: #898D95;
  opacity: 0.7; }
  @media (min-width: 1800px) {
    .content-page__date {
      border-radius: 36px;
      padding: 8px 12px;
      font-size: 14px;
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .content-page__date {
      border-radius: 11.25vmin;
      padding: 2.5vmin 3.75vmin;
      font-size: 4.375vmin;
      margin-bottom: 10vmin; } }

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