@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700,800&subset=cyrillic,cyrillic-ext,latin-ext");
pre {
  font-size: 10px;
  color: #000; }

html {
  min-height: 100%;
  min-width: 320px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  color: #000;
  font-family: 'Roboto', sans-serif; }

body {
  height: 100%;
  min-height: 100vh;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f3f3f3; }

a {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  text-decoration: none; }

button {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none; }

a, area, button, [role='button'], input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

button, [role='button'] {
  cursor: pointer; }

textarea {
  resize: vertical; }

input, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.field {
  position: relative;
  padding-top: 22px; }
  .field label {
    display: block; }
  .field input {
    background: transparent;
    border: 1px solid #bfbfbf;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1;
    outline: none;
    width: 100%;
    color: #000;
    border-radius: 0;
    padding: 15px;
    -webkit-transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out; }
  .field select {
    border-radius: 0;
    width: 100%;
    border: 1px solid #bfbfbf;
    background: transparent;
    height: 53px;
    font-size: 18px;
    line-height: 1;
    padding: 15px;
    outline: none; }
  .field textarea {
    background: transparent;
    border: 1px solid #bfbfbf;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 100%;
    outline: none;
    padding: 15px;
    resize: vertical;
    width: 100%;
    min-height: 54px;
    -webkit-transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
    -o-transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
    transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out; }
  .field .field__placeholder {
    position: absolute;
    color: #bfbfbf;
    left: 0;
    right: 0;
    bottom: 100%;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
  .field .field__error {
    position: absolute;
    display: block;
    font-size: 14px;
    top: 100%;
    margin-top: 4px;
    color: #d0021b; }
  .field input:focus, .field textarea:focus, .field input:hover, .field textarea:hover {
    border: 1px solid #106DB3;
    -webkit-box-shadow: inset 0 0 0 1px #106DB3;
    box-shadow: inset 0 0 0 1px #106DB3; }
  .field.field--error input, .field textarea {
    border: 1px solid #d0021b;
    -webkit-box-shadow: inset 0 0 0 1px #d0021b;
    box-shadow: inset 0 0 0 1px #d0021b; }
  .field.field--checkbox {
    padding: 0 0 0 40px;
    color: #d7deeb;
    margin-bottom: 32px; }
    .field.field--checkbox input {
      display: none; }
    .field.field--checkbox .field__txt {
      display: block; }
    .field.field--checkbox .field__check {
      cursor: pointer;
      display: inline-block;
      width: 30px;
      height: 30px;
      border: 2px solid #000;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      background: no-repeat center / 20px 20px; }
    .field.field--checkbox input:checked ~ .field__check {
      background: url(../img/svg/check.svg) no-repeat center/20px 20px; }
  .field.field--radio {
    padding: 0; }
    .field.field--radio input {
      padding: 16px;
      border-radius: 50%;
      width: auto;
      border: 1px solid #333; }
      .field.field--radio input:checked {
        background: url("../img/svg/radio.svg") center/contain no-repeat; }
  .field div.error {
    font-size: 12px;
    line-height: 1;
    color: #1C86C0;
    position: absolute;
    left: 0;
    bottom: -4px;
    right: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%); }

.ui-button.ui-selectmenu-button {
  margin-right: 0;
  border-radius: 0;
  width: 100%;
  border: 1px solid #bfbfbf;
  -webkit-transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, border 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  background: transparent;
  font-size: 18px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  padding: 16px 15px;
  outline: none;
  color: #000; }

.ui-button.ui-selectmenu-button-open, .ui-button.ui-selectmenu-button:hover {
  border-color: #000;
  -webkit-box-shadow: inset 0 0 0 1px #000;
  box-shadow: inset 0 0 0 1px #000; }

.field--error .ui-button.ui-selectmenu-button-open {
  border-color: #d0021b;
  -webkit-box-shadow: inset 0 0 0 1px #d0021b;
  box-shadow: inset 0 0 0 1px #d0021b; }

.ui-selectmenu-icon {
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 6px 4px;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
  transform: translateY(-25%); }

.ui-widget.ui-widget-content {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: none; }

.ui-widget-content .ui-menu-item-wrapper {
  padding: 15px; }
  .ui-widget-content .ui-menu-item-wrapper:after {
    pointer-events: none;
    z-index: 15;
    position: absolute;
    content: "";
    width: 6px;
    height: 12px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transition: opacity .1s,-webkit-transform .1s;
    transition: opacity .1s,-webkit-transform .1s;
    -o-transition: transform .1s,opacity .1s;
    transition: transform .1s,opacity .1s;
    transition: transform .1s,opacity .1s,-webkit-transform .1s;
    opacity: 0; }

.ui-widget-content .ui-state-active {
  background: transparent;
  color: #000;
  border-color: transparent; }
  .ui-widget-content .ui-state-active:after {
    opacity: 1; }

/* ~~~~~~~~~~~~~~~~~~~~~~~  Глобальные */
.g-h1 {
  font-weight: 300;
  font-size: 60px;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0; }
  @media screen and (max-width: 768px) {
    .g-h1 {
      font-size: 24px; } }

.g-h2 {
  color: #106DB3;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto; }
  @media screen and (max-width: 768px) {
    .g-h2 {
      font-size: 24px; } }

.g-font1, .g-btn, .g-btn2 {
  font-family: 'Roboto', sans-serif; }

.g-link {
  color: #1066A2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }
  .g-link:hover {
    text-decoration: underline; }

.g-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
  color: #fff;
  outline: none;
  padding: 17px 37px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  line-height: 100%;
  font-size: 16px;
  font-weight: 300;
  background: #1066A2;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
  @media screen and (min-width: 960.01px) {
    .g-btn {
      min-width: 180px; } }
  @media screen and (max-width: 640px) {
    .g-btn {
      padding: 20px 22px;
      font-size: 14px; } }

.g-btn:hover {
  color: #fff;
  background: #147ec8;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 4px transparent;
  box-shadow: 0 2px 4px transparent; }

.g-btn2 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
  color: #1C86C0;
  outline: none;
  padding: 17px 32px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  line-height: 1;
  border-radius: 25px;
  font-weight: 300;
  background: #d3f0f9;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  border: none; }
  .g-btn2 * {
    vertical-align: middle; }
  @media screen and (min-width: 960.01px) {
    .g-btn2 {
      min-width: 260px; } }
  @media screen and (max-width: 640px) {
    .g-btn2 {
      padding: 20px 22px;
      font-size: 14px; } }

.g-btn2:hover {
  color: #1C86C0;
  background: #bdd8e1;
  text-decoration: none; }

.g-c-white {
  color: #fff; }

.g-c-black {
  color: #000; }

.g-color1 {
  color: #1066A2; }

.g-color5 {
  color: #d0021b; }

.g-shadow {
  -webkit-box-shadow: 0 15px 25px rgba(41, 49, 63, 0.38);
  box-shadow: 0 15px 25px rgba(41, 49, 63, 0.38); }

.hidden {
  display: none; }

.g-checkbox {
  display: inline-block;
  line-height: 0.0001em;
  font-size: 0.0001em;
  vertical-align: middle; }
  .g-checkbox input {
    display: none; }
  .g-checkbox label {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: block;
    margin: 0;
    padding: 0;
    border: 1px solid #c11887;
    -webkit-transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -o-transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer; }

/* ~~~~~~~~~~~~~~~~~~~~~~~  Основные блоки */
.body-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background: #fff; }

.head {
  position: absolute;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 20px 0; }
  @media screen and (max-width: 960px) {
    .head {
      padding: 16px 0; } }
  .head__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media screen and (max-width: 960px) {
      .head__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .head__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .head__left {
    width: 33.33333%; }
    @media screen and (max-width: 1200px) {
      .head__left {
        width: 40%; } }
    @media screen and (max-width: 768px) {
      .head__left {
        width: 60%; } }
  .head__medium {
    max-width: 300px;
    margin-left: 12px;
    margin-right: 12px;
    font-size: 14px;
    line-height: 1.2;
    color: #fff; }
    @media screen and (max-width: 1200px) {
      .head__medium {
        display: none; } }
  .head__right {
    text-align: right;
    width: 33.33333%; }
    @media screen and (max-width: 1200px) {
      .head__right {
        padding-left: 16px;
        width: 60%; } }
    @media screen and (max-width: 768px) {
      .head__right {
        width: 40%; } }
    .head__right .g-btn2 {
      min-width: auto; }
      .head__right .g-btn2 img {
        margin-right: 8px; }
  .head__logos {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .head__logos img:first-child {
      margin-right: 16px; }
      @media screen and (min-width: 768.01px) {
        .head__logos img:first-child {
          margin-right: 48px; } }
    .head__logos img {
      display: inline-block;
      max-width: 100%;
      min-width: 0;
      max-height: 62px; }
  .head__right-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .head__right-pc {
        display: none; } }
    .head__right-pc .btn {
      margin-right: 24px;
      text-decoration: none; }
    .head__right-pc .phone-num {
      display: block;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      color: #333333;
      font-weight: 700; }
      .head__right-pc .phone-num:hover {
        color: #333333;
        text-decoration: underline; }
  .head__right-mobile {
    text-align: right;
    display: none; }
    @media screen and (max-width: 768px) {
      .head__right-mobile {
        display: block; } }
    .head__right-mobile .btn {
      text-decoration: none;
      padding: 8px;
      height: 100%;
      display: inline-block; }
      .head__right-mobile .btn:first-child {
        margin-right: 8px; }

main {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff; }

.footer {
  font-size: 14px;
  line-height: 1.2;
  padding-top: 80px;
  padding-bottom: 80px; }
  @media screen and (max-width: 640px) {
    .footer {
      padding-top: 48px;
      padding-bottom: 48px; } }
  .footer__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .footer__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .footer__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .footer__line {
    border: none;
    border-bottom: 1px solid #9B9B9B;
    background: #000; }
  .footer__footnote {
    line-height: 1.4;
    margin-bottom: 32px;
    color: #9B9B9B; }
  .footer__top {
    color: #9B9B9B;
    padding-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -30px;
    margin-bottom: -30px; }
    .footer__top-item {
      width: 33.33333%;
      padding-left: 30px;
      margin-bottom: 30px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media screen and (max-width: 960px) {
        .footer__top-item {
          width: 50%; } }
      @media screen and (max-width: 640px) {
        .footer__top-item {
          width: 100%; } }
    .footer__top-phone, .footer__top-email, .footer__top-skype, .footer__top-map {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .footer__top-phone:not(:last-child), .footer__top-email:not(:last-child), .footer__top-skype:not(:last-child), .footer__top-map:not(:last-child) {
        margin-bottom: 10px; }
      .footer__top-phone img, .footer__top-email img, .footer__top-skype img, .footer__top-map img {
        display: inline-block;
        margin-right: 10px; }
      .footer__top-phone span, .footer__top-email span, .footer__top-skype span, .footer__top-map span {
        display: inline-block;
        color: #000; }
    .footer__top-ur-info:not(:last-child) {
      margin-bottom: 4px; }
  .footer__medium {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-left: -30px;
    margin-bottom: -30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .footer__medium-item {
      width: 33.33333%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding-left: 30px;
      margin-bottom: 30px; }
      @media screen and (max-width: 960px) {
        .footer__medium-item {
          width: 50%; } }
      @media screen and (max-width: 640px) {
        .footer__medium-item {
          width: 100%; } }
  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-left: -30px;
    margin-bottom: -30px; }
    .footer__bottom-item {
      color: #9B9B9B;
      width: 33.33333%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding-left: 30px;
      margin-bottom: 30px; }
      @media screen and (max-width: 960px) {
        .footer__bottom-item {
          width: 50%; } }
      @media screen and (max-width: 640px) {
        .footer__bottom-item {
          width: 100%; } }

/* ~~~~~~~~~~~~~~~~~~~~~~~  Часто используемые */
/* ***********************  page Index */
/* ~~~~~~~~~~~~~~~~~~~~~~~ first */
.first {
  padding-top: 110px;
  background: #d7deeb; }
  .first__wrapper {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 100px;
    padding-bottom: 120px;
    background: url("../img/employee.png") 80% bottom no-repeat/contain; }
    @media screen and (max-width: 960px) {
      .first__wrapper {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .first__wrapper {
        padding-left: 15px;
        padding-right: 15px; } }
    @media screen and (max-width: 1150px) {
      .first__wrapper {
        background-position: 130% bottom; } }
    @media screen and (max-width: 900px) {
      .first__wrapper {
        background-position: 130% bottom;
        background-size: 400px auto; } }
    @media screen and (max-width: 820px) {
      .first__wrapper {
        background: none;
        padding-top: 48px;
        padding-bottom: 48px; } }
  .first__inner {
    max-width: 720px;
    position: relative; }
  .first__title {
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 570px; }
  .first__desc {
    color: #333333;
    margin-bottom: 48px;
    font-size: 24px;
    line-height: 1.3; }
    @media screen and (max-width: 768px) {
      .first__desc {
        font-size: 18px; } }
  .first__cost {
    text-align: left;
    margin-bottom: 32px; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ services */
.services {
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .services {
      padding-bottom: 48px; } }
  .services__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 100px; }
    @media screen and (max-width: 960px) {
      .services__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .services__container {
        padding-left: 15px;
        padding-right: 15px; } }
    @media screen and (max-width: 768px) {
      .services__container {
        padding-top: 48px; } }
  .services__wrapper {
    padding-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px; }
  .services__item {
    padding: 0 0 30px 30px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .services__icon {
    text-align: center;
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto; }
    .services__icon img {
      display: inline-block;
      max-width: 60px;
      max-height: 60px; }
  .services__txt {
    padding-top: 24px;
    font-size: 24px;
    line-height: 1.2; }
    @media screen and (max-width: 768px) {
      .services__txt {
        font-size: 14px; } }

/* ~~~~~~~~~~~~~~~~~~~~~~~ video-presentation */
.video-presentation {
  position: relative;
  padding-bottom: 100px; }
  .video-presentation__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .video-presentation__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .video-presentation__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .video-presentation__inner {
    max-width: 570px;
    background: #000;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    cursor: pointer; }
    .video-presentation__inner:before {
      content: '';
      display: block;
      height: 0;
      width: 0;
      padding-top: 56.25%; }
    .video-presentation__inner iframe {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%; }
  .video-presentation__poster {
    position: absolute;
    bottom: 0;
    top: 0;
    height: 100%;
    left: 0;
    right: 0;
    background: url(../img/video-poster.jpg) center/cover no-repeat; }
    .video-presentation__poster:after {
      content: "";
      display: block;
      position: absolute;
      width: 60px;
      height: 60px;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      background: url("../img/svg/play.svg") center/contain no-repeat;
      -webkit-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .video-presentation__poster:hover:after {
      opacity: 0.5; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ products */
.products {
  background: #f6f6f6;
  padding: 100px 0; }
  @media screen and (max-width: 768px) {
    .products {
      padding: 48px 0; } }
  .products__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .products__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .products__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .products__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-left: -30px;
    margin-bottom: 80px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .products__item {
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #E1E2E3;
    text-align: center;
    max-width: 370px;
    width: 100%;
    margin-left: 30px;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .products__item.checked {
      -webkit-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4);
      box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.4); }
    .products__item .field--radio {
      text-align: center; }
      .products__item .field--radio label {
        margin-bottom: 16px; }
        .products__item .field--radio label .field__error {
          width: 100%;
          display: block;
          text-align: center; }
  .products__tariff {
    padding: 16px 0; }
  .products__cost {
    color: #1066A2;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2; }
  .products__users {
    padding: 16px 0;
    color: #9B9B9B;
    font-size: 16px; }
  .products__duration {
    color: #9B9B9B;
    font-size: 16px;
    padding-bottom: 48px; }
  .products__more {
    color: #017AC1;
    text-decoration: underline;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 24px; }
  .products__btn-txt {
    width: auto;
    min-width: unset; }
    .products__btn-txt.checked {
      background: #1066a2;
      color: #fff; }
  .products .form-product__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px; }
    .products .form-product__fields .field {
      width: 25%;
      padding-left: 30px;
      padding-top: 15px;
      margin-bottom: 30px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media screen and (max-width: 960px) {
        .products .form-product__fields .field {
          width: 50%; } }
      @media screen and (max-width: 768px) {
        .products .form-product__fields .field {
          width: 100%; } }
      .products .form-product__fields .field label {
        position: relative; }
      .products .form-product__fields .field input {
        background: #fff; }
      .products .form-product__fields .field__placeholder {
        color: #000;
        font-size: 16px; }
      .products .form-product__fields .field--type-checkbox {
        padding-top: 0;
        width: 100%;
        color: #9B9B9B;
        font-size: 14px; }
  .products .form-product__bottom {
    text-align: center;
    margin-top: 32px; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ reasons-contact */
.reasons-contact__container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 100px;
  padding-bottom: 100px; }
  @media screen and (max-width: 960px) {
    .reasons-contact__container {
      padding-left: 24px;
      padding-right: 24px; } }
  @media screen and (max-width: 640px) {
    .reasons-contact__container {
      padding-left: 15px;
      padding-right: 15px; } }
  @media screen and (max-width: 768px) {
    .reasons-contact__container {
      padding-top: 48px;
      padding-bottom: 48px; } }
  .reasons-contact__container .g-h2 {
    color: #fff; }

.reasons-contact__wrapper {
  padding-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-bottom: -30px; }

.reasons-contact__item {
  padding: 0 0 60px 30px;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 960px) {
    .reasons-contact__item {
      width: 50%; } }
  @media screen and (max-width: 768px) {
    .reasons-contact__item {
      width: 100%; } }

.reasons-contact__icon {
  width: 70px;
  height: 70px;
  margin-right: 30px; }
  @media screen and (max-width: 768px) {
    .reasons-contact__icon {
      width: 50px;
      height: 50px;
      margin-right: 16px; } }
  .reasons-contact__icon img {
    max-width: 50px;
    max-height: 50px;
    display: inline-block; }

.reasons-contact__right {
  width: auto;
  max-width: 100%; }

.reasons-contact__title {
  font-size: 24px;
  line-height: 1.2;
  color: #333333; }

.reasons-contact__txt {
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #9B9B9B; }
  @media screen and (max-width: 768px) {
    .reasons-contact__txt {
      font-size: 14px; } }
  .reasons-contact__txt span {
    color: #333333; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ how-work */
.how-work {
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .how-work {
      padding-bottom: 48px; } }
  .how-work__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .how-work__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .how-work__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .how-work__title {
    margin-bottom: 32px; }
  .how-work__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .how-work__item {
    width: 33.33333%;
    padding-left: 30px;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media screen and (max-width: 768px) {
      .how-work__item {
        width: 50%; } }
    @media screen and (max-width: 400px) {
      .how-work__item {
        width: 100%; } }
    .how-work__item--1 {
      color: #333333;
      font-size: 22px;
      line-height: 1.4; }
    .how-work__item--2 .txt {
      color: #9B9B9B;
      font-size: 16px;
      line-height: 1.4; }
    .how-work__item--3 .txt {
      font-size: 16px;
      color: #333333;
      border-left: 4px solid #1066A2;
      padding-left: 24px; }
      @media screen and (max-width: 768px) {
        .how-work__item--3 .txt {
          padding-left: 16px; } }
    .how-work__item-link {
      margin-top: 16px;
      padding-left: 42px;
      background: url("../img/svg/check-mark.svg") left center/contain no-repeat; }
      .how-work__item-link a {
        color: #1066A2;
        text-decoration: none;
        font-size: 20px;
        line-height: 1; }
        .how-work__item-link a:hover {
          text-decoration: underline; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ partners */
.partners {
  padding-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .partners {
      padding-bottom: 48px; } }
  .partners__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .partners__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .partners__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .partners__title {
    margin-bottom: 32px; }
  .partners__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -50px;
    margin-bottom: -30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media screen and (max-width: 768px) {
      .partners__grid {
        margin-left: -30px; } }
  .partners__item {
    width: auto;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 50px;
    margin-bottom: 30px; }
    @media screen and (max-width: 768px) {
      .partners__item {
        padding-left: 30px;
        max-width: 50%; } }
    .partners__item img {
      display: inline-block;
      max-width: 100%; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ steps */
.steps {
  padding: 100px 0;
  background: #F6F6F6; }
  @media screen and (max-width: 768px) {
    .steps {
      padding: 48px 0; } }
  .steps__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .steps__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .steps__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .steps__title {
    margin-bottom: 50px; }
  .steps__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px; }
  .steps__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 30px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%; }
    @media screen and (max-width: 768px) {
      .steps__item {
        width: 50%; } }
    @media screen and (max-width: 500px) {
      .steps__item {
        width: 100%; } }
  .steps__num {
    min-width: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #1066A2;
    color: #fff;
    font-size: 22px;
    line-height: 1.8; }
  .steps__txt {
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2; }
    .steps__txt .top {
      margin-bottom: 16px; }
    .steps__txt span {
      color: #9B9B9B;
      font-size: 16px;
      line-height: 1.2; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ products-light */
.products-light {
  padding: 100px 0 0; }
  @media screen and (max-width: 768px) {
    .products-light {
      padding: 48px 0; } }
  .products-light__container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 35px;
    padding-right: 35px; }
    @media screen and (max-width: 960px) {
      .products-light__container {
        padding-left: 24px;
        padding-right: 24px; } }
    @media screen and (max-width: 640px) {
      .products-light__container {
        padding-left: 15px;
        padding-right: 15px; } }
  .products-light__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 80px;
    margin-left: -30px;
    margin-bottom: 48px; }
  .products-light__item {
    border-radius: 4px;
    text-align: center;
    width: 33.33333%;
    padding-left: 30px;
    margin-bottom: 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media screen and (max-width: 960px) {
      .products-light__item {
        width: 50%; } }
    @media screen and (max-width: 768px) {
      .products-light__item {
        width: 100%; } }
    .products-light__item-inner label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .products-light__item-inner label span {
        display: block; }
      .products-light__item-inner label .field__placeholder {
        position: static;
        color: #000;
        margin: 0;
        margin-left: 8px; }
  .products-light .form-product__fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-bottom: -30px; }
    .products-light .form-product__fields .field {
      width: 33.33333%;
      padding-left: 30px;
      padding-top: 15px;
      margin-bottom: 30px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      @media screen and (max-width: 960px) {
        .products-light .form-product__fields .field {
          width: 50%; } }
      @media screen and (max-width: 768px) {
        .products-light .form-product__fields .field {
          width: 100%; } }
      .products-light .form-product__fields .field label {
        position: relative; }
      .products-light .form-product__fields .field input {
        background: #fff; }
      .products-light .form-product__fields .field__placeholder {
        color: #000;
        font-size: 16px; }
      .products-light .form-product__fields .field--type-checkbox {
        padding-top: 0;
        width: 100%;
        font-size: 14px;
        color: #9B9B9B; }
  .products-light .form-product__bottom {
    text-align: center;
    margin-top: 32px; }

/* ~~~~~~~~~~~~~~~~~~~~~~~ .... */
/* ~~~~~~~~~~~~~~~~~~~~~~~ .... */
/* ***********************  MODAL */
.g-modal-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 101;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1); }

.g-modal-overlay.active {
  opacity: 1;
  visibility: visible; }

.g-modal {
  display: block;
  position: relative;
  margin: auto;
  background-color: #fff;
  width: 600px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 16px;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: all 0.6s cubic-bezier(0.55, 0, 0.1, 1); }
  @media screen and (min-width: 768.01px) {
    .g-modal {
      padding: 32px; } }

.g-modal .g-close-modal {
  position: absolute;
  cursor: pointer;
  top: 5px;
  right: 15px;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s; }

.g-modal .g-close-modal svg {
  width: 1.75em;
  height: 1.75em; }

.g-modal .g-modal-content {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s; }

.g-modal.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.g-modal.active .g-modal-content {
  opacity: 1; }

.g-modal.active .g-close-modal {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 1; }

@media screen and (max-width: 39.9375em) {
  .g-close-modal {
    right: 20px !important; } }

/* ~~~~~~~~~~~~~~~~~~~~~~~ tariff-modal */
.tariff-modal .g-modal {
  width: 500px;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }

.table-tariff {
  padding-top: 32px; }
  .table-tariff-top__header {
    padding: 32px 0; }
  .table-tariff__row {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 300;
    padding: 8px 32px;
    color: #d7deeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .table-tariff__row:nth-child(odd) {
      background: #f6f7f7; }
    .table-tariff__row:not(:last-child) {
      margin-bottom: 16px; }
    @media screen and (max-width: 640px) {
      .table-tariff__row {
        font-size: 14px;
        padding: 8px;
        line-height: 1.2; } }
    .table-tariff__row--btn {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .table-tariff__row--btn .g-btn {
        min-width: 200px; }
  .table-tariff__left {
    width: 60%;
    color: #9B9B9B; }
  .table-tariff__right {
    color: #000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 40%;
    padding-left: 32px; }
    @media screen and (max-width: 768px) {
      .table-tariff__right {
        padding-left: 12px; } }

/* ~~~~~~~~~~~~~~~~~~~~~~~ .... */
/* ~~~~~~~~~~~~~~~~~~~~~~~ .... */

/*# sourceMappingURL=main.css.map */
