/* ProximaNova */
@font-face {
  font-family: 'Proxima Nova';
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/ProximaNova/ProximaNova-Regular.eot");
  /* IE9 Compat Modes */
  src: local("Proxima Nova"), local("Proxima Nova"), url("/fonts/ProximaNova/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/ProximaNova/ProximaNova-Regular.woff") format("woff"), url("/fonts/ProximaNova/ProximaNova-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */ }

/* ProximaNova ExtraBold*/
@font-face {
  font-family: 'Proxima Nova Extrabold';
  font-style: normal;
  src: url("/fonts/ProximaNova/ProximaNova-ExtraBld.eot");
  /* IE9 Compat Modes */
  src: local("Proxima Nova Extrabold"), local("Proxima Nova Extrabold"), url("/fonts/ProximaNova/ProximaNova-ExtraBld.eot?#iefix") format("embedded-opentype"), url("/fonts/ProximaNova/ProximaNova-ExtraBld.woff") format("woff"); }

/* ProximaNova Bold*/
@font-face {
  font-family: 'Proxima Nova Bold';
  font-style: normal;
  src: url("/fonts/ProximaNova/ProximaNova-Bold.eot");
  /* IE9 Compat Modes */
  src: local("Proxima Nova Bold"), local("Proxima Nova Bold"), url("/fonts/ProximaNova/ProximaNova-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/ProximaNova/ProximaNova-Bold.woff") format("woff"), url("/fonts/ProximaNova/ProximaNova-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */ }

/* ProximaNova Bold*/
@font-face {
  font-family: 'Proxima Nova Semibold';
  font-style: normal;
  src: url("/fonts/ProximaNova/ProximaNova-Semibold.eot");
  /* IE9 Compat Modes */
  src: local("Proxima Nova Semibold"), local("Proxima Nova Semibold"), url("/fonts/ProximaNova/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("/fonts/ProximaNova/ProximaNova-Semibold.woff") format("woff"), url("/fonts/ProximaNova/ProximaNova-Semibold.ttf") format("truetype");
  /* Safari, Android, iOS */ }

/** BASE**/
html, body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

* {
  box-sizing: border-box; }

body {
  background: #131313;
  padding: 0;
  margin: 0;
  display: flex;
  font-size: 18px;
  line-height: 22px;
  flex-direction: column;
  font-family: "Proxima Nova";
  color: #131313; }
  body.no-scroll {
    height: 100%;
    overflow: hidden; }

img {
  display: block; }

input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0; }

@media screen and (max-width: 769px) {
  .flex-direction-tablet {
    flex-direction: column; } }

.container {
  padding: 0 117px;
  margin: auto; }
  @media (max-width: 1250px) {
    .container {
      padding: 0 26px; } }
  .container_flex {
    display: flex;
    align-items: flex-start; }

.title {
  font-family: "Proxima Nova Extrabold"; }

.title {
  font-size: 50px;
  line-height: 110%;
  margin: 0; }
  @media (max-width: 1023px) {
    .title {
      font-size: 28px; } }
  @media (width: 768px) {
    .title {
      font-size: 50px; } }
  @media (max-width: 479px) {
    .title {
      font-size: 34px;
      line-height: 34px; } }

.bounce {
  animation-name: bounce;
  animation-timing-function: ease; }

@keyframes bounce {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0); } }

/** COMPONENTS **/
header {
  position: fixed;
  width: 100%;
  z-index: 1; }

.header {
  box-sizing: content-box;
  user-select: none;
  display: flex;
  justify-content: space-between;
  padding: 26px 117px;
  height: 30px;
  align-items: center; }
  @media (max-width: 1252px) {
    .header {
      padding: 26px; } }
  .header.active {
    background: #ffffff; }
    .header.active .change-color {
      fill: #212021; }
    @media (max-width: 1023px) {
      .header.active .menu-list {
        background: #ffffff; } }
    .header.active .menu-list__link {
      color: #212021; }
    .header.active .menu-button span {
      background: #212021; }

.logo {
  display: inline-flex; }
  @media (max-width: 479px) {
    .logo {
      width: 167px; }
      .logo svg {
        width: 100%; } }

.menu-list {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  padding-left: 0; }
  @media (max-width: 1023px) {
    .menu-list {
      display: none;
      flex-direction: column;
      position: fixed;
      left: 0;
      top: 0;
      background: #1C47E7;
      width: 100%;
      height: 100%;
      justify-content: flex-start;
      padding-top: 66px;
      align-items: center; } }
  .menu-list__item {
    list-style: none;
    margin-left: 38px; }
    @media (max-width: 1023px) {
      .menu-list__item {
        margin-left: 0;
        line-height: 11vh; } }
    @media (max-width: 479px) {
      .menu-list__item {
        line-height: 11vw; } }
  .menu-list__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    line-height: 22px;
    white-space: nowrap;
    font-family: "Proxima Nova Semibold";
    border-bottom: 2px solid transparent;
    transition: 0.3s; }
    @media (max-width: 1023px) {
      .menu-list__link {
        font-size: 3.5vw; } }
    @media (max-width: 767px) {
      .menu-list__link {
        font-size: 16px; } }
    .menu-list__link:hover {
      border-bottom: 2px solid #1C47E7; }
  .menu-list .special-link {
    display: none;
    font-family: "Proxima Nova Bold"; }
    @media (max-width: 1023px) {
      .menu-list .special-link {
        display: block; } }

.menu-button {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2;
  position: absolute;
  right: 26px;
  top: 30px; }
  @media (max-width: 1023px) {
    .menu-button {
      display: flex; } }
  .menu-button span {
    display: inline-flex;
    width: 39px;
    height: 4px;
    background: #ffffff;
    margin-bottom: 6px;
    border-radius: 4px;
    transition: 0.3s; }
    .menu-button span:last-child {
      margin-bottom: 0; }
  .menu-button.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(0px, 6px);
    transform: rotate(-45deg) translate(0px, 7px); }
  .menu-button.change .bar2 {
    -webkit-transform: rotate(45deg) translate(0px, -7px);
    transform: rotate(45deg) translate(0px, -7px); }

.menu.is-open .menu-list {
  display: flex; }

@media (max-width: 1023px) {
  .header-info {
    display: none; } }

.header-info__link {
  font-family: "Proxima Nova Bold";
  font-size: 24px;
  line-height: 29px;
  text-align: right;
  margin-left: 38px; }
  @media (max-width: 1252px) {
    .header-info__link {
      font-size: 18px; } }

.button {
  background: #1C47E7;
  color: #ffffff;
  font-family: "Proxima Nova Bold";
  border-radius: 4px;
  padding: 18px 75px 20px;
  display: inline-flex;
  text-decoration: none;
  font-size: 18px;
  line-height: 22px;
  justify-content: center;
  transition: 0.3s;
  border: none; }
  @media (max-width: 1023px) {
    .button {
      padding: 16px 55px; } }
  @media (max-width: 479px) {
    .button {
      width: 100%; } }
  .button:hover {
    cursor: pointer;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.35); }
  .button:focus, .button:active {
    outline: none; }
  .button_white {
    background: #ffffff;
    color: #1C47E7; }

.screen-main {
  color: #ffffff;
  height: 100vh;
  background: url(/img/background/main.png) no-repeat center top;
  background-size: cover;
  position: relative; }
  .screen-main:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #171717;
    opacity: 0.6; }
  .screen-main .introduce {
    width: 100%;
    position: absolute;
    top: 19.5vw; }
    @media (max-width: 1024px) {
      .screen-main .introduce {
        top: 28vw; } }
    @media (max-width: 1023px) {
      .screen-main .introduce {
        top: 60%;
        transform: translate(0, -50%); } }
    @media (max-width: 479px) {
      .screen-main .introduce {
        top: 55%; } }
  .screen-main .title {
    max-width: 713px; }
    @media (width: 768px) {
      .screen-main .title {
        max-width: 100%; } }
  .screen-main .subtitle {
    max-width: 640px;
    font-size: 18px;
    line-height: 22px;
    margin: 23px 0 55px; }
    @media (max-width: 1023px) {
      .screen-main .subtitle {
        margin-bottom: 30px; } }
    @media (max-width: 767px) {
      .screen-main .subtitle {
        font-size: 13px;
        line-height: normal; } }
    @media (max-width: 479px) {
      .screen-main .subtitle {
        max-width: 100%; } }
  .screen-main .button {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.35); }
  .screen-main .scroll-button {
    font-size: 14px;
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 67px;
    transform: translate(-50%, 0); }
    .screen-main .scroll-button img {
      width: 30px;
      height: 73px;
      animation-duration: 2s;
      animation-iteration-count: infinite; }
    @media (max-width: 1023px) {
      .screen-main .scroll-button {
        display: none; } }
    @media (width: 768px) {
      .screen-main .scroll-button {
        display: block; } }

.screen-block {
  flex: 1; }

.screen-1 {
  background: #F3F3F3; }
  .screen-1 .left-block {
    padding: 120px 26px 26px 117px; }
    @media (max-width: 1250px) {
      .screen-1 .left-block {
        padding: 26px 26px 26px 26px; } }
    .screen-1 .left-block .title {
      max-width: 510px;
      margin-bottom: 43px; }
  .screen-1 .right-block {
    max-width: 50%; }
    @media (max-width: 1250px) {
      .screen-1 .right-block {
        max-width: 100%; } }
    .screen-1 .right-block .img {
      overflow: hidden;
      display: flex;
      justify-content: center; }
      @media (max-width: 767px) {
        .screen-1 .right-block .img {
          display: block; } }
      .screen-1 .right-block .img img {
        width: auto;
        display: block; }
        @media (max-width: 1250px) {
          .screen-1 .right-block .img img {
            width: 100%; } }
  .screen-1 .description {
    max-width: 535px; }
    .screen-1 .description p {
      margin: 0 0 10px; }
  .screen-1 .info {
    display: flex;
    background: #1C47E7;
    padding: 42px 84px 54px;
    color: #ffffff; }
    @media (max-width: 1250px) {
      .screen-1 .info {
        padding: 42px 26px 54px; } }
    @media (max-width: 479px) {
      .screen-1 .info {
        flex-direction: column; } }
    .screen-1 .info__block {
      flex: 1; }
      .screen-1 .info__block:first-child {
        margin-right: 116px; }
        @media (max-width: 1250px) {
          .screen-1 .info__block:first-child {
            margin-right: 60px; } }
        @media (max-width: 479px) {
          .screen-1 .info__block:first-child {
            margin-right: 0;
            margin-bottom: 42px; } }
      .screen-1 .info__block img {
        margin-bottom: 14px;
        display: block; }
      .screen-1 .info__block .title {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 23px; }

.screen-2 {
  padding: 120px 0 17vw;
  background: url(/img/background/advantages.png) no-repeat center top #ffffff; }
  @media (max-width: 1023px) {
    .screen-2 {
      padding: 60px 0; } }
  @media (max-width: 1023px) {
    .screen-2 .screen-block {
      width: 100%; } }
  .screen-2 .title {
    margin-bottom: 87px; }
  .screen-2 .info__item {
    display: flex; }
    @media (max-width: 479px) {
      .screen-2 .info__item {
        flex-direction: column;
        margin-bottom: 0;
        align-items: center; } }
  .screen-2 .info__block {
    flex: 1;
    display: flex;
    margin-bottom: 113px;
    align-items: flex-start; }
    @media (max-width: 767px) {
      .screen-2 .info__block {
        margin-bottom: 60px; } }
    @media (max-width: 479px) {
      .screen-2 .info__block {
        width: 100%; } }
    .screen-2 .info__block:first-child {
      margin-right: 30px; }
      @media (max-width: 479px) {
        .screen-2 .info__block:first-child {
          margin-right: 5px; } }
    .screen-2 .info__block img {
      margin-right: 47px; }
      @media (max-width: 767px) {
        .screen-2 .info__block img {
          margin-right: 30px; } }
    .screen-2 .info__block .description p {
      margin: 0; }
    .screen-2 .info__block .description .large {
      font-size: 100px;
      line-height: 70px;
      font-family: "Proxima Nova Bold";
      margin-bottom: 20px; }
      @media (max-width: 767px) {
        .screen-2 .info__block .description .large {
          font-size: 50px;
          line-height: normal;
          margin-bottom: 0; } }
    .screen-2 .info__block .description .small {
      display: inline-block;
      font-size: 30px;
      line-height: 26px;
      margin-left: 8px; }
      @media (max-width: 767px) {
        .screen-2 .info__block .description .small {
          font-size: 15px;
          line-height: normal; } }

.screen-3 {
  background: #1C47E7;
  color: #ffffff; }
  .screen-3 .left-block {
    padding: 120px 26px 26px 117px; }
    @media (max-width: 1250px) {
      .screen-3 .left-block {
        padding: 26px 26px 26px 26px; } }
    @media (max-width: 1023px) {
      .screen-3 .left-block {
        width: 100%; } }
    .screen-3 .left-block .title {
      max-width: 510px;
      margin-bottom: 43px; }
  .screen-3 .right-block {
    max-width: 50%; }
    @media (max-width: 1250px) {
      .screen-3 .right-block {
        max-width: 100%;
        width: 100%; } }
    .screen-3 .right-block .img {
      overflow: hidden;
      display: flex;
      justify-content: center; }
      @media (max-width: 1250px) {
        .screen-3 .right-block .img {
          max-width: 50vw; } }
      @media (max-width: 1023px) {
        .screen-3 .right-block .img {
          max-width: 100%;
          width: 100%; } }
      @media (max-width: 767px) {
        .screen-3 .right-block .img {
          display: block; } }
      .screen-3 .right-block .img img {
        width: auto;
        display: block; }
        @media (max-width: 1250px) {
          .screen-3 .right-block .img img {
            height: 100%; } }
        @media (max-width: 1023px) {
          .screen-3 .right-block .img img {
            height: unset;
            width: 100%; } }
  .screen-3 .info {
    display: flex;
    margin-bottom: 74px; }
    @media (max-width: 767px) {
      .screen-3 .info {
        margin-bottom: 30px; } }
    @media (max-width: 1440px) {
      .screen-3 .info {
        flex-direction: column; } }
    @media (max-width: 1023px) {
      .screen-3 .info {
        flex-direction: row;
        flex-wrap: wrap; } }
    @media (max-width: 479px) {
      .screen-3 .info {
        flex-direction: column; } }
    .screen-3 .info__block {
      margin-right: 20px; }
      @media (max-width: 1023px) {
        .screen-3 .info__block {
          flex: 1; } }
      .screen-3 .info__block:last-child {
        margin-right: 0; }
      .screen-3 .info__block .title {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 18px; }
        @media (max-width: 767px) {
          .screen-3 .info__block .title {
            font-size: 3vw;
            line-height: normal; } }
        @media (max-width: 479px) {
          .screen-3 .info__block .title {
            font-size: 24px; } }
      .screen-3 .info__block .description {
        padding-left: 0;
        margin-bottom: 40px; }
        .screen-3 .info__block .description li {
          list-style: none;
          font-size: 18px;
          line-height: 140%; }

.screen-4 {
  padding: 119px 0 200px;
  background: #F3F3F3; }
  @media (max-width: 1023px) {
    .screen-4 {
      padding: 50px 0; } }
  .screen-4 .title {
    max-width: 50%; }
    @media (max-width: 479px) {
      .screen-4 .title {
        max-width: 100%; } }
  @media (max-width: 1440px) {
    .screen-4 .container_flex {
      flex-wrap: wrap; } }
  .screen-4 .screen-block {
    padding-right: 40px;
    margin-bottom: 40px; }
    @media (max-width: 1440px) {
      .screen-4 .screen-block {
        width: 50%;
        flex: auto;
        padding: 0 20px; } }
    @media (max-width: 1023px) {
      .screen-4 .screen-block {
        width: 100%;
        padding: 0; } }
    @media (max-width: 479px) {
      .screen-4 .screen-block {
        padding-right: 0; } }
    .screen-4 .screen-block:last-child {
      padding-right: 0; }
      @media (max-width: 1440px) {
        .screen-4 .screen-block:last-child {
          padding-right: 20px; } }
      @media (max-width: 1023px) {
        .screen-4 .screen-block:last-child {
          padding-right: 0; } }
  .screen-4 .info {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(224.92deg, #BABABA 7.52%, #5E5E5E 120.64%);
    border-radius: 6px;
    padding: 30px 39px;
    color: #ffffff;
    max-width: 400px;
    position: relative;
    min-height: 538px;
    overflow: hidden; }
    @media (max-width: 1440px) {
      .screen-4 .info {
        max-width: 100%;
        width: 100%;
        min-height: 350px; } }
    @media (max-width: 479px) {
      .screen-4 .info {
        width: 100%;
        max-width: 100%;
        min-height: 530px;
        height: auto; } }
    .screen-4 .info:hover {
      cursor: pointer; }
      .screen-4 .info:hover .text {
        visibility: visible; }
      .screen-4 .info:hover .img {
        opacity: 0.15; }
      .screen-4 .info:hover .button_square-close {
        display: block; }
      .screen-4 .info:hover .button_square-open {
        display: none; }
    .screen-4 .info .title {
      max-width: 100%;
      font-size: 26px;
      line-height: 110%;
      margin-bottom: 39px; }
    .screen-4 .info .button_square {
      display: none;
      position: absolute;
      right: 10px;
      bottom: 10px; }
      .screen-4 .info .button_square-close {
        display: none; }
    .screen-4 .info .text {
      visibility: hidden;
      transition: 0s; }
      @media (max-width: 1520px) {
        .screen-4 .info .text {
          font-size: 15px; } }
      @media (max-width: 1440px) {
        .screen-4 .info .text {
          font-size: 100%; } }
      @media (max-width: 479px) {
        .screen-4 .info .text {
          font-size: 16px; } }
      @media (max-width: 374px) {
        .screen-4 .info .text {
          font-size: 14px; } }
    .screen-4 .info .img {
      transition: .2s;
      z-index: 0;
      position: absolute;
      bottom: 0;
      right: 0;
      max-height: 421px; }
      @media (max-width: 1440px) {
        .screen-4 .info .img {
          max-height: 290px; } }
      @media (max-width: 479px) {
        .screen-4 .info .img {
          max-height: 400px; } }
      .screen-4 .info .img img {
        height: 100%; }
    .screen-4 .info.mob .button_square {
      display: block; }
    .screen-4 .info.mob:hover .text {
      visibility: hidden; }
    .screen-4 .info.mob:hover .img {
      opacity: 1; }
    .screen-4 .info.mob:hover .button_square-close {
      display: none; }
    .screen-4 .info.mob:hover .button_square-open {
      display: block; }
    .screen-4 .info.mob.open .text {
      visibility: visible; }
    .screen-4 .info.mob.open .img {
      opacity: 0.15; }
    .screen-4 .info.mob.open .button_square-close {
      display: block; }
    .screen-4 .info.mob.open .button_square-open {
      display: none; }

.screen-5 {
  position: relative;
  padding: 117px 0 144px;
  background: url(/img/background/footer.png);
  color: #ffffff;
  min-height: 768px; }
  @media (max-width: 767px) {
    .screen-5 {
      padding: 54px 0 0; } }
  .screen-5 .title {
    margin-bottom: 93px; }
  .screen-5 .footer {
    height: 250px;
    position: absolute;
    width: 100%;
    bottom: 0; }
    @media (max-width: 479px) {
      .screen-5 .footer {
        position: relative;
        bottom: unset;
        margin-top: 40px; } }
    .screen-5 .footer .container_flex {
      justify-content: space-between;
      align-items: center; }
      @media screen and (max-width: 500px) {
        .screen-5 .footer .container_flex {
          flex-direction: column;
          align-items: flex-start; } }
    .screen-5 .footer .text {
      font-size: 25px;
      line-height: 30px;
      max-width: 301px;
      margin-bottom: 62px; }
      @media screen and (max-width: 500px) {
        .screen-5 .footer .text {
          margin-bottom: 50px; } }
    .screen-5 .footer .info {
      font-size: 16px;
      line-height: 19px;
      font-family: "Proxima Nova Bold"; }
      @media screen and (max-width: 500px) {
        .screen-5 .footer .info:first-of-type {
          margin-bottom: 10px; } }
      .screen-5 .footer .info__link {
        text-decoration: none;
        color: #ffffff; }
      .screen-5 .footer .info__span {
        font-size: 12px;
        width: 245px;
        display: inline-block;
        line-height: 12px;
        padding: 5px 0; }

.form-wrapper {
  width: 100%; }

.form__row {
  display: flex;
  justify-content: space-between; }
  @media (max-width: 767px) {
    .form__row {
      flex-direction: column; } }
  .form__row:last-child {
    justify-content: center; }

.form-field__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  font-size: 18px;
  line-height: 22px;
  min-width: 336px;
  margin-bottom: 55px;
  padding: 0;
  color: #ffffff; }
  .form-field__input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff; }
  .form-field__input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff; }
  .form-field__input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff; }
  .form-field__input:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff; }
  @media (max-width: 1440px) {
    .form-field__input {
      min-width: 23vw; } }
  @media (max-width: 767px) {
    .form-field__input {
      min-width: 289px; } }
  @media (max-width: 479px) {
    .form-field__input {
      min-width: unset;
      width: 100%; } }
  .form-field__input:focus {
    outline: none; }

.form .button {
  padding: 18px 40px 20px; }

.modal {
  max-width: 450px;
  background: #ffffff;
  font-size: 22px;
  text-align: center;
  padding: 33px 27px;
  margin: 20px;
  color: #131313; }
  .modal p:first-child {
    margin-bottom: 6px; }
  .modal-wrapper {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5; }

#sendMailForm {
  position: relative; }

#sendMailFormErrorMessage {
  position: absolute;
  bottom: -40px;
  color: #ff0000;
  font-size: 12px; }
