@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.default-box-shadow {
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
.list-unstyled {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.list-unstyled > li {
  margin: 0;
}
.list-unstyled > li:before {
  content: none;
}
@font-face {
  font-family: 'Greta Sans Pro';
  src: url('/fonts/greta-sans-pro/regular/greta-sans-pro.eot');
  src: local('Greta Sans Pro'), url('/fonts/greta-sans-pro/regular/greta-sans-pro.woff') format('woff'), url('/fonts/greta-sans-pro/regular/greta-sans-pro.ttf') format('truetype'), url('/fonts/greta-sans-pro/regular/greta-sans-pro.eot?#iefix') format('embedded-opentype'), url('/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('/fonts/greta-sans-pro/bold/greta-sans-pro-bold.eot');
  src: local('Greta Sans Pro Bold'), url('/fonts/greta-sans-pro/bold/greta-sans-pro-bold.woff') format('woff'), url('/fonts/greta-sans-pro/bold/greta-sans-pro-bold.ttf') format('truetype'), url('/fonts/greta-sans-pro/bold/greta-sans-pro-bold.eot?#iefix') format('embedded-opentype'), url('/fonts/greta-sans-pro/bold/greta-sans-pro-bold.svg#Greta_Sans_Pro') format('svg');
  font-weight: bold;
  font-style: normal;
}
.disabled,
*:disabled {
  opacity: 0.8;
}
.full-width {
  width: 100%;
}
.top-offset-5 {
  margin-top: 5px;
}
.top-offset-40 {
  margin-top: 40px;
}
.top-offset-50 {
  margin-top: 50px;
}
.bottom-offset-40 {
  margin-bottom: 40px;
}
.hide {
  display: none;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.pointer {
  cursor: pointer;
}
.responsive-img {
  max-width: 100%;
  width: 100%;
}
/*//////////////////////////////////////////////////////////////*/
* {
  -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;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  height: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.custom-textarea {
  border: 1px solid #ccc;
}
/******* LINKS *******/
a,
.link {
  color: #004880;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.link:hover {
  color: #d30000;
  text-decoration: none;
}
/******* BUTTONS *******/
.btn {
  height: 45px;
  font-family: 'Greta Sans Pro', sans-serif;
  line-height: 43px;
  font-weight: bold;
  font-size: 24px;
  cursor: pointer;
  -webkit-border-radius: 3px;
          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:not(.hide) {
  display: inline-block;
}
.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 {
  -webkit-border-radius: 5px;
          border-radius: 5px;
  height: 55px;
  line-height: 55px;
  font-size: 24px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 500px) {
  .btn-lg {
    font-size: 20px;
  }
}
.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.3);
  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;
  background: rgba(255, 255, 255, 0.8);
}
.btn-primary {
  background: #ff2300;
  color: #fff;
  border: 1px solid #ff2300;
  font-weight: bold;
}
.btn-primary:hover {
  color: #fff;
  background: #ff4f33;
  border-color: #ff4f33;
}
.btn-primary a {
  color: #fff;
}
.button-close {
  width: 23px;
  height: 24px;
  background: url("img/ico-close.png") no-repeat 5px 5px;
  cursor: pointer;
}
.spoiler-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}
.spoiler-content.active {
  max-height: 9999px;
  opacity: 1;
}
/******* END BUTTONS *******/
.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: 999;
  background: rgba(0, 0, 0, 0.5);
}
.popup-container:not(.active) {
  display: none;
}
.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("/img/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;
}
#fader {
  display: none;
  background: #000000;
  position: fixed;
  top: -100%;
  right: 0;
  bottom: -100%;
  left: 0;
  z-index: 6;
}
/**********************/
/****** Селектор ******/
/**********************/
.select2-container {
  min-width: 90px;
}
.select2-container .select2-selection--single {
  height: auto;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 6.5px;
  padding-bottom: 6.5px;
  line-height: 1.4;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  display: inline-block;
}
.select2-container .select2-selection--single .select2-selection__arrow:after {
  content: '';
  vertical-align: middle;
  margin-top: 12px;
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container .select2-results__option--highlighted[aria-selected] {
  background: #ccc;
  color: #000000;
}
.select2-container .select2-results__option[aria-selected=true] {
  background: #96a2b0;
  color: #fff;
}
.select2-container .select2-results__options {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.select2-container .select2-results__options > li {
  margin: 0;
}
.select2-container .select2-results__options > li:before {
  content: none;
}
.select2-container.select2-container--open .select2-selection__arrow:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.layout-form {
  padding-left: 20px;
  padding-right: 20px;
  -webkit-border-radius: 3px;
          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;
  -webkit-border-bottom-left-radius: 3px;
          border-bottom-left-radius: 3px;
  -webkit-border-bottom-right-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;
}
.valiadation-element + label.error,
.valiadation-element .error {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 165px;
  left: 100%;
  padding: 5px;
  color: #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-left: 5px;
  font-size: 12px;
  text-align: left;
  background: #e13333;
  line-height: 1.4em;
}
.valiadation-element + label.error:before,
.valiadation-element .error: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) {
  .valiadation-element + label.error:before,
  .valiadation-element .error: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) {
  .valiadation-element + label.error,
  .valiadation-element .error {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .valiadation-element + label.error:not(.hide),
  .valiadation-element .error:not(.hide) {
    display: block;
  }
}
/***********************/
ul.horizontal-ul li {
  display: inline;
  margin: 0;
}
ul.horizontal-ul li:before {
  content: '•';
  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("/img/sp-icon-kit.png") no-repeat;
  background-position: -74px -177px;
  cursor: pointer;
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
}
.custom-checkbox input[type="checkbox"]:checked ~ .custom-checkbox__marker:after {
  background-position: -95px -177px;
}
/******* END FORMS *******/
/******* LANDING LESS *******/
body {
  background: #fdfcfc;
  font-family: "Greta Sans Pro";
}
p {
  margin-top: 1em;
  margin-bottom: 1em;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
strong,
b {
  font-weight: bold;
}
h2,
.h2 {
  font-size: 45px;
  line-height: 1em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}
@media screen and (max-width: 740px) {
  h2,
  .h2 {
    font-size: 33px;
  }
}
h3 {
  font-size: 23px;
}
h4 {
  font-size: 20px;
}
.container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.number {
  width: 105px;
  height: 105px;
  line-height: 105px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  color: #fff;
  background: #ff2300;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.highlight {
  color: #ff2300;
}
.header {
  width: 100%;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 740px) {
  .header {
    padding-right: 50px;
  }
}
.header__logo,
.header__logo-interfax {
  display: inline-block;
}
.header__logo {
  padding-right: 5px;
  margin-right: -4px;
}
@media screen and (max-width: 500px) {
  .header__logo {
    border-right: 1px solid #c8c8c8;
  }
}
.header__logo-interfax {
  float: right;
  padding-left: 5px;
}
.main-menu {
  padding-top: 20px;
  padding-bottom: 20px;
}
.main-menu__items {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}
.main-menu__item {
  display: inline-block;
  margin-right: 20px;
  margin-left: 0;
  vertical-align: middle;
  margin-bottom: 0;
}
.main-menu__item:before {
  display: none;
}
.main-menu__item a {
  color: inherit;
  text-decoration: none;
}
.main-menu__item:hover {
  color: #ff2300;
}
@media screen and (max-width: 740px) {
  .main-menu__item {
    width: 100%;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
    display: block;
  }
}
@media screen and (max-width: 740px) {
  .main-menu {
    display: none;
  }
}
@media screen and (max-width: 740px) {
  .main-menu.active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #084774;
    overflow: auto;
    z-index: 990;
    color: #fff;
    font-weight: bold;
  }
}
.mobile-burger {
  display: none;
  position: absolute;
  top: 25px;
  right: 10px;
  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;
  left: auto;
  right: 10px;
}
.mobile-burger.active span {
  -webkit-transition-delay: .12s;
       -o-transition-delay: .12s;
          transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-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);
  background: #fff;
}
.mobile-burger.active span:before {
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease .12s;
  -o-transition: top 75ms ease, opacity 75ms ease .12s;
  transition: top 75ms ease, opacity 75ms ease .12s;
  opacity: 0;
  background: #fff;
}
.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;
  -o-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;
  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);
  background: #fff;
}
@media (max-width: 740px) {
  .mobile-burger {
    display: block;
  }
}
.industry-section {
  background: #fbfafa;
  text-align: center;
}
.industry-section__title {
  font-size: 33px;
  max-width: 750px;
  margin: 15px auto 25px auto;
  line-height: 1.25;
}
@media screen and (max-width: 740px) {
  .industry-section__title {
    font-size: 24px;
  }
}
.industry-section__columns {
  width: 100%;
  margin-top: 50px;
}
@media screen and (min-width: 740px) {
  .industry-section__columns {
    display: table;
  }
}
.industry-section__columns-item {
  padding-top: 50px;
}
@media screen and (min-width: 998px) {
  .industry-section__columns-item {
    display: table-cell;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.industry-section__button {
  margin-bottom: 10px;
}
@media screen and (min-width: 500px) {
  .industry-section__button {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px) {
  .industry-section__button {
    width: 100%;
  }
}
.ipd-stats {
  text-align: left;
  display: table;
  width: 100%;
  height: 280px;
  background: #fff;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
@media screen and (max-width: 740px) {
  .ipd-stats {
    height: auto;
    display: block;
  }
}
.ipd-stats__item {
  display: table-cell;
  width: 33.3%;
  padding: 20px;
  height: 100%;
  position: relative;
  border-left: 1px solid #f1e9e4;
}
.ipd-stats__item:first-child {
  border-left: 0;
}
@media screen and (max-width: 740px) {
  .ipd-stats__item {
    padding: 10px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #f0e9e5;
  }
}
.ipd-stats__count {
  color: #ff2300;
  font-size: 2em;
  font-weight: bold;
}
.ipd-stats__sphere {
  padding-bottom: 15px;
  border-bottom: 1px dotted #ff2300;
}
@media screen and (min-width: 998px) {
  .ipd-stats__sphere {
    height: 110px;
  }
}
.ipd-stats__assignment {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
}
@media screen and (max-width: 740px) {
  .ipd-stats__assignment {
    position: static;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.industry {
  width: 100%;
}
@media screen and (min-width: 1201px) {
  .industry__column {
    display: inline-block;
  }
}
.industry-list {
  list-style-type: none;
  text-align: left;
  padding-left: 0;
  vertical-align: middle;
  background: #fff;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  position: relative;
  margin-right: 30px;
  display: inline-block;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
@media screen and (max-width: 1200px) {
  .industry-list {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 998px) {
  .industry-list {
    width: 100%;
  }
}
.industry-list:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 20px;
  height: 20px;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
  margin-left: -15px;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .industry-list:after {
    left: 50%;
    top: 100%;
    margin-left: -10px;
    margin-top: -15px;
    -webkit-transform: rotateZ(135deg);
        -ms-transform: rotate(135deg);
            transform: rotateZ(135deg);
  }
}
.industry-list__wrapper {
  margin-bottom: -1px;
}
.industry-list__item {
  height: 230px;
  width: 180px;
  display: inline-block;
  margin: 0;
  margin-right: -4px;
  vertical-align: middle;
  position: relative;
  border-left: 1px solid #f1e9e4;
  border-bottom: 1px solid #f1e9e4;
}
@media screen and (max-width: 998px) {
  .industry-list__item {
    width: 33.3%;
  }
}
@media screen and (max-width: 740px) {
  .industry-list__item {
    width: 50%;
    height: 180px;
  }
}
.industry-list__item:first-child {
  border-left: 0;
}
.industry-list__item:before {
  content: '';
  display: none;
}
.industry-list__item-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
}
@media screen and (max-width: 740px) {
  .industry-list__item-text {
    left: 15px;
    right: 15px;
  }
}
.industry-list__item-icon {
  position: absolute;
  left: 20px;
  top: 20px;
}
.industry-count {
  display: inline-block;
  width: 140px;
  height: 140px;
  vertical-align: middle;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
.industry-count__count-text {
  margin-top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
.industry-count__count-text strong {
  font-size: 2em;
  color: #ff2300;
  display: block;
}
.ipd-info {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}
.ipd-info__img-column,
.ipd-info__descr-column {
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
  text-align: left;
}
@media screen and (min-width: 740px) {
  .ipd-info__img-column,
  .ipd-info__descr-column {
    display: table-cell;
    width: 50%;
  }
}
.ipd-info__descr-column {
  padding-top: 10px;
}
.ipd-info__descr-column p {
  margin-top: 0;
  margin-bottom: 10px;
}
.ipd-info__img {
  width: 100%;
}
.ipd-info__block {
  background: #fff;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  width: 100%;
  max-width: 280px;
  padding: 20px;
}
.ipd-info__block span {
  color: #ff2300;
}
.ipd-info__block strong {
  font-size: 2em;
  display: block;
  line-height: 1em;
}
@media screen and (min-width: 740px) {
  .ipd-info {
    display: table;
  }
}
.about-debt-list {
  counter-reset: section;
  -webkit-box-shadow: 0px 1px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 1px 20px 0px rgba(135, 51, 0, 0.2);
  -webkit-border-radius: 5px;
          border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.about-debt-list:after {
  content: '';
  width: 1px;
  z-index: 10;
  position: absolute;
  right: 0;
  top: -1px;
  height: 100%;
  background: #f4ece7;
  display: block;
}
.about-debt-list__item {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 55px;
  padding-left: 20px;
  width: 50%;
  float: left;
  position: relative;
  border-bottom: 1px solid #f1e9e4;
  border-right: 1px solid #f1e9e4;
  margin-bottom: -1px;
  margin-right: -1px;
  overflow: hidden;
  min-height: 130px;
}
@media screen and (min-width: 998px) {
  .about-debt-list__item {
    width: 33.4%;
  }
}
@media screen and (max-width: 740px) {
  .about-debt-list__item {
    width: 100%;
    float: none;
  }
}
@media screen and (min-width: 740px) {
  .about-debt-list__item {
    height: 200px;
  }
}
.about-debt-list__item:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  right: -0.15em;
  top: 25px;
  font-size: 9em;
  font-weight: bold;
  color: #f1e9e4;
  line-height: 0.7;
}
.about-section {
  width: 100%;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.about-section__column {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 740px) {
  .about-section__column {
    width: 50%;
    vertical-align: top;
    display: table-cell;
  }
}
@media screen and (min-width: 998px) {
  .about-section {
    display: table;
  }
}
@media screen and (min-width: 740px) {
  .create-trust {
    max-width: 480px;
    font-size: 24px;
  }
}
.create-trust__list-item {
  display: table;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 740px) {
  .create-trust__list-item {
    margin-bottom: 10px;
  }
}
.create-trust__list-item-text {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  line-height: 1.3;
}
.create-trust__icon-wrapper {
  display: table-cell;
  padding-top: 0.6em;
}
.create-trust__icon {
  background: #ff2300;
  width: 50px;
  height: 2px;
}
.about-payments:after,
.about-payments:before {
  content: '';
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 998px) {
  .about-payments__description {
    padding-right: 290px;
  }
}
.about-payments__block {
  -webkit-border-radius: 5px;
          border-radius: 5px;
  width: 270px;
  font-size: 0.875em;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
@media screen and (min-width: 998px) {
  .about-payments__block {
    float: right;
  }
}
.about-payments__block-logo {
  margin-bottom: 5px;
}
.about-payments__block-sub-title {
  color: #fff;
  letter-spacing: 0.075em;
  font-weight: bold;
  text-transform: uppercase;
}
.about-payments__block-header {
  background: #293544;
  padding: 20px;
  -webkit-border-top-left-radius: 5px;
          border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
          border-top-right-radius: 5px;
}
.about-payments__block-content {
  padding: 25px 20px;
  line-height: 1.6;
}
.about-payments__block-content strong {
  color: #ff2300;
  font-weight: normal;
}
.about-payments__block-anchor {
  color: #ff2300;
  margin-top: 20px;
  display: block;
  font-size: 0.875em;
}
.examples-section {
  background: #fdfcfc;
}
.examples-list {
  text-align: center;
}
.examples-list__item-title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.examples-list__item {
  margin-bottom: 40px;
}
.examples-list__item-content {
  padding-bottom: 20px;
  max-width: 530px;
  margin: 0 auto;
}
.examples-list__item-screenshot {
  position: relative;
}
@media screen and (max-width: 998px) {
  .examples-list__item-screenshot:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: #ffffff;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.31) 0%, #f1e9e4 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), to(#f1e9e4));
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.3) 0%, #f1e9e4 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.3) 0%, #f1e9e4 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, #f1e9e4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000', GradientType=1);
    /* IE6-9 */
  }
}
.examples-list__item-screenshot-wrapper {
  width: 100%;
  overflow-x: auto;
}
.news {
  background: #353535;
  color: #fff;
  text-align: center;
}
.news__title {
  margin-top: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  .news__list-wrapper {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 740px) {
  .news__list-wrapper {
    border-right: 1px solid #4e4e4e;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 740px) {
  .news__block {
    display: table;
  }
  .news__own,
  .news__other {
    display: table-cell;
    width: 50%;
  }
}
.news__other .news__list-wrapper {
  border-right: 0;
}
.news__btn {
  margin-top: 5px;
  width: 100%;
  max-width: 350px;
}
.news-list {
  text-align: left;
  font-size: 24px;
  color: #fefefe;
}
.news-list__item {
  width: 50%;
  border-top: 1px solid #4e4e4e;
  padding-right: 30px;
  padding-top: 25px;
  margin-right: -5px;
  margin-bottom: 50px;
  color: inherit;
  vertical-align: top;
}
.news-list__item:not(.hide) {
  display: inline-block;
}
@media screen and (max-width: 998px) {
  .news-list__item {
    width: 100%;
    height: auto !important;
  }
}
.news-list__item-date {
  font-size: 0.5em;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}
.news-list__item-name {
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
}
.spoilers {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
          box-shadow: 0px 10px 20px 0px rgba(135, 51, 0, 0.2);
}
.spoilers__title {
  line-height: 1.15em;
}
.spoilers__header {
  position: relative;
  font-size: 1.5em;
  font-weight: 700;
}
.spoilers__header:after,
.spoilers__header:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -75px;
  margin-top: -3px;
  background: #ff2300;
  width: 30px;
  height: 5px;
}
@media screen and (max-width: 500px) {
  .spoilers__header:after,
  .spoilers__header:before {
    right: -35px;
  }
}
.spoilers__header:after {
  -webkit-transform: rotateZ(90deg);
      -ms-transform: rotate(90deg);
          transform: rotateZ(90deg);
}
.spoilers__content {
  max-height: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transition: max-height 0.1s, -webkit-transform 0.1s;
  transition: max-height 0.1s, -webkit-transform 0.1s;
  -o-transition: max-height 0.1s, transform 0.1s;
  transition: max-height 0.1s, transform 0.1s;
  transition: max-height 0.1s, transform 0.1s, -webkit-transform 0.1s;
  overflow: hidden;
}
.spoilers__item {
  padding: 20px 30px;
  padding-right: 100px;
  cursor: pointer;
}
.spoilers__item:hover .spoilers__title {
  color: #ff2300;
}
.spoilers__item.active .spoilers__header:before {
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
}
.spoilers__item.active .spoilers__header:after {
  -webkit-transform: rotateZ(0deg);
      -ms-transform: rotate(0deg);
          transform: rotateZ(0deg);
}
.spoilers__item.active .spoilers__content {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  max-height: 9999px;
}
.spoilers__item:not(:last-child) {
  border-bottom: 1px solid #d7dfe3;
}
@media screen and (max-width: 500px) {
  .spoilers__item {
    padding-right: 60px;
  }
}
.contacts {
  text-align: center;
}
.contacts__title {
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 740px) {
  .contacts {
    text-align: left;
  }
}
.contacts-persons {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.contacts-persons__item {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  margin-bottom: 30px;
  vertical-align: top;
  padding-right: 40px;
}
.contacts-persons__item-name {
  font-size: 24px;
}
.contacts-persons__item-job {
  margin-bottom: 10px;
}
.contacts-persons__item-photo {
  width: 200px;
  height: 200px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-bottom: 10px;
}
.interfax-contacts {
  display: inline-block;
  vertical-align: top;
  max-width: 250px;
  position: relative;
  padding-top: 25px;
  text-align: left;
  margin-top: 30px;
}
.interfax-contacts:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 8px;
  background: #ff2300;
}
.interfax-contacts__name {
  font-size: 24px;
  margin-bottom: 5px;
}
.interfax-contacts__address {
  margin-bottom: 10px;
  line-height: 1.3;
}
.interfax-contacts__email,
.interfax-contacts__phone {
  display: block;
}
.interfax-contacts__time {
  margin-bottom: 5px;
}
.page-header {
  position: relative;
  font-size: 18px;
  color: #fff;
  overflow: hidden;
  background: #78636b;
}
.page-header:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 700px;
  height: 315px;
  background: url("/img/corporate-identity-pattern.svg");
  background-repeat: no-repeat;
  -webkit-background-size: contain;
          background-size: contain;
  background-color: transparent;
  z-index: 1;
}
@media (max-width: 1920px) {
  .page-header:before {
    right: -webkit-calc((100% - 1920px) / 2);
    right: calc((100% - 1920px) / 2);
  }
}
@media (max-width: 1200px) {
  .page-header:before {
    top: auto;
    bottom: 0;
    width: -webkit-calc(700px / 2);
    width: calc(700px / 2);
    height: -webkit-calc(315px / 2);
    height: calc(315px / 2);
    right: -170px;
  }
}
@media (max-width: 500px) {
  .page-header:before {
    right: -200px;
  }
}
.page-header__inner {
  position: relative;
  min-height: 315px;
  padding-top: 20px;
  padding-bottom: 30px;
  z-index: 1;
  max-width: 1260px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
@media (max-width: 998px) {
  .page-header__inner {
    padding-top: 35px;
    height: auto;
    min-height: 315px;
  }
}
.page-header__title {
  position: relative;
  font-size: 90px;
  font-weight: normal;
  line-height: 0.8;
}
.page-header__title:after {
  content: "";
  display: block;
  position: absolute;
  left: -140px;
  bottom: -100px;
  width: 366px;
  height: 81px;
  background: url("/img/section-header-line.svg");
  background-repeat: no-repeat;
}
@media (max-width: 998px) {
  .page-header__title:after {
    left: -20px;
    bottom: -35px;
    width: 100px;
    height: 40px;
    background: url("/img/section-header-line-small.svg");
  }
}
@media (max-width: 998px) {
  .page-header__title {
    font-size: 50px;
  }
}
.page-header__description {
  position: absolute;
  bottom: 25px;
  left: 20px;
  font-size: 30px;
}
.page-header__meta {
  position: relative;
  top: 3px;
  display: inline-block;
  font-size: 15px;
  line-height: 1.33em;
}
.page-header__meta-item {
  display: inline-block;
  margin-right: 15px;
}
.page-header__meta-item:last-child {
  margin-right: 0;
}
.page-header__bg {
  position: absolute;
  left: auto;
  right: 340px;
  top: 0;
  bottom: 0;
  width: 100%;
  background: url('/img/stones.jpg');
  -webkit-background-size: auto auto;
          background-size: auto;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (max-width: 1920px) {
  .page-header__bg {
    right: -webkit-calc((100% - 1920px) / 2 + 340px);
    right: calc((100% - 1920px) / 2 + 340px);
  }
}
@media (max-width: 1200px) {
  .page-header__bg {
    width: 100%;
    right: 0;
    background-position: right -145px top 0;
  }
}
@media (max-width: 998px) {
  .page-header__bg {
    background-position: right -250px top 0;
    -webkit-background-size: cover;
            background-size: cover;
  }
}
@media (max-width: 500px) {
  .page-header__bg {
    background-position: right -400px top 0;
  }
}
.faq-section {
  margin-top: 50px;
  border-bottom: 1px solid #EBEDED;
}
.faq-section__item {
  width: 33.3%;
  padding-right: 4%;
  padding-bottom: 40px;
  display: inline-block;
  margin-right: -5px;
  vertical-align: top;
}
.faq-section__item:last-child {
  padding-left: 0;
}
@media (max-width: 740px) {
  .faq-section__item {
    width: 100%;
    padding-right: 0px;
  }
}
.faq-section__item-title {
  font-size: 30px;
  font-weight: normal;
  line-height: 30px;
}
