@charset "UTF-8";
/* Шрифты */
/* ------------------ */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: url("../fonts/inter/inter-300.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url("../fonts/inter/inter-400.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: fallback;
  src: url("../fonts/inter/inter-500.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: url("../fonts/inter/inter-600.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../fonts/inter/inter-700.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: fallback;
  src: url("../fonts/inter/inter-800.ttf");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  src: url("../fonts/inter/inter-900.ttf");
}
@font-face {
  font-family: "HeliosCond";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url("../fonts/HeliosCond/HeliosCond-400.ttf");
}
@font-face {
  font-family: "HeliosCond";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url("../fonts/HeliosCond/HeliosCond-700.ttf");
}

/* Область контента */
.landing {
  background: #FFFFFF;
  padding: 80px 0 0;
  position: relative;
}
.landing .content {
  min-height: 65vh;
  margin-bottom: 80px;
}
@media (max-width: 1366px) {
  .landing {
    padding: 48px 0 0;
    margin-bottom: 48px;
  }
}
@media (max-width: 1024px) {
  .landing {
    padding: 40px 0 0;
    margin: 24px 0 40px 0;
  }
}
.landing-1206 .container {
  max-width: 1366px;
  padding: 0 80px;
}
@media (max-width: 1280px) {
  .landing-1206 .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .landing-1206 .container {
    padding: 0 16px;
  }
}
.landing p {
  margin-bottom: 16px;
  padding-bottom: 0;
}
.landing ul {
  list-style: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}
.landing ul li {
  position: relative;
  padding-left: 16px;
}
.landing ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #8D9DB0;
  border-radius: 50%;
}
.landing li {
  margin-bottom: 8px;
  padding-bottom: 0;
}
.landing a:not([class]) {
  color: #FE5000;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.landing a:not([class]):hover {
  color: #FF7537;
}
.landing a:not([class]):active {
  color: #EF4B00;
}
@media (max-width: 1024px) {
  .landing h1 {
    display: none;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  -webkit-transition: padding 0.3s ease 0s;
  transition: padding 0.3s ease 0s;
}
@media (max-width: 1280px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.container-1206 {
  max-width: 1254px;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container-1206 {
    padding: 0 16px;
  }
}

/* Дополнительные цвета */
.color-orange {
  color: #FE5000;
}
a.color-orange {
  color: #FE5000 !important;
}
a.color-orange:hover {
  color: #FF7537 !important;
}
a.color-orange:active {
  color: #EF4B00 !important;
}
.color-gray {
  color: #A1A3B1;
}

/* Дополнительные отступы */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
@media (max-width: 768px) {
  .mb-40 {
    margin-bottom: 24px !important;
  }
}
.mt-0 {
  margin-bottom: 0 !important;
}
.mt-12 {
  margin-top: 12px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .mt-40 {
    margin-top: 24px !important;
  }
}
.mbt-24 {
  margin: 24px 0;
}
.mbt-32 {
  margin: 32px 0;
}
.mbt-40 {
  margin: 40px 0 !important;
}
.mr-24 {
  margin-right: 24px;
}

/* Дополнительная стилизация текста */
.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.text-no-wrap {
  white-space: nowrap;
}

/* Строки */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Flex распределение по вертикали */
.hor--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hor--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Flex распределение по горизонтали */
.ver--start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.ver--stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ver--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Колонки */
@media (max-width: 768px) {
  .col {
    width: 100% !important;
  }
}
.col-1 {
  width: calc((100% + 40px) / 12 * 1 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-1 {
    width: calc((100% + 24px) / 12 * 1 - 24px + 0px);
  }
}
.col-2 {
  width: calc((100% + 40px) / 12 * 2 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-2 {
    width: calc((100% + 24px) / 12 * 2 - 24px + 0px);
  }
}
.col-3 {
  width: calc((100% + 40px) / 12 * 3 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-3 {
    width: calc((100% + 24px) / 12 * 3 - 24px + 0px);
  }
}
.col-4 {
  width: calc((100% + 40px) / 12 * 4 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-4 {
    width: calc((100% + 24px) / 12 * 4 - 24px + 0px);
  }
}
.col-5 {
  width: calc((100% + 40px) / 12 * 5 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-5 {
    width: calc((100% + 24px) / 12 * 5 - 24px + 0px);
  }
}
.col-6 {
  width: calc((100% + 40px) / 12 * 6 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-6 {
    width: calc((100% + 24px) / 12 * 6 - 24px + 0px);
  }
}
.col-6-max {
  width: calc((100% + 12px) / 12 * 6 - 12px + 0px);
}
@media (max-width: 1024px) {
  .col-6-max {
    width: calc((100% + 12px) / 12 * 6 - 12px + 0px);
  }
}
.col-7 {
  width: calc((100% + 40px) / 12 * 7 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-7 {
    width: calc((100% + 24px) / 12 * 7 - 24px + 0px);
  }
}
.col-8 {
  width: calc((100% + 40px) / 12 * 8 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-8 {
    width: calc((100% + 24px) / 12 * 8 - 24px + 0px);
  }
}
.col-9 {
  width: calc((100% + 40px) / 12 * 9 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-9 {
    width: calc((100% + 24px) / 12 * 9 - 24px + 0px);
  }
}
.col-10 {
  width: calc((100% + 40px) / 12 * 10 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-10 {
    width: calc((100% + 24px) / 12 * 10 - 24px + 0px);
  }
}
.col-11 {
  width: calc((100% + 40px) / 12 * 11 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-11 {
    width: calc((100% + 24px) / 12 * 11 - 24px + 0px);
  }
}
.col-12 {
  width: calc((100% + 40px) / 12 * 12 - 40px + 0px);
}
@media (max-width: 1024px) {
  .col-12 {
    width: calc((100% + 24px) / 12 * 12 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-1 {
    width: calc((100% + 24px) / 12 * 1 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-2 {
    width: calc((100% + 24px) / 12 * 2 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-3 {
    width: calc((100% + 24px) / 12 * 3 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-4 {
    width: calc((100% + 24px) / 12 * 4 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-5 {
    width: calc((100% + 24px) / 12 * 5 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-6 {
    width: calc((100% + 24px) / 12 * 6 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-7 {
    width: calc((100% + 24px) / 12 * 7 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-8 {
    width: calc((100% + 24px) / 12 * 8 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-9 {
    width: calc((100% + 24px) / 12 * 9 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-10 {
    width: calc((100% + 24px) / 12 * 10 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-11 {
    width: calc((100% + 24px) / 12 * 11 - 24px + 0px);
  }
}
@media (max-width: 1024px) {
  .col-pda-12 {
    width: calc((100% + 24px) / 12 * 12 - 24px + 0px);
  }
}
@media (max-width: 768px) {
  .col-mob-margin {
    margin-top: 24px;
  }
}
.col p:last-child {
  margin-bottom: 0;
}

/* Скрытие на pc или телефоне */
.no-pc {
  display: none !important;
}
@media (max-width: 1024px) {
  .no-pc {
    display: block !important;
  }
}

.no-mob {
  display: block !important;
}
@media (max-width: 1024px) {
  .no-mob {
    display: none !important;
  }
}

/* Лендинг */
/*
.landing * {
  font-size: 19px;
  line-height: 126%;
}
@media (max-width: 768px) {
  .landing * {
    font-size: 15px;
    line-height: 133%;
  }
}
*/
.landing h1 {
  /*font-size: 60px;*/
  font-weight: 700;
  /*line-height: 111%;*/
}
.landing .h1 {
  /*font-size: 72px !important;*/
  /*font-size: 48px;*/
  font-weight: 700;
  /*line-height: 111% !important;*/
}
/*
@media (max-width: 768px) {
  .landing .h1 {
    font-size: 22px;
  }
}
*/
.landing h2 {
  margin-bottom: 64px;
  padding-bottom: 0;
  /*font-size: 48px;*/
  font-weight: 700;
  /*line-height: 117%;*/
}
@media (max-width: 768px) {
  .landing h2 {
    margin-bottom: 24px;
    /*font-size: 22px;*/
    /*line-height: 109%;*/
  }
}
.landing .h2 {
  margin-bottom: 64px;
  padding-bottom: 0;
  /*font-size: 48px !important;*/
  font-weight: 700;
  /*line-height: 117% !important;*/
}
@media (max-width: 768px) {
  .landing .h2 {
    margin-bottom: 24px;
    /*font-size: 22px !important;*/
    /*line-height: 109% !important;*/
  }
}
.landing h3 {
  padding-bottom: 0;
  /*font-size: 32px;*/
  font-weight: 700;
  /*line-height: 112%;*/
}
/*
@media (max-width: 768px) {
  .landing h3 {
    font-size: 17px;
    line-height: 141%;
  }
}
*/
.landing .h3 {
  padding-bottom: 0;
  /*font-size: 32px !important;*/
  font-weight: 700;
  /*line-height: 112% !important;*/
}
/*
@media (max-width: 768px) {
  .landing .h3 {
    font-size: 17px !important;
    line-height: 141% !important;
  }
}
*/
.landing h4 {
  padding-bottom: 0;
  /*font-size: 22px;*/
  font-weight: 700;
  /*line-height: 109%;*/
}
/*
@media (max-width: 768px) {
  .landing h4 {
    font-size: 17px;
    line-height: 141%;
  }
}
*/
.landing .h4 {
  padding-bottom: 0;
  /*font-size: 22px !important;*/
  font-weight: 700;
  /*line-height: 109% !important;*/
}
/*
@media (max-width: 768px) {
  .landing .h4 {
    font-size: 17px !important;
    line-height: 141% !important;
  }
}
*/
/*
.landing p {
  margin-bottom: 24px;
  padding-bottom: 0;
}
.landing .form__label {
  min-height: 72px;
}
@media (max-width: 768px) {
  .landing .form__label {
    min-height: 56px;
  }
}
.landing .form__label.filled .form__placeholder {
  font-size: 15px;
}
@media (max-width: 768px) {
  .landing .form__label.filled .form__placeholder {
    font-size: 11px;
  }
}
.landing .form__label-textarea {
  min-height: 120px;
}
@media (max-width: 768px) {
  .landing .form__label-textarea {
    min-height: 84px;
  }
}
.landing .form__label-textarea.filled .form__placeholder {
  top: 12px !important;
  font-size: 15px;
}
@media (max-width: 768px) {
  .landing .form__label-textarea.filled .form__placeholder {
    font-size: 11px;
  }
}
.landing .form__label-textarea textarea:focus ~ .form__placeholder,
.landing .form__label-textarea textarea:hover ~ .form__placeholder {
  top: 12px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .landing .form__label-textarea textarea:focus ~ .form__placeholder,
  .landing .form__label-textarea textarea:hover ~ .form__placeholder {
    font-size: 11px;
  }
}
.landing .form__label input:focus ~ .form__placeholder,
.landing .form__label input:hover ~ .form__placeholder {
  font-size: 15px;
}
@media (max-width: 768px) {
  .landing .form__label input:focus ~ .form__placeholder,
  .landing .form__label input:hover ~ .form__placeholder {
    font-size: 11px;
  }
}
.landing .form__input,
.landing .form__textarea {
  height: 72px;
  padding: 36px 24px 12px;
  font-size: 19px;
  line-height: 126%;
}
@media (max-width: 768px) {
  .landing .form__input,
  .landing .form__textarea {
    height: 56px;
    padding: 24px 16px 10px;
    font-size: 15px;
    line-height: 133%;
  }
}
.landing .form__textarea {
  height: 120px;
}
.landing .form__placeholder {
  top: 24px;
  left: 24px;
}
@media (max-width: 768px) {
  .landing .form__placeholder {
    top: 18px;
    left: 16px;
  }
}
.landing .form__text {
  font-size: 15px;
  line-height: 133%;
}
@media (max-width: 768px) {
  .landing .form__text {
    font-size: 13px;
    line-height: 123%;
  }
}
.landing .form__text a {
  font-size: 15px;
  line-height: 133%;
}
@media (max-width: 768px) {
  .landing .form__text a {
    font-size: 13px;
    line-height: 123%;
  }
}
*/

/* Кнопка */
.button {
  display: inline-block;
  height: auto !important;
  padding: 16px 24px;
  border: 2px solid transparent;
  border-radius: 16px !important;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  line-height: 133%;
  text-align: center;
  -webkit-transition: background 0.3s ease 0s, border-color 0.3s ease 0s, color 0.3s ease 0s;
  transition: background 0.3s ease 0s, border-color 0.3s ease 0s, color 0.3s ease 0s;
  cursor: pointer;
  text-decoration: none;
  text-transform: none !important;
}
.button-orange {
  color: #FFFFFF;
  background: #FE5000 !important;
}
.button-orange:hover {
  color: #FFFFFF;
  background: #FF7537 !important;
}
.button-orange:active {
  background: #EF4B00 !important;
}
.button-blue {
  background: #002855;
}
.button-blue:hover {
  background: #003B7E;
}
.button-blue:active {
  background: #001630;
}
.button-transparent {
  background: transparent;
  color: #FE5000;
}
.button-transparent:hover {
  background: transparent;
  color: #FF7537;
}
.button-transparent:active {
  background: transparent;
  color: #EF4B00;
}
.button-wide {
  width: 100%;
}
.button-high {
  padding: 24px 36.5px;
  /*font-size: 20px;*/
  line-height: 120%;
}
@media (max-width: 1024px) {
  .button-high {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 133%;
  }
}
.button-border {
  border: 2px solid #FE5000;
  color: #FE5000;
}
.button-border:hover {
  border-color: #FF7537;
  color: #FF7537;
}
.button-border:active {
  border-color: #EF4B00;
  color: #EF4B00;
}
.button:disabled {
  background: #d2d2d2 !important;
}

/* Поинт */
.point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  background: #FE5000;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  line-height: 109%;
}
@media (max-width: 768px) {
  .point {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 141%;
  }
}

/* Спойлер */
.spoiler {
  margin-bottom: 16px;
  overflow: hidden;
}
.spoiler.open .spoiler__arrow::before {
  -webkit-transform: translateY(-50%) rotateZ(-40deg);
          transform: translateY(-50%) rotateZ(-40deg);
}
.spoiler.open .spoiler__arrow::after {
  -webkit-transform: translateY(-50%) rotateZ(40deg);
          transform: translateY(-50%) rotateZ(40deg);
}
.spoiler__name {
  position: relative;
  margin: 0;
  padding: 22px 68px 22px 24px;
  cursor: pointer;
}
.spoiler__arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 20px;
  height: 20px;
}
.spoiler__arrow::before,
.spoiler__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background: #8D9DB0;
  border-radius: 4px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.spoiler__arrow::before {
  left: 3px;
  -webkit-transform: translateY(-50%) rotateZ(40deg);
          transform: translateY(-50%) rotateZ(40deg);
}
.spoiler__arrow::after {
  right: 3px;
  -webkit-transform: translateY(-50%) rotateZ(-40deg);
          transform: translateY(-50%) rotateZ(-40deg);
}
.spoiler__content {
  display: none;
  padding: 16px 24px;
  background: #FAFAFA;
  border-top: 1px solid #DEE3E9;
}
@media (max-width: 768px) {
  .spoiler__content {
    padding: 16px;
  }
}
.spoiler__content-inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.spoiler__content-inner p:last-child {
  margin-bottom: 0;
}

/* Баннер сверху страницы */
.banner {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .banner {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .banner__content {
    margin-top: 40px;
  }
}
.banner__content h1,
.banner__content .h1 {
  margin: 0 0 24px 0;
  padding-bottom: 0;
}
/*
@media (max-width: 1280px) {
  .banner__content h1,
  .banner__content .h1 {
    font-size: 56px;
  }
}
*/
.banner__content p {
  margin-bottom: 0;
}
.banner__content .button {
  min-width: 180px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .banner__content .button {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.banner__img {
  display: block;
  margin-left: auto;
}
@media (max-width: 768px) {
  .banner__img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .banner .col-7 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 768px) {
  .banner .col-5 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/* Карточка */
.card {
  position: relative;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 4px rgba(60, 80, 119, 0.16), 0px 1px 2px rgba(60, 80, 119, 0.24);
          box-shadow: 0px 1px 4px rgba(60, 80, 119, 0.16), 0px 1px 2px rgba(60, 80, 119, 0.24);
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  transition: transform 0.3s ease 0s, box-shadow 0.3s ease 0s;
  transition: transform 0.3s ease 0s, box-shadow 0.3s ease 0s, -webkit-transform 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
}
.card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0px 4px 8px rgba(60, 80, 119, 0.24), 0px 1px 2px rgba(60, 80, 119, 0.24);
          box-shadow: 0px 4px 8px rgba(60, 80, 119, 0.24), 0px 1px 2px rgba(60, 80, 119, 0.24);
}
@media (max-width: 1024px) {
  .card:hover {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-shadow: 0px 1px 4px rgba(60, 80, 119, 0.16), 0px 1px 2px rgba(60, 80, 119, 0.24);
            box-shadow: 0px 1px 4px rgba(60, 80, 119, 0.16), 0px 1px 2px rgba(60, 80, 119, 0.24);
  }
}
.card-gray {
  background: #F2F6FA;
}

/* Cтраница сервисов */

/* services-banner */
.services .banner {
  padding-bottom: 164px;
}
@media (max-width: 768px) {
  .services .banner {
    padding-bottom: 48px;
  }
}

/* services-block */
.services-block {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .services-block {
    padding: 30px 0;
  }
}

/* services-gray */
.services-gray {
  position: relative;
  margin: -40px 0;
  padding: 40px 0;
  background: #F2F6FA;
}
@media (max-width: 768px) {
  .services-gray {
    margin: -24px 0;
    padding: 24px 0;
  }
}
.services-gray::before, .services-gray::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border-radius: 0 0 40px 40px;
}
@media (max-width: 768px) {
  .services-gray::before, .services-gray::after {
    height: 24px;
    border-radius: 0 0 24px 24px;
  }
}
.services-gray::after {
  top: auto;
  bottom: 0;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 768px) {
  .services-gray::after {
    border-radius: 24px 24px 0 0;
  }
}
.services-gray__inner {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .services-gray__inner {
    padding: 30px 0;
  }
}
.services-gray__item {
  text-align: center;
}
@media (max-width: 768px) {
  .services-gray__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.services-gray__item img {
  width: 160px;
  height: 160px;
}
@media (max-width: 768px) {
  .services-gray__item img {
    width: 64px;
    height: 64px;
    margin-right: 16px;
  }
}
.services-gray__item-title {
  height: auto;
  margin: 24px 0 12px 0;
  -webkit-transition: height 0.3s ease 0s;
  transition: height 0.3s ease 0s;
}
@media (max-width: 768px) {
  .services-gray__item-title {
    height: auto !important;
    margin: 0 0 8px 0;
  }
}
.services-gray__item-bottom p {
  max-width: 272px;
  margin: 0 auto;
}
.services-gray__after {
  padding-top: 120px;
}
.services-gray .row {
  margin-bottom: -40px;
}
.services-gray .col {
  margin: 0 0 40px 40px;
}
@media (max-width: 768px) {
  .services-gray .col {
    margin: 0 0 40px 0 !important;
  }
}
.services-gray .col-3:nth-child(4n-3) {
  margin-left: 0;
}
.services-gray .col-4:nth-child(3n-2) {
  margin-left: 0;
}
.services-gray .col-6:nth-child(2n-1) {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .services-gray .col-pda-6 {
    margin-left: 24px;
  }
}
@media (max-width: 1024px) {
  .services-gray .col-pda-6:nth-child(2n-1) {
    margin-left: 0;
  }
}

/* services-about */
@media (max-width: 768px) {
  .services-about .col-5 {
    margin-top: 40px;
    text-align: center;
  }
}

/* services-how */
.services-how {
  margin: 40px 80px;
  background: #002855;
  border-radius: 48px;
  padding: 64px 0;
}
@media (max-width: 1280px) {
  .services-how {
    margin: 40px 24px;
    padding: 40px 0;
  }
}
@media (max-width: 1024px) {
  .services-how {
    margin: 40px 0;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .services-how {
    margin: 30px 0;
    border-radius: 16px;
  }
}
.services-how__inner {
  position: relative;
}
@media (max-width: 1365px) {
  .services-how__inner {
    margin-bottom: -40px;
  }
}
.services-how__inner img {
  position: absolute;
  top: 0;
  left: 27px;
  z-index: 1;
  top: 10px;
  width: calc(100% * 2 / 3);
}
@media (max-width: 1365px) {
  .services-how__inner img {
    display: none;
  }
}
@media (max-width: 1365px) {
  .services-how__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.services-how__item-wrapper {
  margin-top: 40px;
}
@media (max-width: 1365px) {
  .services-how__item-wrapper {
    margin-top: 0;
  }
}
.services-how__item .point {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1365px) {
  .services-how__item .point {
    position: relative;
    margin-right: 16px;
  }
}
.services-how__item h4 {
  color: #FFFFFF;
}
.services-how__item p {
  margin-top: 12px;
  color: #A1A3B1;
}
.services-how .container {
  max-width: 1206px;
  padding: 0 56px;
}
@media (max-width: 1024px) {
  .services-how .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .services-how .container {
    padding: 0 16px;
  }
}
.services-how .row {
  position: relative;
  z-index: 2;
}
@media (max-width: 1365px) {
  .services-how .col {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 1365px) {
  .services-how .col::before {
    content: "";
    position: absolute;
    top: 37px;
    left: 28px;
    width: 2px;
    height: calc(100% + 24px);
    background: url("img/how-line-mob.png") 0 0/cover no-repeat;
  }
}
@media (max-width: 768px) {
  .services-how .col::before {
    top: 22px;
    left: 20px;
  }
}
.services-how .col:last-child::before {
  display: none;
}
.services-how h2 {
  margin-bottom: 80px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1365px) {
  .services-how h2 {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .services-how h2 {
    margin-bottom: 40px;
  }
}
.services-how + .services-form {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .services-how + .services-form {
    margin-top: 40px;
  }
}

/* services-faq */
.services-faq h2 {
  margin-bottom: 40px;
}
.services-faq .spoiler {
  margin-bottom: 16px;
}
.services-faq .spoiler__content {
  padding: 24px;
}
@media (max-width: 768px) {
  .services-faq .spoiler__content {
    padding: 16px 24px;
  }
}
.services-faq .spoiler:last-child {
  margin-bottom: 0;
}

/* services-form */
.services-form {
  background: #F2F6FA;
  border-radius: 48px;
}
@media (max-width: 768px) {
  .services-form {
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .services-form .col-7 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.services-form .col-7 h2 {
  margin-bottom: 16px;
}
.services-form .col-7 p br {
  display: none;
}
@media (max-width: 400px) {
  .services-form .col-7 p br {
    display: block;
  }
}
.services-form .col-7 p a {
  color: #1B1F3B;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.services-form .col-7 p a:hover {
  color: #002855;
}
@media (max-width: 768px) {
  .services-form .col-5 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: 44.4444444444vw;
    margin-bottom: 40px;
  }
}
.services-form .col-5 img {
  display: block;
  margin: 72px auto 0 auto;
}
@media (max-width: 768px) {
  .services-form .col-5 img {
    height: 100%;
    margin: 0 auto;
  }
}
/*
@media (max-width: 768px) {
  .services-form .services__request {
    margin: 0 -16px;
  }
}
@media (max-width: 768px) {
  .services-form .services__request .button {
    width: calc(100% - 32px);
    margin: 24px 16px 0 16px;
  }
}
@media (max-width: 768px) {
  .services-form .services__request .form__label {
    background: #FFFFFF;
    border-radius: 0;
  }
}
*/
.services-form .services__request .form__text {
  margin: 12px 0 0 0;
}
@media (max-width: 768px) {
  .services-form .services__request .form__text {
    width: calc(100% - 32px);
    margin: 12px 16px 0 16px;
  }
}

/* services-more */
.services-more__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -24px;
}
@media (max-width: 1024px) {
  .services-more__list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: -16px;
  }
}
.services-more__list-2 .services-more__item {
  width: calc(50% - 12px);
}
.services-more__list-2 .services-more__item:nth-of-type(2n - 1) {
  margin-left: 0;
}
.services-more__list-3 .services-more__item {
  width: calc(33.33333% - 16px);
}
.services-more__list-3 .services-more__item:nth-of-type(3n - 2) {
  margin-left: 0;
}
.services-more__item {
  margin: 0 0 24px 24px;
  padding: 24px;
}
/*@media (max-width: 1024px) {*/
  .services-more__item {
    width: 100% !important;
    margin: 0 0 16px 0;
    padding: 16px 24px;
  }
/*}*/
.services-more__item:hover .services-more__item-price {
  color: #003B7E;
}
.services-more__item:hover .services-more__item-price {
  color: #001630;
}
.services-more__item-title {
  padding-right: 80px;
}
/*@media (max-width: 1024px) {*/
  .services-more__item-title {
    min-height: 36px;
    padding-right: 74px;
  }
/*}*/
.services-more__item-text {
  margin-top: 8px;
  padding: 0 80px 48px 0;
  color: #A1A3B1;
}
/*@media (max-width: 1024px) {*/
  .services-more__item-text {
    padding: 0;
  }
/*}*/
.services-more__item-price {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin: 0;
  padding-right: 80px;
  color: #002855;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
/*@media (max-width: 1024px) {*/
  .services-more__item-price {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 8px 0 0 0;
  }
/*}*/
.services-more__item-img {
  position: absolute;
  top: 24px;
  right: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  height: 64px;
}
/*@media (max-width: 1024px) {*/
  .services-more__item-img {
    top: 16px;
    width: 48px;
    height: 48px;
  }
/*}*/
.services-more__item-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services-more--button .services-more__item:hover .button {
  background: #003B7E;
}
.services-more--button .services-more__item:active .button {
  background: #001630;
}
.services-more--button .services-more__item-text {
  margin-top: 16px;
  padding: 0 80px 88px 0;
}
/*@media (max-width: 1024px) {*/
  .services-more--button .services-more__item-text {
    padding: 0;
  }
/*}*/
.services-more--button .services-more__item-price {
  margin: 14px 0;
}
/*@media (max-width: 1024px) {*/
  .services-more--button .services-more__item-price {
    margin: 48px 0 22px 0;
  }
/*}*/
.services-more--button .services-more__item .button {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 40px;
}

/* Форма */
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__row + .form__row {
  margin-top: 12px;
}
/*
@media (max-width: 768px) {
  .form__row + .form__row {
    margin-top: 0;
  }
}
*/
.form__row + .file {
  margin-top: 12px;
}
/*
@media (max-width: 768px) {
  .form__row + .file {
    margin-top: 0;
  }
}
*/
.form__row + .button {
  margin-top: 24px;
}
.form__row-50 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form__row-50 .form__label {
  width: calc(50% - 6px);
}
.form__row-descr {
  position: relative;
  margin: 4px 0 12px 0;
  padding: 0 16px;
  color: #A1A3B1;
  font-size: 13px;
  line-height: 123%;
}
/*
@media (max-width: 768px) {
  .form__row-descr {
    margin: 0 -16px;
  }
}
*/
.form__row-descr--text {
  padding-right: 60px;
}
.form__row-descr--counter {
  position: absolute;
  top: 0;
  right: 16px;
}
.form__label {
  position: relative;
  display: block;
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
}
.form__label:hover .form__input,
.form__label:hover .form__textarea {
  border-color: #FE5000 !important;
}
.form__label.filled .form__placeholder {
  top: 12px;
  font-size: 11px;
  line-height: 100%;
}
.form__label label.error {
  display: inline-block;
  margin-top: 4px;
  padding: 0 16px;
  color: #ED6179 !important;
  font-size: 12px;
}
.form__label-textarea label.error {
  transform: translateY(-6px);
}
.form__label-textarea {
  min-height: 84px;
}
.form__label-textarea.filled .form__placeholder {
  top: 8px !important;
  font-size: 11px;
  line-height: 100%;
}
.form__label-textarea textarea:hover {
  border-color: #FE5000 !important;
}
.form__label-textarea textarea:focus,
.form__label-textarea textarea:hover {
  border-color: #FE5000 !important;
}
.form__label-textarea textarea:focus ~ .form__placeholder,
.form__label-textarea textarea:hover ~ .form__placeholder {
  top: 8px;
  font-size: 11px;
  line-height: 100%;
}
.form__label-checkbox {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  min-height: auto !important;
  margin-left: 16px;
  border-radius: 0;
  cursor: pointer;
}
.form__label-checkbox:hover .form__checkbox-ico {
  border-color: #002855;
}
.form__label-checkbox input {
  order: 1;
}
.form__label-checkbox label.error {
  order: 2;
  width: 100%;
  padding: 0 8px;
}
.form__label input:hover {
  border-color: #FE5000 !important;
}
.form__label input:focus, .form__label input:hover {
  border-color: #FE5000;
}
.form__label input:focus ~ .form__placeholder,
.form__label input:hover ~ .form__placeholder,
.form__label input.filled ~ .form__placeholder {
  top: 12px;
  font-size: 11px;
  line-height: 100%;
}
.form__label input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
  -webkit-text-fill-color: #1B1F3B;
}
.form__label input:disabled {
  border-color: #E2E2E2;
  pointer-events: none;
}
.form__label input:disabled:focus,
.form__label input:disabled:hover {
  border-color: #E2E2E2 !important;
}
.form__label input:disabled:focus ~ .form__placeholder,
.form__label input:disabled:hover ~ .form__placeholder {
  top: 18px;
  font-size: 15px;
  line-height: 133%;
}
.form__label input:disabled ~ .form__placeholder {
  color: #E2E2E2;
}
.form__input,
.form__textarea {
  width: 100%;
  height: 56px !important;
  background: #FFFFFF !important;
  padding: 24px 16px 10px !important;
  border: 1px solid #DEE3E9 !important;
  border-radius: 16px !important;
  font-size: 15px;
  line-height: 133%;
  -webkit-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
}
/*
@media (max-width: 768px) {
  .form__input,
  .form__textarea {
    border: none;
    border-bottom: 1px solid #DEE3E9;
    border-radius: 0;
  }
}
*/
.form__input.error,
.form__textarea.error {
  border-color: #ED6179 !important;
}
.form__textarea {
  resize: none;
  height: 84px !important;
}
.form__placeholder {
  position: absolute;
  top: 18px;
  left: 16px;
  color: #727589;
  -webkit-transition: top 0.25s ease 0s, font 0.25s ease 0s;
  transition: top 0.25s ease 0s, font 0.25s ease 0s;
  pointer-events: none;
}
.form__placeholder-textarea {
  top: 12px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.form__checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.form__checkbox:checked ~ .form__checkbox-ico {
  background: url("./img/checkbox.svg") center center/cover no-repeat;
  border: none;
}
.form__checkbox-title {
  padding-left: 8px;
  color: #727589;
}
.form__checkbox-title a {
  color: #FE5000;
  transition: color 0.3s ease 0s;
}
.form__checkbox-title a:hover {
  color: #FF7537;
}
.form__checkbox-title a:active {
  color: #EF4B00;
}
.form__checkbox-ico {
  position: absolute;
  top: 0;
  left: -16px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #8D9DB0;
  border-radius: 4px;
  transition: background 0.3s ease 0s, border-color 0.3s ease 0s;
}
.form__text a {
  color: #FE5000;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.form__text a:hover {
  color: #FF7537;
}
.form__text a:active {
  color: #EF4B00;
}
.form-back-call .button {
  min-width: 168px;
  margin-top: 40px;
}
/*
@media (max-width: 480px) {
  .form-back-call .button {
    width: calc(50% - 9px);
    min-width: auto;
  }
}
*/

.content-submenu {
    display: none;
}
.content-side {
    padding-left: 0;
}
img {
    max-width: 100%;
}
.erid-wrap {
    padding: 0 24px 24px;
    color: #959595;
    font-size: 14px;
}
@media (min-width: 1367px) {
.erid-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 0 80px 0 0;
}
}
@media (max-width: 768px) {
.erid-wrap {
    padding: 0 16px 16px;
}
}
.form-border {
	margin-bottom: 12px;
	padding: 12px;
	border: 1px solid #DEE3E9;
	border-radius: 12px;
}