@charset "UTF-8";
.before, .footer__container-text::before, .footer__list li a::before, .main__content-subtitle span::before, .rates__block::before, .rates__block::after, .collapse__btn::before {
  content: "";
  display: block;
  position: absolute; }

.d-block, .wrapper__container, .wrapper__section, .content, .header, footer, .section, .section__content, .main__content-title, .main__content-subtitle, .placement__methods, .placement__methods-content, .placement__methods-title, .placement__methods-text, .placement__methods-list, .placement__methods-block, .placement__methods-icon, .placement__methods-slide__title, .placement__methods-slide__text, .block__title, .block__text, .solution__content, .solution__block-content__title, .solution__block-content__text, .triggers__content, .channel__container, .channel__content, .channel__block-title, .channel__block-text, .rates__container, .rates__block-top, .rates__block-coverage, .rates__block-text, .rates__small-container, .rates__small-text, .rates__small-content, .rates__small-block__top, .rates__small-title, .rates__small-coverage, .rates__small-coverage__text, .cases__container, .cases__content, .case__block, .case__block-title, .case__block-list, .collapse__container, .collapse__block, .collapse__btn, .collapse__text {
  display: block;
  float: left;
  width: 100%; }

.d-flex, .header__content, .header__nav-list, .footer__container-top, .footer__container-bottom, .main__content, .solution__container, .solution__block, .block__action, .channel__block, .rates__block, .rates__block-content, .rates__block-header, .rates__block-bottom, .rates__small-block, .rates__small-block__bottom, .rates__small-action, .case__block-header, .case__block-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 100%; }

.img-responsive {
  max-width: 100%;
  display: block;
  height: auto; }

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

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

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

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

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

a, li, button, input, textarea {
  outline: none !important; }

.clear {
  clear: both; }

html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Onest", 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;
  background: #fff;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-family: "Onest", sans-serif; }

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

p {
  font-size: 14px;
  line-height: 25px;
  margin: 0 0 30px;
  font-family: "Onest", sans-serif;
  color: #000000;
  font-weight: 300; }
  p:last-child {
    margin-bottom: 0; }
  p a {
    text-decoration: underline; }
    .has-hover p a:not([disabled]):hover {
      text-decoration: none; }

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

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0; }

h2, .h2 {
  font-size: 46px;
  line-height: 50px;
  font-family: "Onest", sans-serif;
  color: #000000;
  font-weight: 500;
  margin: 0 0 6px; }
  @media (max-width: 1023px) {
    h2, .h2 {
      font-size: 36px;
      line-height: 40px; } }
  @media (max-width: 767px) {
    h2, .h2 {
      font-size: 30px;
      line-height: 34px; } }

h3, .h3 {
  font-size: 24px;
  line-height: 30px;
  font-family: "Onest", sans-serif;
  color: #000000;
  font-weight: 500;
  margin: 0 0 27px; }
  @media (max-width: 1023px) {
    h3, .h3 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 20px; } }

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

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

.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: 1364px) {
  .for-desktop {
    display: none !important; } }

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

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

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

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

@media (max-width: 1365px) {
  .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 */
.wrapper {
  position: relative; }

.wrapper__section {
  overflow: hidden; }

.container {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1; }
  @media (max-width: 1599px) {
    .container {
      padding-left: 24px;
      padding-right: 24px; } }
  @media (max-width: 1365px) {
    .container {
      padding-left: 10px;
      padding-right: 10px; } }

.content {
  padding: 0 50px; }
  @media (max-width: 1599px) {
    .content {
      padding: 0 24px; } }
  @media (max-width: 1365px) {
    .content {
      padding: 0 10px; } }
  @media (max-width: 1023px) {
    .content {
      padding: 0; } }

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

.xs-visible {
  display: none !important; }

@media (max-width: 1365px) {
  .sm-hidden {
    display: none !important; } }

@media (min-width: 1366px) {
  .sm-visible {
    display: none !important; } }

picture {
  width: 100%;
  height: 100%; }

.inline-block {
  display: inline-block; }

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2100;
  -webkit-transition: background 0.25s;
  -o-transition: background 0.25s;
  transition: background 0.25s;
  padding: 25px 0; }
  .header.is-fixed {
    background: #fff; }
  @media (max-width: 1023px) {
    .header {
      padding: 15px 0; } }
  @media (max-width: 767px) {
    .header {
      padding: 10px 0; } }

.htmlFix .header.is-fixed {
  background: none; }

.header__content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.header__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 228px; }
  @media (max-width: 1365px) {
    .logo {
      width: 170px; } }
  @media (max-width: 1023px) {
    .logo {
      width: 160px; } }
  @media (max-width: 767px) {
    .logo {
      width: auto; } }

.logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  text-decoration: none;
  font: 24px/24px "Onest", sans-serif;
  font-weight: 300; }

.logo-text {
  padding-left: 15px; }
  .logo-text span {
    font-weight: 500; }
  @media (max-width: 767px) {
    .logo-text {
      display: none; } }

.logo-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px; }

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-top: 5px; }
  @media (max-width: 1023px) {
    .header__nav {
      padding-top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }

.header__nav-list li {
  margin: 0 1px; }
  .header__nav-list li a {
    display: block;
    color: #000000;
    font-size: 16px;
    font: 16px/16px "Onest", sans-serif;
    white-space: nowrap;
    padding: 10px 26px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 18px; }
    .header__nav-list li a.is-active {
      background: #df3838;
      color: #fff; }
    .has-hover .header__nav-list li a:not([disabled]):hover {
      background: #df3838;
      color: #fff; }

@media (max-width: 1023px) {
  .header__nav-list li a {
    font-size: 14px;
    line-height: 14px;
    padding: 8px 15px; } }

@media (max-width: 767px) {
  .header__nav-list li.nav__item-hidden {
    display: none !important; }
  .header__nav-list li a {
    font-size: 12px;
    line-height: 12px;
    border-radius: 10px;
    padding: 5px 8px; } }

.header__right {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 350px; }
  @media (max-width: 1365px) {
    .header__btn {
      min-width: 1px; } }

.btn-blue {
  text-decoration: none !important;
  border: 0 !important;
  background: #0084d0;
  border-radius: 30px;
  color: #fff;
  font: 500 20px/20px "Onest", sans-serif;
  padding-right: 20px;
  padding-left: 31px;
  height: 60px; }
  @media (max-width: 1023px) {
    .btn-blue {
      height: 50px;
      font-size: 18px;
      line-height: 18px; } }

.btn__text {
  padding-right: 10px; }

.btn__icon-arrow {
  width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

@media (max-width: 1365px) {
  .header__btn-telegram {
    position: relative; }
    .header__btn-telegram::before {
      content: "";
      display: block;
      position: absolute;
      left: 10px;
      top: 50%;
      margin-top: -15px;
      background: url("../images/icons/svg/icon-telegram.svg") no-repeat;
      width: 30px;
      height: 30px;
      background-size: cover; }
    .header__btn-telegram .btn__text {
      padding-right: 0;
      padding-left: 20px; }
      .header__btn-telegram .btn__text span {
        display: none; }
    .header__btn-telegram .btn__icon-arrow {
      display: none; } }

@media (max-width: 767px) {
  .header__btn-telegram {
    height: 40px;
    font-size: 14px;
    line-height: 14px;
    border-radius: 15px;
    padding-right: 10px;
    padding-left: 20px; }
    .header__btn-telegram::before {
      width: 26px;
      height: 26px;
      margin-top: -13px; }
    .header__btn-telegram .btn__text {
      padding-left: 25px; } }

@media screen and (max-width: 349px) {
  .header__btn-telegram {
    width: 50px;
    padding-left: 10px;
    padding-right: 10px; }
    .header__btn-telegram .btn__text {
      display: none; } }

footer {
  background: #151518;
  padding: 41px 0 45px;
  margin-top: 60px; }
  @media (max-width: 1023px) {
    footer {
      padding: 20px 0 25px;
      margin-top: 30px; } }

.footer__container-top {
  margin-bottom: 32px; }
  @media (max-width: 1023px) {
    .footer__container-top {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 25px; } }

.footer__container-top__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px; }
  @media (max-width: 1023px) {
    .footer__container-top__left {
      width: 100%;
      margin-bottom: 20px; } }

.footer__container-text {
  padding-left: 50px;
  position: relative; }
  .footer__container-text p {
    color: #fff;
    font-size: 16px;
    line-height: 25px; }
  .footer__container-text::before {
    left: 0;
    top: 12px;
    width: 30px;
    height: 2px;
    background: #df3838; }
    @media (max-width: 1365px) {
      .footer__container-text::before {
        width: 20px; } }
  @media (max-width: 1365px) {
    .footer__container-text {
      padding-left: 30px; }
      .footer__container-text p br {
        display: none; } }
  @media (max-width: 1023px) {
    .footer__container-text p {
      font-size: 14px;
      line-height: 20px; } }
  .footer__container-text::before {
    top: 9px; }

.footer__container-top__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1023px) {
    .footer__container-top__right {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

@media (max-width: 1023px) {
  .footer__container-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }

.footer__container-bottom__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px; }
  @media (max-width: 1023px) {
    .footer__container-bottom__left {
      width: 100%;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.footer__copy {
  padding-left: 50px;
  padding-right: 20px; }
  .footer__copy p {
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    opacity: 0.3; }
  @media (max-width: 1365px) {
    .footer__copy {
      padding-left: 30px; }
      .footer__copy p br {
        display: none; } }
  @media (max-width: 1023px) {
    .footer__copy {
      padding-left: 0;
      text-align: center; } }

.footer__container-bottom__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (max-width: 1023px) {
    .footer__container-bottom__right {
      width: 100%;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 20px; } }

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .footer__list li:not(:last-child) {
    padding-right: 30px; }
    @media (max-width: 1365px) {
      .footer__list li:not(:last-child) {
        padding-right: 15px; } }
    @media (max-width: 767px) {
      .footer__list li:not(:last-child) {
        padding-right: 0; } }
  .footer__list li:not(:first-child) {
    padding-left: 30px; }
    @media (max-width: 1365px) {
      .footer__list li:not(:first-child) {
        padding-left: 15px; } }
    @media (max-width: 767px) {
      .footer__list li:not(:first-child) {
        padding-left: 0; } }
  .footer__list li a {
    font: 16px/16px "Onest", sans-serif;
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff; }
    .has-hover .footer__list li a:not([disabled]):hover span {
      text-decoration: underline; }
    .footer__list li a::before {
      left: 0;
      top: 50%;
      opacity: 0.5;
      width: 20px;
      height: 20px;
      margin-top: -10px;
      background-size: cover !important; }
    .footer__list li a.is-phone {
      padding-left: 30px; }
      .footer__list li a.is-phone::before {
        background: url("../images/icons/svg/icon-phone.svg") no-repeat; }
      @media (max-width: 767px) {
        .footer__list li a.is-phone {
          padding-left: 33px; } }
    .footer__list li a.is-email {
      padding-left: 32px; }
      .footer__list li a.is-email::before {
        background: url("../images/icons/svg/icon-email.svg") no-repeat; }
      @media (max-width: 767px) {
        .footer__list li a.is-email {
          padding-left: 33px; } }
    .footer__list li a.is-telegram {
      padding-left: 33px; }
      .footer__list li a.is-telegram::before {
        background: url("../images/icons/svg/icon-telegram.svg") no-repeat; }
  @media (max-width: 767px) {
    .footer__list {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .footer__list li {
        width: 100%;
        display: block;
        margin: 10px 0; } }

.section {
  position: relative; }

.section__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden; }
  .section__bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center; }

.section__content {
  position: relative;
  z-index: 5; }

.scroll-block {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0; }

.section-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 569px; }
  @media screen and (min-width: 1024px) {
    .section-one {
      background: url("../images/main.jpg") no-repeat top center; } }
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .section-one {
      background: url("../images/main-1024.jpg") no-repeat top center; } }
  @media screen and (min-width: 320px) and (max-width: 767px) {
    .section-one {
      background: url("../images/main-768.jpg") no-repeat top center; } }
  @media (max-width: 1023px) {
    .section-one {
      background-position: center 120px;
      min-height: 660px;
      background-size: 768px auto; }
      .section-one .content {
        height: 100%; } }
  @media (max-width: 767px) {
    .section-one {
      background-position: center 163px;
      min-height: 595px;
      background-size: 450px auto; } }

.main__content {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 132px; }
  @media (max-width: 1023px) {
    .main__content {
      padding-top: 115px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 100%; } }
  @media (max-width: 767px) {
    .main__content {
      padding-top: 75px; } }

.main__content-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 566px; }
  @media (max-width: 1023px) {
    .main__content-left {
      max-width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.main__content-text {
  display: block;
  max-width: 391px;
  float: right;
  border-radius: 26px;
  border: 1px solid #0084d0;
  padding: 4px 19px 5px;
  width: 100%; }
  .main__content-text p {
    margin: 0;
    line-height: 20px;
    font-weight: 300; }
  @media (max-width: 1365px) {
    .main__content-text {
      float: left;
      margin-left: 100px;
      background: #fff; } }
  @media (max-width: 1023px) {
    .main__content-text {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      margin-left: 0;
      max-width: 350px;
      margin: 10px 0 0; }
      .main__content-text p {
        font-size: 12px;
        line-height: 18px; } }

.main__content-title {
  font: 500 100px/100px "Onest", sans-serif;
  color: #000000;
  margin: 0 0 21px; }
  .main__content-title span {
    position: relative;
    display: inline-block; }
    @media (max-width: 1023px) {
      .main__content-title span::before {
        content: "";
        display: block;
        position: absolute;
        width: 62px;
        height: 73px;
        right: -84px;
        top: -9px;
        background: url("../images/emblem.png") no-repeat;
        background-size: cover; } }
  @media (max-width: 1023px) {
    .main__content-title {
      font-size: 70px;
      line-height: 70px;
      margin: 0; } }
  @media (max-width: 767px) {
    .main__content-title {
      font-size: 60px;
      line-height: 60px; }
      .main__content-title span::before {
        width: 45px;
        height: 53px;
        right: -65px;
        top: 0; } }
  @media screen and (max-width: 359px) {
    .main__content-title {
      font-size: 50px; } }

.main__content-subtitle {
  color: #000000;
  font: 500 26px/40px "Onest", sans-serif; }
  .main__content-subtitle span {
    position: relative;
    display: inline-block; }
    .main__content-subtitle span::before {
      width: 62px;
      height: 73px;
      right: -104px;
      top: 4px;
      background: url("../images/emblem.png") no-repeat;
      background-size: cover; }
  @media (max-width: 1365px) {
    .main__content-subtitle span::before {
      right: -84px; } }
  @media (max-width: 1023px) {
    .main__content-subtitle {
      font-size: 20px;
      line-height: 34px; }
      .main__content-subtitle span::before {
        display: none; } }
  @media (max-width: 767px) {
    .main__content-subtitle {
      font-size: 18px;
      line-height: 26px;
      margin-top: 5px; } }

.main__content-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 77px; }
  @media screen and (min-width: 1024px) {
    .main__content-right {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      min-width: 1px; } }
  @media (max-width: 1023px) {
    .main__content-right {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center;
      width: 100%;
      padding-top: 0; } }

.main__content-mln {
  font: 500 130px/130px "Onest", sans-serif;
  padding-right: 8px;
  color: #000000;
  white-space: nowrap; }
  .main__content-mln span {
    padding-right: 16px;
    display: inline-block;
    position: relative; }
    .main__content-mln span::before {
      content: "+";
      position: absolute;
      right: 0;
      top: -2px;
      background: #df3838;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      text-align: center;
      color: #fff;
      font: 70px/70px "Onest", sans-serif;
      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; }
  @media (max-width: 1365px) {
    .main__content-mln {
      font-size: 110px;
      padding-right: 0; } }
  @media (max-width: 1023px) {
    .main__content-mln {
      font-size: 100px;
      line-height: 100px; }
      .main__content-mln span {
        padding-right: 0; }
        .main__content-mln span::before {
          width: 30px;
          height: 30px;
          font-size: 35px;
          line-height: 35px;
          top: 12px;
          right: -11px; } }

.main__content-audit {
  font: 300 15px/22px "Onest", sans-serif;
  color: #000000; }
  @media (max-width: 1365px) {
    .main__content-audit {
      font-size: 13px; } }
  @media (max-width: 1023px) {
    .main__content-audit {
      line-height: 18px;
      font-weight: 500; } }

.section-two {
  margin-top: -74px;
  z-index: 2; }
  @media (max-width: 1023px) {
    .section-two {
      margin-top: 30px; } }

.placement__methods {
  background: #151518;
  border-radius: 40px; }
  @media (max-width: 1365px) {
    .placement__methods {
      border-radius: 20px; } }

.placement__methods-content {
  padding: 61px 0 70px; }
  @media (max-width: 1365px) {
    .placement__methods-content {
      padding: 30px 0 40px; } }
  @media (max-width: 1023px) {
    .placement__methods-content {
      padding-bottom: 80px; } }
  @media (max-width: 767px) {
    .placement__methods-content {
      padding-bottom: 70px; } }

.placement__methods-title {
  text-align: center;
  font: 500 24px/36px "Onest", sans-serif;
  color: #fff;
  margin-bottom: 22px; }
  .placement__methods-title span {
    display: inline-block;
    border-radius: 19px;
    padding: 0 13px 2px;
    background: #df3838; }
  @media (max-width: 1023px) {
    .placement__methods-title {
      font-size: 20px;
      line-height: 30px;
      padding: 0 10px; }
      .placement__methods-title span {
        border-radius: 15px; } }

.placement__methods-text {
  text-align: center;
  margin-bottom: 43px; }
  .placement__methods-text p {
    color: #a7a7a8;
    font-size: 15px;
    line-height: 25px; }
  @media (max-width: 1023px) {
    .placement__methods-text {
      padding: 0 10px; } }

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

.placement__methods-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px; }
  @media (max-width: 1599px) {
    .placement__methods-slider {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1365px) {
    .placement__methods-slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1023px) {
    .placement__methods-slider {
      margin-left: 0;
      margin-right: 0; }
      .placement__methods-slider:not(.slick-initialized) .placement__methods-col:not(:first-child) {
        display: none; }
      .placement__methods-slider:not(.slick-initialized) .placement__methods-col:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .placement__methods-slider.slick-initialized .placement__methods-col {
        height: 100%; }
      .placement__methods-slider .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .placement__methods-slider .slick-slide {
        height: auto; }
        .placement__methods-slider .slick-slide > div {
          height: 100%; } }
  @media (max-width: 767px) {
    .placement__methods-slider:not(.slick-initialized) .placement__methods-col:nth-child(2) {
      display: none; } }

.placement__methods-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 33.33333333%;
  padding-left: 25px;
  padding-right: 25px; }
  @media (max-width: 1599px) {
    .placement__methods-col {
      padding-left: 12px;
      padding-right: 12px; } }
  @media (max-width: 1365px) {
    .placement__methods-col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1023px) {
    .placement__methods-col {
      width: 50%; } }
  @media (max-width: 767px) {
    .placement__methods-col {
      width: 100%;
      padding-left: 5px;
      padding-right: 5px; } }

.placement__methods-block {
  border: 1px solid #aacee4;
  border-radius: 30px;
  background: #fff;
  padding: 40px 40px 33px; }
  @media (max-width: 1365px) {
    .placement__methods-block {
      border-radius: 15px;
      padding: 15px 15px 18px; } }
  @media (max-width: 1023px) {
    .placement__methods-block {
      height: 100%; } }

.placement__methods-icon {
  margin-bottom: 34px; }
  .placement__methods-icon img {
    width: 28px; }
  @media (max-width: 1365px) {
    .placement__methods-icon {
      margin-bottom: 24px; } }

.placement__methods-slide__title {
  font: 500 20px/24px "Onest", sans-serif;
  color: #000000;
  margin-bottom: 28px; }
  @media (max-width: 1365px) {
    .placement__methods-slide__title {
      margin-bottom: 18px; } }

.placement__methods-slide__text {
  opacity: 0.7; }

.slider-style .slick-prev, .slider-style .slick-next {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  z-index: 5;
  top: inherit;
  bottom: -70px;
  height: 50px;
  width: 50px; }
  .slider-style .slick-prev::before, .slider-style .slick-next::before {
    font-size: 35px;
    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;
    padding-top: 4px; }

.slider-style .slick-prev {
  left: calc(50% - 70px); }

.slider-style .slick-next {
  right: calc(50% - 70px); }

@media (max-width: 767px) {
  .slider-style .slick-prev, .slider-style .slick-next {
    bottom: -60px; } }

.section-three {
  padding: 62px 0 0; }
  @media (max-width: 1023px) {
    .section-three {
      padding-top: 30px; } }
  .section-three .scroll-block {
    top: -100px; }
    @media (max-width: 1023px) {
      .section-three .scroll-block {
        top: -70px; } }

.block__text {
  margin-bottom: 20px; }
  .block__text p {
    font-size: 15px;
    line-height: 25px;
    opacity: 0.7; }
  @media (max-width: 1365px) {
    .block__text p br {
      display: none; } }

.solution__container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 33px; }
  @media (max-width: 1023px) {
    .solution__container {
      margin-top: 10px; } }

.solution__content {
  max-width: 990px;
  background: #f1f8fc;
  padding: 21px 45px 29px;
  border-radius: 40px; }
  @media (max-width: 1365px) {
    .solution__content {
      border-radius: 20px;
      padding: 11px 25px 19px; } }
  @media (max-width: 1023px) {
    .solution__content {
      padding: 10px 10px 10px; } }

.solution__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 1599px) {
    .solution__row {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1365px) {
    .solution__row {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 767px) {
    .solution__row {
      margin-left: 0;
      margin-right: 0; } }

.solution__col {
  width: 50%;
  display: block;
  float: left;
  padding-left: 25px;
  padding-right: 25px;
  margin: 15px 0 16px; }
  @media (max-width: 1599px) {
    .solution__col {
      padding-left: 12px;
      padding-right: 12px; } }
  @media (max-width: 1365px) {
    .solution__col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1023px) {
    .solution__col {
      margin: 10px 0; } }
  @media (max-width: 767px) {
    .solution__col {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }

.solution__block-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px; }

.solution__block-img__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #0084d0; }

.solution__block-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 18px;
  padding-top: 10px; }

.solution__block-content__title {
  font: 500 16px/20px "Onest", sans-serif;
  color: #000000;
  margin-bottom: 11px; }

.solution__block-content__text {
  opacity: 0.7; }
  .solution__block-content__text p {
    font-size: 13px;
    line-height: 20px; }

.icon-solution-1 img {
  width: 24px; }

.icon-solution-2 img {
  width: 23px; }

.icon-solution-3 img {
  width: 24px; }

.icon-solution-4 img {
  width: 23px; }

.section-four {
  padding-top: 63px;
  z-index: 2; }
  @media (max-width: 1023px) {
    .section-four {
      padding-top: 30px; } }

.triggers__content {
  margin-top: 35px; }
  .triggers__content .placement__methods-slider {
    margin-bottom: 43px; }
  @media (max-width: 1023px) {
    .triggers__content .placement__methods-slider {
      margin-bottom: 83px; } }
  @media (max-width: 767px) {
    .triggers__content {
      margin-top: 20px; } }

.block__action {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 13px; }

.triggers-slider .slick-prev::before, .triggers-slider .slick-next::before {
  color: #0084d0; }

.section-five {
  padding-top: 176px; }
  .section-five .block__title {
    margin-bottom: 17px; }
  @media (max-width: 1365px) {
    .section-five .block__text {
      max-width: 750px; } }
  @media (max-width: 1023px) {
    .section-five {
      padding-top: 30px; } }
  @media (max-width: 1023px) {
    .section-five .scroll-block {
      top: -70px; } }
  @media (max-width: 767px) {
    .section-five .scroll-block {
      top: -40px; } }

.channel-bg {
  position: absolute;
  right: calc(50% - 774px);
  top: 22px;
  width: 873px; }
  @media (max-width: 1023px) {
    .channel-bg {
      display: none; } }

.channel__container {
  position: relative;
  z-index: 3;
  margin-top: 28px; }
  @media (max-width: 1023px) {
    .channel__container {
      margin-top: 0; } }

.channel__content {
  max-width: 960px; }
  @media (max-width: 1365px) {
    .channel__content {
      max-width: 100%; } }

.channel__slider {
  margin-left: -15px;
  margin-right: -15px; }
  @media (max-width: 1365px) {
    .channel__slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1023px) {
    .channel__slider {
      margin-left: 0;
      margin-right: 0; }
      .channel__slider:not(.slick-initialized) .channel__col:not(:first-child) {
        display: none; }
      .channel__slider:not(.slick-initialized) .channel__col:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
  @media (max-width: 767px) {
    .channel__slider:not(.slick-initialized) .channel__col:nth-child(2) {
      display: none; } }

.channel__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33.33333333%;
  padding-left: 15px;
  padding-right: 15px; }
  @media (max-width: 1365px) {
    .channel__col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1023px) {
    .channel__col {
      width: 50%; } }
  @media (max-width: 767px) {
    .channel__col {
      width: 100%;
      padding-left: 5px;
      padding-right: 5px; } }

.channel__block {
  background: #fff;
  position: relative;
  border: 1px solid #aacee4;
  border-radius: 20px;
  padding: 19px 24px 19px 19px;
  margin: 15px 0; }
  @media (max-width: 1365px) {
    .channel__block {
      border-radius: 15px; } }
  @media (max-width: 1023px) {
    .channel__block {
      padding: 15px 15px 15px 10px; } }

.channel__block-label {
  position: absolute;
  white-space: nowrap;
  right: -1px;
  top: -9px;
  z-index: 2;
  height: 17px;
  border-radius: 8.5px;
  background: #0084d0;
  padding: 0 9px;
  font: 300 12px/17px "Onest", sans-serif;
  color: #fff; }

.channel__block-logo {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0; }
  .channel__block-logo img {
    border-radius: 50%; }

.channel__block-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 20px; }

.channel__block-title {
  font: 500 16px/18px "Onest", sans-serif;
  color: #000000;
  margin-bottom: 7px; }

.channel__block-text {
  opacity: 0.7; }
  .channel__block-text div {
    overflow: hidden;
    max-height: 36px;
    line-height: 18px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: normal; }
  .channel__block-text p {
    font-size: 12px;
    line-height: 18px; }

.section-six {
  padding-top: 121px; }
  @media screen and (min-width: 1024px) {
    .section-six {
      z-index: 5; } }
  @media (max-width: 1023px) {
    .section-six {
      padding-top: 90px; } }
  .section-six .scroll-block {
    top: -50px; }
    @media (max-width: 1023px) {
      .section-six .scroll-block {
        top: 0; } }

.rates__container {
  margin-top: 39px;
  margin-bottom: 65px; }
  @media (max-width: 1023px) {
    .rates__container {
      margin-bottom: 30px; } }

.rates__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px; }
  @media (max-width: 1599px) {
    .rates__row {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1365px) {
    .rates__row {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 767px) {
    .rates__row {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-left: 0;
      margin-right: 0; } }

.rates__col {
  width: 50%;
  padding-left: 25px;
  padding-right: 25px; }
  @media (max-width: 1599px) {
    .rates__col {
      padding-left: 12px;
      padding-right: 12px; } }
  @media (max-width: 1365px) {
    .rates__col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 767px) {
    .rates__col {
      width: 100%;
      padding: 0; }
      .rates__col:not(:last-child) {
        margin-bottom: 40px; } }

.rates__block {
  position: relative;
  height: 100%; }
  .rates__block::before, .rates__block::after {
    border-radius: 30px;
    height: 100px; }
  .rates__block::before {
    background: #f1f8fc;
    top: -20px;
    width: calc(100% - 76px);
    left: 38px; }
  .rates__block::after {
    background: #e4f2f9;
    top: -10px;
    width: calc(100% - 34px);
    left: 17px;
    z-index: 1; }
  @media (max-width: 1365px) {
    .rates__block::before, .rates__block::after {
      border-radius: 15px; }
    .rates__block::after {
      width: calc(100% - 20px);
      left: 10px; }
    .rates__block::before {
      width: calc(100% - 40px);
      left: 20px; } }

.rates__block-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 1px solid #aacee4;
  border-radius: 30px;
  padding: 43px 50px 48px 49px;
  position: relative;
  z-index: 2; }
  @media (max-width: 1365px) {
    .rates__block-content {
      border-radius: 15px;
      padding: 23px 30px 28px 29px; } }
  @media (max-width: 1023px) {
    .rates__block-content {
      padding: 15px; } }
  @media (max-width: 767px) {
    .rates__block-content {
      padding: 15px 10px; } }

.rates__block-top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.rates__block-header {
  margin-bottom: 1px; }
  @media (max-width: 1023px) {
    .rates__block-header {
      margin-bottom: 15px; } }

.rates__block-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-right: 10px;
  font: 500 46px/46px "Onest", sans-serif;
  color: #000000; }
  @media (max-width: 1023px) {
    .rates__block-title {
      font-size: 36px;
      line-height: 40px; } }
  @media (max-width: 767px) {
    .rates__block-title {
      font-size: 30px;
      line-height: 34px; } }

.rates__block-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 58px;
  height: 58px; }
  @media (max-width: 1023px) {
    .rates__block-logo {
      width: 38px;
      height: 38px; } }

.rates__block-coverage {
  margin-bottom: 22px; }
  @media (max-width: 1023px) {
    .rates__block-coverage {
      margin-bottom: 15px; } }

.rates__block-coverage-label {
  white-space: nowrap;
  border-radius: 15px;
  background: #0084d0;
  display: inline-block;
  padding: 0 16px;
  height: 30px;
  font: 500 14px/28px "Onest", sans-serif;
  color: #fff; }
  @media (max-width: 1023px) {
    .rates__block-coverage-label {
      font-size: 12px;
      line-height: 28px;
      height: 28px;
      padding: 0 12px; } }

.rates__block-bottom {
  margin-top: 20px;
  white-space: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.rates__block-price {
  font: 500 20px/20px "Onest", sans-serif;
  color: #000000; }
  @media (max-width: 1023px) {
    .rates__block-price {
      font-size: 18px;
      line-height: 18px; } }

.rates__block-price__two {
  font: 300 12px/12px "Onest", sans-serif;
  color: #000000;
  opacity: 0.5;
  padding-left: 20px;
  padding-bottom: 2px; }

.rates__small-text {
  margin-bottom: 45px; }
  .rates__small-text p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px; }
  @media (max-width: 1023px) {
    .rates__small-text p {
      font-size: 18px; } }

.rates__small-content {
  margin-bottom: 50px; }
  @media screen and (max-width: 1365px) and (min-width: 1024px) {
    .rates__small-content {
      overflow-x: auto;
      width: calc(100% + 20px); } }
  @media (max-width: 1023px) {
    .rates__small-content {
      margin-bottom: 90px; } }

.rates__small-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -18.5px;
  margin-right: -18.5px; }
  @media (max-width: 1599px) {
    .rates__small-row {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1023px) {
    .rates__small-row {
      margin-left: 0;
      margin-right: 0; }
      .rates__small-row:not(.slick-initialized) .rates__small-col:not(:first-child) {
        display: none; }
      .rates__small-row:not(.slick-initialized) .rates__small-col:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .rates__small-row.slick-initialized .rates__small-col {
        height: 100%; }
      .rates__small-row .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .rates__small-row .slick-slide {
        height: auto; }
        .rates__small-row .slick-slide > div {
          height: 100%; } }
  @media (max-width: 767px) {
    .rates__small-row:not(.slick-initialized) .rates__small-col:nth-child(2) {
      display: none; } }

.rates__small-col {
  width: 25%;
  padding-left: 18.5px;
  padding-right: 18.5px; }
  @media (max-width: 1599px) {
    .rates__small-col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1365px) {
    .rates__small-col {
      width: 320px; } }
  @media (max-width: 1023px) {
    .rates__small-col {
      width: 50%; } }
  @media (max-width: 767px) {
    .rates__small-col {
      width: 100%;
      padding-left: 5px;
      padding-right: 5px; } }

.rates__small-block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 30px;
  background: #f1f8fc;
  padding: 37px 30px 38px; }
  @media (max-width: 1365px) {
    .rates__small-block {
      padding: 27px 20px 28px;
      border-radius: 15px; } }
  @media (max-width: 1023px) {
    .rates__small-block {
      padding: 15px; } }
  @media (max-width: 767px) {
    .rates__small-block {
      padding: 15px 10px; } }

.rates__small-block__top {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.rates__small-title {
  font: 500 30px/32px "Onest", sans-serif;
  color: #000000;
  margin-bottom: 14px; }
  @media (max-width: 1023px) {
    .rates__small-title {
      font-size: 26px; } }

.rates__small-coverage {
  margin-bottom: 22px; }
  @media (max-width: 1023px) {
    .rates__small-coverage {
      margin-bottom: 15px; } }

.rates__small-coverage__label {
  white-space: nowrap;
  border-radius: 15px;
  background: #fff;
  display: inline-block;
  padding: 0 16px;
  height: 30px;
  font: 500 14px/28px "Onest", sans-serif;
  color: #151518;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(87, 140, 194, 0.21);
          box-shadow: 0px 0px 16px 0px rgba(87, 140, 194, 0.21); }
  @media (max-width: 1023px) {
    .rates__small-coverage__label {
      font-size: 12px;
      line-height: 28px;
      height: 28px;
      padding: 0 12px; } }

.rates__small-block__bottom {
  margin-top: 21px;
  white-space: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.rates__small-block__price {
  font: 500 16px/16px "Onest", sans-serif;
  color: #000000; }

.rates__small-block__price--two {
  font: 300 12px/12px "Onest", sans-serif;
  color: #000000;
  opacity: 0.5;
  padding-left: 20px; }

.rates__small-action {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.section-seven {
  padding-top: 70px; }
  .section-seven .scroll-block {
    top: -100px; }
    @media (max-width: 1023px) {
      .section-seven .scroll-block {
        top: -40px; } }

.cases__container {
  position: relative;
  border-radius: 40px;
  background: #151518 url("../images/cases-bg.png") no-repeat center 37px;
  padding: 62px 0 50px; }
  .cases__container .block__title h2, .cases__container .block__title h3 {
    color: #fff; }
  @media (max-width: 1023px) {
    .cases__container {
      padding-bottom: 80px;
      padding-top: 30px; }
      .cases__container .block__title {
        padding: 0 10px; } }
  @media (max-width: 767px) {
    .cases__container {
      padding-bottom: 70px; } }

.cases__content {
  margin-top: 40px; }
  @media (max-width: 1023px) {
    .cases__content {
      margin-top: 10px;
      padding: 0 10px; } }

.cases__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -25px;
  margin-right: -25px; }
  @media (max-width: 1599px) {
    .cases__slider {
      margin-left: -12px;
      margin-right: -12px; } }
  @media (max-width: 1365px) {
    .cases__slider {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1023px) {
    .cases__slider {
      margin-left: 0;
      margin-right: 0; }
      .cases__slider:not(.slick-initialized) .case__col:not(:first-child) {
        display: none; }
      .cases__slider:not(.slick-initialized) .case__col:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .cases__slider.slick-initialized .case__col {
        height: 100%; }
      .cases__slider .slick-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .cases__slider .slick-slide {
        height: auto; }
        .cases__slider .slick-slide > div {
          height: 100%; } }
  @media (max-width: 767px) {
    .cases__slider:not(.slick-initialized) .case__col:nth-child(2) {
      display: none; } }

.case__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  width: 33.33333333%;
  padding-left: 25px;
  padding-right: 25px; }
  @media (max-width: 1599px) {
    .case__col {
      padding-left: 12px;
      padding-right: 12px; } }
  @media (max-width: 1365px) {
    .case__col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1023px) {
    .case__col {
      width: 50%; } }
  @media (max-width: 767px) {
    .case__col {
      width: 100%;
      padding-left: 5px;
      padding-right: 5px; } }

.case__block {
  background: #151518;
  border: 1px solid #333a41;
  border-radius: 30px;
  padding: 33px 29px 40px 39px; }
  @media (max-width: 1365px) {
    .case__block {
      padding: 23px 17px 20px;
      border-radius: 15px; } }
  @media (max-width: 1023px) {
    .case__block {
      height: 100%; } }
  @media (max-width: 767px) {
    .case__block {
      padding: 15px 10px; } }

.case__block-header {
  margin-bottom: 19px; }

.case__block-header__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
  color: #ffc923;
  font: 500 46px/46px "Onest", sans-serif; }

.case__block-header__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 19px;
  font: 300 13px/20px "Onest", sans-serif;
  opacity: 0.7;
  color: #fff; }

.case__block-title {
  color: #fff;
  font: 500 20px/22px "Onest", sans-serif;
  margin-bottom: 26px; }

.case__block-list li:not(:last-child) {
  margin-bottom: 14px; }

.case__list-label {
  -ms-flex-negative: 0;
      flex-shrink: 0; }

.case__list-label__text {
  width: 83px;
  height: 26px;
  text-align: center;
  padding: 0 5px;
  white-space: nowrap;
  display: inline-block;
  color: #fff;
  font: 300 14px/24px "Onest", sans-serif;
  border-radius: 13px; }
  .case__list-label__text.is-task {
    background: #333a41; }
  .case__list-label__text.is-decision {
    background: #0084d0; }
  .case__list-label__text.is-result {
    background: #8ad025; }

.case__list-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 1px;
  padding-left: 9px;
  font: 300 14px/20px "Onest", sans-serif;
  color: #fff;
  opacity: 0.7;
  padding-top: 2px; }

.section-eight {
  padding: 60px 0 0; }

.collapse__container {
  margin-top: 25px; }
  @media (max-width: 767px) {
    .collapse__container {
      margin-top: 10px; } }

.collapse__row {
  margin-left: -20px;
  margin-right: -20px; }
  @media (max-width: 1599px) {
    .collapse__row {
      margin-left: -10px;
      margin-right: -10px; } }
  @media (max-width: 1023px) {
    .collapse__row {
      margin-left: 0;
      margin-right: 0; } }

.collapse__col {
  display: block;
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  float: left; }
  @media (max-width: 1599px) {
    .collapse__col {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (max-width: 1023px) {
    .collapse__col {
      padding-left: 0;
      padding-right: 0;
      width: 100%; } }

.collapse__block {
  border-radius: 15px;
  background: #fff;
  border: 1px solid #aacee4;
  margin: 10px 0; }
  .collapse__block.is-active .collapse__btn::before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

.collapse__btn {
  cursor: pointer;
  color: #000000;
  padding: 19px 58px 19px 28px;
  font: 500 18px/20px "Onest", sans-serif;
  position: relative; }
  .collapse__btn::before {
    background: url("../images/icons/svg/icon-arrow-blue.svg") no-repeat;
    right: 28px;
    top: 26px;
    width: 20px;
    height: 8px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; }
  @media (max-width: 1365px) {
    .collapse__btn {
      padding: 15px 48px 15px 18px; }
      .collapse__btn::before {
        right: 18px;
        top: 22px; } }
  @media (max-width: 767px) {
    .collapse__btn {
      padding: 10px 28px 10px 10px;
      font-size: 16px;
      line-height: 20px; }
      .collapse__btn::before {
        right: 10px;
        top: 50%;
        margin-top: -4px; } }

.collapse__text {
  padding: 0 28px 24px 28px;
  display: none; }
  .collapse__text p {
    font-size: 16px;
    line-height: 25px; }
  @media (max-width: 1365px) {
    .collapse__text {
      padding: 0 18px 14px 18px; } }
  @media (max-width: 767px) {
    .collapse__text {
      padding: 0 10px 10px; }
      .collapse__text p {
        font-size: 14px;
        line-height: 20px; } }

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