@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/Gilroy.otf.woff2') format('woff2'), url('../fonts/Gilroy.otf.woff') format('woff');
  font-family: 'Gilroy';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*,
*::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;
}

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: 100%;
}

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

/* stylelint-disable */
/*
* Немедленно переместите любую анимацию в конечную точку, если пользователь установил свое устройство в положение "prefers reduced motion".
* Это может привести к плохим(непреднамеренным) последствиям. Удалите по мере необходимости и напишите свой собственный код для prefers-reduced-motion.
*/
@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: 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: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2100;
  background-color: #151516;
  border-bottom: 1px solid #282829;
}
.header a {
  text-decoration: none;
}
.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
  padding: 20px 75px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 84px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .header-wrapper {
    display: none;
  }
}
.header-wrapper-logo {
  width: 211px;
  height: 41px;
  margin-right: 48px;
  padding-top: 2px;
}
.header-wrapper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-wrapper-nav-item {
  color: #fff;
  font-weight: 400;
  margin-right: 32px;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
  cursor: pointer;
}
.header-wrapper-nav-item:hover {
  opacity: 1;
}
.header-wrapper-nav-item-bar {
  position: relative;
  display: block;
  padding-right: 14px;
  margin-right: 35px;
}
.header-wrapper-nav-item-bar .header-nav-bar-spot {
  display: none;
}
.header-wrapper-nav-item-bar:before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: none;
  border-left: none;
  position: absolute;
  bottom: 3px;
  left: 100%;
  -webkit-transform: translate(-50%, -70%) rotate(135deg);
  -ms-transform: translate(-50%, -70%) rotate(135deg);
  transform: translate(-50%, -70%) rotate(135deg);
  -webkit-animation: barArrow1 0.2s ease-in-out;
  animation: barArrow1 0.2s ease-in-out;
}
.header-wrapper-nav-item-bar.is-active:before {
  -webkit-animation: barArrow2 0.2s ease-in-out;
  animation: barArrow2 0.2s ease-in-out;
  border-top: none;
  border-right: none;
  width: 6px;
  height: 6px;
  bottom: -1px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.header-wrapper-nav-item-bar:after {
  content: '';
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  bottom: 1px;
  left: 0;
  bottom: -12px;
}
.header-wrapper-nav-item-bar .header-nav-bar-spot {
  border-radius: 4px;
  padding: 16px;
  display: none;
  position: absolute;
  background: #1b1b1c;
  border: 1px solid rgba(254, 254, 254, 0.08);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  top: 26px;
  left: 0;
  width: 264px;

  z-index: 10;
}
.header-wrapper-nav-item-bar .header-nav-bar-spot-item {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
  color: #fff;
}
.dropdown-toggle ~ .header-nav-bar-spot a {
  margin: 0;
  display: block;
  position: relative;
  width: 100%;
  margin-top: 12px;
  font-size: 14px;
  line-height: 19px;
  opacity: 0.8;
  color: #fff;
}
.dropdown-toggle ~ .header-nav-bar-spot .header-wrapper-nav-item:hover {
  opacity: 1;
}
.header-wrapper-nav-item-bar li:first-child .header-nav-bar-spot-item {
  margin-top: 0px;
}
.header-wrapper-nav-item-bar .header-nav-bar-spot-item:hover {
  opacity: 1;
}
.header-wrapper-nav-item-bar .header-nav-bar-spot-company {
  height: 144px;
}
.header-wrapper-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.header-wrapper-contacts-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 20px;
  min-height: 40px;
}
.header-wrapper-contacts-tel {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.header-wrapper-contacts-tel:hover {
  color: #d7592a;
}
.header-wrapper-contacts-grafic {
  font-size: 12px;
  line-height: 12px;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  color: #fff;
  opacity: 0.4;
  letter-spacing: 0.4px;
  margin-top: 4px;
}
.header-wrapper-contacts-btn {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #fff;
  font-weight: 400;
  padding: 8px 13px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  height: 100%;
}
.header-mob {
  display: none;
}
@media (max-width: 1300px) {
  .header-mob {
    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;
    width: 100%;
    padding: 15px;
  }
  .header-mob-left-img {
    max-width: 176px;
  }
  .header-mob-right {
    max-width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-mob-right-tel {
    width: 23px;
    height: 23px;
    margin-right: 25px;
  }
  .header-mob-right-menu {
    width: 32px;
    height: 32px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
  }
  .header-mob-right-menu-img .b1 {
    width: 32px;
    height: 2px;
    background-color: #fff;
    margin: 10px 0 0 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .header-mob-right-menu-img .b3 {
    width: 32px;
    height: 2px;
    background-color: #fff;
    margin: 10px 0 0 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .header-mob-right-menu-img.is-active .b1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 3px);
    -ms-transform: rotate(-45deg) translate(-6px, 3px);
    transform: rotate(-45deg) translate(-6px, 3px);
  }
  .header-mob-right-menu-img.is-active .b3 {
    -webkit-transform: rotate(45deg) translate(-6px, -3px);
    -ms-transform: rotate(45deg) translate(-6px, -3px);
    transform: rotate(45deg) translate(-6px, -3px);
  }
  .header-mob-right-menu-box {
    display: none;
    position: fixed;
    width: 100vw;
    background: #151516;
    z-index: -9999;
    height: 0;
    left: 0px;
    top: 64px;
    z-index: 9999;
    opacity: 1;
    height: calc(100vh + 100vh);
  }
  .header-mob-right-menu-box-wrapper {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header-mob-right-menu-box-wrapper-right {
    padding-left: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 280px;
  }
  .header-mob-right-menu-box-wrapper-right li {
    padding-top: 16px;
  }
  .header-mob-right-menu-box-wrapper-right-item {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
  }
  .header-mob-right-menu-box-wrapper-right-item span img {
    margin-left: 15px;
    vertical-align: middle;
    width: 15px;
    height: 15px;
  }
  .header-mob-right-menu-box-wrapper-right-item-sub {
    display: none;
  }
  .header-mob-right-menu-box-wrapper-right-item-sub-point {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #ffffff;
    opacity: 0.6;
    padding-top: 5px;
  }
  .header-mob-right-menu-box-wrapper-right-item-desc {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 0%;
    color: #ffffff;
    line-height: 140%;
    margin-top: 12px;
    opacity: 0.8;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
  }
  .header-mob-right-menu-box-wrapper-right-item-desc-wrap {
    display: none;
    padding-left: 12px;
  }
  .header-mob-right-menu-box-wrapper-right-item.is-active .header-mob-right-menu-box-wrapper-right-item-desc {
    line-height: 140%;
    margin-top: 12px;
    opacity: 0.8;
  }
  .header-mob-right-menu-box-wrapper-right-item .js-mob-menu-show-bar {
    position: relative;
    display: inline-block;
    left: 15px;
    width: 10px;
    height: 10px;
  }
  .header-mob-right-menu-box-wrapper-right-item .js-mob-menu-show-bar:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-bottom: none;
    border-left: none;
    position: absolute;
    bottom: 1px;
    -webkit-transform: translate(-50%, -70%) rotate(135deg);
    -ms-transform: translate(-50%, -70%) rotate(135deg);
    transform: translate(-50%, -70%) rotate(135deg);
    -webkit-animation: barArrow1 0.2s ease-in-out;
    animation: barArrow1 0.2s ease-in-out;
  }
  .header-mob-right-menu-box-wrapper-right-item .js-mob-menu-show-bar.is-active:before {
    -webkit-animation: barArrow2 0.2s ease-in-out;
    animation: barArrow2 0.2s ease-in-out;
    border-top: none;
    border-right: none;
    width: 8px;
    height: 8px;
    bottom: -1px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

@-webkit-keyframes barArrow1 {
  0% {
    width: 6px;
    height: 6px;
    border-top: none;
    border-right: none;
    bottom: -1px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  50% {
    border: none;
    width: 0px;
    height: 0px;
  }
  100% {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 3px;
    border-bottom: none;
    border-left: none;
    width: 6px;
    height: 6px;
  }
}

@keyframes barArrow1 {
  0% {
    width: 6px;
    height: 6px;
    border-top: none;
    border-right: none;
    bottom: -1px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  50% {
    border: none;
    width: 0px;
    height: 0px;
  }
  100% {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 3px;
    border-bottom: none;
    border-left: none;
    width: 6px;
    height: 6px;
  }
}

@-webkit-keyframes barArrow2 {
  0% {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 3px;
    border-bottom: none;
    border-left: none;
    width: 6px;
    height: 6px;
  }
  50% {
    border: none;
    width: 0px;
    height: 0px;
  }
  100% {
    width: 6px;
    height: 6px;
    border-top: none;
    border-right: none;
    bottom: -1px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

@keyframes barArrow2 {
  0% {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 3px;
    border-bottom: none;
    border-left: none;
    width: 6px;
    height: 6px;
  }
  50% {
    border: none;
    width: 0px;
    height: 0px;
  }
  100% {
    width: 6px;
    height: 6px;
    border-top: none;
    border-right: none;
    bottom: -1px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
  }
}

.preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  -webkit-animation: preloaderOut 2s ease;
  animation: preloaderOut 2s ease;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  display: none;
}
.preloader.is-active {
  display: block;
}
.preloader.is-active .preloader-white {
  left: 0;
  top: 0;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background: #fff;
}
.preloader.is-active .preloader-black {
  left: 0;
  top: 0;
  position: fixed;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  background: url('../images/header/pattern.svg');
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation: preloaderBlack 2s ease;
  animation: preloaderBlack 2s ease;
}
.preloader.is-active .preloader-text {
  position: fixed;
  top: calc(50% - 70px);
  left: calc(50% - 345px);
  width: 690px;
  height: 140px;
  font-weight: 400;
  font-size: 56px;
  line-height: 120%;
  text-align: center;
  color: #ffffff;
  z-index: 3;
  -webkit-animation: preloaderText 1s ease;
  animation: preloaderText 1s ease;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@media (max-width: 767px) {
  .preloader.is-active .preloader-text {
    font-size: 30px;
    line-height: 120%;
    width: 294px;
    left: calc(50% - 147px);
    top: calc(50% - 60px);
    height: 120px;
  }
}

@-webkit-keyframes preloaderBlack {
  0% {
    -webkit-transform: translate3d(-100%, 0px, 0px);
    transform: translate3d(-100%, 0px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
}

@keyframes preloaderBlack {
  0% {
    -webkit-transform: translate3d(-100%, 0px, 0px);
    transform: translate3d(-100%, 0px, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
}

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

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

@-webkit-keyframes preloaderOut {
  0% {
    display: block;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
  99% {
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
    display: none;
  }
}

@keyframes preloaderOut {
  0% {
    display: block;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
  99% {
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
  }
  100% {
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
    display: none;
  }
}

footer {
  position: relative;
  z-index: 200;
  display: block;
  background: #1b1b1c;
}

.footer {
  position: relative;
  display: block;
  margin-top: auto;
  width: 100%;
  background-color: #1b1b1c;
  z-index: 200;
}
.footer .menu {
  display: flex;
}
.footer-mob {
  display: none;
}
@media (max-width: 1023px) {
  .footer-mob {
    position: relative;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 8px 15px 15px;
  }
}
@media (max-width: 500px) {
  .footer-mob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.footer-mob-social {
  display: none;
}
@media (max-width: 1023px) {
  .footer-mob-social {
    border-top: 1px solid #4c4c4e;
    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;
    height: 86px;
    padding: 0 16px;
  }
}
.footer-mob-social-item {
  width: 50%;
  height: 86px;
  vertical-align: middle;
}
.footer-mob-social-item:first-child {
  border-right: 1px solid #4c4c4e;
}
.footer-mob-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #727272;
  padding: 24px 20px 0 0;
}
.footer-mob-item.footer-mob-item-title {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.footer-mob-item.footer-bot-right-item {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
.footer-mob-item-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .footer-mob-item-title {
    width: 100%;
  }
}
.footer-mob .js-popup-contacts-watch {
  color: #d7592a;
}
.footer-mob .footer-top-right-item {
  margin-right: 32px;
  font-weight: 600;
}
.footer-mob .footer-top-right-item:last-child {
  margin-right: 0px;
}
@media (max-width: 767px) {
  .footer-mob .footer-top-right-item {
    margin-right: 0px;
  }
}
.footer-mob-top {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footer-mob-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .footer-mob-top .footer-top-right-item {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .footer-mob-top .js-popup-contacts-watch {
    margin-top: 16px;
  }
}
@media (max-width: 1023px) {
  .footer {
    display: none;
  }
}
.footer-wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #4c4c4e;
}
.footer-top .footer-wrapper {
  padding: 45px 0 0 75px;
}
.footer-top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1430px) {
  .footer-top-left {
    position: relative;
    left: -2px;
  }
}
.footer-top-left-item {
  padding: 32px 75px;
  border-left: 1px solid #4c4c4e;
  border-right: 1px solid #4c4c4e;
}
@media (min-width: 1200px) {
  .footer-top-left-item {
    min-width: 170px;
  }
}
.footer-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 450px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 75px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-top-right-item {
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
}
.footer-top-right-item a:hover {
  color: #d7592a;
}
.footer-top-right-item-btn {
  color: #d7592a;
}
.footer-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  padding: 59px 75px;
  justify-content: space-between;
}
@media (max-width: 1025px) {
  .footer-bot {
    padding: 59px 68px;
  }
}
.footer-bot-left {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-bot-left-item {
  margin-right: 32px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 14px;
  color: #727272;
  text-decoration: none;
  cursor: pointer;
}
.footer-bot-left-item:hover {
  color: #fff;
}
.footer-bot-left-item-title {
  cursor: auto;
  margin-right: 40px;
  color: #ffffff;
}
.footer-bot-right {
  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;
}
.footer-bot-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 140%;
  color: #727272;
}
@media (max-width: 1023px) {
  .footer-bot-right-item {
    width: 100%;
  }
}
@media (max-width: 769px) and (min-width: 767px) {
  .footer-bot-right-item {
    margin-top: 14px;
  }
}
.footer-bot-right-item-btn {
  color: #fff;
  padding: 4px 8px;
  background: #232325;
  border-radius: 2px;
}

/* 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;
}

.progress {
  display: block;
  width: 120px;
  height: 2px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #262626;
  background-image: -webkit-gradient(linear, left top, right top, from(#d7592a), to(#d7592a));
  background-image: -o-linear-gradient(left, #d7592a, #d7592a);
  background-image: linear-gradient(to right, #d7592a, #d7592a);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: background-size 0.4s ease-in-out;
  -o-transition: background-size 0.4s ease-in-out;
  transition: background-size 0.4s ease-in-out;
  margin-right: 12px;
}
.progress.is-active {
  -webkit-animation: timeSlider 8s linear;
  animation: timeSlider 8s linear;
}
.progress-first {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  margin-right: 12px;
}
.progress-last {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
}

@-webkit-keyframes timeSlider {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@keyframes timeSlider {
  0% {
    background-size: 0% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy.otf');
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 1023px) {
  main .home-header .home-slider-item {
    padding: 0 75px;
  }
}

@media (max-width: 1200px) {
  main .home-company .home-wrapper {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  main .home-company .home-wrapper .home-slider-btn-prev {
    width: 48px;
    height: 48px;
    right: auto;
    left: 16px;
    bottom: 38px;
  }
}

@media (max-width: 1200px) {
  main .home-company .home-wrapper .home-slider-btn-next {
    width: 48px;
    height: 48px;
    right: auto;
    left: 83px;
    bottom: 38px;
  }
}

@media (max-width: 1200px) {
  main .home-company-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1200px) {
  main .home-company-item-contant {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    padding: 32px 16px 11px;
  }
}

@media (max-width: 1200px) {
  main .home-company-item-contant-text {
    min-height: auto;
  }
}

@media (max-width: 1200px) {
  main .home-company-item-preview-box {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  main .home-company-item-preview-text {
    max-width: 500px;
    width: 100%;
    margin-top: 22px;
  }
}

@media (max-width: 1200px) {
  main .home-company-item-preview-item {
    padding: 38px 16px 117px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv {
    padding-top: 61px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  main .home-otzyv-header {
    margin-top: 20px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-header-title {
    font-size: 24px;
    line-height: 120%;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-header-right {
    margin-top: 18px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-header-right-text {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-header-right-all {
    display: none;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content {
    padding-top: 2px;
    max-width: 306px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item {
    max-width: 290px;
    padding: 25px 24px 19px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item-title {
    font-size: 20px;
    line-height: 140%;
    position: relative;
    top: -5px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item-desc {
    font-size: 14px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item-stars {
    margin-top: 20px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item-stars-star {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1023px) {
  main .home-otzyv-content-item-text {
    font-size: 16px;
    line-height: 145%;
    font-weight: 400;
    margin-top: 16px;
  }
}

main .home-otzyv .otzyv-more-btn {
  display: none;
}
@media (max-width: 1023px) {
  main .home-otzyv .otzyv-more-btn {
    width: 100%;
    margin: 22px auto 0;
    border: 1px solid #4c4c4e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px;
    color: #ffffff;
    cursor: pointer;
  }
}

@media (max-width: 1023px) {
  main .home-contacts {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper {
    padding: 24px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-left-desc {
    font-size: 14px;
    line-height: 145%;
    margin-top: 22px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-left-title-place {
    font-size: 24px;
    line-height: 120%;
    margin-top: 16px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-left-title a {
    font-size: 24px;
    line-height: 120%;
    margin-top: 16px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-left-btn {
    margin-top: 24px;
    max-width: 280px;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-right .img-img {
    display: none;
  }
}

main .home-contacts-wrapper-flex-right .img-img-tab {
  display: none;
}
@media (max-width: 1023px) {
  main .home-contacts-wrapper-flex-right .img-img-tab {
    display: block;
  }
}
@media (max-width: 767px) {
  main .home-contacts-wrapper-flex-right .img-img-tab {
    display: none;
  }
}

main .home-contacts-wrapper-flex-right .img-img-mob {
  display: none;
}
@media (max-width: 767px) {
  main .home-contacts-wrapper-flex-right .img-img-mob {
    display: block;
  }
}

@media (max-width: 1023px) {
  main .home-news {
    background: #1b1b1c;
    padding-top: 0px;
  }
}

@media (max-width: 1023px) {
  main .home-news-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  main .home-news-header-title {
    font-size: 24px;
    line-height: 120%;
  }
}

@media (max-width: 1023px) {
  main .home-news-header-right {
    margin-top: 20px;
  }
}

@media (max-width: 1023px) {
  main .home-news-header-right-text {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  main .home-news-header-right-all {
    display: none;
  }
}

@media (max-width: 1023px) {
  main .home-news-content {
    margin-top: 16px;
  }
}

@media (max-width: 1023px) {
  main .home-news-content-item {
    max-width: 100%;
    min-height: 300px;
    margin: 16px 0 0 0;
  }
}

@media (max-width: 768px) {
  main .home-news-content-item-bot {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  main .home-news-content-item-bot-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
  }
}

main .news-more-btn {
  display: none;
}
@media (max-width: 1023px) {
  main .news-more-btn {
    margin: 0 auto;
    width: calc(100% - 32px);
    margin: 22px auto 0;
    border: 1px solid #4c4c4e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px;
    color: #ffffff;
    cursor: pointer;
  }
}

body {
  overflow: hidden;
  font-family: 'Gilroy';
}

.site {
  background-color: #151516;
}
.site .home-service-header-title {
  max-width: 220px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .site .home-service-header-title {
    font-size: 24px;
  }
}
@media (max-width: 1023px) {
  .site .home-service {
    padding: 32px 0 47px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-header {
    padding: 0 16px 0 0px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-header-desc {
    margin-top: 20px;
    margin-right: 0px;
    max-width: 515px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-wrapper {
    padding: 0 0 0 16px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-block-item {
    padding: 24px;
    max-width: 360px;
    margin: 16px 16px 0 0;
    min-height: 285px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-block-item-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 21px;
  }
}
@media (max-width: 1023px) {
  .site .home-service-block-item-text {
    font-size: 20px;
    line-height: 140%;
  }
}
@media (max-width: 1023px) {
  .site .home-service-block-item-btn {
    margin-top: 41px;
  }
}

.home {
  background-color: #151516;
  padding-top: 82px;
  position: relative;
  font-family: 'Gilroy';
}
.home a {
  text-decoration: none;
}
.home-wrapper {
  position: relative;
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .home-wrapper {
    padding: 0 16px;
  }
}
.home-header {
  display: block;
  margin: 0 auto;
  position: relative;
}
.home-slider {
  margin-top: 53px;
}
@media (max-width: 1023px) {
  .home-slider {
    margin-top: -17px;
  }
}
.home-slider-item {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .home-slider-item {
    padding: 0 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .home-slider-item-preview {
    margin-top: 3px;
  }
}
.home-slider-item-contant {
  display: block;
  color: #fff;
  max-width: 695px;
  width: 100%;
  margin-right: 20px;
}
@media (min-width: 1200px) {
  .home-slider-item-contant {
    margin-top: 52px;
  }
}
@media (max-width: 1023px) {
  .home-slider-item-contant {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 540px;
    width: 100%;
    margin-top: 52px;
    padding: 0 16px;
  }
}
.home-slider-item-contant-desc {
  opacity: 0.72;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
@media (max-width: 1023px) {
  .home-slider-item-contant-desc {
    display: none;
  }
}
.home-slider-item-contant-title {
  margin-top: 2px;
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1300px) {
  .home-slider-item-contant-title {
    font-size: 40px;
  }
}
@media (max-width: 1023px) {
  .home-slider-item-contant-title {
    font-size: 28px;
  }
}
.home-slider-item-contant-title span {
  color: #d7592a;
}
.home-slider-item-contant-text {
  opacity: 0.9;
  margin-top: 21px;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1023px) {
  .home-slider-item-contant-text {
    font-size: 18px;
    line-height: 140%;
  }
}
.home-slider-item-contant-btn {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .home-slider-item-contant-btn {
    margin-top: 23px;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .home-slider-item-contant-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
  }
}
.home-slider-item-contant-btn-orange {
  background-color: #d7592a;
  padding: 13px 39px 13px 30px;
  max-width: 230px;
  margin-right: 16px;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .home-slider-item-contant-btn-orange {
    max-width: 240px;
    width: 100%;
    padding: 13px 40px 13px 40px;
  }
}
@media (max-width: 767px) {
  .home-slider-item-contant-btn-orange {
    max-width: 100%;
  }
}
.home-slider-item-contant-btn-silver {
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 32px;
  max-width: 220px;
  margin-right: 16px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .home-slider-item-contant-btn-silver {
    max-width: 240px;
    width: 100%;
    padding: 13px 40px 13px 40px;
  }
}
@media (max-width: 767px) {
  .home-slider-item-contant-btn-silver {
    max-width: 100%;
    margin-top: 12px;
    padding: 15px 40px 16px 40px;
  }
}
@media (max-width: 1300px) {
  .home-slider-item-preview {
    max-width: 350px;
  }
}
@media (max-width: 1023px) {
  .home-slider-item-preview {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.home-slider-item-preview .img-img {
  display: block;
}
@media (max-width: 1023px) {
  .home-slider-item-preview .img-img {
    display: none;
  }
}
.home-slider-item-preview .img-img-tab {
  display: none;
}
@media (max-width: 1023px) {
  .home-slider-item-preview .img-img-tab {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home-slider-item-preview .img-img-tab {
    display: none;
  }
}
.home-slider-item-preview .img-img-mob {
  display: none;
}
@media (max-width: 767px) {
  .home-slider-item-preview .img-img-mob {
    display: block;
  }
}
.home-slider-footer {
  position: relative;
  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;
  max-width: 1440px;
  padding: 0 75px 48px;
  margin: 0 auto;
  margin-top: 58px;
  width: 100%;
}
@media (max-width: 1023px) {
  .home-slider-footer {
    padding: 0 16px;
    position: absolute;
    bottom: 263px;
  }
}
@media (max-width: 767px) {
  .home-slider-footer {
    bottom: 414px;
  }
}
@media (max-width: 440px) {
  .home-slider-footer {
    bottom: 380px;
  }
}
@media (max-width: 378px) {
  .home-slider-footer {
    bottom: 414px;
  }
}
.home-slider-nav {
  width: 100%;
  max-width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .home-slider-nav {
    width: 100%;
    max-width: 100%;
  }
}
.home-slider-nav-progres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 220px;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-slider-nav-progres-first {
  margin-right: 12px;
}
.home-slider-nav-progres-bar {
  width: 120px;
  height: 2px;
  margin-right: 12px;
  background-color: #262626;
}
@media (max-width: 1023px) {
  .home-slider-nav .progress {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .home-slider-btn {
    display: none;
  }
}
.home-slider-btn-prev {
  margin-right: 20px;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.home-slider-btn-prev:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
  box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
}
.home-slider-btn-next {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  border-radius: 100%;
  width: 48px;
  height: 48px;
}
.home-slider-btn-next:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
  box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
}
.home-slider-btn-arrow {
  cursor: pointer;
}
.home-service {
  display: block;
  background-color: #1b1b1c;
  width: 100%;
  padding: 72px 0;
}
.home-service-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 45px 0 75px;
}
@media (max-width: 1023px) {
  .home-service-wrapper {
    padding: 0 16px;
  }
}
.home-service-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .home-service-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.home-service-header-title {
  max-width: 220px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .home-service-header-title {
    font-size: 24px;
  }
}
.home-service-header-desc {
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  margin-right: 30px;
  max-width: 630px;
}
@media (max-width: 1023px) {
  .home-service-header-desc {
    max-width: 500px;
    font-size: 18px;
    line-height: 25px;
  }
}
.home-service-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 18px;
}
.home-service-block-item {
  margin: 27px 27px 0 0;
  display: block;
  min-height: 320px;
  height: 100%;
  background: #212122;
  border-radius: 4px;
  width: 100%;
  max-width: 410px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.home-service-block-item:hover {
  background: none;
  border: 1px solid #4c4c4e;
}
@media (max-width: 767px) {
  .home-service-block-item {
    margin: 30px 0px 0 0;
  }
}
.home-service-block-item-logo {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
}
.home-service-block-item-text {
  display: block;
  min-height: 102px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
.home-service-block-item-btn {
  display: block;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-top: 36px;
}

.home-service-block-item-btn:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.home-service-block-item-btn:hover {
  color: #d7592a;
}
.home-company {
  background: #1b1b1c;
  border-top: 1px solid #4c4c4e;
  border-bottom: 1px solid #4c4c4e;
}
.home-company .home-wrapper {
  padding: 0 0px 0 75px;
}
.home-company-item {
  max-width: 1440px;
}
.home-company-item-contant {
  display: block;
  max-width: 520px;
  margin-top: 72px;
}
@media (max-width: 1023px) {
  .home-company-item-contant {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 510px;
  }
}
.home-company-item-contant-title {
  color: #fff;
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  color: #ffffff;
}
.home-company-item-contant-title span {
  color: #d7592a;
}
@media (max-width: 1300px) {
  .home-company-item-contant-title {
    font-size: 28px;
    line-height: 120%;
  }
}
.home-company-item-contant-text {
  font-weight: 400;
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  min-height: 193px;
}
@media (max-width: 1300px) {
  .home-company-item-contant-text {
    font-size: 18px;
    line-height: 140%;
  }
}
.home-company-item-contant-btn {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
}
.home-company-item-contant-btn:hover {
  color: #d7592a;
}
.home-company-item-preview-item {
  background: url('../images/main/company/company-slide-1.png');
  background-size: cover;
  background-position: bottom left;
  position: relative;
  padding: 72px 75px;
  width: 100%;
  height: 100%;
  background: url('../images/main/company/company-slide-1-tab.png');
  background-size: cover;
  background-position: top left;
}
@media (min-width: 1200px) {
  .home-company-item-preview-item {
    height: 598px;
  }
}
.home-company-item-preview-box {
  position: relative;
  display: block;
  max-width: 720px;
  max-height: 600px;
}
@media (max-width: 1023px) {
  .home-company-item-preview-box {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.home-company-item-preview-title {
  position: relative;
  font-style: normal;
  font-weight: 600;
  font-size: 56px;
  line-height: 120%;
  color: #ffffff;
  width: 468px;
}
@media (max-width: 1300px) {
  .home-company-item-preview-title {
    font-size: 28px;
    line-height: 120%;
  }
}
@media (max-width: 1023px) {
  .home-company-item-preview-title {
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
  }
}
.home-company-item-preview-text {
  position: relative;
  margin-top: 19px;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.92;
  width: 468px;
}
@media (max-width: 1300px) {
  .home-company-item-preview-text {
    font-size: 18px;
    line-height: 140%;
  }
}
@media (max-width: 1023px) {
  .home-company-item-preview-text {
    position: relative;
    top: 0px;
    left: 0px;
    display: block;
  }
}
.home-company .home-slider-btn-prev {
  position: absolute;
  right: 577px;
  bottom: 61px;
}
@media (max-width: 1300px) {
  .home-company .home-slider-btn-prev {
    right: 35%;
  }
}
@media (max-width: 1023px) {
  .home-company .home-slider-btn-prev {
    right: 70px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }
}
.home-company .home-slider-btn-next {
  position: absolute;
  right: 529px;
  bottom: 61px;
}
@media (max-width: 1300px) {
  .home-company .home-slider-btn-next {
    right: 30%;
  }
}
@media (max-width: 1023px) {
  .home-company .home-slider-btn-next {
    right: 20px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1023px) {
  .home-company-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
.home-company-item-preview-box {
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .home-company-item-contant {
    padding-top: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .home-company-item-contant-title {
    font-size: 24px;
    line-height: 140%;
  }
}
@media (max-width: 1023px) {
  .home-company-item-contant-text {
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .home-company-item-contant-text {
    font-size: 18px;
    line-height: 145%;
  }
}
@media (max-width: 1023px) {
  .home-company-item-contant-btn {
    margin-top: 25px;
    padding-bottom: 20px;
  }
}
.home-spot {
  border-bottom: 1px solid #4c4c4e;
  background: #1b1b1c;
}
.home-spot-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0;
}
@media (max-width: 1023px) {
  .home-spot-wrapper {
    position: relative;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 2px);
    left: -1px;
  }
}
.home-spot-block {
  padding: 48px 0px;
  -ms-flex-preferred-size: calc(100% / 4);
  flex-basis: calc(100% / 4);
  border-left: 1px solid #4c4c4e;
  border-right: 1px solid #4c4c4e;
}
@media (max-width: 1023px) {
  .home-spot-block {
    padding: 24px 0;
    -ms-flex-preferred-size: calc(100% / 2);
    flex-basis: calc(100% / 2);
    border: 1px solid #4c4c4e;
    min-height: 183px;
  }
}
@media (max-width: 767px) {
  .home-spot-block {
    -ms-flex-preferred-size: calc(100% / 1);
    flex-basis: calc(100% / 1);
    border-left: none;
    border-radius: none;
  }
}
@media (min-width: 1023px) {
  .home-spot-block:first-child {
    border-left: none;
  }
}
@media (min-width: 1023px) {
  .home-spot-block:last-child {
    border-right: none;
  }
}
.home-spot-block-box {
  margin: 0 auto;
  text-align: left;
  max-width: 220px;
}
@media (max-width: 1023px) {
  .home-spot-block-box {
    max-width: 302px;
  }
}
@media (max-width: 767px) {
  .home-spot-block-box {
    max-width: 100%;
    padding: 0 16px;
  }
}
.home-spot-block-img {
  width: 24px;
  height: 24px;
}
.home-spot-block-title {
  color: #d7592a;
  font-size: 18px;
  line-height: 26px;
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .home-spot-block-title {
    margin-top: 24px;
  }
}
.home-spot-block-text {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
}
.home-geography {
  position: relative;
  display: block;
  background: #1b1b1c;
}
.home-geography-box {
  display: block;
  text-align: center;
}
@media (max-width: 1200px) {
  .home-geography-box {
    max-width: 768px;
    margin: 0 auto;
  }
}
.home-geography-box-title {
  padding-top: 120px;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
  z-index: 8;
  position: relative;
}
@media (max-width: 1023px) {
  .home-geography-box-title {
    font-size: 24px;
    line-height: 120%;
    padding-top: 51px;
  }
}
@media (max-width: 767px) {
  .home-geography-box-title {
    margin-left: 0px;
    text-align: left;
  }
}
.home-geography-box-map {
  position: relative;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .home-geography-box-map {
    display: none;
  }
}
.home-geography-box-map-img {
  width: 100%;
}
@media (max-width: 767px) {
  .home-geography-box-map-img {
    display: none;
  }
}
.home-geography-box-map-group {
  position: absolute;
}
@media (max-width: 767px) {
  .home-geography-box-map-group {
    display: none;
  }
}
.home-geography-box-map-group-point.is-active {
  z-index: 21 !important;
}
.home-geography-box-map-group-point.is-active:before {
  content: '';
  display: block;
  position: absolute;
  margin: 0 auto;
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
  background: #fff;
  border-radius: 100%;
}
.home-geography-box-map-group-point:hover:before {
  content: '';
  display: block;
  position: absolute;
  margin: 0 auto;
  width: 50%;
  height: 50%;
  left: 25%;
  top: 25%;
  background: #fff;
  border-radius: 100%;
}
.home-geography-box-map-group-info.is-active {
  display: block;
  z-index: 20 !important;
}
.home-geography-box-map-point {
  position: absolute;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  background: #d7592a;
  z-index: 10;
  cursor: pointer;
}
.home-geography-box-map-point-info {
  position: absolute;
  width: 230px;
  display: none;
  text-align: left;
  z-index: 9;
}
.home-geography-box-map-point-info-wrapper {
  position: relative;
  left: calc(-100% + 16px);
  padding: 24px;
  margin-top: -200px;
  background: #ffffff;
  -webkit-box-shadow: 0px 20px 28px rgba(30, 6, 7, 0.1);
  box-shadow: 0px 20px 28px rgba(30, 6, 7, 0.1);
  border-radius: 4px;
}
.home-geography-box-map-point-info-sity {
  color: #18252b;
  font-size: 18px;
  line-height: 145%;
  font-weight: 600;
}
.home-geography-box-map-point-info-desc {
  color: #949fa3;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 6px;
}
.home-geography-box-map-point-info-sum {
  color: #d7592a;
  font-size: 36px;
  line-height: 36px;
  font-weight: 400;
  margin-top: 20px;
}
.home-geography-box-map-point-info-resource {
  color: #434345;
  font-size: 14px;
  line-height: 145%;
  font-weight: 400;
  margin-top: 8px;
}
.home-geography-box-map-group-1 {
  left: 717px;
  top: 464px;
}
.home-geography-box-map-group-1 .home-geography-box-map-group-point {
  width: 24px;
  height: 24px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-1 {
    left: 444px;
    top: 295px;
  }
}
.home-geography-box-map-group-2 {
  left: 884px;
  top: 256px;
}
.home-geography-box-map-group-2 .home-geography-box-map-group-point {
  width: 50px;
  height: 50px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-2 {
    left: 531px;
    top: 139px;
  }
}
.home-geography-box-map-group-3 {
  left: 312px;
  top: 113px;
}
.home-geography-box-map-group-3 .home-geography-box-map-group-point {
  width: 18px;
  height: 18px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-3 {
    left: 129px;
    top: 91px;
  }
}
.home-geography-box-map-group-4 {
  left: 998px;
  top: 322px;
}
.home-geography-box-map-group-4 .home-geography-box-map-group-point {
  width: 32px;
  height: 32px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-4 {
    display: none;
  }
}
.home-geography-box-map-group-5 {
  left: 1042px;
  top: 481px;
}
.home-geography-box-map-group-5 .home-geography-box-map-group-point {
  width: 24px;
  height: 24px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-5 {
    display: none;
  }
}
.home-geography-box-map-group-6 {
  left: 1013px;
  top: 521px;
}
.home-geography-box-map-group-6 .home-geography-box-map-group-point {
  width: 16px;
  height: 16px;
}
@media (max-width: 1200px) {
  .home-geography-box-map-group-6 {
    display: none;
  }
}
.home-geography-slider {
  display: none;
  position: relative;
  max-width: 306px;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .home-geography-slider {
    display: block;
    margin-top: 24px;
  }
}
.home-geography-slider-item {
  display: block;
  max-width: 290px;
  background-color: #fff;
  padding: 16px;
  border-radius: 4px;
}
.home-geography-slider .slick-slide {
  padding: 0 16px 0 0;
}
.home-geography-slider .slick-list {
  overflow: visible !important;
}
.home-otzyv {
  position: relative;
  display: block;
  padding-top: 120px;
  background: #1b1b1c;
}
.home-otzyv-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-otzyv-header {
    margin-top: 20px;
  }
}
.home-otzyv-header-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #fff;
}
.home-otzyv-header-right {
  display: block;
  text-align: left;
  max-width: 630px;
}
@media (min-width: 1200px) {
  .home-otzyv-header-right {
    margin-right: 10px;
  }
}
.home-otzyv-header-right-text {
  font-size: 20px;
  line-height: 145%;
  color: #fff;
  max-width: 620px;
  opacity: 0.92;
}
.home-otzyv-header-right-all {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  padding: 15px;
  margin-top: 32px;
  max-width: 300px;
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
}
.home-otzyv-header-right-all:before {
  content: '+';
  color: #fff;
  position: absolute;
  right: 18.5px;
}
.home-otzyv-content {
  position: relative;
  padding-top: 18px;
}
@media (min-width: 1023px) {
  .home-otzyv-content .slider {
    width: 550px;
  }
}
.home-otzyv-content .slick-list {
  overflow: visible !important;
}
.home-otzyv-content-item {
  display: block;
  max-width: 520px;
  padding: 25px 24px;
  background: #212122;
  border: 1px solid #4c4c4e;
  border-radius: 4px;
  margin: 30px 30px 0 0;
}
.home-otzyv-content-item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
.home-otzyv-content-item-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 205px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  margin-top: 2px;
  color: #949fa3;
}
.home-otzyv-content-item-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 120px;
  margin-top: 32px;
}
.home-otzyv-content-item-stars-star {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.home-otzyv-content-item-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  max-height: 182px;
  min-height: 182px;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 20px;
}
.home-otzyv-content-item-text-more {
  text-decoration: none;
  font-size: 18px;
  line-height: 145%;
  color: #d7592a;
}
.home-contacts {
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
  background: #1b1b1c;
}
.home-contacts-wrapper {
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 40px 45px;
}
.home-contacts-wrapper-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
.home-contacts-wrapper-flex-left-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
.home-contacts-wrapper-flex-left-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.home-contacts-wrapper-flex-left-title-place {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-top: 20px;
}
.home-contacts-wrapper-flex-left-title a {
  text-decoration: none;
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  margin-top: 16px;
}
.home-contacts-wrapper-flex-left-btn {
  font-family: 'Gilroy';
  background-color: #d7592a;
  padding: 13px 24px 13px 30px;
  max-width: 220px;
  margin-right: 16px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  margin-top: 241px;
  color: #ffffff;
  display: block;
}
.home-contacts-wrapper-flex-right-img {
  border-radius: 4px;
}
.home-news {
  position: relative;
  display: block;
  padding-top: 72px;
  background-color: #212122;
  padding-bottom: 72px;
}
.home-news-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 45px 0 75px;
}
@media (max-width: 1023px) {
  .home-news-wrapper {
    padding: 0 16px;
  }
}
.home-news-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home-news-header-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #fff;
}
.home-news-header-right {
  display: block;
  text-align: left;
  max-width: 630px;
}
@media (min-width: 1200px) {
  .home-news-header-right {
    margin-right: 30px;
  }
}
.home-news-header-right-text {
  font-size: 20px;
  line-height: 145%;
  color: #fff;
}
.home-news-header-right-all {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  padding: 15px;
  margin-top: 32px;
  max-width: 300px;
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
}
.home-news-header-right-all:before {
  content: '+';
  color: #fff;
  position: absolute;
  right: 18.5px;
}
.home-news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 18px;
}
.home-news-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 410px;
  padding: 24px;
  max-width: 410px;
  width: 100%;
  margin: 30px 30px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15.98%, rgba(33, 33, 34, 0)), color-stop(85.34%, #212122));
  background: -o-linear-gradient(top, rgba(33, 33, 34, 0) 15.98%, #212122 85.34%);
  background: linear-gradient(180deg, rgba(33, 33, 34, 0) 15.98%, #212122 85.34%);
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
@media (max-width: 1023px) {
  .home-news-content-item {
    max-width: 325px;
  }
}
@media (max-width: 767px) {
  .home-news-content-item {
    max-width: 100%;
    min-height: 300px;
    margin: 16px 0 0 0;
  }
}
.home-news-content-item-bot-title {
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  text-decoration: none;
}
.home-news-content-item-bot-date {
  margin-top: 16px;
  font-size: 18px;
  line-height: 145%;
  color: #949fa3;
  text-decoration: none;
}
.home-news-content-item-1 {
  background-image: url('../images/main/news/item-1.png');
  background-size: cover;
}
.home-news-content-item-2 {
  background-image: url('../images/main/news/item-2.png');
  background-size: cover;
}
.home-news-content-item-3 {
  background-image: url('../images/main/news/item-3.png');
  background-size: cover;
}
.home-news-content-item-4 {
  background-image: url('../images/main/news/item-4.png');
  background-size: cover;
}
.home-news-content-item-5 {
  background-image: url('../images/main/news/item-5.png');
  background-size: cover;
}
.home-news-content-item-6 {
  background-image: url('../images/main/news/item-6.png');
  background-size: cover;
}

.js-img-show {
  position: relative;
  overflow: hidden;
}
.js-img-show .img-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/header/pattern.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 100vw 0;
  z-index: 2;
}
.js-img-show .img-img {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show .img-img-tab {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show .img-img-mob {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show.show .img-pattern {
  -webkit-animation: show-pattern 2.5s ease-in-out;
  animation: show-pattern 2.5s ease-in-out;
}
.js-img-show.show .img-img {
  -webkit-animation: show-img 2.5s linear;
  animation: show-img 2.5s linear;
  opacity: 1;
}
.js-img-show.show .img-img-tab {
  -webkit-animation: show-img 2.5s linear;
  animation: show-img 2.5s linear;
  opacity: 1;
  width: 100%;
}
.js-img-show.show .img-img-mob {
  -webkit-animation: show-img 2.5s linear;
  animation: show-img 2.5s linear;
  opacity: 1;
  width: 100%;
}

@-webkit-keyframes show-pattern {
  0% {
    background-position: 100vw 0%;
  }
  50% {
    background-position: 0vw 0%;
  }
  100% {
    background-position: -100vw 0%;
  }
}

@keyframes show-pattern {
  0% {
    background-position: 100vw 0%;
  }
  50% {
    background-position: 0vw 0%;
  }
  100% {
    background-position: -100vw 0%;
  }
}

@-webkit-keyframes show-img {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-img {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.js-img-show-right {
  position: relative;
  overflow: hidden;
}
.js-img-show-right .img-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/header/pattern.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 100vw 0;
  z-index: 2;
}
.js-img-show-right .img-img {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show-right .img-img-tab {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show-right .img-img-mob {
  opacity: 0;
  position: relative;
  border-radius: 4px;
  z-index: 1;
}
.js-img-show-right.show .img-pattern {
  -webkit-animation: show-pattern-r 2.5s ease-in-out;
  animation: show-pattern-r 2.5s ease-in-out;
}
.js-img-show-right.show .img-img {
  -webkit-animation: show-img-r 2.5s linear;
  animation: show-img-r 2.5s linear;
  opacity: 1;
}
.js-img-show-right.show .img-img-tab {
  -webkit-animation: show-img-r 2.5s linear;
  animation: show-img-r 2.5s linear;
  opacity: 1;
  width: 100%;
}
.js-img-show-right.show .img-img-mob {
  -webkit-animation: show-img-r 2.5s linear;
  animation: show-img-r 2.5s linear;
  opacity: 1;
  width: 100%;
}

@-webkit-keyframes show-pattern-r {
  0% {
    background-position: -100vw 0%;
  }
  50% {
    background-position: 0vw 0%;
  }
  100% {
    background-position: 100vw 0%;
  }
}

@keyframes show-pattern-r {
  0% {
    background-position: -100vw 0%;
  }
  50% {
    background-position: 0vw 0%;
  }
  100% {
    background-position: 100vw 0%;
  }
}

@-webkit-keyframes show-img-r {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show-img-r {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.btn-orange-hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-orange-hover:hover {
  background: #e46c3f;
}

.btn-transparent-hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-transparent-hover:hover {
  color: #e46c3f;
}

.btn-silver-hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-silver-hover:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-more-plus-hover {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn-more-plus-hover:hover {
  border: 1px solid #707074;
  border-radius: 4px;
}

.home-nav-prev {
  display: block;
}
@media (max-width: 1023px) {
  .home-nav-prev {
    display: none;
  }
}
.home-nav-prev-mob {
  display: none;
}
@media (max-width: 1023px) {
  .home-nav-prev-mob {
    display: block !important;
  }
}

.home-nav-arrow {
  display: block;
}
@media (max-width: 1023px) {
  .home-nav-arrow {
    display: none;
  }
}
@media (max-width: 1023px) {
  .home-nav-arrow-mob {
    display: block;
  }
}

.home {
  background: #1b1b1c;
}
.home .vacancy-article-header-wrapper {
  border: none;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .home .vacancy-article-header-wrapper {
    padding-bottom: 4px;
  }
}
.home-news {
  padding-bottom: 72px;
}
@media (max-width: 1023px) {
  .home-news {
    padding-bottom: 29px;
  }
}
.home .otzyv-more-btn {
  margin-bottom: 120px;
}
@media (max-width: 1023px) {
  .home .otzyv-more-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(100% - 32px);
    width: 100%;
    margin-left: 16px;
    margin-bottom: 59px;
  }
}
.home .home-news-content-item {
  position: relative;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.home .home-news-content-item-hover {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.home .home-news-content-item-hover {
  opacity: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 28, 0.48)), color-stop(85.34%, #1b1b1c));
  background: -o-linear-gradient(top, rgba(27, 27, 28, 0.48) 0%, #1b1b1c 85.34%);
  background: linear-gradient(180deg, rgba(27, 27, 28, 0.48) 0%, #1b1b1c 85.34%);
  left: 0;
  top: 0;
  z-index: 2;
}
.home .home-news-content-item-hover:hover {
  opacity: 1;
}
.home .home-news-content-item:hover .home-news-content-item-hover {
  opacity: 1;
}
.home .home-news-content-item .home-news-content-item-bot {
  z-index: 3;
}
@media (max-width: 768px) {
  .home .home-news-content-item-1 {
    background-image: url(../images/main/news/tab/item-1.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-1 {
    background-image: url(../images/main/news/item-1.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .home .home-news-content-item-2 {
    background-image: url(../images/main/news/tab/item-2.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-2 {
    background-image: url(../images/main/news/item-2.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .home .home-news-content-item-3 {
    background-image: url(../images/main/news/tab/item-3.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-3 {
    background-image: url(../images/main/news/item-3.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .home .home-news-content-item-4 {
    background-image: url(../images/main/news/tab/item-4.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-4 {
    background-image: url(../images/main/news/item-4.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .home .home-news-content-item-5 {
    background-image: url(../images/main/news/tab/item-5.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-5 {
    background-image: url(../images/main/news/item-5.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .home .home-news-content-item-6 {
    background-image: url(../images/main/news/tab/item-6.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-6 {
    background-image: url(../images/main/news/item-6.png);
    background-size: cover;
  }
}
.home .home-news-content-item-7 {
  background-image: url(../images/main/news/item-7.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-7 {
    background-image: url(../images/main/news/tab/item-7.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-7 {
    background-image: url(../images/main/news/item-7.png);
    background-size: cover;
  }
}
.home .home-news-content-item-8 {
  background-image: url(../images/main/news/item-8.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-8 {
    background-image: url(../images/main/news/tab/item-8.png);
    background-size: cover;
  }
}
.home .home-news-content-item-9 {
  background-image: url(../images/main/news/item-9.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-9 {
    background-image: url(../images/main/news/tab/item-9.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home .home-news-content-item-9 {
    background-image: url(../images/main/news/item-9.png);
    background-size: cover;
  }
}
.home .home-news-content-item-10 {
  background-image: url(../images/main/news/item-10.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-10 {
    display: none;
  }
}
.home .home-news-content-item-11 {
  background-image: url(../images/main/news/item-11.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-11 {
    display: none;
  }
}
.home .home-news-content-item-12 {
  background-image: url(../images/main/news/item-12.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .home .home-news-content-item-12 {
    display: none;
  }
}

services.home {
  background: #1b1b1c;
}
services.home-service {
  background: none;
  padding: 40px 0;
}

services .home-service {
  background: none;
  padding: 40px 0;
  padding-top: 42px;
}
@media (max-width: 1023px) {
  services .home-service {
    padding: 19px 0 0 0;
  }
}
@media (max-width: 1023px) {
  services .home-service-wrapper {
    padding: 0 0 0 16px;
  }
}
services .home-service-header-title {
  font-weight: 600 !important;
  font-size: 48px !important;
  line-height: 120% !important;
  color: #ffffff;
}
@media (max-width: 1023px) {
  services .home-service-header-title {
    font-size: 28px !important;
    line-height: 120% !important;
  }
}
@media (max-width: 1023px) {
  services .home-service-block {
    margin-top: 21px;
  }
}
@media (max-width: 1023px) {
  services .home-service-block-item {
    margin: 13px 16px 0 0;
    max-width: 360px;
    min-height: 286px;
    padding: 24px;
  }
}
@media (max-width: 1023px) {
  services .home-service-block-item-logo {
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
  }
}
@media (max-width: 1023px) {
  services .home-service-block-item-logo {
    margin-bottom: 24px;
  }
}
@media (max-width: 1023px) {
  services .home-service-block-item-text {
    font-size: 20px;
    line-height: 140%;
  }
}
@media (max-width: 1023px) {
  services .home-service-block-item-btn {
    margin-top: 41px;
  }
}

@media (max-width: 1023px) {
  services .home-proposal {
    padding: 16px 0 0 0;
    margin-top: 40px;
  }
}

services .home-proposal .slider {
  max-width: 440px;
}
@media (max-width: 1023px) {
  services .home-proposal .slider {
    left: -1px;
    max-width: 310px;
  }
}

@media (max-width: 1023px) {
  services .home-proposal-item-content {
    padding: 20px 16px;
    min-height: 228px;
  }
}

@media (max-width: 1023px) {
  services .home-proposal-item-title {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  services .home-proposal-item-sum {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  services .home-proposal-title {
    padding-left: 16px;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 20px;
  }
}

services .vacancy .home-feedback {
  margin: 121px auto 120px;
}
@media (max-width: 1023px) {
  services .vacancy .home-feedback {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  services .vacancy .home-feedback {
    margin-bottom: 60px;
  }
}
services .vacancy .home-feedback-flex-left-form {
  margin-top: 69px;
}
@media (max-width: 1023px) {
  services .vacancy .home-feedback-flex-left-form {
    margin-top: -5px;
  }
}
@media (max-width: 1023px) {
  services .vacancy .home-feedback-flex-left-form inputinput:not([type='submit']) {
    margin-top: 41px;
  }
}
@media (max-width: 1023px) {
  services .vacancy .home-feedback-flex-left-form-rules {
    margin-top: 39px;
  }
}
@media (max-width: 1023px) {
  services .vacancy .home-feedback-flex-left-form-btn {
    margin-top: 24px;
    max-width: 280px;
    margin-left: 0px;
  }
}

.home-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 36px;
}
@media (max-width: 1023px) {
  .home-nav {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .home-nav {
    margin-top: 4px;
  }
}
.home-nav-points {
  display: none;
}
@media (max-width: 767px) {
  .home-nav-points {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 140%;
    opacity: 0.4;
  }
}
.home-nav-prev {
  color: #fff;
  font-size: 14px;
  line-height: 140%;
  opacity: 0.4;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .home-nav-prev {
    display: none;
  }
}
.home-nav-arrow {
  color: #fff;
  opacity: 0.4;
  margin-right: 8px;
  width: 6px;
  height: 8px;
}
.home-nav-actual {
  color: #fff;
  font-size: 14px;
  line-height: 140%;
  opacity: 0.8;
  margin-right: 10px;
}

.home-service-header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
}

.home-proposal {
  position: relative;
  margin-top: 80px;
  padding: 0;
}
@media (max-width: 1023px) {
  .home-proposal {
    padding: 16px;
    margin-top: 40px;
  }
}
.home-proposal .slider {
  max-width: 410px;
  width: 100%;
}
.home-proposal .slider:before {
  content: '';
  position: absolute;
  left: -2000px;
  top: 0px;
  width: 2000px;
  height: 400px;
  background-color: #1b1b1c;
  z-index: 2;
}
@media (max-width: 550px) {
  .home-proposal .slider {
    width: 310px;
  }
}
.home-proposal .slick-list {
  overflow: visible !important;
}
.home-proposal-title {
  display: block;
  padding-left: 75px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .home-proposal-title {
    padding-left: 0px;
  }
}
.home-proposal-item {
  display: block;
  max-width: 440px;
}
@media (max-width: 1023px) {
  .home-proposal-item {
    width: 310px;
  }
}
.home-proposal-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 75px;
  border: 1px solid #4c4c4e;
  min-height: 290px;
}
@media (max-width: 550px) {
  .home-proposal-item-content {
    width: 310px;
    padding: 16px;
  }
}
.home-proposal-item-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  text-decoration: none;
  max-height: 174px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
@media (max-width: 550px) {
  .home-proposal-item-title {
    font-size: 18px;
    line-height: 145%;
  }
}
.home-proposal-item-sum {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #d7592a;
}

.home-feedback {
  position: relative;
  padding: 119px 75px;
}
@media (max-width: 1023px) {
  .home-feedback {
    padding: 16px;
  }
}
.home-feedback-flex {
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 40px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.home-feedback-flex-left {
  max-width: 500px;
  width: 100%;
}
@media (max-width: 1023px) {
  .home-feedback-flex-left {
    max-width: 100%;
  }
}
.home-feedback-flex-left-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
.home-feedback-flex-left-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-top: 20px;
}
.home-feedback-flex-left-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 69px;
}
.home-feedback-flex-left-form input:not([type='submit']) {
  height: 38px;
  border: none;
  border-bottom: 1px solid #4c4c4e;
  background: transparent;
  margin-top: 48px;
  outline: none;
  color: #fff;
  padding-bottom: 16px;
}
.home-feedback-flex-left-form input:not([type='submit']):active,
.home-feedback-flex-left-form input:not([type='submit']):hover,
.home-feedback-flex-left-form input:not([type='submit']):focus {
  background: transparent !important;
  outline: none !important;
  outline-offset: 0 !important;
  color: #fff !important;
  border-bottom: 1px solid #4c4c4e !important;
}
.home-feedback-flex-left-form-rules {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 48px;
  position: relative;
}
.home-feedback-flex-left-form-rules-checkbox {
  margin-top: 0px !important;
  height: 20px !important;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox'] {
  position: absolute;
  cursor: pointer;
  width: 0px;
  height: 0px !important;
  margin-top: -21px !important;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox']:checked:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #4c4c4e;
  border-radius: 4px;
  background-color: transparent;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox']:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #4c4c4e;
  border-radius: 4px;
  background-color: transparent;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox']:after {
  content: '';
  display: block;
  width: 0px;
  height: 0px;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox']:checked:after {
  content: '';
  display: block;
  width: 10px;
  height: 14px;
  border: 1px solid #4c4c4e;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 5px;
}
.home-feedback-flex-left-form-rules-text {
  margin-left: 30px;
  font-size: 14px;
  line-height: 140%;
  color: #6e6e71;
}
.home-feedback-flex-left-form-btn {
  display: block;
  padding: 13px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
  background: #d7592a;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 140%;
}
.home-feedback-flex-left-form-btn-post {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.slider-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

geological.home {
  background-color: #1b1b1c;
}

geological .home-header {
  background-color: #151516;
}

geological .home-section {
  background-color: #1b1b1c;
}
geological .home-section-flex {
  padding-bottom: 117px;
  border-bottom: 1px solid #4c4c4e;
}
geological .home-section-flex-right {
  margin-top: 24px;
}

geological .home-nav {
  z-index: 2;
}

geological .home-border {
  display: block;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #4c4c4e;
}
geological .home-border-wrapper {
  background-color: #1b1b1c;
}

geological .home-slider {
  margin-top: -56px;
}
geological .home-slider-item {
  max-width: 1440px;
  padding: 0 0 0 75px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  geological .home-slider-item {
    padding: 78px 0 0 0;
  }
}
geological .home-slider-item-contant {
  margin-top: 79px;
}
@media (max-width: 1023px) {
  geological .home-slider-item-contant {
    margin-top: 23px;
    max-width: 640px;
  }
}
geological .home-slider-item-contant-title {
  font-size: 48px;
  line-height: 120%;
  color: #fff;
}
@media (max-width: 1023px) {
  geological .home-slider-item-contant-title {
    font-size: 28px;
    line-height: 120%;
  }
}
geological .home-slider-item-contant-text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  opacity: 0.92;
  max-width: 400px;
}
@media (max-width: 1023px) {
  geological .home-slider-item-contant-text {
    font-size: 18px;
    line-height: 140%;
    max-width: 600px;
  }
}
geological .home-slider-item-contant-btn {
  margin-top: 79px;
}
@media (max-width: 1023px) {
  geological .home-slider-item-contant-btn {
    margin-top: 31px;
  }
}
@media (max-width: 1023px) {
  geological .home-slider-item-contant-btn-orange {
    max-width: 220px;
    padding: 13px 20px 13px 20px;
  }
}
geological .home-slider-item-preview {
  border-radius: 4px;
}
@media (max-width: 1023px) {
  geological .home-slider-item-preview {
    display: none;
  }
}
geological .home-slider-item-preview-tab {
  display: none;
  width: 100%;
}
@media (max-width: 1023px) {
  geological .home-slider-item-preview-tab {
    display: block;
  }
}
@media (max-width: 767px) {
  geological .home-slider-item-preview-tab {
    display: none;
  }
}
geological .home-slider-item-preview-mob {
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  geological .home-slider-item-preview-mob {
    display: block;
  }
}

geological .home-wrapper {
  position: relative;
  padding: 0 0 0 75px;
}
@media (max-width: 1023px) {
  geological .home-wrapper {
    padding: 0 16px;
  }
}

geological .home-otzyv {
  padding-top: 122px;
}
geological .home-otzyv-header-right {
  margin-right: 85px;
}
geological .home-otzyv-header-right-all {
  margin-top: 30px;
}

geological .home-otzyv.home-wrapper {
  padding: 0 75px;
}

geological .home-feedback {
  padding-top: 120px;
  background: #1b1b1c;
}

geological .home-proposal {
  padding: 120px 0;
  margin-top: 0;
  background-color: #1b1b1c;
}
geological .home-proposal .slider {
  position: relative;
  left: -1px;
  max-width: 440px;
}

geological .home-step-work {
  margin-top: 16px;
}
geological .home-step-work-title-step {
  margin-top: 39px;
}

geological .step-work {
  padding-top: 13px;
}
geological .step-work .home-slider-item {
  margin-top: 104px;
  padding: 0 75px;
  margin-bottom: 83px;
}
geological .step-work-progress-first {
  margin-right: 20px;
  margin-left: 0px;
}

@media (max-width: 1023px) {
  geological .home-proposal {
    padding: 16px 0 0 0;
    margin-top: 40px;
  }
}

geological .home-proposal .slider {
  max-width: 440px;
}
@media (max-width: 1023px) {
  geological .home-proposal .slider {
    left: -1px;
    max-width: 310px !important;
  }
}

@media (max-width: 1023px) {
  geological .home-proposal-item-content {
    padding: 20px 16px;
    min-height: 228px;
  }
}

@media (max-width: 1023px) {
  geological .home-proposal-item-title {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  geological .home-proposal-item-sum {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  geological .home-proposal-title {
    padding-left: 16px;
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 20px;
  }
}

.home-section {
  position: relative;
  display: block;
}
.home-section-bg {
  background-color: #1b1b1c;
}
.home-section .home-wrapper {
  max-width: 1440px;
  width: 100%;
  padding: 0 75px;
  margin: 0 auto;
}
.home-section-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 48px;
}
@media (max-width: 1023px) {
  .home-section-flex {
    display: none;
  }
}
.home-section-flex-left {
  width: 100%;
  max-width: 665px;
}
.home-section-flex-left-title {
  padding-top: 72px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .home-section-flex-left-title {
    font-size: 24px;
    line-height: 120%;
    padding-top: 28px;
  }
}
.home-section-flex-left-img {
  max-width: 630px;
  max-height: 400px;
  border-radius: 4px;
}
.home-section-flex-right {
  max-width: 515px;
  width: 100%;
}
.home-section-flex-right-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
}
.home-section-flex-right-table-img {
  width: 1px;
  height: 311px;
}
.home-section-flex-right-table-img.short {
  height: 190px;
}
.home-section-flex-right-table-text {
  margin-top: -11px;
  margin-left: 14px;
}
.home-section-flex-right-table-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 40px;
}
.home-section-flex-right-table-text-item:first-child {
  margin-top: 0;
}
.home-section-flex-right-table-text-item:last-child.is-active body.home-section-flex-right-table-img {
  height: 190px;
}
.home-section-flex-right-table-text-item-point {
  position: relative;
  left: -20px;
  top: 10px;
  display: block;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  background-image: url(../images/geological/item-passive.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home-section-flex-right-table-text-item.is-active .home-section-flex-right-table-text-item-point {
  background-image: url(../images/geological/item-active.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home-section-flex-right-table-text-item.is-active .home-section-flex-right-table-text-desc {
  display: block;
}
.home-section-flex-right-table-text-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  cursor: pointer;
}
.home-section-flex-right-table-text-desc {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 20px;
  display: none;
}
.home-section-flex-right-table-text-text {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.6;
  margin-top: 40px;
}
.home-section-flex-right-btn {
  display: block;
  background: #d7592a;
  border-radius: 4px;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  padding: 13px 30px;
  max-width: 220px;
  margin-top: 48px;
}
@media (min-width: 1300px) {
  .home-section-flex-right-btn {
    position: relative;
    left: -5px;
  }
}
.home-section-flex-mob {
  display: none;
  width: 100%;
  position: relative;
  max-width: 306px;
}
@media (max-width: 1023px) {
  .home-section-flex-mob {
    display: block;
    margin-top: 31px;
  }
}
.home-section-flex-mob .slick-list {
  overflow: visible !important;
}
.home-section-flex-mob-item {
  max-width: 306px;
  display: block;
}
.home-section-flex-mob-item-header {
  display: block;
  width: 100%;
  padding-right: 16px;
  padding-bottom: 20px;
}
.home-section-flex-mob-item-line {
  width: 100%;
}
.home-section-flex-mob-item-point {
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
  background-image: url(../images/geological/item-passive.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: -7px;
  z-index: 1;
}
.home-section-flex-mob-item-title {
  border-top: 2px solid #4c4c4e;
  padding-top: 26px;
  padding-right: 16px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
.home-section-flex-mob-item-desc {
  padding-right: 16px;
  opacity: 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  color: #fff;
  margin-top: 16px;
}
.home-section-flex-mob .slick-active .home-section-flex-mob-item-desc {
  opacity: 0.92;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.home-section-flex-mob .slick-active .home-section-flex-mob-item-point {
  background-image: url(../images/geological/item-active.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.home-section-flex-mob-btn {
  display: none;
}
@media (max-width: 1023px) {
  .home-section-flex-mob-btn {
    display: block;
    background: #d7592a;
    border-radius: 4px;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #ffffff;
    padding: 13px 30px;
    max-width: 220px;
    margin-top: 24px;
    margin-bottom: 48px;
  }
}

.home-step-work {
  display: block;
  max-width: 630px;
  width: 100%;
  margin-right: 30px;
}
@media (max-width: 1023px) {
  .home-step-work {
    display: none;
  }
}
.home-step-work .home-slider-item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.home-step-work-title {
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
.home-step-work-title-step {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  padding: 7px 16px;
  background-color: #2d2d2e;
  display: inline-block;
  border-radius: 4px;
  margin-top: 47px;
}
.home-step-work-desc {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  margin-top: 40px;
}
.home-step-work-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 24px;
}
.home-step-work-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: -119px;
}
.home-step-work-footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 520px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home-step-work-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 392px;
  background-size: 100% 100%;
}
.home-step-work-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-faq {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 75px;
}
@media (max-width: 1023px) {
  .home-faq {
    padding: 0 16px;
    max-width: 100%;
  }
}
.home-faq-bg {
  background: #1b1b1c;
}
.home-faq-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 38px;
}
@media (max-width: 1023px) {
  .home-faq-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.home-faq-header-title {
  max-width: 555px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-right: 30px;
}
@media (max-width: 1023px) {
  .home-faq-header-title {
    font-size: 24px;
    line-height: 120%;
  }
}
.home-faq-header-desc {
  max-width: 630px;
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .home-faq-header-desc {
    font-size: 18px;
    line-height: 145%;
    margin-top: 20px;
  }
}
.home-faq-content {
  display: block;
  position: relative;
  border-bottom: 1px solid #4c4c4e;
  padding-top: 20px;
}
.home-faq-content-item {
  border-top: 1px solid #4c4c4e;
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-faq-content-item-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.6;
  max-width: 920px;
}
@media (max-width: 1023px) {
  .home-faq-content-item-title {
    font-size: 20px;
    line-height: 140%;
  }
}
.home-faq-content-item-title:hover {
  opacity: 1;
  cursor: pointer;
}
.home-faq-content-item-box {
  display: none;
  max-width: 920px;
}
.home-faq-content-item-box-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.6;
  margin-top: 31px;
  padding-bottom: 8px;
}
.home-faq-content-item-box-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.6;
  margin-top: 16px;
}
.home-faq-content-item-box-tab:last-child {
  margin-top: 22px;
}
.home-faq-content-item-box-tab-text a {
  color: #d7592a;
  text-decoration: none;
}
.home-faq-content-item-box-tab-point {
  display: block;
  margin: 0 10px;
}
.home-faq-content-item.is-active .home-faq-content-item-title {
  opacity: 1;
}
.home-faq-content-item.is-active .home-faq-content-item-box {
  display: block;
}
.home-faq-content-item.is-active .home-faq-content-item-box-text {
  opacity: 1;
}
.home-faq-content-item.is-active .home-faq-content-item-box-tab {
  opacity: 1;
}

.home .home-feedback {
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 118px auto 120px;
}
@media (max-width: 1023px) {
  .home .home-feedback {
    padding: 0 16px;
    margin: 60px auto 60px;
  }
}
@media (max-width: 1023px) {
  .home .home-feedback-flex {
    padding: 24px;
  }
}
.home .home-feedback-flex-left {
  margin-right: 30px;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left {
    margin-right: 0px;
  }
}
.home .home-feedback-flex-left-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-desc {
    font-size: 14px;
    line-height: 145%;
  }
}
.home .home-feedback-flex-left-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-title {
    font-size: 24px;
    line-height: 120%;
    margin-top: 16px;
  }
}
.home .home-feedback-flex-left-form {
  margin-top: 12px;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form {
    margin-top: 0px;
  }
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-name {
    margin-top: 39px;
  }
}
.home .home-feedback-flex-left-form-docs {
  position: relative;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 0;
}
.home .home-feedback-flex-left-form-lable {
  position: relative;
  height: 38px;
  border: none;
  border-bottom: 1px solid #4c4c4e;
  background: transparent;
  margin-top: 48px;
  outline: none;
  color: #6e6e71;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-lable {
    margin-top: 40px;
  }
}
.home .home-feedback-flex-left-form-lable-img {
  position: absolute;
  right: 0px;
  top: calc(50% - 18px);
  width: 16px;
  height: 18px;
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-tel {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-mail {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-rules {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .home .home-feedback-flex-left-form-btn {
    margin-top: 24px;
    max-width: 230px;
    margin-left: 0px;
    max-width: 280px;
  }
}
@media (max-width: 1365px) {
  .home .home-feedback-flex-right {
    display: none;
  }
}
.home .home-feedback-flex-right-img {
  vertical-align: middle;
  border-radius: 4px;
}

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

.step-work .home-slider-item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 120px;
  margin-bottom: 120px;
}

.step-work-progress {
  display: block;
  border-radius: 100px;
  overflow: hidden;
  background-color: #262626;
  background-image: -o-linear-gradient(left, #d7592a, #d7592a);
  background-image: -webkit-gradient(linear, left top, right top, from(#d7592a), to(#d7592a));
  background-image: linear-gradient(to right, #d7592a, #d7592a);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-transition: background-size 0.4s ease-in-out;
  -o-transition: background-size 0.4s ease-in-out;
  transition: background-size 0.4s ease-in-out;
  width: 298px;
  height: 2px;
  margin-right: 20px;
}
.step-work-progress-first {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #f5f5f5;
  margin: 0px 20px;
  white-space: nowrap;
}

.step-work-btn-prev {
  width: 48px;
  height: 48px;
  margin-right: 20px;
  cursor: pointer;
}

.step-work-btn-next {
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.step-work-mob {
  position: relative;
  display: none;
  margin-bottom: 48px;
}
.step-work-mob .step-work-line {
  width: calc(100% - 32px);
  margin: 0 16px;
  border: 1px solid #4c4c4e;
  margin-bottom: 47px;
}
@media (max-width: 1023px) {
  .step-work-mob {
    display: block;
  }
}
.step-work-mob-title {
  max-width: 100%;
  padding: 0 16px;
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #ffffff;
}
.step-work-mob-nav {
  display: block;
  max-width: 98px;
  margin-left: 16px;
  margin-top: 24px;
}
.step-work-mob-nav .slick-list {
  overflow: visible !important;
}
.step-work-mob-nav-step {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  background: #2d2d2e;
  border-radius: 4px;
  padding: 7px 14px;
  max-width: 86px;
}
.step-work-mob-nav .slick-active .step-work-mob-nav-step {
  background: #58585a;
}
.step-work-mob-slider {
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: block;
  margin-top: 32px;
}
.step-work-mob-slider-item-header {
  width: 100%;
  display: block !important;
}
@media (max-width: 767px) {
  .step-work-mob-slider-item-header {
    display: none !important;
  }
}
.step-work-mob-slider-item-header-mob {
  display: none !important;
}
@media (max-width: 767px) {
  .step-work-mob-slider-item-header-mob {
    display: block !important;
    width: 100%;
  }
}
.step-work-mob-slider-item-title {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-top: 24px;
}
.step-work-mob-slider-item-text {
  font-family: 'Gilroy';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 16px;
}

@media (max-width: 1023px) {
  .home .home-section .home-wrapper {
    padding: 0 16px;
  }
}

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

@media (max-width: 1023px) {
  .home-otzyv {
    padding-top: 0px !important;
  }
}

.home-otzyv-line {
  display: none;
}
@media (max-width: 1023px) {
  .home-otzyv-line {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px;
    border: 1px solid #4c4c4e;
    margin-bottom: 47px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-header-title {
    font-size: 24px;
    line-height: 120%;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-header-right {
    margin-top: 18px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-header-right-text {
    font-size: 18px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-header-right-all {
    display: none;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content {
    padding-top: 2px;
    max-width: 306px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item {
    max-width: 290px;
    padding: 25px 24px 19px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item-title {
    font-size: 20px;
    line-height: 140%;
    position: relative;
    top: -5px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item-desc {
    font-size: 14px;
    line-height: 145%;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item-stars {
    margin-top: 20px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item-stars-star {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 1023px) {
  .home-otzyv-content-item-text {
    font-size: 16px;
    line-height: 145%;
    font-weight: 400;
    margin-top: 16px;
  }
}

.home-otzyv .otzyv-more-btn {
  display: none;
}
@media (max-width: 1023px) {
  .home-otzyv .otzyv-more-btn {
    width: 100%;
    margin: 22px auto 0;
    border: 1px solid #4c4c4e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    padding: 16px;
    color: #ffffff;
    cursor: pointer;
  }
}

.home-proposal {
  position: relative;
  max-width: 1440px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0;
}
@media (max-width: 1023px) {
  .home-proposal {
    padding: 16px;
    margin-top: 40px;
  }
}
.home-proposal .slider {
  max-width: 410px;
  width: 100%;
  left: -1px;
}
.home-proposal .slider:before {
  content: '';
  position: absolute;
  left: -2000px;
  top: 0px;
  width: 2000px;
  height: 400px;
  background-color: #1b1b1c;
  z-index: 2;
}
@media (max-width: 550px) {
  .home-proposal .slider {
    width: 310px;
  }
}
.home-proposal .slick-list {
  overflow: visible !important;
}
.home-proposal-title {
  display: block;
  padding-left: 75px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .home-proposal-title {
    padding-left: 0px;
  }
}
.home-proposal-item {
  display: block;
  max-width: 440px;
}
@media (max-width: 1023px) {
  .home-proposal-item {
    width: 310px;
  }
}
.home-proposal-item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px 75px;
  border: 1px solid #4c4c4e;
  min-height: 290px;
}
@media (max-width: 550px) {
  .home-proposal-item-content {
    width: 310px;
    padding: 16px;
  }
}
.home-proposal-item-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  text-decoration: none;
  max-height: 174px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
@media (max-width: 550px) {
  .home-proposal-item-title {
    font-size: 18px;
    line-height: 145%;
  }
}
.home-proposal-item-sum {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #d7592a;
}

.home-slider-btn-arrow {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  border-radius: 100%;
}
.home-slider-btn-arrow:hover {
  background: rgba(255, 255, 255, 0.16);
  -webkit-box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
  box-shadow: 0px 15px 35px rgba(6, 23, 48, 0.1);
}

company.home {
  background: #1b1b1c;
}

@media (max-width: 1023px) {
  company .company-header-title {
    font-size: 28px;
    line-height: 120%;
    margin-top: 20px;
  }
}

company .home-feedback {
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 118px auto 120px;
}
@media (max-width: 1023px) {
  company .home-feedback {
    padding: 0 16px;
    margin: 60px auto 60px;
  }
}
@media (max-width: 1023px) {
  company .home-feedback-flex {
    padding: 24px;
  }
}
company .home-feedback-flex-left {
  margin-right: 30px;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left {
    margin-right: 0px;
  }
}
company .home-feedback-flex-left-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-desc {
    font-size: 14px;
    line-height: 145%;
  }
}
company .home-feedback-flex-left-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-title {
    font-size: 24px;
    line-height: 120%;
    margin-top: 16px;
  }
}
company .home-feedback-flex-left-form {
  margin-top: 12px;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form {
    margin-top: 0px;
  }
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-name {
    margin-top: 39px;
  }
}
company .home-feedback-flex-left-form-docs {
  position: relative;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 0;
}
company .home-feedback-flex-left-form-lable {
  position: relative;
  height: 38px;
  border: none;
  border-bottom: 1px solid #4c4c4e;
  background: transparent;
  margin-top: 48px;
  outline: none;
  color: #6e6e71;
  cursor: pointer;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-lable {
    margin-top: 40px;
  }
}
company .home-feedback-flex-left-form-lable-img {
  position: absolute;
  right: 0px;
  top: calc(50% - 18px);
  width: 16px;
  height: 18px;
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-tel {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-mail {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-rules {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  company .home-feedback-flex-left-form-btn {
    margin-top: 24px;
    max-width: 230px;
    margin-left: 0px;
    max-width: 280px;
  }
}
@media (max-width: 1365px) {
  company .home-feedback-flex-right {
    display: none;
  }
}
company .home-feedback-flex-right-img {
  vertical-align: middle;
  border-radius: 4px;
}

.company-header {
  display: block;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 75px;
}
@media (max-width: 1023px) {
  .company-header {
    max-width: 100%;
    padding: 0 16px;
  }
}
.company-header-title {
  margin-top: 40px;
  font-weight: 600;
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
}
.company-header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 120px;
}
.company-header-flex:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 1023px) {
  .company-header-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }
}
.company-header-flex-first {
  margin-top: 48px;
}
@media (max-width: 1023px) {
  .company-header-flex-first {
    margin-top: 32px;
  }
}
.company-header-flex-last {
  padding-bottom: 120px;
  border-bottom: 1px solid #4c4c4e;
}
@media (max-width: 1023px) {
  .company-header-flex-last {
    padding-bottom: 60px;
  }
}
.company-header-flex.t-l .company-header-flex-text {
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .company-header-flex.t-l .company-header-flex-text {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .company-header-flex.t-l .company-header-flex-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1023px) {
  .company-header-flex.t-l .company-header-flex-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
}
.company-header-flex.t-r .company-header-flex-text {
  margin-left: 20px;
}
@media (max-width: 1023px) {
  .company-header-flex.t-r .company-header-flex-text {
    margin-left: 0;
  }
}
.company-header-flex-text {
  max-width: 630px;
  width: 100%;
}
.company-header-flex-text-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .company-header-flex-text-desc {
    font-size: 20px;
  }
}
.company-header-flex-text-text {
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  color: #ffffff;
  opacity: 1;
  margin-top: 24px;
}
@media (max-width: 1300px) {
  .company-header-flex-text-text {
    font-size: 20px;
  }
}
.company-header-flex-text-text span {
  color: #d7592a;
}
.company-header-flex-text-btn {
  background-color: #d7592a;
  padding: 13px 31px 13px 31px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  max-width: 220px;
  margin-right: 16px;
  border-radius: 4px;
  margin-top: 32px;
}
.company-header-flex-img {
  display: block;
}
.company-header-flex-img-img {
  border-radius: 4px;
}
.company-header-flex-img-img .img-img {
  display: block;
}
@media (max-width: 1300px) {
  .company-header-flex-img-img .img-img {
    display: none;
  }
}
.company-header-flex-img-img .img-img-mob {
  display: none;
}
@media (max-width: 1300px) {
  .company-header-flex-img-img .img-img-mob {
    display: block;
  }
}

.company-numbs {
  position: relative;
  display: block;
  max-width: 1440px;
  width: 100%;
  padding: 0 75px;
  margin: 120px auto 0;
}
@media (max-width: 1023px) {
  .company-numbs {
    margin-top: 48px;
    padding: 0 16px;
  }
}
.company-numbs-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #4c4c4e;
}
@media (max-width: 1023px) {
  .company-numbs-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.company-numbs-flex-text {
  max-width: 610px;
}
@media (max-width: 1023px) {
  .company-numbs-flex-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 32px;
  }
}
.company-numbs-flex-text-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .company-numbs-flex-text-title {
    font-size: 24px;
    line-height: 120%;
  }
}
.company-numbs-flex-text-flex {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 120px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .company-numbs-flex-text-flex {
    padding-bottom: 60px;
  }
}
.company-numbs-flex-text-flex-item {
  max-width: 260px;
  width: 100%;
  margin-right: 20px;
  margin-top: 60px;
}
@media (max-width: 1100px) {
  .company-numbs-flex-text-flex-item {
    max-width: 240px;
  }
}
@media (max-width: 1023px) {
  .company-numbs-flex-text-flex-item {
    margin: 20px 16px 0 0;
  }
}
@media (max-width: 767px) {
  .company-numbs-flex-text-flex-item {
    max-width: 150px;
    margin: 20px 13px 0 0;
  }
}
.company-numbs-flex-text-flex-item-numb {
  font-weight: 600;
  font-size: 48px;
  line-height: 145%;
  color: #d7592a;
}
@media (max-width: 1023px) {
  .company-numbs-flex-text-flex-item-numb {
    font-size: 32px;
    line-height: 145%;
  }
}
.company-numbs-flex-text-flex-item-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 3px;
}
@media (max-width: 1023px) {
  .company-numbs-flex-text-flex-item-desc {
    font-size: 16px;
    line-height: 145%;
  }
}
.company-numbs-flex-img {
  width: 600px;
  height: 426px;
  margin-right: 15px;
}
@media (max-width: 1300px) {
  .company-numbs-flex-img {
    width: 328px;
    height: 232px;
    margin-right: 0px;
  }
}
@media (max-width: 1023px) {
  .company-numbs-flex-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 360px) {
  .company-numbs-flex-img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.company-license {
  position: relative;
  display: block;
  margin: 120px auto 0;
}
@media (max-width: 1023px) {
  .company-license {
    margin-top: 60px;
  }
}
.company-license-header {
  max-width: 1440px;
  padding: 0 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .company-license-header {
    padding: 0 16px;
  }
}
.company-license-tilte {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .company-license-tilte {
    font-size: 24px;
  }
}
.company-license-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 540px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .company-license-nav {
    width: 207px;
    margin-top: 20px;
    margin-left: -16px;
    display: block;
  }
}
@media (max-width: 767px) {
  .company-license-nav .slick-slide {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .company-license-nav .slick-list {
    overflow: visible !important;
  }
}
.company-license-nav-item {
  padding: 13px 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  opacity: 0.6;
}
.company-license-nav-item:last-child {
  margin: 0;
}
.company-license-nav-item:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .company-license-nav-item {
    width: 175px;
  }
}
.company-license-nav-item.is-active {
  background: #d7592a;
  opacity: 1;
}
.company-license-box {
  max-width: 1440px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0px;
  display: none;
  position: relative;
  z-index: -1;
  left: -1px;
}
@media (max-width: 1023px) {
  .company-license-box {
    max-width: 310px;
    margin-left: 0px;
    display: none;
  }
}
.company-license-box.is-active {
  margin-top: 47px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
@media (max-width: 1023px) {
  .company-license-box.is-active {
    display: block;
  }
}
.company-license-box .slick-list {
  overflow: visible !important;
}
.company-license-box-item {
  padding: 47px 73px 46px;
  border: 1px solid #4c4c4e;
  max-width: 360px;
}
@media (max-width: 1023px) {
  .company-license-box-item {
    max-width: 310px;
    padding: 16px;
    min-height: 228px;
  }
}
.company-license-box-item-tilte {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #d7592a;
}
.company-license-box-item-text {
  margin-top: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}

.company-team {
  position: relative;
  display: block;
  max-width: 1440px;
  width: 100%;
  padding: 0 0 0 75px;
  margin: 0px auto 0;
}
@media (max-width: 1023px) {
  .company-team {
    padding: 0 16px;
  }
}
@media (max-width: 450px) {
  .company-team {
    padding: 0px;
  }
}
.company-team-bg {
  background: #212122;
}
.company-team-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1023px) {
  .company-team-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.company-team-flex-text {
  margin-top: 71px;
  max-width: 525px;
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .company-team-flex-text {
    margin-top: 24px;
  }
}
@media (max-width: 1023px) {
  .company-team-flex-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
}
@media (max-width: 450px) {
  .company-team-flex-text {
    padding: 0px 16px;
  }
}
.company-team-flex-text-title {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  padding-bottom: 8px;
}
@media (max-width: 1023px) {
  .company-team-flex-text-title {
    font-size: 24px;
  }
}
.company-team-flex-text-text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
.company-team-flex-text-text p {
  margin: 0 0 16px 0;
}
.company-team-flex-text-text p:last-child {
  margin: 0;
}
.company-team-flex-text-btn {
  margin-top: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 520px;
  padding-bottom: 72px;
}
@media (max-width: 1023px) {
  .company-team-flex-text-btn {
    margin-top: 32px;
  }
}
.company-team-flex-text-btn-orange {
  padding: 15px 54px;
  background: #d7592a;
  border: 1px solid #d7592a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  margin-right: 17px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .company-team-flex-text-btn-orange {
    display: none;
  }
}
.company-team-flex-text-btn-black {
  padding: 15px 53px;
  background: transparent;
  border: 1px solid #d7592a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #ffffff;
  margin-right: 20px;
  cursor: pointer;
}
.company-team-flex-img {
  width: 720px;
  height: 550px;
}
@media (max-width: 1200px) {
  .company-team-flex-img {
    width: 580px;
    height: 443px;
  }
}
@media (max-width: 1024px) {
  .company-team-flex-img {
    width: 404px;
    height: 308px;
  }
}
@media (max-width: 1023px) {
  .company-team-flex-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 404px;
    height: auto;
  }
}
.company-team-flex-img .img-img {
  width: 100%;
}
@media (max-width: 1023px) {
  .company-team-flex-img .img-img {
    display: none;
  }
}
.company-team-flex-img .img-img-mob {
  display: none;
}
@media (max-width: 1023px) {
  .company-team-flex-img .img-img-mob {
    max-width: 100%;
    display: block;
  }
}

team.team {
  background: #1b1b1c;
}
team.team .home {
  background: #1b1b1c;
}

@media (max-width: 767px) {
  team .home-nav {
    margin-top: 0px;
  }
}

@media (max-width: 1023px) {
  team .slider {
    max-width: 326px;
    width: 100%;
  }
}

@media (max-width: 1023px) {
  team .slick-slide {
    margin-right: 18px;
  }
}

@media (max-width: 1023px) {
  team .slick-list {
    overflow: visible !important;
  }
}

.team {
  position: relative;
  display: block;
}
.team-header {
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .team-header {
    padding: 0 16px;
    margin-top: 20px;
  }
}
.team-header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .team-header-title {
    font-size: 28px;
    line-height: 120%;
  }
}
.team-team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1440px;
  padding: 0 45px 0 75px;
  margin: 18px auto 0;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .team-team {
    margin-top: 16px;
  }
}
.team-team-wrapper {
  width: 100%;
}
@media (max-width: 1023px) {
  .team-team {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    margin-left: 0px;
  }
}
.team-team-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .team-team-flex {
    display: block;
  }
}
.team-team-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 30px 30px 0 0;
  background: #212122;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .team-team-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 15px 15px 0 0;
  }
}
.team-team-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 315px;
}
@media (max-width: 1023px) {
  .team-team-item-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 25px 25px 23px;
  }
}
.team-team-item-text-name {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .team-team-item-text-name {
    font-size: 20px;
  }
}
.team-team-item-text-vacancy {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.6;
  margin-top: 12px;
}
.team-team-item-text-exp {
  margin-top: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .team-team-item-text-exp {
    margin-top: 24px;
  }
}
.team-team-item-img {
  display: block !important;
  max-width: 315px;
}
.team-team-item-img-mob {
  display: none;
}
@media (max-width: 1023px) {
  .team-team-item-img-mob {
    display: block !important;
    width: 328px;
    height: 280px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 1023px) {
  .team-team-item-img {
    display: none !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.team-vacancy {
  position: relative;
  display: block;
  background-color: #212122;
}
.team-vacancy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1440px;
  padding: 0 0 0 75px;
  margin: 120px auto 0;
}
@media (max-width: 1023px) {
  .team-vacancy-flex {
    margin-top: 60px;
    padding: 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
  }
}
.team-vacancy-text {
  display: block;
  margin-right: 30px;
  max-width: 550px;
}
@media (max-width: 1023px) {
  .team-vacancy-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
    margin-right: 0px;
  }
}
.team-vacancy-text-tilte {
  margin-top: 72px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  padding-bottom: 8px;
}
@media (max-width: 1300px) {
  .team-vacancy-text-tilte {
    font-size: 32px;
    line-height: 120%;
    margin-top: 24px;
  }
}
@media (max-width: 1023px) {
  .team-vacancy-text-tilte {
    font-size: 24px;
    padding-bottom: 5px;
  }
}
.team-vacancy-text-text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
.team-vacancy-text-text p {
  margin: 0 0 16px 0;
}
@media (max-width: 1023px) {
  .team-vacancy-text-text {
    font-size: 18px;
    margin-top: 16px;
  }
}
.team-vacancy-text-btn {
  display: block;
  border: 1px solid #d7592a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-align: right;
  color: #ffffff;
  padding: 16px 51px;
  max-width: 200px;
  margin-top: 81px;
  margin-bottom: 60px;
  text-align: center;
}
.team-vacancy-text-btn:hover {
  color: #d7592a;
}
@media (max-width: 1300px) {
  .team-vacancy-text-btn {
    margin-top: 20px;
  }
}
@media (max-width: 1023px) {
  .team-vacancy-text-btn {
    margin-top: 31px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
}
.team-vacancy-img {
  max-width: 720px;
  max-height: 600px;
  width: 100%;
  height: 100%;
}
@media (max-width: 1023px) {
  .team-vacancy-img .img-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .team-vacancy-img .img-img {
    display: block;
  }
}
.team-vacancy-img .img-img-mob {
  display: none;
}
@media (max-width: 1023px) {
  .team-vacancy-img .img-img-mob {
    display: block;
  }
}
@media (max-width: 767px) {
  .team-vacancy-img .img-img-mob {
    display: none;
  }
}
@media (max-width: 1300px) {
  .team-vacancy-img {
    width: 500px;
    height: 416px;
  }
}
@media (max-width: 1023px) {
  .team-vacancy-img {
    max-width: calc(100% + 32px);
    width: calc(100% + 32px);
    margin-left: -16px;
    height: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.team-footer-place {
  display: none;
  height: 60px;
  width: 100%;
  background: #1b1b1c;
}
@media (max-width: 1023px) {
  .team-footer-place {
    display: block;
  }
}

vacancy.vacancy {
  background: #1b1b1c;
}
vacancy.vacancy .home {
  background: #1b1b1c;
}

@media (max-width: 767px) {
  vacancy .home-nav {
    margin-top: -1px;
  }
}

.vacancy {
  position: relative;
  display: block;
  overflow: hidden;
}
.vacancy-header {
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .vacancy-header {
    padding: 0 16px;
    margin: 20px auto 0;
  }
}
.vacancy-header-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .vacancy-header-title {
    font-size: 28px;
    line-height: 120%;
  }
}
.vacancy-header-subtitle {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .vacancy-header-subtitle {
    font-size: 24px;
    line-height: 120%;
    margin-top: 40px;
  }
}
.vacancy-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1440px;
  padding: 0 45px 0 75px;
  margin: 18px auto 0;
}
@media (max-width: 1023px) {
  .vacancy-flex {
    padding: 0 16px;
    margin: 8px auto 0;
  }
}
.vacancy-flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 31px;
  background-color: #212122;
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  max-width: 630px;
  margin: 30px 30px 0 0;
}
@media (max-width: 1023px) {
  .vacancy-flex-item {
    margin: 16px 0 0 0;
    max-width: 100%;
    padding: 24px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .vacancy-flex-item {
    min-height: 200px;
  }
}
.vacancy-flex-item-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
  min-height: 134px;
}
@media (max-width: 1023px) {
  .vacancy-flex-item-title {
    max-width: 100%;
    font-size: 20px;
    line-height: 140%;
    min-height: 63px;
  }
}
.vacancy-flex-item-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #d7592a;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .vacancy-flex-item-btn {
    font-size: 18px;
    line-height: 145%;
  }
}
.vacancy-advantages {
  display: block;
  position: relative;
  max-width: 1440px;
  padding: 0 20px 0 75px;
  margin: 48px auto 0;
  margin-top: 120px;
}
@media (max-width: 1023px) {
  .vacancy-advantages {
    padding: 0 16px 0 16px;
    margin-top: 63px;
  }
}
.vacancy-advantages-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  max-width: 480px;
}
@media (max-width: 1023px) {
  .vacancy-advantages-title {
    font-size: 24px;
    line-height: 120%;
    max-width: 100%;
  }
}
.vacancy-advantages-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 18px;
}
@media (max-width: 1023px) {
  .vacancy-advantages-box {
    margin-top: 7px;
  }
}
.vacancy-advantages-box-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 410px;
  padding: 32px;
  position: relative;
  background-size: cover;
  background: #212122;
  border: 1px solid #4c4c4e;
  margin: 30px 30px 0 0;
  width: 100%;
  border-radius: 4px;
}
.vacancy-advantages-box-left-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  opacity: 0.1;
  background-image: url('../images/vacancy/vacancy-flex-v2.jpg');
  left: 0;
  top: 0;
  z-index: 2;
}
.vacancy-advantages-box-left:hover .vacancy-advantages-box-left-hover {
  opacity: 1;
}
@media (max-width: 1430px) {
  .vacancy-advantages-box-left {
    display: none;
  }
}
.vacancy-advantages-box-left-bot {
  display: block;
  z-index: 3;
}
.vacancy-advantages-box-left-bot-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
.vacancy-advantages-box-left-bot-text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.8;
}
@media (min-width: 1430px) {
  .vacancy-advantages-box-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.vacancy-advantages-box-right:before {
  content: '';
  position: absolute;
  width: 2000px;
  height: 600px;
  left: -2000px;
  background: #1b1b1c;
  z-index: 200;
}
@media (max-width: 1430px) {
  .vacancy-advantages-box-right {
    max-width: 410px;
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .vacancy-advantages-box-right {
    max-width: 326px;
    width: 100%;
  }
}
.vacancy-advantages-box-right .slick-list {
  overflow: visible !important;
}
.vacancy-advantages-box-right .slick-slide {
  margin-right: 18px;
}
.vacancy-advantages-box-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 410px;
  max-width: 410px;
  margin: 30px 30px 0 0;
  background: #212122;
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 30px;
}
.vacancy-advantages-box-right-item-last {
  height: 244px;
  max-width: 850px;
  width: 100%;
}
@media (max-width: 1430px) {
  .vacancy-advantages-box-right-item-last {
    height: 410px;
    max-width: 410px;
  }
}
@media (max-width: 550px) {
  .vacancy-advantages-box-right-item-last {
    height: 350px;
    max-width: 310px;
  }
}
.vacancy-advantages-box-right-item-last .vacancy-advantages-box-right-item-bot {
  max-width: 500px;
}
@media (max-width: 1023px) {
  .vacancy-advantages-box-right-item {
    height: auto;
    min-height: 350px;
    max-width: 310px;
    width: 100%;
    margin: 16px 16px 0 0;
    padding: 24px;
  }
}
@media (max-width: 550px) {
  .vacancy-advantages-box-right-item {
    height: 350px;
    max-width: 310px;
  }
}
.vacancy-advantages-box-right-item-bot {
  display: block;
}
.vacancy-advantages-box-right-item-bot-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .vacancy-advantages-box-right-item-bot-title {
    font-size: 20px;
    line-height: 140%;
  }
}
.vacancy-advantages-box-right-item-bot-text {
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .vacancy-advantages-box-right-item-bot-text {
    font-size: 16px;
    line-height: 145%;
    max-height: 210px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}
.vacancy .home-feedback {
  display: block;
  max-width: 1440px;
  padding: 0 75px;
  margin: 118px auto 120px;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback {
    padding: 0 16px;
    margin: 60px auto 60px;
  }
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex {
    padding: 24px;
  }
}
.vacancy .home-feedback-flex-left {
  margin-right: 30px;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left {
    margin-right: 0px;
  }
}
.vacancy .home-feedback-flex-left-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-desc {
    font-size: 14px;
    line-height: 145%;
  }
}
.vacancy .home-feedback-flex-left-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-title {
    font-size: 24px;
    line-height: 120%;
    margin-top: 16px;
  }
}
.vacancy .home-feedback-flex-left-form {
  margin-top: 12px;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form {
    margin-top: 0px;
  }
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-name {
    margin-top: 39px;
  }
}
.vacancy .home-feedback-flex-left-form-docs {
  position: relative;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: 0;
}
.vacancy .home-feedback-flex-left-form-lable {
  position: relative;
  height: 38px;
  border: none;
  border-bottom: 1px solid #4c4c4e;
  background: transparent;
  margin-top: 48px;
  outline: none;
  color: #6e6e71;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-lable {
    margin-top: 40px;
  }
}
.vacancy .home-feedback-flex-left-form-lable-img {
  position: absolute;
  right: 0px;
  top: calc(50% - 18px);
  width: 16px;
  height: 18px;
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-tel {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-mail {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-rules {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .vacancy .home-feedback-flex-left-form-btn {
    margin-top: 24px;
    max-width: 230px;
    margin-left: 0px;
    max-width: 280px;
  }
}
@media (max-width: 1365px) {
  .vacancy .home-feedback-flex-right {
    display: none;
  }
}
.vacancy .home-feedback-flex-right-img {
  vertical-align: middle;
  border-radius: 4px;
}
.vacancy-closer {
  position: relative;
  display: block;
  width: 100%;
  margin: 48px auto 0;
  max-width: 1290px;
  padding: 0 0px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(33, 33, 34, 0)), color-stop(46.18%, rgba(33, 33, 34, 0.78)), color-stop(90.15%, #212122));
  background: -o-linear-gradient(right, rgba(33, 33, 34, 0) 0%, rgba(33, 33, 34, 0.78) 46.18%, #212122 90.15%);
  background: linear-gradient(270deg, rgba(33, 33, 34, 0) 0%, rgba(33, 33, 34, 0.78) 46.18%, #212122 90.15%);
  background-image: url('../images/vacancy/vacancy-closer.png');
  background-size: cover;
  background-position: right top;
  border-radius: 4px;
  border: 1px solid #4c4c4e;
}
.vacancy-closer:hover {
  border: 1px solid #4c4c4e;
}
@media (max-width: 1023px) {
  .vacancy-closer {
    background-image: url('../images/vacancy/vacancy-closer-tab.png');
    background-size: cover;
    background-position: left top;
    margin-left: 16px;
    margin-top: 23px;
    width: calc(100% - 32px);
  }
}
.vacancy-closer-wrapper {
  padding: 31px;
  max-width: 550px;
}
@media (max-width: 1023px) {
  .vacancy-closer-wrapper {
    padding: 24px 17px 24px 24px;
    max-width: 100%;
  }
}
.vacancy-closer-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .vacancy-closer-title {
    padding-top: 124px;
    font-size: 20px;
    line-height: 140%;
  }
}
.vacancy-closer-text {
  display: block;
  margin-top: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 1023px) {
  .vacancy-closer-text {
    font-size: 18px;
    line-height: 145%;
    margin-top: 15px;
  }
}
.vacancy-closer-btn {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #fff;
  margin-top: 36px;
}
.vacancy-closer-btn:hover {
  color: #d7592a;
}
@media (max-width: 1023px) {
  .vacancy-closer-btn {
    margin-top: 31px;
  }
}

.ancor-feedback {
  position: absolute;
  top: -90px;
}

vacancyarticle .vacancy-advantages {
  margin-top: 103px;
}

vacancyarticle .home {
  background: #1b1b1c;
}

.vacancy {
  background: #1b1b1c;
}
.vacancy-border {
  position: relative;
  display: block;
  max-width: 1290px;
  margin: 0 auto;
}
.vacancy-border-line {
  border-bottom: 1px solid #4c4c4e;
  width: 100%;
}
.vacancy-article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 0 75px;
  margin: 40px auto 0;
}
@media (max-width: 1023px) {
  .vacancy-article-header {
    padding: 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vacancy-article-header-wrapper {
  width: 100%;
  max-width: 100%;
  padding-bottom: 80px;
  border-bottom: 1px solid #4c4c4e;
}
@media (max-width: 1023px) {
  .vacancy-article-header-wrapper {
    padding-bottom: 40px;
  }
}
.vacancy-article-header-left {
  max-width: 580px;
  width: 100%;
}
.vacancy-article-header-left-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 120%;
  color: #ffffff;
  margin-right: 80px;
}
@media (max-width: 1365px) {
  .vacancy-article-header-left-title {
    font-size: 28px;
    line-height: 120%;
    margin-right: 30px;
  }
}
@media (max-width: 1023px) {
  .vacancy-article-header-left-title {
    margin-right: 0px;
  }
}
.vacancy-article-header-right {
  max-width: 520px;
  margin-right: 110px;
}
@media (max-width: 1365px) {
  .vacancy-article-header-right {
    margin-right: 0px;
  }
}
.vacancy-article-header-right-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .vacancy-article-header-right-text {
    margin-top: 40px;
  }
}
.vacancy-article-header-right-btn {
  display: block;
  background: #d7592a;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  max-width: 220px;
  padding: 13px 44px;
  margin-top: 32px;
}
.vacancy-article-header-right-btn:hover {
  background: #e46c3f;
}
.vacancy-article-exp {
  display: block;
  width: 100%;
  max-width: 1440px;
  padding: 0px 45px 100px 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .vacancy-article-exp {
    padding: 40px 16px 40px;
  }
}
.vacancy-article-exp-title {
  padding-top: 100px;
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  padding-bottom: 26px;
}
.vacancy-article-exp-top .vacancy-article-exp-title {
  border-top: none;
  padding-top: 80px;
}
.vacancy-article-exp-bot {
  padding-bottom: 0px;
}
.vacancy-article-exp-bot .vacancy-article-exp-flex {
  border-top: none;
  padding-top: 80px;
  padding-bottom: 100px;
}
.vacancy-article-exp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}
.vacancy-article-exp-flex-item {
  max-width: 280px;
  width: 100%;
  display: block;
  margin: 32px 50px 0 0;
}
@media (max-width: 1023px) {
  .vacancy-article-exp-flex-item {
    margin: 32px 20px 0 0;
  }
}
@media (max-width: 767px) {
  .vacancy-article-exp-flex-item {
    margin: 32px 0 0 0;
    max-width: 100%;
  }
}
.vacancy-article-exp-flex-item-line {
  width: 40px;
  border-bottom: 1px solid #d7592a;
}
.vacancy-article-exp-flex-item-text {
  margin-top: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .vacancy-article-exp-flex-item-text {
    margin-top: 15px;
  }
}
.vacancy-article-proposal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  padding: 80px 45px 100px 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .vacancy-article-proposal {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 40px 16px 40px 16px;
  }
}
.vacancy-article-proposal-text {
  max-width: 600px;
  margin-right: 30px;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .vacancy-article-proposal-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0px;
    max-width: 100%;
    margin-top: 20px;
  }
}
.vacancy-article-proposal-text-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  color: #ffffff;
  padding-bottom: 15px;
}
.vacancy-article-proposal-text-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  margin-top: 16px;
}
.vacancy-article-proposal-text-desc p {
  margin: 0 0 16px 0;
}
.vacancy-article-proposal-img {
  width: 520px;
  height: 400px;
  border-radius: 4px;
  margin-right: 70px;
}
@media (max-width: 1200px) {
  .vacancy-article-proposal-img {
    width: 400px;
    height: 308px;
  }
}
@media (max-width: 1023px) {
  .vacancy-article-proposal-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 550px) {
  .vacancy-article-proposal-img {
    width: 100%;
    height: auto;
  }
}

otzyv .home {
  background: #1b1b1c;
}
otzyv .home-proposal {
  margin-top: 120px;
}
otzyv .home-proposal .slider {
  left: -1px;
  max-width: 440px;
}
otzyv .home-feedback-flex-left-title {
  padding-bottom: 58px;
}

.otzyv {
  background: #1b1b1c;
}
.otzyv .vacancy-article-header-wrapper {
  border: none;
  padding-bottom: 10px;
}
.otzyv-content {
  width: 100%;
  max-width: 1440px;
  padding: 0px 45px 70px 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .otzyv-content {
    overflow: hidden !important;
    padding: 0px 16px 20px;
  }
}
.otzyv-content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 7px;
}
@media (max-width: 1023px) {
  .otzyv-content-flex {
    max-width: 440px;
    width: 100%;
    display: block;
  }
}
.otzyv-content-flex .slick-list {
  overflow: visible !important;
}
.otzyv-content .home-otzyv-content-item {
  max-width: 410px;
  margin: 30px 30px 0 0;
}
.otzyv-more-btn {
  width: 300px;
  margin: 0 auto;
  border: 1px solid #4c4c4e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  padding: 16px;
  color: #ffffff;
  cursor: pointer;
}
@media (max-width: 1023px) {
  .otzyv-more-btn {
    display: none;
  }
}

@media (max-width: 1200px) {
  project .home-company .home-wrapper {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  project .home-company .home-wrapper .home-slider-btn-prev {
    width: 48px;
    height: 48px;
    right: auto;
    left: 16px;
    bottom: 38px;
  }
}

@media (max-width: 1200px) {
  project .home-company .home-wrapper .home-slider-btn-next {
    width: 48px;
    height: 48px;
    right: auto;
    left: 83px;
    bottom: 38px;
  }
}

@media (max-width: 1200px) {
  project .home-company-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 1200px) {
  project .home-company-item-contant {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    padding: 32px 16px 11px;
  }
}

@media (max-width: 1200px) {
  project .home-company-item-contant-text {
    min-height: auto;
  }
}

@media (max-width: 1200px) {
  project .home-company-item-preview-box {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  project .home-company-item-preview-text {
    max-width: 500px;
    width: 100%;
    margin-top: 22px;
  }
}

@media (max-width: 1200px) {
  project .home-company-item-preview-item {
    padding: 38px 16px 117px;
  }
}

project .home {
  background: #1b1b1c;
}
project .home-feedback {
  margin-top: 122px;
}

project .home-geography-box-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}
project .home-geography-box-header-title {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  max-width: 350px;
  width: 100%;
  margin-top: 22px;
}
project .home-geography-box-header-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  max-width: 630px;
  margin-top: 20px;
}

project .home-geography-box-map {
  margin-top: -49px;
}
project .home-geography-box-map-img {
  max-width: 1267px;
  max-height: 711px;
}

project .home-feedback-flex-left-title {
  padding-bottom: 58px;
}

.project {
  background: #1b1b1c;
}
.project .vacancy-article-header-wrapper {
  border: none;
  padding-bottom: 58px;
}
.project .home-company {
  border: none;
  background: #212122;
  margin-bottom: 100px;
}
.project-list {
  display: block;
}
.project-list-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1440px;
  padding: 0px 75px 100px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .project-list-wrapper {
    padding: 0 16px 40px;
  }
}
.project-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #4c4c4e;
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .project-list-item {
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .project-list-item div {
    margin-top: 20px;
    max-width: 100%;
  }
}
.project-list-item:last-child {
  border-bottom: 1px solid #4c4c4e;
}
.project-list-item-title {
  max-width: 390px;
  width: 100%;
  margin-right: 20px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .project-list-item-title {
    font-size: 18px;
    line-height: 145%;
  }
}
.project-list-item-text {
  margin-right: 20px;
  max-width: 460px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 1023px) {
  .project-list-item-text {
    font-size: 16px;
    line-height: 145%;
  }
}
.project-list-item-place {
  margin-right: 20px;
  max-width: 190px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.4;
}
@media (max-width: 1023px) {
  .project-list-item-place {
    font-size: 16px;
    line-height: 145%;
  }
}
.project-list-item-date {
  max-width: 100px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.4;
}
@media (max-width: 1023px) {
  .project-list-item-date {
    font-size: 16px;
    line-height: 145%;
  }
}

news .home {
  background: #1b1b1c;
}
news .home-news-content {
  margin-top: 8px;
}
@media (max-width: 768px) {
  news .home-news-content-item {
    max-width: 100%;
    min-height: 300px;
    margin: 16px 0 0 0;
  }
}
@media (max-width: 768px) {
  news .home-news-content-item-bot {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  news .home-news-content-item-bot-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
  }
}

@media (max-width: 1023px) {
  news .otzyv-more-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(100% - 32px);
    width: 100%;
    margin-left: 16px;
    margin-bottom: 59px;
  }
}

news .vacancy-article-header {
  margin-top: 19px;
}

.news {
  background: #1b1b1c;
}
.news .vacancy-article-header-wrapper {
  border: none;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .news .vacancy-article-header-wrapper {
    padding-bottom: 4px;
  }
}
.news-news {
  padding-bottom: 72px;
}
@media (max-width: 1023px) {
  .news-news {
    padding-bottom: 29px;
  }
}
.news .otzyv-more-btn {
  margin-bottom: 120px;
}
@media (max-width: 1023px) {
  .news .otzyv-more-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: calc(100% - 32px);
    width: 100%;
    margin-left: 16px;
    margin-bottom: 59px;
  }
}
.news .home-news-content-item {
  position: relative;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.news .home-news-content-item-hover {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}
.news .home-news-content-item-hover {
  opacity: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 27, 28, 0.48)), color-stop(85.34%, #1b1b1c));
  background: -o-linear-gradient(top, rgba(27, 27, 28, 0.48) 0%, #1b1b1c 85.34%);
  background: linear-gradient(180deg, rgba(27, 27, 28, 0.48) 0%, #1b1b1c 85.34%);
  left: 0;
  top: 0;
  z-index: 2;
}
.news .home-news-content-item-hover:hover {
  opacity: 1;
}
.news .home-news-content-item:hover .home-news-content-item-hover {
  opacity: 1;
}
.news .home-news-content-item .home-news-content-item-bot {
  z-index: 3;
}
@media (max-width: 768px) {
  .news .home-news-content-item-1 {
    background-image: url(../images/main/news/tab/item-1.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-1 {
    background-image: url(../images/main/news/item-1.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .news .home-news-content-item-2 {
    background-image: url(../images/main/news/tab/item-2.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-2 {
    background-image: url(../images/main/news/item-2.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .news .home-news-content-item-3 {
    background-image: url(../images/main/news/tab/item-3.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-3 {
    background-image: url(../images/main/news/item-3.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .news .home-news-content-item-4 {
    background-image: url(../images/main/news/tab/item-4.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-4 {
    background-image: url(../images/main/news/item-4.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .news .home-news-content-item-5 {
    background-image: url(../images/main/news/tab/item-5.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-5 {
    background-image: url(../images/main/news/item-5.png);
    background-size: cover;
  }
}
@media (max-width: 768px) {
  .news .home-news-content-item-6 {
    background-image: url(../images/main/news/tab/item-6.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-6 {
    background-image: url(../images/main/news/item-6.png);
    background-size: cover;
  }
}
.news .home-news-content-item-7 {
  background-image: url(../images/main/news/item-7.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-7 {
    background-image: url(../images/main/news/tab/item-7.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-7 {
    background-image: url(../images/main/news/item-7.png);
    background-size: cover;
  }
}
.news .home-news-content-item-8 {
  background-image: url(../images/main/news/item-8.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-8 {
    background-image: url(../images/main/news/tab/item-8.png);
    background-size: cover;
  }
}
.news .home-news-content-item-9 {
  background-image: url(../images/main/news/item-9.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-9 {
    background-image: url(../images/main/news/tab/item-9.png);
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .news .home-news-content-item-9 {
    background-image: url(../images/main/news/item-9.png);
    background-size: cover;
  }
}
.news .home-news-content-item-10 {
  background-image: url(../images/main/news/item-10.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-10 {
    display: none;
  }
}
.news .home-news-content-item-11 {
  background-image: url(../images/main/news/item-11.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-11 {
    display: none;
  }
}
.news .home-news-content-item-12 {
  background-image: url(../images/main/news/item-12.png);
  background-size: cover;
}
@media (max-width: 768px) {
  .news .home-news-content-item-12 {
    display: none;
  }
}

newsarticle .home {
  background: #1b1b1c;
}

newsarticle .slick-slide {
  text-align: center !important;
}

@media (max-width: 400px) {
  newsarticle .home-nav {
    margin-top: 0px;
  }
}

.news-article {
  background: #1b1b1c;
}
.news-article-slider-item {
  max-width: 1440px;
  padding: 0 75px;
  margin: 41px auto 0;
  text-align: left;
}
@media (max-width: 1023px) {
  .news-article-slider-item {
    padding: 0 16px;
    margin: 0 auto;
  }
}
.news-article-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1200px) {
  .news-article-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
@media (max-width: 1023px) {
  .news-article-header {
    display: none !important;
  }
}
.news-article-header-wrapper {
  position: relative;
  display: block;
}
.news-article-header-date {
  margin-right: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  opacity: 0.4;
  max-width: 80px;
}
@media (max-width: 1200px) {
  .news-article-header-date {
    max-width: 100%;
    margin-top: 20px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}
@media (max-width: 400px) {
  .news-article-header-date {
    margin-top: 15px;
  }
}
.news-article-header-preview {
  display: block;
  max-width: 740px;
  width: 100%;
  margin-right: 30px;
}
@media (max-width: 1200px) {
  .news-article-header-preview {
    max-width: 100%;
    margin-top: 20px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1023px) {
  .news-article-header-preview {
    background: url(../images/main/news/article/article-gradient.png), url(../images/main/news/article/article-1.jpg);
    background-repeat: no-repeat, no-repeat;
    background-position: 20px left, top left;
    background-size: 100% auto, 100% auto;
    min-height: 320px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 16px;
    max-width: 360px;
    border: 1px solid #4c4c4e;
    border-radius: 4px;
  }
}
@media (max-width: 400px) {
  .news-article-header-preview {
    max-width: calc(100% + 34px);
    margin-left: -17px;
    width: calc(100% + 34px);
  }
}
.news-article-header-preview-title {
  font-weight: 400;
  font-size: 40px;
  line-height: 115%;
  color: #ffffff;
}
@media (max-width: 1023px) {
  .news-article-header-preview-title {
    font-size: 22px;
    line-height: 120%;
  }
}
.news-article-header-preview-text {
  margin-top: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
}
@media (max-width: 400px) {
  .news-article-header-preview-text {
    margin-top: 18px;
  }
}
.news-article-header-img {
  border-radius: 4px;
  width: 410px;
  height: 260px;
  margin-top: -2px;
}
@media (max-width: 1200px) {
  .news-article-header-img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.news-article-header-mob {
  display: none !important;
}
@media (max-width: 1023px) {
  .news-article-header-mob {
    display: block !important;
  }
}
.news-article-content {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 60px 75px 0 110px;
}
@media (max-width: 1023px) {
  .news-article-content {
    padding: 40px 0px 0 0px;
  }
}
.news-article-content-title {
  max-width: 730px;
  font-weight: 400;
  font-size: 36px;
  line-height: 115%;
  color: #ffffff;
  padding-bottom: 8px;
}
@media (max-width: 1023px) {
  .news-article-content-title {
    font-size: 24px;
    line-height: 115%;
  }
}
.news-article-content-text {
  max-width: 730px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  margin-top: 16px;
}
.news-article-content-text a {
  color: #d7592a;
}
.news-article-content-li {
  max-width: 730px;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  padding-left: 28px;
}
.news-article-content-li li {
  list-style-type: disc;
  margin-top: 16px;
}
.news-article-content-li li:first-child {
  margin-top: 27px;
}
.news-article-content-li li:last-child {
  padding-bottom: 6px;
}
.news-article-btn {
  padding: 60px 75px 0 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 120px;
}
.news-article-btn-wrapper {
  max-width: 1440px;
  padding: 0 75px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .news-article-btn-wrapper {
    padding: 0 16px;
  }
}
@media (max-width: 1023px) {
  .news-article-btn {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .news-article-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 40px 0 60px;
  }
}
.news-article-btn-prev {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  margin-right: 40px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.news-article-btn-prev:hover {
  color: #d7592a;
}
.news-article-btn-next {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.news-article-btn-next:hover {
  color: #d7592a;
}
@media (max-width: 767px) {
  .news-article-btn-next {
    margin-top: 24px;
  }
}

contacts .home {
  background: #1b1b1c;
}
@media (max-width: 767px) {
  contacts .home-nav {
    margin-top: 0px;
  }
}

contacts .vacancy-article-header {
  margin: 19px auto 0;
}

contacts .vacancy-article-header-left {
  max-width: 300px;
}
contacts .vacancy-article-header-left-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 115%;
}
@media (max-width: 1023px) {
  contacts .vacancy-article-header-left-title {
    font-size: 28px;
    line-height: 120%;
  }
}

contacts .vacancy-article-header-right {
  width: 100%;
}
contacts .vacancy-article-header-right-text {
  max-width: 400px;
}
@media (max-width: 1023px) {
  contacts .vacancy-article-header-right-text {
    font-size: 18px;
    line-height: 140%;
  }
}
contacts .vacancy-article-header-right-contact-item {
  font-weight: 500;
  font-size: 36px;
  line-height: 145%;
  color: #ffffff;
  display: block;
  margin-top: 11px;
}
@media (max-width: 1023px) {
  contacts .vacancy-article-header-right-contact-item {
    margin-top: 8px;
  }
}

contacts .vacancy .home-feedback {
  margin-top: 120px;
}
contacts .vacancy .home-feedback-flex-left-form {
  margin-top: 70px;
}
@media (max-width: 1023px) {
  contacts .vacancy .home-feedback-flex-left-form {
    margin-top: 0px;
  }
}
@media (max-width: 1023px) {
  contacts .vacancy .home-feedback {
    margin-top: 60px;
  }
}

.contacts {
  background: #1b1b1c;
}
@media (max-width: 1023px) {
  .contacts .vacancy-article-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .contacts .vacancy-article-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.contacts .vacancy-article-header-wrapper {
  border: none;
}
@media (max-width: 1023px) {
  .contacts .vacancy-article-header-right {
    max-width: 400px;
  }
}
@media (max-width: 1023px) {
  .contacts .vacancy-article-header-right-text {
    margin-top: 0px;
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .contacts .vacancy-article-header-right-text {
    margin-top: 34px;
  }
}
.contacts .vacancy-article-header-right-contact {
  margin-top: 60px;
  display: block;
  font-weight: 400;
  font-size: 36px;
  line-height: 145%;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .contacts .vacancy-article-header-right-contact {
    font-size: 24px;
    line-height: 145%;
  }
}
@media (max-width: 1023px) {
  .contacts .vacancy-article-header-right-contact {
    margin-top: 32px;
    font-weight: 400;
    font-size: 24px;
    line-height: 145%;
    color: #ffffff;
  }
}
@media (max-width: 1023px) {
  .contacts .vacancy-article-header-right-contact {
    margin-top: 31px;
  }
}
@media (max-width: 1200px) {
  .contacts .vacancy-article-header-right-contact-item {
    font-size: 24px;
    line-height: 145%;
  }
}
.contacts-map {
  display: block;
  position: relative;
  width: calc(100% - 32px);
  height: 600px;
  max-width: 1285px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .contacts-map {
    height: 420px;
  }
}

.popup-contacts {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(16, 16, 17, 0.6);
  z-index: 10001;
  top: 0;
  left: 0;
}
.popup-contacts-closer {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 12px;
  top: 12px;
  cursor: pointer;
}
@media (min-width: 1450px) {
  .popup-contacts-closer {
    right: 35px;
  }
}
@media (max-width: 767px) {
  .popup-contacts-closer {
    right: 12px;
    top: 12px;
  }
}
.popup-contacts .vacancy {
  height: 100%;
  width: 100%;
  background: transparent;
}
.popup-contacts .home-feedback {
  position: relative;
  margin-top: 88px;
}
@media (max-width: 1023px) {
  .popup-contacts .home-feedback {
    margin-top: 55px;
  }
}
.popup-contacts .home-feedback-flex {
  background-color: #1b1b1c;
}
.popup-contacts .home-feedback-flex-left-form {
  margin-top: 0px;
}
.popup-contacts .home-feedback-flex-left-title {
  padding-bottom: 12px;
}
@media (max-width: 1023px) {
  .popup-contacts .home-feedback-flex-left-title {
    padding-bottom: 1px;
  }
}
.popup-contacts .home-feedback-flex-right-img {
  max-width: 600px;
  max-height: 561px;
}

.js-popup-contacts-watch {
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(16, 16, 17, 0.6);
  z-index: 10000;
  overflow-y: scroll;
}
.popup-close {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 12px;
  top: 12px;
  cursor: pointer;
  z-index: 100000;
}
@media (min-width: 1450px) {
  .popup-close {
    right: 35px;
  }
}
@media (max-width: 767px) {
  .popup-close {
    right: 12px;
    top: 12px;
  }
}
.popup-inner {
  height: 100%;
  min-width: 100%;
  background: transparent;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 16px;
}

.editor {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  opacity: 0.92;
  margin-top: 16px;
}
.popup-review {
  width: 760px;
  max-height: 100%;
  background: #1b1b1c;
  border: 1px solid #4c4c4e;
  border-radius: 4px;
  padding: 40px 45px;
  color: #fff;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #282829 transparent;
  /* для Chrome/Edge/Safari */
}
.popup-review::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.popup-review::-webkit-scrollbar-track {
  background: transparent;
}
.popup-review::-webkit-scrollbar-thumb {
  background-color: #282829;
  border-radius: 7px;
  border: 0 solid #282829;
}
@media (max-width: 768px) {
  .popup-review {
    width: 100%;
    padding: 24px 24px 27px;
  }
}
@media (max-width: 414px) {
  .popup-review {
    padding: 24px 24px 24px;
  }
}
.popup h5 {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
}
@media (max-width: 414px) {
  .popup h5 {
    margin: 0 0 16px;
  }
}
.popup h4 {
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
}
.popup h6 {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #949fa3;
}
@media (max-width: 414px) {
  .popup h6 {
    margin: 0 0 16px;
  }
}
.popup p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 24px;
}
.popup a {
  display: inline-block;
  margin-top: 8px;
  background: #d7592a;
  border-radius: 4px;
  padding: 12.5px 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
}
.popup a span {
  margin-left: 10px;
  vertical-align: middle;
}

.notfound {
  position: relative;
  display: block;
  max-width: 882px;
  margin: 51px auto 71px;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .notfound {
    margin: -2px auto 60px;
  }
}
.notfound-header {
  display: block;
}
.notfound-header-img {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .notfound-header-img {
    display: none;
  }
}
.notfound-header-img-mob {
  display: none;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .notfound-header-img-mob {
    display: block;
    margin: 0 auto;
  }
}
.notfound-header-text {
  font-family: 'Gilroy';
  font-weight: 600;
  font-size: 193px;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  margin-top: -128px;
}
@media (max-width: 767px) {
  .notfound-header-text {
    font-size: 116px;
    margin-top: -78px;
  }
}
.notfound-contant {
  display: block;
  max-width: 336px;
  margin: 2px auto 0;
}
@media (max-width: 767px) {
  .notfound-contant {
    max-width: 260px;
    margin: 7px auto 0;
  }
}
.notfound-contant-text {
  font-family: 'Gilroy';
  font-weight: 600;
  font-size: 20px;
  line-height: 145%;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .notfound-contant-text {
    line-height: 24px;
  }
}
.notfound-contant-btn {
  display: block;
  font-family: 'Gilroy';
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  color: #ffffff;
  text-align: center;
  padding: 16px 26px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  max-width: 225px;
  width: 100%;
  margin: 24px auto 0;
}
@media (max-width: 767px) {
  .notfound-contant-btn {
    max-width: 100%;
    margin: 22px auto 0;
  }
}


/*Добавочные стили для форм*/
.wpcf7-list-item {
  margin: 0;
}
.home-feedback-flex-left-form input:not([type='submit']) {
  width: 100%;
}
.home-feedback-flex-left-form-btn {
  border: none;
}
.home-feedback-flex-left-form-rules-checkbox ~ span {
  margin-left: 30px;
  font-size: 14px;
  line-height: 140%;
  color: #6e6e71;
}
.popup-contacts .home-feedback-flex-left-form-rules-checkbox[type='checkbox'] {
  margin-top: 0 !important;
}
.home-feedback-flex-left-form-rules-checkbox[type='checkbox'] {
  margin-top: 0 !important;
}
.home-feedback-flex-left-form-lable-text {
  position: relative;
}
.vacancy .home-feedback-flex-left-form-lable-text::after {
  position: absolute;
  content: '';
  right: 0px;
  top: calc(50% - 9px);
  width: 16px;
  height: 18px;
  background: url(../images/vacancy/form-file.svg) center no-repeat;
}
.vacancy .company-team-flex-img {
  width: auto;
  height: auto;
}
services .popup-contacts .vacancy .home-feedback-flex-left-form {
  margin-top: 0px;
}
.editor {
  color: #fff;

  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  opacity: 0.92;
  margin-top: 16px;
}
.home-nav-arrow {
background: url(../images/services/header-arrow.svg);
}

.menu-main-menu-container {
  margin: 0 auto 0 0;
}

.editor .content {
  max-width: 730px;
}
.editor h2 {
  margin: 0 0 16px 0;
  font-weight: 400;
  font-size: 36px;
  line-height: 115%;
  color: #ffffff;
  padding-bottom: 8px;
}

.editor h3 {
  margin: 0 0 16px 0;
}

.editor h4 {
  margin: 0 0 16px 0;
}

.editor p {
  margin: 0 0 16px 0;
}

.editor a {
  color: #D7592A;
}



.editor ul {
  font-weight: 400;
  font-size: 18px;
  line-height: 145%;
  color: #ffffff;
  opacity: 0.92;
  padding-left: 28px;
}

.editor ul li {
  list-style-type: disc;
  margin-top: 16px;
}

.editor ul li:first-child {
  margin-top: 27px;
}

