/*!
 * rustemtastanov@gmail.com, 2019
 */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container:before, .container:after {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
}

.container-fluid {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: " ";
}

.container-fluid:after {
  clear: both;
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}

main .row:before, main .row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}

@-ms-viewport {
  width: device-width;
}

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

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

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

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

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

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

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

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

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}

.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("/indicators/fonts/HelveticaNeueCyrRoman.woff2") format("woff2"), url("/indicators/fonts/HelveticaNeueCyrRoman.woff") format("woff"), url("/indicators/fonts/HelveticaNeueCyrRoman.ttf") format("truetype");
  font-weight: normal;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("/indicators/fonts/HelveticaNeueCyrBold.woff2") format("woff2"), url("/indicators/fonts/HelveticaNeueCyrBold.woff") format("woff"), url("/indicators/fonts/HelveticaNeueCyrBold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("/indicators/fonts/HelveticaNeueCyrMedium.woff2") format("woff2"), url("/indicators/fonts/HelveticaNeueCyrMedium.woff") format("woff"), url("/indicators/fonts/HelveticaNeueCyrMedium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("/indicators/fonts/HelveticaNeueCyrLight.woff2") format("woff2"), url("/indicators/fonts/HelveticaNeueCyrLight.woff") format("woff"), url("/indicators/fonts/HelveticaNeueCyrLight.ttf") format("truetype");
  font-weight: 300;
}

.page--indicators {
  position: relative;
}

.page--indicators::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -51px;
  z-index: -1;
  pointer-events: none;
  left: 50%;
  width: 100%;
  background-image: url(/indicators/images/page-pattern.svg);
  background-repeat: repeat-y;
  background-position: 50% 0;
  background-size: 100% auto;
  transform: translateX(-50%);
  opacity: .05;
}

.page--indicators .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.section--indicators {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  z-index: 21;
  /*font-family: "Helvetica Neue";*/
}

.section--indicators:not(:first-child) {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}

.section--indicators .line-h-bottom,
.section--indicators .line-h-top,
.section--indicators .line-h-center {
  position: relative;
}

.section--indicators .line-h-bottom::before,
.section--indicators .line-h-top::before,
.section--indicators .line-h-center::before {
  content: '';
  position: absolute;
  left: -100%;
  right: -100%;
  border: 0 solid rgba(112, 112, 112, 0.1);
  pointer-events: none;
}

.section--indicators .line-h-bottom::before {
  bottom: 0;
  border-bottom-width: 1px;
}

.section--indicators .line-h-top::before {
  top: 0;
  border-top-width: 1px;
}

.section--indicators .line-h-center::before {
  top: 50%;
  border-top-width: 1px;
}

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

.section--indicators .img--inline {
  display: inline-block;
}

.section--indicators .btn {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  font-weight: normal;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  outline: none !important;
  text-decoration: none !important;
  line-height: 1.428571428571429;
  line-height: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  background-image: none;
  text-align: center;
  border: 1px solid transparent;
  font-size: 12px;
  transition-property: box-shadow, background-color, color;
  transition-duration: .2s;
  padding: 11px 24px;
  position: relative;
  letter-spacing: .06em;
  border-radius: 19px;
  font-family: "Helvetica Neue";
}

.section--indicators .btn > * {
  display: inline-block;
  vertical-align: middle;
}

.section--indicators .btn:active:not([disabled]), .section--indicators .btn.active:not([disabled]) {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.section--indicators .btn--white {
  color: black;
  border-color: black;
}

.section--indicators .btn--white:hover, .section--indicators .btn--white.active, .section--indicators .btn--white:active, .section--indicators .btn--white:focus, .section--indicators .btn--white:active:focus {
  color: white;
  background: #631FFF;
  border-color: #631FFF;
}

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

.section--indicators p {
  margin-bottom: 36px;
}

.section--indicators .list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-weight: 300;
}

.section--indicators .list li {
  margin: 0 0 18px;
  padding: 0;
  position: relative;
}

.section--indicators .list li::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 9px;
  width: 6px;
  height: 2px;
  background: #7f7f7f;
}

.section--indicators .block-table {
  display: table;
  width: 100%;
  height: 100%;
}

.section--indicators .block-cell {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  position: relative;
}

.section--indicators .block-title {
  position: relative;
}

.section--indicators .block-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  background: rgba(248, 248, 248, 0.5);
  z-index: -1;
  pointer-events: none;
}

.section--indicators .block-title::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -1px;
  width: 23px;
  height: 3px;
  background: #631FFF;
}

.section--indicators .block-title .block-table {
  height: 170px;
}

.section--indicators .block-title .block-cell {
  top: 2px;
}

.section--indicators .block-title p {
  font-size: 12px;
}

.section--indicators .block-title h4, .section--indicators .block-title p {
  margin: 0 0 0 37px;
}

.section--indicators .block-title p {
  position: relative;
  top: 3px;
  margin-top: 4px;
}

.section--indicators .block-in {
  padding: 0 40px;
}

.section--indicators .block-img {
  position: relative;
}

.section--indicators .section-head {
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid black;
}

.section--indicators .section-head::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-size: cover;
  background-position: 50% 50%;
}

.section--indicators .section-body {
  display: none;
}

.section--indicators .section-footer {
  background: rgba(126, 126, 126, 0.5);
  color: white;
  cursor: pointer;
  font-size: 12px;
  line-height: 40px;
  height: 40px;
  letter-spacing: .02em;
  display: none;
  border-bottom: 1px solid black;
}

.section--indicators .section-footer .icon-toggle {
  background-size: 100% 100%;
  background-image: url(/indicators/images/icon-toggle.png);
  width: 9px;
  height: 5px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 17px;
  top: -1px;
  position: relative;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .section--indicators .section-footer .icon-toggle {
    background-image: url(/indicators/images/icon-toggle@2x.png);
  }
}

.section--indicators .section-title {
  position: relative;
  width: 628px;
}

.section--indicators .section-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 0;
  background: rgba(99, 31, 255, 0);
  pointer-events: none;
  z-index: 0;
  transition: background .3s ease-out, transform .4s;
  transform: translateX(10%);
}

.section--indicators .section-title .title-3 {
  left: 35px;
}

.section--indicators .block-head-table {
  height: 70vh;
  max-height: 596px;
}

.section--indicators .block-head-cell {
  top: 2px;
}

.section--indicators .block-title-table {
  height: 314px;
}

.section--indicators .block-title-cell {
  top: -4px;
}

.section--indicators .title-3 {
  position: relative;
  z-index: 1;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: .02em;
  font-weight: 700;
}

.section--indicators:not(.section--open):hover .title-3, .section--indicators.section--open .title-3 {
  color: white;
}

.section--indicators:not(.section--open):hover .section-title::before, .section--indicators.section--open .section-title::before {
  background: rgba(99, 31, 255, 0.9);
  transform: translateX(0);
}

.section--indicators.section--open .section-head {
  cursor: default;
}

.section--indicators.section--open .section-footer {
  display: block;
}

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

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

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

.section--indicators .text--uppercase {
  text-transform: uppercase;
}

.section--indicators .text--violet {
  color: #631FFF;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .page--indicators::before,
  .page--indicators .container {
    max-width: 1140px;
  }
}

/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  .page--indicators::before,
  .page--indicators .container {
    max-width: 960px;
  }
}

/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .page--indicators::before {
    max-width: 732px;
  }
  .page--indicators .container {
    max-width: 740px;
  }
  .section--indicators .section-head::before {
    opacity: .3;
  }
  .section--indicators .section-title {
    width: 428px;
  }
  .section--indicators .block-head-table {
    height: 496px;
  }
  .section--indicators .block-title-table {
    height: 240px;
  }
  .section--indicators .title-3 {
    font-size: 40px;
    line-height: 47px;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .page--indicators::before {
    width: auto;
    left: 35px;
    right: 35px;
    bottom: 0;
    opacity: .2;
    transform: none;
  }
  .page--indicators [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
  .page--indicators .container {
    padding-left: 37px;
    padding-right: 37px;
  }
  .section--indicators {
    margin-bottom: 15px;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
  }
  .section--indicators:last-child {
    margin-bottom: 0;
  }
  .section--indicators .section-head::before {
    opacity: .1;
  }
  .section--indicators .btn {
    font-size: 9px;
    padding: 8px 15px;
  }
  .section--indicators p {
    margin-bottom: 32px;
  }
  .section--indicators .list li {
    padding-left: 20px;
  }
  .section--indicators .list li::before {
    left: 0;
    top: 6px;
    width: 4px;
    height: 1px;
  }
  .section--indicators .block-title .block-table {
    height: 60px;
  }
  .section--indicators .block-title p {
    font-size: 8px;
  }
  .section--indicators .block-title h4 {
    font-size: 16px;
  }
  .section--indicators .block-title h4, .section--indicators .block-title p {
    margin-left: 0;
  }
  .section--indicators .block-title p {
    top: -1px;
    margin-top: 0;
  }
  .section--indicators .block-in {
    padding: 0;
  }
  .section--indicators .section-footer {
    font-size: 11px;
    text-align: left;
  }
  .section--indicators .section-footer .icon-toggle {
    margin: 0 6px 0 10px;
  }
  .section--indicators .section-title {
    width: auto;
    text-align: center;
  }
  .section--indicators .section-title::before {
    right: -100%;
  }
  .section--indicators .section-title .title-3 {
    left: auto;
    margin: 0 auto;
    max-width: 160px;
  }
  .section--indicators .block-head-table {
    height: 154px;
  }
  .section--indicators .block-head-cell {
    top: auto;
  }
  .section--indicators .block-title-table {
    min-height: 60px;
    height: auto;
  }
  .section--indicators .block-title-cell {
    top: auto;
    padding: 20px 0;
  }
  .section--indicators .title-3 {
    font-size: 16px;
    line-height: 18px;
  }
  .section--indicators.section--open .section-head::before {
    opacity: 1;
  }
}

/* section About */
/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
@media (min-width: 768px) {
  .section--about .section-head::before {
    background-image: url(/indicators/images/section-about-bg-sh.jpg);
  }
}

@media all and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), all and (min-width: 768px) and (-o-min-device-pixel-ratio: 3 / 2), all and (min-width: 768px) and (min--moz-device-pixel-ratio: 1.5), all and (min-width: 768px) and (min-device-pixel-ratio: 1.5) {
  .section--about .section-head::before {
    background-image: url(/indicators/images/section-about-bg-sh.jpg);
  }
}

/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section--about .section-head::before {
    background-image: url(/indicators/images/section-about-bg-sh.jpg);
  }
}

@media all and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), all and (max-width: 767px) and (-o-min-device-pixel-ratio: 3 / 2), all and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.5), all and (max-width: 767px) and (min-device-pixel-ratio: 1.5) {
  .section--about .section-head::before {
    background-image: url(/indicators/images/section-about-bg-sh.jpg);
  }
}

.block--about {
  padding: 84px 0 50px;
  letter-spacing: .06em;
}

.block--about .block-text {
  max-width: 470px;
}

.block--about .block-img {
  left: 18px;
}

.block--about b {
  font-weight: 500;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--about {
    padding: 68px 0 5px;
  }
  .block--about .block-text {
    max-width: 270px;
    margin: 0 auto;
  }
  .block--about .block-img {
    left: auto;
    margin-bottom: 63px;
  }
  .block--about .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .block--about [class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.block--benefits {
  position: relative;
  letter-spacing: .06em;
  padding-bottom: 133px;
}

.block--benefits .block-title {
  margin-bottom: 87px;
}

.block--benefits .block-in {
  max-width: 1104px;
  padding: 0;
}

.block--benefits .row {
  margin-left: -8.25px;
  margin-right: -8.25px;
  margin-bottom: 25px;
}

.block--benefits .row--1 .line-h-bottom::before {
  bottom: 60px;
}

.block--benefits .row--1 .item-title::after {
  bottom: 59px;
}

.block--benefits [class^="col-"] {
  padding-left: 8.25px;
  padding-right: 8.25px;
}

.block--benefits .items-list {
  margin-top: -12px;
}

.block--benefits .items-list .item-title {
  min-height: 0;
}

.block--benefits h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 36px;
}

.block--benefits .stat {
  padding: 25px 38px 24px;
  min-height: 122px;
}

.block--benefits .stat-value {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 16px;
}

.block--benefits .stat-text {
  line-height: 16px;
  font-weight: 300;
}

.block--benefits .item-title {
  font-size: 14px;
  line-height: 56px;
  letter-spacing: .06em;
  font-weight: 500;
  position: relative;
  padding: 0 37px 17px;
  margin-bottom: 25px;
  min-height: 75px;
}

.block--benefits .item-title::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -1px;
  width: 23px;
  height: 3px;
  background: black;
  z-index: 1;
}

.block--benefits .item-title > div {
  line-height: 24px;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
}

.block--benefits .item-title h4 {
  letter-spacing: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 2px;
}

.block--benefits .item-title strong {
  font-weight: 700;
  color: #631FFF;
}

.block--benefits .item-title p {
  margin-bottom: 0;
}

.block--benefits .item-text {
  padding: 26px 38px 29px;
  letter-spacing: .06em;
}

.block--benefits .item-text b {
  font-weight: 500;
}

.block--benefits .item-text small {
  font-size: 13px;
  font-weight: 300;
}

.block--benefits .item-text p {
  margin-bottom: 18px;
}

.block--benefits .item-text p:last-child {
  margin-bottom: 0;
}

.block--benefits .item-block {
  line-height: 24px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 34px 38px 27px;
}

.block--benefits .item-block h5 {
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 4px;
  letter-spacing: 0;
}

.block--benefits .item-block p {
  margin-bottom: 0;
}

.block--benefits .item-block + .item-block {
  margin-top: 21px;
}

.block--benefits .list {
  margin: 0 -30px 26px 0;
}

.block--benefits .list:last-child {
  margin-bottom: 0;
}

.block--benefits .list li {
  margin-bottom: 12px;
  padding-left: 26px;
}

.block--benefits .list li:last-child {
  margin-bottom: 0;
}

.block--benefits .list li::before {
  left: 0;
}

.block--benefits .item-block,
.block--benefits .stat,
.block--benefits .item-text {
  background: #F8F8F8;
  transition: background .4s ease-in-out, box-shadow .4s ease-in-out;
}

.block--benefits .item-block:hover,
.block--benefits .stat:hover,
.block--benefits .item-text:hover {
  background: white;
  box-shadow: 0px 0px 5.82px 0.18px rgba(0, 0, 0, 0.16);
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  .block--benefits .item-block {
    padding: 39px 38px 32px;
  }
  .block--benefits .item-block + .item-block {
    margin-top: 19px;
  }
}

/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--benefits .stat {
    padding: 25px 15px 24px;
    min-height: 112px;
  }
  .block--benefits .stat-value {
    font-size: 20px;
  }
  .block--benefits .item-block h5 {
    font-size: 20px;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--benefits {
    padding-bottom: 0;
  }
  .block--benefits .block-title {
    margin-bottom: 32px;
  }
  .block--benefits .block-in {
    max-width: 100%;
  }
  .block--benefits .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .block--benefits .row--1 .line-h-bottom::before {
    bottom: -4px;
  }
  .block--benefits .row--1 .item-title::after {
    bottom: -5px;
  }
  .block--benefits .row--1 .item--1 .line-h-bottom::before {
    bottom: 48px;
  }
  .block--benefits .row--1 .item--1 .item-title::after {
    bottom: 47px;
  }
  .block--benefits .row--2 [class^="col-"]:first-child {
    margin-bottom: 25px;
  }
  .block--benefits .row--3 .item-text {
    margin-bottom: 11px;
  }
  .block--benefits [class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }
  .block--benefits h6 {
    font-size: 12px;
    line-height: 14px;
    margin-top: 37px;
  }
  .block--benefits .stat {
    padding: 12px 0 10px;
    font-size: 11px;
    min-height: unset;
    margin-bottom: 5px;
    height: auto !important;
    letter-spacing: 0;
  }
  .block--benefits .stat .block-table {
    min-height: 46px;
  }
  .block--benefits .stat-value {
    font-size: 13px;
    margin-bottom: 7px;
  }
  .block--benefits .stat-text {
    line-height: 13px;
  }
  .block--benefits .item-title {
    font-size: 8px;
    line-height: 14px;
    padding: 0 37px 17px;
    margin-bottom: 22px;
    min-height: unset;
  }
  .block--benefits .item-title::after {
    width: 17px;
  }
  .block--benefits .item-title > div {
    line-height: 14px;
  }
  .block--benefits .item-title h4 {
    font-size: 12px;
    line-height: 16px;
  }
  .block--benefits .item-text {
    padding: 16px 12px 15px;
    font-size: 11px;
    line-height: 13px;
    text-align: left;
  }
  .block--benefits .item-text small {
    font-size: 11px;
  }
  .block--benefits .item-text p {
    margin-bottom: 13px;
  }
  .block--benefits .item-text p:last-child {
    margin-bottom: 0;
  }
  .block--benefits .item-block {
    font-size: 8px;
    padding: 20px 20px 12px;
  }
  .block--benefits .item-block h5 {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 0;
  }
  .block--benefits .item-block + .item-block {
    margin-top: 13px;
  }
  .block--benefits .item--1 {
    margin-bottom: 24px;
  }
  .block--benefits .item--1 .item-title {
    margin-bottom: 2px;
  }
  .block--benefits .item--1 .item-title h4 {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 5px;
  }
  .block--benefits .list {
    margin: 0 0 15px;
  }
  .block--benefits .list:last-child {
    margin-bottom: 0;
  }
  .block--benefits .list li {
    margin-bottom: 8px;
    padding-left: 18px;
  }
  .block--benefits .list li:last-child {
    margin-bottom: 0;
  }
}

.block--support {
  position: relative;
  padding-top: 75px;
  padding-bottom: 120px;
}

.block--support::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  background: rgba(248, 248, 248, 0.5);
  z-index: -1;
  pointer-events: none;
  height: 390px;
}

.block--support .block-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  margin-bottom: 74px;
}

.block--support .block-title::before, .block--support .block-title::after {
  display: none;
}

.block--support .block-in {
  font-size: 0;
  margin-left: -19px;
  margin-right: -19px;
  margin-bottom: -38px;
  padding: 0;
}

.block--support .item {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  padding-left: 19px;
  padding-right: 19px;
  margin-bottom: 38px;
}

.block--support .item-body {
  position: relative;
  background: white;
  border-radius: 18px;
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
  padding: 52px 10px 20px;
  transition: background .4s ease-in-out, box-shadow .4s ease-in-out;
}

.block--support .item-body > * {
  pointer-events: none;
}

.block--support .item-index {
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  z-index: 0;
  font-weight: 700;
  font-size: 100px;
  line-height: 1;
  color: #FBFBFB;
  transition: color .3s;
}

.block--support .item-title {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 28px;
  min-height: 64px;
}

.block--support .item-title::after {
  content: '';
  display: block;
  margin: 26px auto 0;
  background: #631FFF;
  width: 31px;
  height: 2px;
}

.block--support .item-title > div {
  min-height: 30px;
}

.block--support .item-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .06em;
}

.block--support .block-table {
  min-height: 162px;
}

.block--support .item:hover .item-body,
.block--support .item:focus .item-body,
.block--support .item:active .item-body {
  box-shadow: none;
  background: #631FFF;
}

.block--support .item:hover .item-index,
.block--support .item:focus .item-index,
.block--support .item:active .item-index {
  color: rgba(255, 255, 255, 0.2);
}

.block--support .item:hover .item-title::after,
.block--support .item:focus .item-title::after,
.block--support .item:active .item-title::after {
  background: white;
}

.block--support .item:hover .item-title,
.block--support .item:hover .item-text,
.block--support .item:focus .item-title,
.block--support .item:focus .item-text,
.block--support .item:active .item-title,
.block--support .item:active .item-text {
  color: white;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  .block--support .block-in {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -10px;
  }
  .block--support .item {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
}

/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--support .block-in {
    white-space: nowrap;
    overflow: auto;
    overflow-y: hidden;
    margin-bottom: 0;
  }
  .block--support .item {
    width: 280px;
    margin-bottom: 0;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--support {
    padding-top: 23px;
    padding-bottom: 68px;
  }
  .block--support::before {
    height: 170px;
  }
  .block--support .block-title {
    font-size: 12px;
    line-height: 14px;
    max-width: 200px;
    margin: 0 auto 25px;
    min-height: 56px;
  }
  .block--support .block-list {
    margin-left: -37px;
    margin-right: -37px;
  }
  .block--support .block-in {
    white-space: nowrap;
    margin-bottom: 0;
    overflow: auto;
    overflow-y: hidden;
    padding: 0 37px;
    -webkit-overflow-scrolling: touch;
  }
  .block--support .block-in::-webkit-scrollbar {
    display: none;
  }
  .block--support .item {
    width: 187px;
    white-space: normal;
    margin-bottom: 0;
  }
  .block--support .item-body {
    padding: 42px 10px 10px;
  }
  .block--support .item-index {
    top: 16px;
    font-size: 81px;
  }
  .block--support .item-title {
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 28px;
    min-height: 47px;
  }
  .block--support .item-title::after {
    margin-top: 15px;
    width: 20px;
  }
  .block--support .item-text {
    font-size: 11px;
    line-height: 13px;
  }
  .block--support .item-text br {
    display: none;
  }
  .block--support .block-table {
    min-height: 104px;
  }
}

.block--info {
  position: relative;
  letter-spacing: .06em;
  padding-bottom: 56px;
}

.block--info .block-title {
  margin-bottom: 18px;
  letter-spacing: .02em;
}

.block--info .block-in {
  padding-top: 35px;
}

.block--info .block-img {
  margin-top: -157px;
  position: relative;
}

.block--info .row {
  margin-left: -40px;
  margin-right: -40px;
}

.block--info [class^="col-"] {
  padding-left: 40px;
  padding-right: 40px;
}

.block--info h4 {
  font-size: 24px;
  line-height: 48px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-left: 35px;
}

.block--info h5 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 34px;
}

.block--info .list {
  max-width: 440px;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--info .row {
    margin-left: -20px;
    margin-right: -20px;
  }
  .block--info [class^="col-"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--info {
    padding-bottom: 30px;
  }
  .block--info .block-title {
    margin-bottom: 17px;
  }
  .block--info .block-in {
    padding-top: 25px;
  }
  .block--info .block-in.line-h-top::before {
    top: 62px;
  }
  .block--info .block-in.line-h-top::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 61px;
    width: 17px;
    height: 3px;
    background: black;
    z-index: 1;
  }
  .block--info .block--3 {
    padding-top: 10px;
  }
  .block--info .block-img {
    max-width: 188px;
    margin: 0 auto 40px;
    position: relative;
    left: 10px;
  }
  .block--info .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .block--info [class^="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .block--info h4 {
    font-size: 16px;
    margin-left: 0;
  }
  .block--info p {
    margin-left: 10px;
    margin-right: 10px;
  }
  .block--info h5 {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 46px;
  }
  .block--info .list {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    line-height: 13px;
  }
  .block--info .list li {
    margin-bottom: 13px;
  }
}

/* section Analytics */
/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
@media (min-width: 768px) {
  .section--analytics .section-head::before {
    background-image: url(/indicators/images/section-analytics-bg.png);
  }
}

@media all and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), all and (min-width: 768px) and (-o-min-device-pixel-ratio: 3 / 2), all and (min-width: 768px) and (min--moz-device-pixel-ratio: 1.5), all and (min-width: 768px) and (min-device-pixel-ratio: 1.5) {
  .section--analytics .section-head::before {
    background-image: url(/indicators/images/section-analytics-bg@2x.png);
  }
}

/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section--analytics .section-head::before {
    background-image: url(/indicators/images/section-analytics-bg-mobile.png);
  }
}

@media all and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), all and (max-width: 767px) and (-o-min-device-pixel-ratio: 3 / 2), all and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.5), all and (max-width: 767px) and (min-device-pixel-ratio: 1.5) {
  .section--analytics .section-head::before {
    background-image: url(/indicators/images/section-analytics-bg-mobile@2x.png);
  }
}

.block--stats {
  padding-top: 75px;
  padding-bottom: 39px;
}

.block--stats .block-in {
  padding: 0;
  position: relative;
  margin-bottom: -108px;
}

.block--stats .row {
  margin-left: -70px;
  margin-right: -70px;
}

.block--stats [class^="col-"] {
  padding-left: 70px;
  padding-right: 70px;
}

.block--stats .line-h-center::before {
  top: calc(50% - 108px/2 + 1px);
}

.block--stats .item {
  position: relative;
  background: white;
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.05);
  min-height: 300px;
  margin-bottom: 108px;
}

.block--stats .item-title {
  font-size: 19px;
  line-height: 1;
  letter-spacing: .06em;
}

.block--stats .item-value {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .06em;
}

.block--stats .item-value strong {
  font-size: 93px;
  line-height: 1;
  letter-spacing: 0;
  display: block;
}

.block--stats .item-units {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: .06em;
}

.block--stats .item-units strong {
  font-size: 16px;
  font-weight: 700;
  display: block;
}

.block--stats .item--1,
.block--stats .item--2,
.block--stats .item--4 {
  padding-top: 80px;
}

.block--stats .item--2 .item-value {
  margin-bottom: 32px;
}

.block--stats .item--1 .item-value,
.block--stats .item--4 .item-value {
  margin-bottom: 29px;
}

.block--stats .item--1 .item-units strong,
.block--stats .item--4 .item-units strong {
  font-size: 32px;
  margin-bottom: 3px;
}

.block--stats .item--3 {
  padding-top: 43px;
}

.block--stats .item--3 .item-title {
  margin-bottom: 28px;
}

.block--stats .item--3 .item-value strong {
  font-size: 40px;
  margin: 3px 0 2px;
}

.block--stats .item--3 .item-value + .item-value {
  padding-top: 11px;
}

.block--stats .item--5 {
  padding-top: 90px;
}

.block--stats .item--5 .item-value {
  margin-bottom: 33px;
}

.block--stats .item--6 {
  padding-top: 71px;
}

.block--stats .item--6 .item-title {
  margin-bottom: 44px;
}

.block--stats .item--6 .item-value {
  margin-bottom: 37px;
}

.block--stats .item--6 .item-value strong {
  font-size: 36px;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  .block--stats .row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .block--stats [class^="col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--stats .block-in {
    margin-bottom: -50px;
  }
  .block--stats .row {
    margin-left: -25px;
    margin-right: -25px;
  }
  .block--stats [class^="col-"] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .block--stats .item {
    margin-bottom: 50px;
  }
  .block--stats .line-h-center::before {
    top: calc(33.3333% - 50px/2 + 1px);
  }
  .block--stats .line-h-center::after {
    content: '';
    position: absolute;
    left: -100%;
    right: -100%;
    border: 0 solid rgba(112, 112, 112, 0.1);
    pointer-events: none;
    top: calc(66.6666% - 50px/2 + 1px);
    border-top-width: 1px;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--stats {
    padding-top: 38px;
    padding-bottom: 5px;
  }
  .block--stats .block-in {
    margin-bottom: -13px;
  }
  .block--stats .row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .block--stats [class^="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }
  .block--stats .line-h-center::before {
    display: none;
  }
  .block--stats .item {
    min-height: 155px;
    margin-bottom: 13px;
  }
  .block--stats .item-title {
    font-size: 9px;
  }
  .block--stats .item-value {
    font-size: 6px;
    line-height: 10px;
  }
  .block--stats .item-value strong {
    font-size: 47px;
  }
  .block--stats .item-units {
    font-size: 7px;
    line-height: 12px;
  }
  .block--stats .item-units strong {
    font-size: 7px;
  }
  .block--stats .item--1,
  .block--stats .item--2,
  .block--stats .item--4 {
    padding-top: 42px;
  }
  .block--stats .item--2 .item-value {
    margin-bottom: 17px;
  }
  .block--stats .item--2 .item-units strong {
    margin-bottom: 2px;
  }
  .block--stats .item--1 .item-value,
  .block--stats .item--4 .item-value {
    margin-bottom: 16px;
  }
  .block--stats .item--1 .item-units strong,
  .block--stats .item--4 .item-units strong {
    font-size: 15px;
    margin-bottom: 2px;
  }
  .block--stats .item--3 {
    padding-top: 22px;
  }
  .block--stats .item--3 .item-title {
    font-size: 8px;
    margin-bottom: 16px;
  }
  .block--stats .item--3 .item-value strong {
    font-size: 19px;
    margin: 5px 0 4px;
  }
  .block--stats .item--3 .item-value + .item-value {
    padding-top: 4px;
    font-size: 7px;
  }
  .block--stats .item--3 .item-value + .item-value strong {
    margin-top: 3px;
  }
  .block--stats .item--5 {
    padding-top: 48px;
  }
  .block--stats .item--5 .item-value {
    margin-bottom: 18px;
  }
  .block--stats .item--6 {
    padding-top: 39px;
  }
  .block--stats .item--6 .item-title {
    margin-bottom: 23px;
  }
  .block--stats .item--6 .item-value {
    margin-bottom: 20px;
  }
  .block--stats .item--6 .item-value strong {
    font-size: 17px;
  }
}

.block--groups {
  padding-bottom: 5px;
}

.block--groups .block-title {
  margin-bottom: 54px;
}

.block--groups .block-title::before {
  background: none;
}

.block--groups .block-in {
  padding: 0;
  margin: 0 -1px;
  font-size: 0;
}

.block--groups .item {
  display: inline-block;
  vertical-align: top;
  padding: 0 1px;
  width: 12.5%;
  font-size: 14px;
}

.block--groups .item--caption {
  width: 11.1111111111%;
}

.block--groups .items-group {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1px;
  width: 88.8888888889%;
}

.block--groups .item-title {
  font-weight: 500;
  letter-spacing: .06em;
  margin-bottom: 2px;
  padding: 13px 10px 15px;
  background: #F8F8F8;
}

.block--groups .item-value {
  font-weight: 300;
  padding: 11px 10px 10px;
  background: #F8F8F8;
}

.block--groups .item--caption {
  font-weight: 500;
}

.block--groups .item--caption .block-table {
  height: 105px;
  background: #F8F8F8;
}

.block--groups .item--caption .block-cell {
  top: 1px;
}

.block--groups .item--caption .block-cell > div {
  display: inline-block;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--groups .item {
    width: 25%;
    margin-bottom: 2px;
  }
  .block--groups .item--caption {
    width: 20%;
  }
  .block--groups .items-group {
    width: 80%;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--groups {
    padding-bottom: 0;
  }
  .block--groups .block-title {
    margin-bottom: 18px;
  }
  .block--groups .block-title h4 {
    font-weight: normal;
    font-size: 12px;
  }
  .block--groups .block-title .block-table {
    height: 75px;
  }
  .block--groups .block-title::after {
    width: 16px;
  }
  .block--groups .block-in {
    margin-left: -4.5px;
    margin-right: -4.5px;
  }
  .block--groups .item {
    padding-left: 4.5px;
    padding-right: 4.5px;
    width: 50%;
    font-size: 11px;
    margin-bottom: 5px;
  }
  .block--groups .item--caption {
    width: 100%;
  }
  .block--groups .items-group {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  .block--groups .item-title {
    margin-bottom: 9px;
    padding: 14px 10px 12px;
    height: auto !important;
  }
  .block--groups .item-value {
    padding: 13px 10px 11px;
    margin-bottom: 1px;
    background: none;
    border: 1px solid #F8F8F8;
  }
  .block--groups .item--caption {
    margin-bottom: 5px;
  }
  .block--groups .item--caption br {
    display: none;
  }
  .block--groups .item--caption .block-table {
    height: 42px;
  }
  .block--groups .item--caption .block-cell {
    top: auto;
  }
}

.block--attendance {
  padding-bottom: 45px;
}

.block--attendance .block-title::before {
  background: none;
}

.block--attendance .block-in {
  padding: 0;
}

.block--attendance .chart {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.block--attendance .chart-title {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  padding: 0 40px;
}

.block--attendance .chart-title .block-table {
  height: 110px;
}

.block--attendance .chart-in {
  padding: 35px 0 35px 40px;
}

.block--attendance .chart-in > svg {
  display: block;
  width: 100%;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--attendance {
    padding-bottom: 23px;
  }
  .block--attendance .block-title {
    margin-bottom: 18px;
  }
  .block--attendance .block-title h4 {
    font-weight: normal;
    font-size: 12px;
  }
  .block--attendance .block-title .block-table {
    height: 75px;
  }
  .block--attendance .block-title::after {
    width: 16px;
  }
  .block--attendance .chart {
    margin: 0 -37px;
    border-bottom: 0;
  }
  .block--attendance .chart-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .block--attendance .chart-title::after {
    content: '';
    position: absolute;
    left: 47px;
    bottom: -1px;
    width: 16px;
    height: 3px;
    background: black;
  }
  .block--attendance .chart-title .block-table {
    height: 64px;
  }
  .block--attendance .chart-title .block-cell {
    top: 1px;
  }
  .block--attendance .chart-in {
    padding: 0;
  }
}

/* section Technical */
.section--technical caption {
  text-align: left;
  padding: 45px 40px 39px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.section--technical p {
  margin-bottom: 14px;
}

.section--technical p:last-child {
  margin-bottom: 0;
}

.section--technical h5 {
  font-size: 14px;
  line-height: 24px;
}

.section--technical th, .section--technical td {
  padding: 0;
  border: 0;
  font-weight: 300;
  width: 33.3333333333%;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.section--technical th b, .section--technical td b {
  color: #631FFF;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 2px;
}

.section--technical th > div, .section--technical td > div {
  position: relative;
  padding: 0 30px;
}

.section--technical th:first-child > div, .section--technical td:first-child > div {
  padding-left: 40px;
}

.section--technical th {
  text-align: left;
}

.section--technical th b {
  font-size: 24px;
  line-height: 26px;
}

.section--technical th > div {
  padding-top: 50px;
  padding-bottom: 48px;
}

.section--technical th > div::after {
  content: '';
  position: absolute;
  left: 10px;
  bottom: -2px;
  width: 23px;
  height: 3px;
  background: black;
}

.section--technical td {
  letter-spacing: .06em;
}

.section--technical td > div {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
@media (min-width: 768px) {
  .section--technical .section-head::before {
    background-image: url(/indicators/images/section-technical-bg.png);
  }
}

@media all and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), all and (min-width: 768px) and (-o-min-device-pixel-ratio: 3 / 2), all and (min-width: 768px) and (min--moz-device-pixel-ratio: 1.5), all and (min-width: 768px) and (min-device-pixel-ratio: 1.5) {
  .section--technical .section-head::before {
    background-image: url(/indicators/images/section-technical-bg@2x.png);
  }
}

/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .section--technical caption {
    padding: 35px 30px 29px;
  }
  .section--technical th > div, .section--technical td > div {
    padding: 0 10px;
  }
  .section--technical th:first-child > div, .section--technical td:first-child > div {
    padding-left: 20px;
  }
  .section--technical th > div {
    padding-top: 30px;
    padding-bottom: 28px;
  }
  .section--technical td > div {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section--technical .section-head::before {
    background-image: url(/indicators/images/section-technical-bg-mobile.png);
  }
}

@media all and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), all and (max-width: 767px) and (-o-min-device-pixel-ratio: 3 / 2), all and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.5), all and (max-width: 767px) and (min-device-pixel-ratio: 1.5) {
  .section--technical .section-head::before {
    background-image: url(/indicators/images/section-technical-bg-mobile@2x.png);
  }
}

.block--height {
  padding-bottom: 30px;
}

.block--height .block-in {
  padding: 0;
  max-width: 75%;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--height .block-in {
    max-width: 100%;
  }
  .block--height table, .block--height tbody, .block--height tr, .block--height td {
    display: block !important;
    width: 100%;
  }
  .block--height td {
    line-height: 13px;
  }
  .block--height td > div {
    padding: 11px 0 12px;
  }
  .block--height td:first-child > div {
    padding-left: 0;
  }
  .block--height tr:last-child td:last-child {
    border-bottom: 0;
  }
  .block--height .td-title {
    font-size: 16px;
  }
  .block--height .td-title > div {
    padding-top: 29px;
    padding-bottom: 25px;
  }
  .block--height .td-title b {
    font-weight: 500;
  }
  .block--height .td-line > div::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -2px;
    width: 16px;
    height: 3px;
    background: black;
  }
}

.block--plan {
  position: relative;
  background: white;
}

.block--plan::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  right: -100%;
  z-index: 0;
  background: inherit;
  pointer-events: none;
}

.block--plan .block-in {
  padding: 0;
}

.block--plan .owl-stage-outer {
  overflow: visible;
}

.block--plan .owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
}

.block--plan .owl-item {
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.block--plan .owl-item.active {
  opacity: 1;
  pointer-events: all;
}

.block--plan .owl-nav {
  position: absolute;
  left: 50%;
  top: calc(50% - 20px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 1270px;
}

.block--plan .owl-carousel .owl-nav button {
  width: 23px;
  height: 45px;
  background-size: 100% 100%;
}

.block--plan .owl-carousel .owl-nav .owl-prev {
  background-image: url(/indicators/images/slide-arrow-left.svg);
}

.block--plan .owl-carousel .owl-nav .owl-next {
  background-image: url(/indicators/images/slide-arrow-right.svg);
}

.block--plan .owl-prev,
.block--plan .owl-next {
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .3s ease-in-out;
}

.block--plan .owl-prev.disabled,
.block--plan .owl-next.disabled {
  pointer-events: none;
  opacity: .5;
}

.block--plan .owl-prev {
  left: 0;
}

.block--plan .owl-next {
  right: 0;
}

.block--plan .line-h-top::before {
  left: -1000%;
  right: -1000%;
}

.block--plan .slide {
  position: relative;
  padding: 75px 0 25px;
}

.block--plan .slide-title {
  height: 60px;
  margin-bottom: 40px;
}

.block--plan .slide-img {
  position: relative;
  height: 700px;
  line-height: 700px;
  margin-bottom: 80px;
}

.block--plan .slide-img::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-size: 100% 100%;
  background-image: url(/indicators/images/spinner-violet.svg);
  z-index: 0;
}

.block--plan .slide-img img {
  position: relative;
  z-index: 1;
  line-height: 1;
  vertical-align: middle;
  max-height: 100%;
}

.block--plan .slide-icons {
  position: relative;
  font-size: 0;
  padding-top: 25px;
  margin: 0 auto;
}

.block--plan .slide-icons-in {
  overflow: hidden;
  margin-bottom: -13px;
}

.block--plan .slide-icons-in > div {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 13px;
}

.block--plan .slide--1 .slide-icons {
  max-width: 1010px;
}

.block--plan .slide--1 .slide-icons-in {
  margin-left: -17.5px;
  margin-right: -17.5px;
}

.block--plan .slide--1 .slide-icons-in > div {
  padding-left: 17.5px;
  padding-right: 17.5px;
  width: 20%;
}

.block--plan .slide--2 .slide-icons,
.block--plan .slide--3 .slide-icons {
  margin-left: -72px;
  margin-right: -72px;
}

.block--plan .slide--2 .slide-icons-in,
.block--plan .slide--3 .slide-icons-in {
  margin-left: -4px;
  margin-right: -4px;
}

.block--plan .slide--2 .slide-icons-in > div,
.block--plan .slide--3 .slide-icons-in > div {
  padding-left: 4px;
  padding-right: 4px;
  width: 14.2857142857%;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  .block--plan .owl-nav {
    width: 900px;
  }
  .block--plan .slide--1 .slide-icons {
    max-width: 100%;
  }
  .block--plan .slide--1 .slide-icons-in {
    margin-left: -5px;
    margin-right: -5px;
  }
  .block--plan .slide--1 .slide-icons-in > div {
    padding-left: 5px;
    padding-right: 5px;
  }
  .block--plan .slide--2 .slide-icons,
  .block--plan .slide--3 .slide-icons {
    margin-left: auto;
    margin-right: auto;
  }
  .block--plan .slide--2 .slide-icons-in,
  .block--plan .slide--3 .slide-icons-in {
    margin-left: -5px;
    margin-right: -5px;
  }
  .block--plan .slide--2 .slide-icons-in > div,
  .block--plan .slide--3 .slide-icons-in > div {
    padding-left: 5px;
    padding-right: 5px;
    width: 20%;
  }
}

/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--plan .owl-nav {
    width: 700px;
  }
  .block--plan .slide-img {
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    height: 500px;
    line-height: 500px;
  }
  .block--plan .owl-carousel .owl-item .slide-icons img {
    display: block;
    width: 100%;
  }
  .block--plan .slide--1 .slide-icons,
  .block--plan .slide--2 .slide-icons,
  .block--plan .slide--3 .slide-icons {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .block--plan .slide--1 .slide-icons-in,
  .block--plan .slide--2 .slide-icons-in,
  .block--plan .slide--3 .slide-icons-in {
    margin-left: -5px;
    margin-right: -5px;
  }
  .block--plan .slide--1 .slide-icons-in > div,
  .block--plan .slide--2 .slide-icons-in > div,
  .block--plan .slide--3 .slide-icons-in > div {
    padding-left: 5px;
    padding-right: 5px;
    width: 33.3333333333%;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--plan .owl-nav {
    top: 50%;
    width: 302px;
  }
  .block--plan .owl-carousel .owl-nav button {
    width: 7px;
    height: 14px;
  }
  .block--plan .owl-carousel .owl-nav .owl-prev {
    background-image: url(/indicators/images/slide-arrow-left-mobile.svg);
  }
  .block--plan .owl-carousel .owl-nav .owl-next {
    background-image: url(/indicators/images/slide-arrow-right-mobile.svg);
  }
  .block--plan .slide {
    padding: 35px 0 25px;
  }
  .block--plan .slide-title {
    height: 25px;
    line-height: 25px;
    margin-bottom: 38px;
  }
  .block--plan .slide-title img {
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    max-height: 100%;
  }
  .block--plan .slide-img {
    height: 203px;
    line-height: 203px;
    margin: 0 auto 24px;
    max-width: 230px;
  }
  .block--plan .slide-icons {
    padding-top: 0;
    text-align: left;
  }
  .block--plan .slide-icons::before {
    display: none;
  }
  .block--plan .slide-icons-in {
    margin-bottom: -3px;
    line-height: 1;
  }
  .block--plan .slide-icons-in > div {
    margin-bottom: 3px;
  }
  .block--plan .slide--1 .slide-icons,
  .block--plan .slide--2 .slide-icons,
  .block--plan .slide--3 .slide-icons {
    max-width: 227px;
    margin-left: auto;
    margin-right: auto;
  }
  .block--plan .slide--1 .slide-icons-in,
  .block--plan .slide--2 .slide-icons-in,
  .block--plan .slide--3 .slide-icons-in {
    margin-left: -1.5px;
    margin-right: -1.5px;
  }
  .block--plan .slide--1 .slide-icons-in > div,
  .block--plan .slide--2 .slide-icons-in > div,
  .block--plan .slide--3 .slide-icons-in > div {
    padding-left: 1.5px;
    padding-right: 1.5px;
    width: 25%;
  }
}

.block--area {
  padding-bottom: 30px;
}

.block--area .block-in {
  padding: 0;
  max-width: 75%;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--area .block-in {
    max-width: 100%;
  }
  .block--area caption {
    padding: 22px 0 20px;
    text-align: center;
  }
  .block--area h5 {
    font-size: 11px;
  }
  .block--area table {
    width: 100%;
  }
  .block--area td {
    line-height: 13px;
  }
  .block--area td > div {
    padding: 14px 0 11px;
  }
  .block--area td:first-child > div {
    padding-left: 0;
  }
  .block--area td.text--left > div {
    padding-left: 25px;
  }
  .block--area b, .block--area strong {
    display: block;
  }
  .block--area .row--1 td > div {
    padding-top: 27px;
  }
  .block--area strong {
    color: #631FFF;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    margin-top: -4px;
  }
  .block--area td b {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .block--area td b:first-child {
    margin-top: 0;
  }
  .block--area .td-line > div::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -2px;
    width: 16px;
    height: 3px;
    background: black;
  }
}

.block--fire {
  padding-bottom: 30px;
}

.block--fire .block-in {
  padding: 0;
  max-width: 75%;
}

.block--fire th b {
  display: inline;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
}

.block--fire td {
  font-weight: 500;
}

.block--fire .row--2 td {
  font-weight: 300;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--fire {
    padding-bottom: 16px;
  }
  .block--fire .block-in {
    padding: 0;
    max-width: 100%;
  }
  .block--fire table, .block--fire thead, .block--fire tbody, .block--fire tr, .block--fire th, .block--fire td {
    display: block;
    width: 100%;
  }
  .block--fire td {
    text-align: left;
    border-bottom: 0;
    line-height: 13px;
  }
  .block--fire td > div {
    position: relative;
  }
  .block--fire td > div::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 15px;
    width: 4px;
    height: 1px;
    background: black;
  }
  .block--fire th > div, .block--fire td > div {
    padding: 10px 0 10px 30px;
  }
  .block--fire th:first-child > div, .block--fire td:first-child > div {
    padding-left: 30px;
  }
  .block--fire th {
    text-align: center;
  }
  .block--fire th > div {
    padding-top: 25px;
    padding-bottom: 24px;
  }
  .block--fire th > div::after {
    display: none;
  }
  .block--fire th b {
    font-size: 11px;
    line-height: 13px;
  }
  .block--fire .row--1 {
    padding: 9px 0 10px;
    position: relative;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  .block--fire .row--1 td > div {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .block--fire .row--1 td > div::before {
    top: 22px;
  }
  .block--fire .row--1::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -2px;
    width: 16px;
    height: 3px;
    background: black;
  }
  .block--fire .row--2 {
    padding: 16px 0 10px;
  }
  .block--fire .row--2 td > div::before {
    display: none;
  }
}

.block--safety {
  padding-bottom: 46px;
}

.block--safety .block-title {
  margin-bottom: 39px;
}

.block--safety .block-text {
  line-height: 16px;
  max-width: 745px;
  margin-bottom: 56px;
}

.block--safety .row {
  margin-left: -40px;
  margin-right: -40px;
}

.block--safety [class^="col-"] {
  padding-left: 40px;
  padding-right: 40px;
}

.block--safety p {
  margin-bottom: 16px;
}

.block--safety .list {
  line-height: 20px;
  max-width: 445px;
}

.block--safety .list li {
  margin-bottom: 20px;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--safety {
    padding-bottom: 2px;
  }
  .block--safety .block-title {
    margin-bottom: 0;
  }
  .block--safety .block-text {
    position: relative;
    text-align: left;
    line-height: 13px;
    max-width: 100%;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
    padding: 26px 13px;
  }
  .block--safety .block-text::after {
    content: '';
    position: absolute;
    left: 10px;
    bottom: -2px;
    width: 16px;
    height: 3px;
    background: black;
  }
  .block--safety .row {
    margin-left: 0;
    margin-right: 0;
  }
  .block--safety [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
  }
  .block--safety p {
    margin-bottom: 16px;
  }
  .block--safety .list {
    text-align: left;
    line-height: 13px;
    max-width: 100%;
    padding: 0 10px;
  }
  .block--safety .list li {
    margin-bottom: 13px;
  }
}

/* section Efficiency */
/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
@media (min-width: 768px) {
  .section--efficiency .section-head::before {
    background-image: url(/indicators/images/sh_bg.svg);
  }
}

@media all and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), all and (min-width: 768px) and (-o-min-device-pixel-ratio: 3 / 2), all and (min-width: 768px) and (min--moz-device-pixel-ratio: 1.5), all and (min-width: 768px) and (min-device-pixel-ratio: 1.5) {
  .section--efficiency .section-head::before {
    background-image: url(/indicators/images/sh_bg.svg);
    margin-left: 50%;
    margin-right: 2%;
  }
}

/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section--efficiency .section-head::before {
    background-image: url(/indicators/images/sh_bg.svg);
  }
}

@media all and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), all and (max-width: 767px) and (-o-min-device-pixel-ratio: 3 / 2), all and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.5), all and (max-width: 767px) and (min-device-pixel-ratio: 1.5) {
  .section--efficiency .section-head::before {
    background-image: url(/indicators/images/sh_bg.svg);
  }
}

.block--dostyk .block-title {
  letter-spacing: .02em;
}

.block--dostyk .block-in {
  padding: 0;
}

.block--dostyk .chart:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.block--dostyk .chart-title {
  padding: 0 40px;
  font-size: 24px;
  line-height: 1;
}

.block--dostyk .chart-title .block-table {
  height: 170px;
}

.block--dostyk .chart-title .block-cell {
  top: -2px;
}

.block--dostyk .chart-title,
.block--dostyk .chart-legend {
  position: relative;
}

.block--dostyk .chart-title::after,
.block--dostyk .chart-legend::after {
  content: '';
  position: absolute;
  left: 10px;
  width: 23px;
  height: 3px;
  background: #631FFF;
  bottom: -1px;
}

.block--dostyk .chart-in {
  padding: 50px 0 20px;
}

.block--dostyk .chart-in > svg {
  display: block;
  width: 100%;
}

.block--dostyk .chart-legend {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
  min-height: 70px;
}

.block--dostyk .in {
  padding: 27px 0 17px 40px;
  font-size: 11px;
  font-weight: 300;
}

.block--dostyk .in sup {
  top: auto;
  font-size: 100%;
}

.block--dostyk .legend {
  font-weight: 300;
  font-size: 11px;
  padding: 16px 0 17px;
}

.block--dostyk .legend ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.block--dostyk .legend li {
  position: relative;
  margin: 0 0 3px;
  padding: 0 0 0 43px;
}

.block--dostyk .legend li:last-child {
  margin-bottom: 0;
}

.block--dostyk .legend img {
  width: 26px;
  position: absolute;
  left: 0;
  top: 5px;
}

.block--dostyk .chart-info {
  line-height: 16px;
  letter-spacing: .06em;
  font-weight: 300;
  padding: 43px 20px 50px 40px;
}

.block--dostyk .chart-info p {
  margin-bottom: 16px;
}

.block--dostyk .chart-info p:last-child {
  margin-bottom: 0;
}

.block--dostyk .chart-table {
  margin: 0 -2px;
  padding-top: 55px;
}

.block--dostyk table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 1px;
}

.block--dostyk tbody::before {
  content: '';
  display: block;
  height: 4px;
}

.block--dostyk td, .block--dostyk th {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: .06em;
  border: 1px solid transparent;
  text-align: center;
  /*width: 15%;*/
  padding: 11px 10px 9px;
}

.block--dostyk td:first-child, .block--dostyk th:first-child {
  text-align: left;
  width: 25%;
  padding-left: 40px;
}

.block--dostyk th {
  background: #F8F8F8;
  border-color: #F8F8F8;
  font-weight: 500;
}

.block--dostyk td {
  font-weight: 300;
  border-color: rgba(201, 201, 201, 0.2);
}

.block--dostyk td b {
  font-weight: 500;
}

.block--dostyk .chart--6 .legend li {
  display: inline-block;
  vertical-align: top;
  min-width: 110px;
}

/*
	styles for Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Large Desktops
 -------------------------------------------------------------------- */
/*
	styles for Desktop and Small
 -------------------------------------------------------------------- */
/*
	styles for Desktop
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Desktops
 -------------------------------------------------------------------- */
/*
	styles for Tablet and Phones
 -------------------------------------------------------------------- */
/*
	styles for Tablet
 -------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {
  .block--dostyk .chart--6 .legend li {
    display: block;
  }
}

/*
	styles for Phone
 -------------------------------------------------------------------- */
@media (max-width: 767px) {
  .block--dostyk .chart {
    position: relative;
  }
  .block--dostyk .chart::after {
    content: '';
    position: absolute;
    left: -100%;
    right: -100%;
    bottom: 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  .block--dostyk .chart:not(:last-child) {
    border-bottom: 0;
  }
  .block--dostyk .chart-title {
    font-size: 11px;
    line-height: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .block--dostyk .chart-title .block-table {
    height: 67px;
  }
  .block--dostyk .chart-title .block-cell {
    top: auto;
  }
  .block--dostyk .chart-in {
    padding: 28px 0 6px;
  }
  .block--dostyk .chart-legend {
    min-height: 36px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  .block--dostyk .chart-legend::before {
    display: none;
  }
  .block--dostyk .chart-legend::after {
    bottom: -2px;
  }
  .block--dostyk .in {
    padding: 9px 0 0 24px;
    font-size: 7px;
    line-height: 9px;
    text-align: left;
  }
  .block--dostyk .in sup {
    position: absolute;
    left: 30px;
    top: 14px;
  }
  .block--dostyk .legend {
    font-size: 7px;
    line-height: 9px;
    padding: 8px 0;
    text-align: left;
  }
  .block--dostyk .legend li {
    padding-left: 30px;
  }
  .block--dostyk .legend img {
    width: 17px;
    top: 2px;
  }
  .block--dostyk .chart-info {
    line-height: 13px;
    padding: 32px 20px 43px;
    text-align: left;
  }
  .block--dostyk .chart-info p {
    margin-bottom: 13px;
  }
  .block--dostyk .chart-info p:last-child {
    margin-bottom: 0;
  }
  .block--dostyk .chart-table {
    margin: 0;
    padding-top: 27px;
  }
  .block--dostyk table {
    width: 100%;
  }
  .block--dostyk .table {
    display: block;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .block--dostyk .table:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .block--dostyk tbody::before {
    display: none;
  }
  .block--dostyk td, .block--dostyk th {
    font-size: 11px;
    line-height: 12px;
    border: 0;
    width: 50%;
    padding: 0;
  }
  .block--dostyk td > div, .block--dostyk th > div {
    border: 1px solid transparent;
    min-height: 40px;
    line-height: 40px;
  }
  .block--dostyk td > div > div, .block--dostyk th > div > div {
    position: relative;
    top: -2px;
    display: inline-block;
    vertical-align: middle;
    line-height: 12px;
  }
  .block--dostyk td:first-child, .block--dostyk th:first-child {
    text-align: center;
    width: 50%;
    padding-left: 0;
    padding-right: 4px;
  }
  .block--dostyk td:last-child, .block--dostyk th:last-child {
    padding-left: 4px;
  }
  .block--dostyk th {
    background: none;
  }
  .block--dostyk th > div {
    background: #F8F8F8;
  }
  .block--dostyk td > div {
    border-color: rgba(201, 201, 201, 0.2);
  }
  .block--dostyk .chart--6 .legend li {
    padding-left: 24px;
    min-width: 55px;
  }
}
@media (min-width: 768px){
.section--about .section-head:before {
    background-image: url(/indicators/images/section-about-bg-sh.jpg);
    margin-left: 50%;
}
}
