/*CSS Reset and PreStyles*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-text-size-adjust: none;
  /*фиксим баг в IOS cо шкалированием в landscape*/
  outline: none;
  /*убираем рамку вокруг ссылок и кнопок*/
  -webkit-touch-callout: none;
  /*если надо, то запрещаем выделение текста*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /*убираем фон подсветки ссылок и кнопок*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
}
*:active,
*:hover,
*:focus {
  outline: 0;
}
body {
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
ul,
ol {
  display: block;
  margin: 0 0 11px 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0 0 5px 20px;
  padding: 0;
  position: relative;
}
ul > li:before {
  display: block;
  content: "\2014";
  float: left;
  margin-left: -20px;
}
ol {
  counter-reset: item;
}
ol li {
  margin: 0 0 5px 20px;
  padding: 0;
}
ol > li:before {
  display: block;
  float: left;
  margin-left: -20px;
  counter-increment: item;
  content: counters(item, ".") ".";
}
ul.unstyled li {
  margin: 0;
  padding: 0;
  background: none;
  list-style: none;
}
ul.unstyled li:before {
  display: none;
}
.custom-input {
  padding: 0px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  height: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/******* LINKS *******/
a,
.link {
  color: #004880;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.link:hover {
  color: #d30000;
  text-decoration: none;
}
/******* BUTTONS *******/
.btn {
  display: inline-block;
  height: 45px;
  font-family: 'Greta Sans Pro', sans-serif;
  line-height: 43px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  border-radius: 3px;
  text-align: center;
  vertical-align: middle;
  padding-left: 30px;
  padding-right: 30px;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}
.btn a {
  text-align: center;
}
@media (max-width: 740px) {
  .btn {
    font-size: 16px;
  }
}
.btn-sm {
  height: 35px;
  line-height: 33px;
  font-size: 16px;
  padding-left: 15px;
  padding-right: 15px;
}
.btn-lg {
  border-radius: 5px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 740px) {
  .btn-lg {
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.btn-half-width {
  width: 50%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 740px) {
  .btn-half-width {
    width: 100%;
  }
}
.btn-default {
  background: none;
  border: 1px solid #ccc;
  color: #000000;
}
.btn-default:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
}
.btn-default_inverse {
  color: #fff;
}
.btn-default_inverse:hover {
  color: #fff;
}
.btn-thin {
  font-weight: normal;
}
.btn-grey {
  border-color: transparent;
  background-color: #e3e5e6;
  color: #000;
}
.btn-grey:hover {
  color: #000;
}
.btn-white {
  border-color: #cbcfd1;
  background-color: #fff;
  color: #000;
  border: 0;
}
.btn-white:hover {
  color: #000;
}
.btn-primary {
  background: #ff471a;
  color: #fff;
  border: 1px solid #ff471a;
  font-weight: bold;
}
.btn-primary:hover {
  color: #fff;
  background: #ff5b34;
  border-color: #ff5b34;
}
.btn-primary a {
  color: #fff;
}
.button-close {
  width: 23px;
  height: 24px;
  background: url("/Content/i/ico-close.png") no-repeat 5px 5px;
  cursor: pointer;
}
/******* END BUTTONS *******/
.spoiler-content {
  display: none;
}
.modal-open {
  overflow: hidden;
  padding-right: 17px;
}
html body.modal-open {
  overflow: hidden !important;
}
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  z-index: 500;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.popup {
  position: relative;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 790px;
  background-color: #e3e5e6;
}
.popup.absolute {
  position: absolute;
}
.popup__close {
  width: 23px;
  height: 24px;
  background: url("/Content/i/ico-close.png") no-repeat 5px 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.popup__descr {
  width: 600px;
  margin: auto;
  padding-bottom: 10px;
}
.popup__form-thanks {
  padding: 10px 0 20px 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  overflow: hidden;
}

.b-block__title {
    margin-bottom: 10px;
    padding-top: 50px;
    line-height: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 33px;
    line-height: 1;
    margin-top: 1.2em;
    margin-bottom: .5em;
}
.layout-form {
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 3px;
  background: #e3e5e6;
}
.layout-form__wrapper {
  max-width: 600px;
  margin: 0 auto;
}
.layout-form__title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 33px;
  padding-top: 50px;
}
.layout-form__table {
  display: table;
  width: 100%;
}
@media (max-width: 740px) {
  .layout-form__table {
    display: block;
  }
}
.layout-form__input-wrapper {
  position: relative;
  display: table;
  width: 100%;
}
.layout-form__row {
  display: table-row;
}
@media (max-width: 740px) {
  .layout-form__row {
    display: block;
  }
}
.layout-form__label,
.layout-form__field {
  display: table-cell;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
}
@media (max-width: 740px) {
  .layout-form__label,
  .layout-form__field {
    display: block;
    padding-top: 0;
    padding-bottom: 5px;
  }
}
.layout-form__label {
  white-space: nowrap;
  padding-right: 10px;
}
@media (max-width: 740px) {
  .layout-form__label {
    padding-top: 5px;
  }
}
@media (max-width: 998px) and (min-width: 740px) {
  .layout-form__label {
    vertical-align: top;
    padding-top: 17px;
  }
}
.layout-form__field {
  width: 100%;
}
.layout-form__field .select2-container {
  width: 100% !important;
}
.layout-form__field:after,
.layout-form__field:before {
  content: '';
  display: table;
  clear: both;
}
.layout-form__footer {
  background: #CCCFD1;
  margin-left: -20px;
  margin-right: -20px;
  padding: 30px 20px;
  margin-top: 50px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.layout-form__half-width-input {
  display: table-cell;
}
.layout-form__input-note {
  width: 25%;
  display: table-cell;
  padding-left: 10px;
  font-size: 13px;
  line-height: 16px;
  min-width: 110px;
  vertical-align: top;
}
.input-validation-error {
  border-color: #e13333 !important;
  position: relative;
}
.input-validation-error + .select2 .select2-selection--single {
  border-color: #e13333 !important;
}
.field-validation-error,
.sp-error-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 165px;
  left: 100%;
  padding: 5px;
  color: #fff;
  border-radius: 3px;
  margin-left: 5px;
  font-size: 12px;
  text-align: left;
  background: #e13333;
  line-height: 1.4em;
}
.field-validation-error:before,
.sp-error-text:before {
  position: absolute;
  left: -11px;
  top: 50%;
  content: '';
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 7px solid transparent;
  border-right-color: #e13333;
}
@media (max-width: 998px) {
  .field-validation-error:before,
  .sp-error-text:before {
    left: 10px;
    top: -11px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-right-color: transparent;
    border-bottom-color: #e13333;
  }
}
@media (max-width: 998px) {
  .field-validation-error,
  .sp-error-text {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .field-validation-error:not(.hide),
  .sp-error-text:not(.hide) {
    display: block;
  }
}
/***********************/
ul.horizontal-ul li {
  display: inline;
  margin: 0;
}
ul.horizontal-ul li:before {
  content: '\b7';
  display: inline!important;
  float: none;
  margin: 0;
  padding: 0 2px;
}
ul.horizontal-ul li:first-child {
  margin: 0;
}
ul.horizontal-ul li:first-child:before {
  content: none;
}
/*******    FORMS   *******/
.custom-checkbox {
  padding-left: 30px;
}
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  left: -10000px;
}
.custom-checkbox__marker {
  position: relative;
  /* Обязательно задаем, чтобы мы могли абсолютным образом позиционировать псевдоэлемент внютри нашего кастомного чекбокса */
  left: -30px;
  top: 0;
}
.custom-checkbox__marker:after {
  display: inline-block;
  width: 18px;
  height: 17px;
  background: url("/Content/images/sprite.png") no-repeat;
  background-position: -5px -65px;
  cursor: pointer;
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
}
.custom-checkbox input[type="checkbox"]:checked ~ .custom-checkbox__marker:after {
  background-position-x: -26px;
}
.custom-checkbox input[type="checkbox"]:indeterminate ~ .custom-checkbox__marker:after {
  background-position-x: -48px;
}
.custom-checkbox input[type="checkbox"]:disabled ~ .custom-checkbox__marker:after {
  background-position-y: -85px;
}
/******* END FORMS *******/

a img {
  border: none;
}
.br {
  font-size: 0;
  height: 0;
  clear: both;
  overflow: hidden;
}
table {
  margin: 30px 0;
  border: none;
  border-top: 2px solid #cfcfcf;
  border-collapse: collapse;
}
th {
  padding: 13px 20px;
  border-bottom: 1px solid #cfcfcf;
  color: #999999;
  font-size: 11px;
  line-height: 14px;
  font-weight: 800;
  text-align: left;
}
td {
  padding: 13px 20px;
  border-bottom: 1px solid #cfcfcf;
  font-size: 14px;
  line-height: 18px;
}

th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}

/* colors */
.red {
  color: #ae1d00 !important;
}
.jcarousel {
  position: relative;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
.jcarousel-wrap {
  overflow: hidden;
}
.jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jcarousel li {
  float: left;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.jcarousel li:before {
  content: none;
}
.jcarousel img {
  display: block;
  width: 100%;
  height: auto !important;
}
/** Carousel Controls **/
.jcarousel-control-prev,
.jcarousel-control-next {
  width: 53px;
  height: 53px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -56px;
  right: 0px;
}
.jcarousel-control-prev:before,
.jcarousel-control-next:before {
  content: '';
  position: absolute;
  height: 40%;
  width: 40%;
  border-right: 1px solid red;
  border-bottom: 1px solid red;
  top: 30%;
  left: 20%;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
  opacity: 0.5;
}
@media (max-width: 740px) {
  .jcarousel-control-prev,
  .jcarousel-control-next {
    width: 30px;
    height: 30px;
    margin-top: -45px;
  }
}
@media (max-width: 400px) {
  .jcarousel-control-prev,
  .jcarousel-control-next {
    width: 20px;
    height: 20px;
    margin-top: -40px;
  }
}
.jcarousel-control-prev {
  left: 0px;
  right: auto;
}
.jcarousel-control-prev:before {
  right: 20%;
  left: auto;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/** Carousel Pagination **/
.jcarousel-pagination {
  margin-top: 4%;
  font-size: 16px;
  line-height: 14px;
  text-align: center;
  width: 100%;
}
.jcarousel-pagination > a {
  display: inline-block;
  margin: 5px 5px 5px 0;
  padding: 0.5em 1.1em;
  border-radius: 3px;
  color: #000000;
  white-space: nowrap;
}
.jcarousel-pagination > a:last-of-type {
  margin-right: 0;
}
.jcarousel-pagination > a.active,
.jcarousel-pagination > a:hover {
  background-color: #fff;
  color: #000000;
}
.jcarousel-pagination > a.active {
  font-weight: bold;
}
.jcarousel-pagination_flat > a {
  text-indent: -9999px;
  width: 36px;
  height: 3px;
  background: #ccc;
  padding: 0;
  border-radius: 0;
}
.jcarousel-pagination_flat > a.active,
.jcarousel-pagination_flat > a:hover {
  background: #ff471a;
}

.i-article-main {
  background: url("/Content/i/article-main-icon.png") no-repeat;
  width: 177px;
  height: 112px;
  display: inline-block;
  margin-right: 3px;
}

@font-face {
  font-family: 'Greta Sans Pro';
  src: url('/Content/fonts/greta-sans-pro/regular/greta-sans-pro.eot');
  src: local('Greta Sans Pro'), url('/Content/fonts/greta-sans-pro/regular/greta-sans-pro.woff') format('woff'), url('/Content/fonts/greta-sans-pro/regular/greta-sans-pro.ttf') format('truetype'), url('/Content/fonts/greta-sans-pro/regular/greta-sans-pro.eot?#iefix') format('embedded-opentype'), url('/Content/fonts/greta-sans-pro/regular/greta-sans-pro.svg#Greta_Sans_Pro') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Greta Sans Pro';
  src: url('/Content/fonts/greta-sans-pro/bold/greta-sans-pro-bold.eot');
  src: local('Greta Sans Pro Bold'), url('/Content/fonts/greta-sans-pro/bold/greta-sans-pro-bold.woff') format('woff'), url('/Content/fonts/greta-sans-pro/bold/greta-sans-pro-bold.ttf') format('truetype'), url('/Content/fonts/greta-sans-pro/bold/greta-sans-pro-bold.eot?#iefix') format('embedded-opentype'), url('/Content/fonts/greta-sans-pro/bold/greta-sans-pro-bold.svg#Greta_Sans_Pro') format('svg');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Greta Sans Pro Comp Medium';
  src: url('/Content/fonts/greta-sans-pro-comp/medium/greta-sans-pro-comp-medium.eot');
  src: local('Greta Sans Pro Comp Medium'), url('/Content/fonts/greta-sans-pro-comp/medium/greta-sans-pro-comp-medium.woff') format('woff'), url('/Content/fonts/greta-sans-pro-comp/medium/greta-sans-pro-comp-medium.ttf') format('truetype'), url('/Content/fonts/greta-sans-pro-comp/medium/greta-sans-pro-comp-medium.eot?#iefix') format('embedded-opentype'), url('/Content/fonts/greta-sans-pro-comp/medium/greta-sans-pro-comp-medium.svg#Greta_Sans_Pro_Comp_Medium') format('svg');
  font-weight: normal;
  font-style: normal;
}
.sp-main-font {
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: normal;
}
.sp-second-font {
  font-family: 'Greta Sans Pro Comp Medium', sans-serif;
  font-weight: normal;
}
.list-unstyled {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.list-unstyled > li {
  margin: 0;
}
.list-unstyled > li:before {
  content: none;
}
body {
  overflow-x: hidden;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: normal;
}
input {
  font-family: inherit;
  font-size: inherit;
}
.svg-icon {
  display: inline-block;
}
.container-grid {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  width: 100%;
}
.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
/******* TYPOGRAPHY *******/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: bold;
}
h1,
.h1 {
  font-size: 57px;
  line-height: 1;
  margin-top: 1.2em;
}
@media (max-width: 740px) {
  h1,
  .h1 {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
h2,
.h2 {
  font-size: 33px;
  line-height: 1;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
h3,
.h3 {
  font-size: 24px;
  line-height: 1;
  margin-top: 1.2em;
}
h4,
.h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 1.2em;
}
h5,
.h5,
h6,
.h6 {
  font-size: 16px;
  margin-top: 1.2em;
  text-transform: uppercase;
  font-weight: normal!important;
}
p {
  margin: 0.5em 0 0.5em 0;
  padding: 0;
  line-height: 22px;
}
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}

.table-num {
  font-variant-numeric: tabular-nums;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}

.articles-list {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 70px;
  clear: both;
}
.articles-list .article-item {
  padding: 10px;
  overflow: hidden;
  max-width: 275px;
  width: 100%;
  color: #000000;
  position: relative;
  display: inline-block;
  border: 1px solid #dcdcdc;
  margin-right: 25px;
  margin-bottom: 21px;
  vertical-align: top;
}
.articles-list .article-item.has-img {
  background: no-repeat center center;
  background-size: cover;
  color: #ffffff;
}
.articles-list .article-item.has-img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000000;
  opacity: 0.5;
}
.articles-list .article-item .article-content {
  padding: 20px 10px;
}
.articles-list .article-item .article-date {
  font-size: 11px;
  padding-bottom: 10px;
}
.articles-list .article-item .article-title {
  font-weight: bold;
}
.articles-list .article-item .article-body {
  padding-top: 10px;
  line-height: 21px;
}


.block-social-title {
  margin-bottom: 10px;
}
.block-social__list {
  margin-bottom: 0;
}
.block-social__item {
  display: inline-block;
  margin: 0 10px 0 0;
  border-radius: 50%;
  border: 2px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.block-social__item:hover {
  border-color: #fff;
}
.block-social__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: inherit;
}
.block-social__item a i {
  vertical-align: middle;
}
.block-social__item:last-of-type {
  margin-right: 0;
}
.block-social__item:before {
  content: "";
  display: none;
}

@media (max-width: 740px) {
  .page-section-form .layout-form {
    margin-left: -20px;
    margin-right: -20px;
  }
}
/**********CONTACTS*********/
.contacts {
  font-size: 30px;
  line-height: 42px;
}
.contacts__tel {
  color: #000000;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.74em;
}
.contacts__email {
  margin-right: 20px;
  font-size: 0.74em;
}
.contacts-map {
  position: relative;
}
.contacts-map__map {
  height: 725px;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.contacts-map__legend-wrapper {
  position: relative;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  width: 100%;
}
.contacts-map__legend {
  width: 280px;
  height: 577px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 4px 0;
  background: #ffffff;
  font-size: 14px;
  line-height: 21px;
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
  left: 20px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}
.contacts-map .viewport {
  height: 577px;
  position: relative;
  overflow: hidden;
}
.contacts-map .overview {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.contacts-map .scrollbar {
  width: 16px;
  height: auto !important;
  background: #f0f0f0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.contacts-map .scrollbar .track {
  width: 8px;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}
.contacts-map .scrollbar .thumb {
  width: 8px;
  background: #cbcbcb;
  position: absolute;
  border-radius: 4px;
}
.contacts-map__markers-ul {
  margin: 0;
  padding: 16px 30px 16px 20px;
}
.contacts-map__marker-title {
  line-height: 18px;
  font-weight: 700;
  cursor: pointer;
}
.contacts-map__marker-title span {
  line-height: 16px;
  border-bottom: 1px dotted #ff6600;
  font-size: 16px;
}
.contacts-map__marker-title:hover span {
  border-bottom-color: #ffffff;
}
.contacts-map__marker-descr {
  margin-top: 5px;
  font-size: 13px;
  line-height: 18px;
}
.contacts-map__marker-phone a,
.contacts-map__marker-phone a:hover {
  color: #000000;
  white-space: nowrap;
}
.contacts-map__marker-time {
  font-size: 13px;
}
.contacts-map__marker-item {
  display: block;
  float: none;
  padding: 10px 15px !important;
  border: 1px solid #ffffff;
}
.contacts-map__marker-item.active {
  border-color: #949494;
}
.contacts-map__marker-item.active .contacts-map__marker-title {
  border-bottom-color: #ffffff;
}
/************ PROMO BLOCK ***************/
.features-promo-block {
  background: #1d1d1d;
  color: #ffffff;
}
.features-promo-block:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.features-promo-block__img {
  float: left;
  padding-right: 20px;
  width: 40%;
  max-width: 435px;
}
.features-promo-block__img > img {
  display: block;
  width: 100%;
}
@media (max-width: 740px) {
  .features-promo-block__img {
    display: none;
  }
}
.features-promo-block__description {
  padding-top: 80px;
  padding-right: 20px;
}
@media (max-width: 998px) {
  .features-promo-block__description {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.features-promo-block__title {
  margin-bottom: 10px;
  font-size: 70px;
  line-height: 0.91em;
  font-weight: bold;
}
@media (max-width: 998px) {
  .features-promo-block__title {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .features-promo-block__title {
    font-size: 40px;
  }
}
.features-promo-block__text {
  padding-left: 350px;
  font-size: 14px;
  line-height: 22px;
}
/************ PROMO BLOCK ***************/
.sources-characteristics__title {
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
}
.sources-characteristics__item {
  display: inline-block;
  margin-right: 30px;
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 30px;
  vertical-align: top;
}

.gdpr {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  padding: 25px 10px;
  background: rgba(32, 45, 55, 0.9);
  color: #fff;
}
.gdpr__inner {
  display: table;
  vertical-align: middle;
  width: 100%;
}
.gdpr__text {
  display: table-cell;
  vertical-align: middle;
}
.gdpr__text a {
  color: #a6d8ff;
}
.gdpr__text a:hover {
  color: #c1e2fc;
}
.gdpr__close-btn {
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 20px;
}
/******HEADER********/
.main-header {
  width: 100%;
  background: #fff;
  z-index: 4;
}
.main-header:after,
.main-header:before {
  content: '';
  clear: both;
  display: table;
}
.main-header__first-row {
  display: table;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}
@media (max-width: 740px) {
  .main-header__first-row {
    display: block;
  }
}
.main-header__logo {
  display: table-cell;
  vertical-align: middle;
  height: 44px;
}
.main-header__auth-form {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
@media (max-width: 740px) {
  .main-header__auth-form {
    display: none;
  }
}
.main-header_old-browser {
  margin-top: 85px;
}
.login-form {
  position: relative;
  display: inline-block;
  /*Горизонтальная модификация*/
}
.login-form__input {
  vertical-align: middle;
  max-width: 120px;
  margin-right: 1px;
}
.login-form__btn {
  vertical-align: middle;
}
.login-form__logged {
  display: inline-block;
  text-align: left;
  font-size: 13px;
  vertical-align: middle;
  padding-right: 15px;
  color: #96a2b0;
}
.login-form__logged-name {
  color: #000000;
}
.login-form__logged-btn {
  vertical-align: middle;
  color: inherit;
}
.login-form_horizontal {
  display: block;
}
.login-form_horizontal .login-form__input,
.login-form_horizontal .login-form__btn {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 10px;
}
.login-form_inverse-color .login-form__logged {
  color: #fff;
}
.login-form_inverse-color .login-form__logged .login-form__logged-name {
  color: #fff;
}
.login-form_inverse-color .login-form__logged .login-form__logged-name:hover {
  color: #fff;
}
.login-form__captcha {
  margin-right: 5px;
}
@media (max-width: 998px) {
  .login-form__captcha {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  .login-form__captcha {
    width: 100%;
  }
}
.captcha {
  display: inline-block;
}
.captcha_main-header {
  margin-right: 12px;
}
.captcha__image {
  display: inline-block;
  margin-right: 1px;
  vertical-align: middle;
  background: #fff;
  border-radius: 3px;
}
@media (max-width: 500px) {
  .captcha__image {
    margin-bottom: 10px;
    display: block;
  }
}
.captcha__input {
  width: 180px;
  vertical-align: middle;
}
@media (max-width: 500px) {
  .captcha__input {
    width: 100%;
  }
}
.auth-form-error {
  position: absolute;
  background: #e13333;
  color: #fff;
  top: 50%;
  margin-top: -12px;
  right: 100%;
  white-space: nowrap;
  margin-right: 20px;
  font-size: 13px;
  text-align: left;
  padding: 3px 20px;
  border-radius: 3px;
}
.auth-form-error:after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  display: block;
  border: 5px solid transparent;
  border-left: 5px solid #e13333;
  right: -10px;
  top: 50%;
  margin-top: -5px;
}
.input-help {
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 295px;
  padding: 5px 10px;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: left;
  background-color: #e13333;
}
.input-help:before {
  content: "";
  position: absolute;
  top: calc((100% - 12px) / 2);
}
.input-help_left {
  left: auto;
  right: 100%;
  margin: 0 6px 0 0;
}
.input-help_left:before {
  right: auto;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #e13333;
}
.input-help_right {
  left: 100%;
  right: auto;
  margin: 0 0 0 6px;
}
.input-help_right:before {
  right: 100%;
  left: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #e13333 transparent transparent;
}
.input-help__text {
  display: inline-block;
  text-align: left;
  font-size: 13px;
  line-height: 1.2em;
  color: #fff;
}
.main-navigation {
  background: #202d37;
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
}
.main-navigation:after,
.main-navigation:before {
  content: '';
  clear: both;
  display: table;
}
.main-navigation .menu-item {
  display: inline-block;
}
.main-navigation a {
  color: #fff;
  padding: 19px 15px;
  display: inline-block;
}
.main-navigation__menu-wrapper {
  margin-right: 120px;
  max-height: 60px;
  overflow: hidden;
}
.main-navigation__menu-wrapper a:hover,
.main-navigation__menu-wrapper a.active {
  position: relative;
  color: #fff;
}
.main-navigation__menu-wrapper a:hover:after,
.main-navigation__menu-wrapper a.active:after {
  background: #ff471a;
  display: block;
  position: absolute;
  content: '';
  top: 0px;
  left: 15px;
  right: 15px;
  height: 5px;
}
.main-navigation__menu-wrapper a:hover:first-child:after,
.main-navigation__menu-wrapper a.active:first-child:after {
  left: 0;
}
.main-navigation__menu-wrapper a:first-child {
  padding-left: 0;
}
.main-navigation__demo-button {
  float: right;
  text-align: right;
}
.main-navigation__demo-button a {
  position: relative;
  padding-left: 20px;
  padding-right: 0;
}
.main-navigation__demo-button a:hover {
  color: #ff471a;
}
.main-navigation__demo-button a:after {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 0;
  width: 1px;
  background: #cccfd1;
  content: '';
  display: block;
}
.main-navigation__menu {
  white-space: nowrap;
  overflow-x: scroll;
}
@media (max-width: 740px) {
  .main-navigation {
    display: none;
  }
}
.touch .main-navigation__demo-button {
  -webkit-box-shadow: -10px 0px 15px 0px rgba(0, 0, 0, 0.5);
          box-shadow: -10px 0px 15px 0px rgba(0, 0, 0, 0.5);
}
.mobile-burger {
  display: none;
  position: absolute;
  top: 24px;
  right: 20px;
  width: 26px;
  height: 26px;
  z-index: 9990;
  cursor: pointer;
}
.mobile-burger span {
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 3px;
  display: block;
  background: #4f5859;
}
.mobile-burger span:after,
.mobile-burger span:before {
  content: '';
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4f5859;
}
.mobile-burger span:after {
  top: auto;
  bottom: -7px;
}
.mobile-burger.active {
  display: block !important;
}
.mobile-burger.active span {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-burger.active span:before {
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease 0.12s;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.mobile-burger.active span:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 740px) {
  .mobile-burger {
    display: block;
  }
}
.mobile-burger-content {
  display: none;
  /*position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
  background: #202d37;
  color: #fff;
  z-index: 6;
  padding: 20px 40px;
  overflow-y: auto;
}
.mobile-burger-content.active {
  display: block;
}
.mobile-burger-content .mobile-menu {
  font-size: 24px;
  font-weight: bold;
}
.mobile-burger-content .mobile-menu a {
  color: #fff;
  padding-top: 4px;
  padding-bottom: 4px;
  display: inline-block;
}
.mobile-burger-content .mobile-menu a:hover {
  color: #ff471a;
}
.mobile-burger-content .mobile-menu__demo-button {
  border-top: 1px solid #4d575f;
  border-bottom: 1px solid #4d575f;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 5px;
}
.mobile-login .input-help {
  position: relative;
  top: 0;
  bottom: auto;
  left: 0 !important;
  right: auto !important;
  width: 100%;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.mobile-login .input-help:before {
  display: none;
}
.mobile-login .input-help__text {
  font-size: 16px;
}
.mobile-login .login-form__btn {
  height: 45px;
  line-height: 43px;
}
.old-browser-block {
  background: #e2e5e6;
  display: table;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  width: 100%;
}
.old-browser-block__supported-browser {
  display: table-cell;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
  vertical-align: middle;
  border-left: 1px solid #fff;
}
@media (max-width: 998px) {
  .old-browser-block__supported-browser {
    display: none;
  }
}
.old-browser-block__info {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 740px) {
  .old-browser-block__info {
    display: block;
  }
}
.old-browser-block__button {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 740px) {
  .old-browser-block__button {
    display: block;
    padding-left: 0;
    padding-top: 5px;
  }
}
.old-browser-block__browser-logo {
  margin-left: 5px;
  vertical-align: middle;
}
.main-footer {
  margin-top: 40px;
  background: #202d37;
  color: #6d808e;
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: normal;
}
.main-footer a {
  color: #ccc;
}
.main-footer a:hover {
  color: #fff;
}
.main-footer__wrapper {
  display: table;
  width: 100%;
}
.main-footer__column {
  display: table-cell;
  padding-left: 60px;
  vertical-align: top;
}
.main-footer__column_first {
  padding-left: 0;
}
.main-footer__copyright {
  font-size: 1.125em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 55px;
  white-space: nowrap;
}
.main-footer__block-social {
  font-size: 0.81em;
  white-space: nowrap;
}
.main-footer__email {
  font-size: 1.125em;
  font-weight: bold;
}
.main-footer__column_third {
  font-size: 0.81em;
}
@media (max-width: 998px) {
  .main-footer__column {
    display: block;
  }
  .main-footer__column_first,
  .main-footer__column_second {
    width: 50%;
    float: left;
    margin-bottom: 20px;
  }
  .main-footer__column_first {
    padding-right: 20px;
  }
  .main-footer__column_second {
    padding-left: 0;
  }
  .main-footer__column_third {
    padding-left: 0;
    width: 100%;
  }
  .main-footer__column_third:before {
    content: '';
    display: table;
    clear: both;
  }
  .main-footer__column:before {
    content: '';
    display: table;
    clear: both;
  }
  .main-footer__copyright {
    margin-bottom: 10px;
  }
  .main-footer__policy,
  .main-footer__note {
    width: 55%;
    float: left;
    padding-right: 30px;
  }
  .main-footer__policy {
    width: 45%;
  }
  .main-footer__note {
    padding-right: 0;
  }
}
@media (max-width: 740px) {
  .main-footer__copyright,
  .main-footer__email {
    font-size: 0.875em;
  }
  .main-footer__policy,
  .main-footer__note {
    float: none;
    width: 100%;
    margin-top: 20px;
  }
}
.language-switcher {
  font-size: 16px;
}
.language-switcher__item {
  display: inline-block;
}
.language-switcher__item.active {
  display: none;
}
/*** styles for new homepage ***/
.btn-lg_lower {
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 3px;
}
body {
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: normal;
}
.bg_grey {
  background-color: #e3e5e6;
}
.bg_darkgrey {
  background-color: #cccfd1;
}
.header {
  padding: 50px 0;
  border-bottom: 3px solid #fff;
}
.header__date {
  margin-bottom: 5px;
  font-size: 13px;
}
.header__title {
  margin-left: auto;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 15px;
}
.header__subtitle {
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  line-height: 1em;
  max-width: 700px;
}
@media (max-width: 740px) {
  .header__subtitle {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
  }
}
.header__container {
  margin: 0 auto 55px;
}
@media (min-width: 740px) {
  .header__inner-left {
    float: left;
    width: 40%;
  }
  .header__inner-left_wide {
    width: 60%;
  }
}
.header__inner-right {
  text-align: right;
}
@media (min-width: 740px) {
  .header__inner-right {
    margin-left: 40%;
  }
  .header__inner-right_short {
    margin-left: 60%;
  }
}
.header__cta {
  text-align: center;
  margin-top: 15px;
}
.header__video {
  max-width: 800px;
  height: 450px;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .header__video {
    height: 177px;
  }
}
.header__carousel {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.sp-features {
  text-align: center;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.sp-features > li {
  margin: 0;
}
.sp-features > li:before {
  content: none;
}
.sp-features > li {
  margin: 0;
}
.sp-features > li:before {
  content: none;
}
.sp-features > li {
  display: inline-block;
  margin-left: -2px;
  margin-right: 20px;
  vertical-align: top;
}
.sp-features > li:first-of-type {
  margin-left: 0;
}
.sp-features > li:last-of-type {
  margin-right: 0;
}
.sp-features__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
@media (max-width: 740px) {
  .sp-features__icon {
    display: block;
  }
}
.sp-features__name {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 16px;
  line-height: 1.2em;
}
@media (max-width: 740px) {
  .sp-features__name {
    display: block;
    text-align: center;
  }
}
@media (max-width: 740px) {
  .sp-features__item {
    margin: 0 !important;
    padding: 5px;
    width: 49%;
  }
  .sp-features__item:nth-of-type(odd) {
    padding-left: 15%;
  }
  .sp-features__item:nth-of-type(even) {
    padding-right: 15%;
  }
}
.section {
  padding: 45px 0;
}
.section_clients {
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 80px 0 130px;
  background-image: url("/Content/images/homepage/city.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.section_form {
  margin-bottom: 55px;
  margin-top: 80px;
  padding-bottom: 0;
}
.section__title {
  margin-bottom: 10px;
}
.section__title_color_inverse {
  color: #fff;
}
.section__title_clients {
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}

.sp-factoid {
  padding: 0;
}
.sp-factoid:not(.jcarousel) .sp-factoid__item {
  width: 25%!important;
  display: inline-block;
  margin-left: -2px;
  margin-right: -2px;
  vertical-align: top;
}
.sp-factoid:not(.jcarousel) .sp-factoid__item_top-elem {
  width: 100%!important;
  text-align: center;
}
.sp-factoid:not(.jcarousel) .sp-factoid__item:before {
  content: none;
}
.sp-factoid.jcarousel .sp-counter__val {
  display: block;
}
.sp-factoid.jcarousel .sp-counter_main .sp-counter__val {
  font-size: 100px;
}
.sp-counter {
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}
.sp-counter_main {
  display: inline-block;
}
.sp-counter_main .sp-counter__val {
  display: inline-block;
  vertical-align: top;
  margin-right: 35px;
  font-size: 130px;
}
.sp-counter_main .sp-counter__val-fract {
  font-size: 65px;
}
.sp-counter_main .sp-counter__descr {
  display: inline-block;
  vertical-align: top;
  max-width: 260px;
}
.sp-counter__val {
  font-family: 'Greta Sans Pro Comp Medium', sans-serif;
  font-weight: normal;
  font-size: 100px;
  line-height: 0.7;
  color: #ff471a;
}
.sp-counter__val-fract {
  font-size: 50px;
}
.sp-counter__rate {
  font-family: 'Greta Sans Pro', sans-serif;
  font-weight: normal;
  font-weight: bold;
  font-size: 16px;
}
.sp-counter__descr {
  font-size: 16px;
  line-height: 1.2em;
}
.sp-counter__incr {
  margin-top: 3px;
  font-size: 13px;
  color: #96a2b0;
}
@media (max-width: 740px) {
  .sp-counter {
    padding-bottom: 0;
  }
}
.features-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.features-list > li {
  margin: 0;
}
.features-list > li:before {
  content: none;
}
.features-list > li {
  margin: 0;
}
.features-list > li:before {
  content: none;
}
.features-list > li {
  display: inline-block;
  margin-left: -4px;
  margin-right: 10%;
  vertical-align: top;
}
.features-list > li:first-of-type {
  margin-left: 0;
}
.features-list > li:last-of-type {
  margin-right: 0;
}
.features-list__item {
  width: calc((100% - (10% + 4px) * 2 ) / 3);
  margin-bottom: 30px!important;
}
@media (min-width: 740px) {
  .features-list__item:nth-of-type(3n) {
    margin-right: 0 !important;
  }
}
@media (max-width: 740px) {
  .features-list__item {
    width: calc((100% - (10% + 2px) * 2 ) / 2);
  }
  .features-list__item:nth-of-type(2n) {
    margin-right: 0 !important;
  }
}
@media (max-width: 740px) {
  .features-list__item {
    width: 100%;
    margin-right: 0!important;
  }
}
.features {
  text-align: center;
}
.features__link {
  color: #000000;
}
.features__link:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.features__image {
  position: relative;
}
.features__image img {
  max-width: 100%;
}
@media (max-width: 740px) {
  .features__image {
    width: 30%;
    float: left;
  }
}
.features__label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 2px 6px;
  border-radius: 2px;
  background: #ff471a;
  color: #fff;
  font-size: 9px;
}
.features__title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1em;
}
@media (max-width: 740px) {
  .features__title {
    font-size: 16px;
    padding-left: 10px;
    margin-left: 30%;
  }
}
.features__descr {
  font-size: 16px;
}
@media (max-width: 740px) {
  .features__descr {
    font-size: 13px;
    margin-left: 30%;
    padding-left: 10px;
  }
}
@media (max-width: 740px) {
  .features {
    text-align: left;
  }
}
.sources-spark {
  background-size: contain;
  margin: 0 auto;
  max-width: 780px;
  overflow: hidden;
}
.sources-spark__header {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
@media (max-width: 740px) {
  .sources-spark__header {
    display: none;
  }
}
.sources-spark__img-item {
  width: 25%;
  float: left;
}
@media (min-width: 740px) {
  .sources-spark__img-item {
    display: none;
  }
}
.sources-spark__img-sub-item {
  height: 100px;
  margin-bottom: 10px;
  position: relative;
}
.sources-spark__img-sub-item:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: "";
}
.sources-spark__img-sub-item > img {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 740px) {
  .sources-spark__annotate {
    padding-left: 28%;
    font-size: 13px;
  }
}
.sources-spark__list {
  margin: 0 auto;
  margin-top: 20px;
}
.sources-spark__list:after,
.sources-spark__list:before {
  display: table;
  clear: both;
  content: '';
}
.sources-spark__list-title {
  font-weight: bold;
}
.sources-spark__list-item {
  width: 26%;
  float: left;
  margin: 0;
  margin-left: 11%;
  text-align: center;
}
.sources-spark__list-item:after,
.sources-spark__list-item:before {
  content: '';
  display: table;
  clear: both;
}
.sources-spark__list-item:first-child {
  margin-left: 0;
}
.sources-spark__list-item:before {
  content: none;
}
.sources-spark__list-item_bordered-top {
  border-top: 1px solid #F5821F;
  padding-top: 10px;
}
@media (max-width: 740px) {
  .sources-spark__list-item_bordered-top {
    border-top: 0;
  }
}
@media (max-width: 740px) {
  .sources-spark__list-item {
    width: 100%;
    float: none;
    margin: 0;
    margin-bottom: 40px;
    text-align: left;
    font-size: 13px;
  }
  .sources-spark__list-item:last-child {
    margin-bottom: 0px;
  }
  .sources-spark__list-item .sources-spark__list-title_top {
    font-size: 25px;
  }
}
.sources-spark__info {
  overflow: hidden;
  margin-top: 5px;
}
.sources-spark__info-col {
  width: 50%;
  float: left;
  min-width: 80px;
}
.sources-spark__info-icon {
  display: inline-block;
  margin: 0 auto;
}
.sources-spark__sub-list {
  font-size: 13px;
  padding-top: 70px;
  background: url(/Content/i/ico-sources-arrow.png) no-repeat 42px 0;
  margin-top: 10px;
}
@media (max-width: 740px) {
  .sources-spark__sub-list {
    background: none;
    padding-top: 0;
  }
}
.sources-spark__sub-list-item {
  margin-bottom: 40px;
  padding-right: 20px;
}
@media (max-width: 740px) {
  .sources-spark__sub-list-item {
    margin-bottom: 20px;
    width: 50%;
    float: left;
  }
  .sources-spark__sub-list-item:nth-child(2n):after {
    clear: both;
    display: table;
    content: '\00a0';
  }
}
@media (max-width: 500px) {
  .sources-spark__sub-list-item {
    width: 100%;
    float: none;
  }
}
.sources-spark.sources-spark_full {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
}
.sources-spark.sources-spark_full .sources-spark__list {
  margin-top: 0;
}
.sources-spark.sources-spark_full .sources-spark__list-item {
  width: 21.25%;
  margin-left: 5%;
  text-align: left;
}
.sources-spark.sources-spark_full .sources-spark__list-item:first-child {
  margin-left: 0;
}
@media (max-width: 740px) {
  .sources-spark.sources-spark_full .sources-spark__list-item {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}
@media (max-width: 740px) {
  .sources-spark .height {
    height: auto !important;
  }
}

.collapsible.collapsed .sp-icon-angle {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.i-valuation {
  display: inline-block;
  width: 29px;
  height: 31px;
  background: url("/Content/images/homepage/valuation.png") no-repeat;
}
.i-blazon {
  display: inline-block;
  width: 31px;
  height: 31px;
  background: url("/Content/images/homepage/blazon.png") no-repeat;
}
.i-monitoring-new {
  display: inline-block;
  width: 29px;
  height: 33px;
  background: url("/Content/images/homepage/monitoring.png") no-repeat;
}
.i-affiliation {
  display: inline-block;
  width: 33px;
  height: 31px;
  background: url("/Content/images/homepage/affiliation.png") no-repeat;
}
.i-persons {
  display: inline-block;
  width: 35px;
  height: 36px;
  background: url("/Content/images/homepage/persons.png") no-repeat;
}
.l-grid {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.l-grid > li {
  margin: 0;
}
.l-grid > li:before {
  content: none;
}
.l-grid > li {
  margin: 0;
}
.l-grid > li:before {
  content: none;
}
.l-grid > li {
  display: inline-block;
  margin-left: -2px;
  margin-right: -2px;
  vertical-align: top;
}
.l-grid > li:first-of-type {
  margin-left: 0;
}
.l-grid > li:last-of-type {
  margin-right: 0;
}
.l-grid_regions .l-grid__item {
  margin-right: 50px;
  width: calc((100% - (50px + 2px) * 3 ) / 4);
}
@media (max-width: 998px) {
  .l-grid_regions .l-grid__item {
    width: calc((100% - (4px)) / 2);
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
  }
}
@media (max-width: 740px) {
  .l-grid_regions .l-grid__item {
    width: calc(100%);
  }
}
/***** Global *******/
.main-font {
  font-family: 'Greta Sans Pro', sans-serif;
}
.bold {
  font-weight: bold;
}
.inline-block {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.vertical-middle {
  vertical-align: middle;
  display: inline-block;
}
.vertical-top {
  vertical-align: top;
  display: inline-block;
}
.full-width {
  width: 100%;
}
.full-height {
  height: 100%;
}
.main-color {
  color: #ff471a;
}
.hide {
  display: none;
}
.nowrap {
  white-space: nowrap;
}
.relative {
  position: relative;
}
.list-unstyled {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.list-unstyled > li {
  margin: 0;
}
.list-unstyled > li:before {
  content: none;
}
.pointer {
  cursor: pointer;
}
.pull-left {
  float: left;
}
.no-float {
  float: none !important;
}
/***** FONTS *******/
.font-size-13 {
  font-size: 13px;
}
.font-size-16 {
  font-size: 16px;
}
.font-size-24 {
  font-size: 24px;
}
/***** PADDINGS *******/
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-15 {
  padding-top: 15px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-bottom-5 {
  padding-bottom: 5px;
}
.padding-bottom-35 {
  padding-bottom: 35px;
}
.padding-right-0 {
  padding-right: 0;
}
.padding-right-5 {
  padding-right: 5px;
}
.padding-right-10 {
  padding-right: 10px;
}
.padding-right-15 {
  padding-right: 15px;
}
.padding-right-20 {
  padding-right: 20px;
}
/***** MARGINS *******/
.top-offset-5 {
  margin-top: 5px;
}
.top-offset-10 {
  margin-top: 10px;
}
.top-offset-15 {
  margin-top: 15px;
}
.top-offset-20 {
  margin-top: 20px;
}
.top-offset-25 {
  margin-top: 25px;
}
.top-offset-30 {
  margin-top: 30px;
}
.top-offset-35 {
  margin-top: 35px;
}
.top-offset-40 {
  margin-top: 40px;
}
.top-offset-45 {
  margin-top: 45px;
}
.top-offset-50 {
  margin-top: 50px;
}
.top-offset-60 {
  margin-top: 60px;
}
.bottom-offset-0 {
  margin-bottom: 0;
}
.bottom-offset-5 {
  margin-bottom: 5px;
}
.bottom-offset-10 {
  margin-bottom: 10px;
}
.bottom-offset-15 {
  margin-bottom: 15px;
}
.bottom-offset-20 {
  margin-bottom: 20px;
}
.bottom-offset-25 {
  margin-bottom: 25px;
}
.bottom-offset-30 {
  margin-bottom: 30px;
}
.bottom-offset-40 {
  margin-bottom: 40px;
}
.bottom-offset-50 {
  margin-bottom: 50px;
}
.bottom-offset-60 {
  margin-bottom: 60px;
}
.bottom-offset-100 {
  margin-bottom: 100px;
}
.right-offset-5 {
  margin-right: 5px;
}
.right-offset-10 {
  margin-right: 10px;
}
.right-offset-20 {
  margin-right: 20px;
}
.right-offset-30 {
  margin-right: 30px;
}
.right-offset-40 {
  margin-right: 40px;
}
.left-offset-5 {
  margin-left: 5px;
}
.left-offset-10 {
  margin-left: 10px;
}
.left-offset-20 {
  margin-left: 20px;
}
.margin-0 {
  margin: 0;
}
.margin-0-auto {
  margin: 0 auto;
}
td.vertical-middle-td {
  vertical-align: middle;
}
.uppercase {
  text-transform: uppercase;
}
.ruble:after {
  content: ' \20BD';
}
.percent:after {
  content: ' %';
}
@media (max-width: 740px) {
  .mobile-hidden {
    display: none;
  }
}
@media screen and (max-width: 998px) {
  .tablet-hidden {
    display: none;
  }
}
.responsive-img {
  max-width: 100%;
  height: auto;
}
.block-article h2 {
  margin-bottom: 10px;
}
.block-article .main-content {
  padding-top: 50px;
  padding-bottom: 70px;
  max-width: 880px;
}
.block-article img {
  height: auto!important;
  max-width: 100%;
}
.block-article .img-container {
  width: 100%;
}
.block-article .img-container .img-inner {
  display: inline-block;
}
.block-article .img-container .img-inner img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.block-article .img-decr {
  border-bottom: 1px solid #dcdcdc;
  font-size: 13px;
  margin-bottom: 30px;
  padding: 5px 0 8px 0;
}
.block-article .quote {
  font-style: italic;
  font-size: 16px;
  padding-left: 55px;
}
.block-article .has-arcticle-addon {
  position: relative;
  display: block;
}
.block-article .arcticle-addon {
  position: absolute;
  width: 240px;
  top: 0;
  left: 720px;
  text-align: center;
}
.block-article .subscrybe-form {
  margin-top: 50px;
  margin-bottom: 50px;
  background-color: #e2e5e6;
  display: inline-block;
}
.block-article .subscrybe-form .form-inner {
  padding: 30px;
  width: auto;
  margin-left: 0;
}
.block-article .subscrybe-form__input {
  margin-right: 1px;
}
.block-article .rubric {
  font-size: 12px;
}
.b-documents.half {
    background-position: 100% 0;
}
.b-documents, .b-update {
    width: 18px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 0 0;
}
.b-documents {
    background-image: url("i/ico-documents.png");
}
.b-update {
    background-image: url("i/ico-updates.png");
}
.b-documents.double {
    width: 36px;
}
.b-documents.quadruple {
    width: 72px;
}
.b-documents.quintuple {
    width: 90px;
}
.b-update.daily {
    background-position: -18px 0;
}
.b-update.weekly {
    background-position: -36px 0;
}
.b-update.monthly {
    background-position: -54px 0;
}
.b-update.quarterly {
    width: 27px;
    background-position: -72px 0;
}

