@charset "UTF-8";
@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("../fonts/BebasNeueCyrillic_1.eot");
  src: local("☺"), url("../fonts/BebasNeueCyrillic_1.woff") format("woff"), url("../fonts/BebasNeueCyrillic_1.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.eot");
  src: local("☺"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.eot");
  src: local("☺"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body * {
  padding: 0;
  margin: 0;
  border: 0;
}

body *,
body *:before,
body *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", "Arial", sans-serif;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a {
  transition: 0.2s;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bebas Neue Cyrillic", "Arial", sans-serif;
  font-size: inherit;
  font-weight: normal;
}

/*===================================================================================================================*/
.container {
  max-width: 1280px;
  padding: 0;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1024px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: unset;
    padding: 0 16px;
  }
}
/*===================================================================================================================*/
.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page_content {
  flex: 1 1 auto;
}

h2 {
  font-family: "Bebas Neue Cyrillic", "Arial", sans-serif;
  font-size: 80px;
  line-height: 100%;
}
@media (max-width: 1400px) {
  h2 {
    font-size: 64px;
  }
}
@media (max-width: 1200px) {
  h2 {
    font-size: 60px;
  }
}

._ibg {
  position: relative;
  overflow: hidden;
}

._ibg img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}

#main_screen {
  min-height: 100vh;
  display: flex;
  padding: 176px 16px 88px;
  position: relative;
}
@media (max-width: 1024px) and (min-width: 769px) and (min-height: 750px) {
  #main_screen {
    min-height: 700px;
  }
}

#main_screen .main_screen__body {
  max-width: 1280px;
  width: 100%;
  flex: 1 1 auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

#main_screen .main_screen__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#main_screen .sign_button {
  display: inline-block;
  padding: 20px 41.5px;
  background: #FFB800;
  border-radius: 3px;
  font-weight: 500;
  font-size: 28px;
  line-height: 33px;
  text-align: center;
  color: #172251;
  position: relative;
  z-index: 10;
}

#main_screen .sign_button:hover,
#main_screen .sign_button:focus {
  background: #eaac00;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}

#main_screen .next_screen_button {
  position: absolute;
  bottom: 0;
  width: 48px;
  height: 67px;
}

#main_screen .next_screen_button img {
  position: absolute;
  bottom: 35px;
  left: 12px;
  animation: arrowDown 2s infinite;
}

#main_screen .next_screen_button:hover img {
  animation-play-state: paused;
}

@keyframes arrowDown {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 10px;
  }
  100% {
    bottom: 35px;
  }
}
@media (max-width: 768px) {
  #main_screen .next_screen_button {
    display: none;
  }
}
@media (max-width: 500px) {
  #main_screen {
    padding: 72px 16px 36px;
  }

  #main_screen .main_screen__image img {
    object-position: 48%;
  }

  #main_screen .sign_button {
    padding: 19px 41px;
    font-size: 23px;
    line-height: 27px;
  }
}
@media (max-width: 375px) {
  #main_screen .sign_button {
    width: 100%;
  }
}
#info .info__wrap {
  padding: 8.828125% 0;
}
@media (min-width: 993px) {
  #info .info__wrap {
    display: flex;
  }
}

#info .info__title {
  flex: 0 0 33.984375%;
  padding: 0 20px 0 0;
  font-family: "Bebas Neue Cyrillic", "Arial", sans-serif;
  font-size: 150px;
  line-height: 86.6666666667%;
  color: #172251;
}

#info .info__body {
  flex: 1 1 auto;
  padding: 3.90625% 0 0 0;
}

#info h2.info__subtitle {
  padding: 0 0 15px 0;
  color: #000000;
  border-bottom: 5px solid #FFB800;
}

#info .info__adresat {
  margin: 9.4674556213% 0 0 0;
  font-weight: 500;
  font-size: 23px;
  line-height: 117.3913043478%;
  color: #000000;
}

#info .info__adresat span {
  color: #9B9B9B;
}

#info .info__text {
  margin: 4.2603550296% 0 0 0;
  font-size: 23px;
  line-height: 157%;
  color: #000000;
}

#info .info__text span {
  white-space: nowrap;
}

@media (max-width: 1400px) {
  #info .info__title {
    font-size: 120px;
  }

  #info .info__adresat {
    font-size: 22.5px;
  }

  #info .info__text {
    font-size: 22.5px;
  }
}
@media (max-width: 1200px) {
  #info .info__title {
    font-size: 112px;
  }

  #info .info__adresat {
    font-size: 20px;
  }

  #info .info__text {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  #info .info__adresat {
    margin: 28px 0 0 0;
  }

  #info .info__text {
    margin: 15px 0 0 0;
  }
}
@media (max-width: 768px) {
  #info .info__wrap {
    padding: 45px 0;
  }

  #info .info__title {
    font-size: 80px;
  }

  #info .info__body {
    padding: 15px 0 0 0;
  }

  #info h2.info__subtitle {
    font-size: 40px;
  }

  #info .info__adresat {
    font-size: 18px;
    line-height: 156%;
  }

  #info .info__adresat span {
    display: block;
  }

  #info .info__text {
    font-size: 18px;
  }
}
#sign {
  background: #060F37;
  overflow: hidden;
}

#sign .sign__container {
  position: relative;
  z-index: 1;
}

#sign .sign__container:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 400%;
  top: 0;
  right: 18.203125%;
  background: #172251;
  z-index: -2;
}

#sign .sign__wrap {
  padding: 7.578125% 0 7.6171875%;
  position: relative;
}
@media (min-width: 769px) {
  #sign .sign__wrap {
    display: flex;
  }
}

#sign .sign__wrap:before {
  content: "";
  width: 2380px;
  height: 1120px;
  background-image: url("../img/lines_bg.png");
  background-position: top 0 left 0;
  background-repeat: no-repeat;
  background-size: 2380px;
  position: absolute;
  top: -168px;
  left: -1315px;
  z-index: -1;
}

#sign .team__wrap {
  flex: 0 0 30.15625%;
  margin: 0 3.59375% 0 0;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sign .team__wrap .team__title {
  color: #FFFFFF;
  margin: 0 0 14.2487046632% 0;
}

#sign .team__wrap .team__image {
  width: 100%;
}

#sign .team__wrap .team__image img {
  width: 100%;
}

#sign .form__wrap {
  flex: 0 0 25.46875%;
  margin: 0 3.359375% 0 0;
  order: 2;
}

#sign .form__wrap .form__row {
  position: relative;
}
#sign .form__wrap .form__row:first-child {
  margin: 6.1349693252% 0 0 0;
}
#sign .form__wrap .form__row:not(:first-child) {
  margin: 11.963190184% 0 0 0;
}

#sign .form__wrap .form__label {
  position: absolute;
  left: 38px;
  top: -12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
  z-index: 4;
}

#sign .form__wrap .form__input {
  width: 100%;
  height: 65px;
  border-radius: 3px;
  background: #1F2D67;
  position: relative;
  z-index: 3;
  border: 1px solid #5C6CAE;
  transition: 0.3s;
  padding: 0 0 0 19.5px;
  color: #FFFFFF;
  font-size: 15px;
  line-height: 18px;
}

#sign .form__wrap .form__input::placeholder {
  font-family: Roboto;
  font-size: 15px;
  line-height: 18px;
  color: #495898;
}

#sign .form__wrap .form__input:focus {
  border: 1px solid #FFB800;
}

#sign .form__wrap .form__row:before {
  position: absolute;
  content: "";
  height: 1px;
  left: 25px;
  top: 0px;
  background: #172251;
  z-index: 4;
}

#sign .form__wrap .form__row:nth-child(1):before {
  width: 110px;
}

#sign .form__wrap .form__row:nth-child(2):before {
  width: 58px;
}

#sign .form__wrap .form__row:nth-child(3):before {
  width: 130px;
}

#sign .form__wrap .form__row:nth-child(4):before {
  width: 172px;
}

#sign .form__wrap .form__row:nth-child(5):before {
  width: 116px;
}

#sign .form__wrap .form__row:nth-child(6):before {
  width: 181px;
}

#sign .form__wrap .agreement__checkbox {
  margin: 6.1349693252% 0 0 0;
  position: relative;
}

#sign .form__wrap .checkbox__label {
  padding: 0 0 0 24px;
  font-size: 13px;
  line-height: 15px;
  color: #FFFFFF;
  cursor: pointer;
}

#sign .form__wrap .checkbox__label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #1F2D67;
  border: 1px solid #5C6CAE;
  border-radius: 2px;
  z-index: 10;
}

#sign .form__wrap .checkbox__label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: url("../img/checkbox_icon.svg") no-repeat center;
  z-index: 11;
  transition: 0.2s;
  visibility: hidden;
  opacity: 0;
}

#sign .form__wrap .checkbox__input:checked + .checkbox__label:after {
  visibility: visible;
  opacity: 1;
}

#sign .form__wrap .checkbox__input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
}

#sign .form__wrap .form__button {
  margin: 7.6687116564% 0 0 0;
  width: 100%;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  transition: 0.2s;
  border-radius: 3px;
  font-weight: 500;
  font-size: 21px;
  line-height: 119.0476190476%;
  color: #060F37;
  background: #FFB800;
}

#sign .form__wrap .form__button:hover,
#sign .form__wrap .form__button:focus {
  background: #eaac00;
}

#sign .data__wrap {
  order: 3;
}

#sign .data__wrap h2.data__title {
  color: #FFFFFF;
  margin: 0 0 17.1370967742% 6.8548387097%;
}

#sign .data__wrap .data__diagram {
  width: 496px;
  height: 496px;
  border-radius: 50%;
  background: #172251;
  position: relative;
}

#sign .data__wrap .progress__ring {
  position: relative;
  z-index: 11;
}

#sign .data__wrap .progress_ring__circle {
  transform-origin: center;
  transform: rotate(-90deg);
}

#sign .data__wrap .progress__ring_center {
  position: absolute;
  width: 328px;
  height: 328px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #172251;
  z-index: 12;
}

#sign .data__wrap .progress__ring_background {
  position: absolute;
  width: 412px;
  height: 412px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #5C6CAE;
  z-index: 10;
}

#sign .data__wrap #counter {
  position: absolute;
  display: inline-block;
  width: 100%;
  top: 48%;
  left: 49%;
  transform: translate(-50%, -50%);
  font-family: "Bebas Neue Cyrillic";
  font-style: normal;
  font-weight: normal;
  font-size: 130px;
  line-height: 130px;
  text-align: center;
  color: #FFB800;
  z-index: 13;
}

#sign .data__wrap .progress__25000 {
  position: absolute;
  bottom: 25.2016129032%;
  left: 50%;
  transform: translate(-50%);
  font-family: "Bebas Neue Cyrillic";
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  text-align: center;
  color: #FFFFFF;
  z-index: 13;
}

@media (max-width: 1400px) {
  #sign .sign__wrap:before {
    background-size: 1904px;
    top: -134px;
    left: -1070px;
  }

  #sign .form__wrap .form__row {
    zoom: 80%;
  }

  #sign .form__wrap .checkbox__label {
    font-size: 12px;
  }

  #sign .data__wrap .data__diagram {
    zoom: 80%;
  }

  #sign .form__wrap .form__button {
    height: 52px;
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  #sign .sign__wrap:before {
    background-size: 1785px;
    top: -126px;
    left: -1000px;
  }

  #sign .form__wrap .form__row {
    zoom: 75%;
  }

  #sign .form__wrap .checkbox__label {
    font-size: 11px;
  }

  #sign .form__wrap .form__button {
    height: 49px;
    font-size: 16px;
  }

  #sign .data__wrap .data__diagram {
    zoom: 75%;
  }
}
@media (max-width: 992px) {
  #sign .sign__container:before {
    height: 780px;
    right: -50%;
  }

  #sign .sign__wrap:before {
    top: -95px;
    left: -940px;
  }

  #sign .form__wrap .form__row {
    zoom: 100%;
  }

  #sign .data__wrap .data__diagram {
    zoom: 100%;
  }

  #sign .sign__wrap {
    flex-wrap: wrap;
  }

  #sign .team__wrap {
    flex: 0 0 348px;
    margin: 0 46px 0 0;
    justify-content: flex-start;
  }

  #sign .form__wrap {
    flex: 0 0 326px;
    margin: 0;
  }

  #sign .form__wrap .form__row:not(:first-child) {
    margin: 30px 0 0 0;
  }

  #sign .form__wrap .checkbox__label {
    font-size: 13px;
  }

  #sign .form__wrap .form__button {
    height: 65px;
    font-size: 21px;
  }

  #sign .data__wrap {
    flex: 1 1 100%;
    padding: 80px 0 0 0;
  }

  #sign .data__wrap h2.data__title {
    margin: 0 0 50px 0;
  }

  #sign .data__wrap .data__diagram {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #sign .sign__container:before {
    height: 60px;
    right: -50%;
  }

  #sign .sign__wrap {
    padding: 58px 0 0;
  }

  #sign .sign__wrap:before {
    display: none;
  }

  #sign .team__wrap,
#sign .form__wrap {
    margin: 0 -16px;
    padding: 0 16px;
    background-color: #172251;
    position: relative;
    z-index: 1;
  }

  #sign .form__wrap:before {
    content: "";
    width: 2380px;
    height: 1120px;
    background-image: url("../img/lines_bg.png");
    background-position: top 0 left 0;
    background-repeat: no-repeat;
    background-size: 2380px;
    position: absolute;
    top: -168px;
    left: -1026px;
    z-index: -1;
  }

  #sign .form__wrap .form__row:first-child {
    margin: 0;
  }
  #sign .form__wrap .form__row:not(:first-child) {
    margin: 41px 0 0 0;
  }

  #sign .form__wrap .form__label {
    font-size: 16px;
    line-height: 19px;
  }

  #sign .form__wrap .form__input {
    padding: 0 0 0 17px;
    font-size: 13px;
    line-height: 15px;
  }

  #sign .form__wrap .form__input::placeholder {
    font-size: 13px;
    line-height: 15px;
  }

  #sign .form__wrap .form__row:nth-child(1):before {
    width: 102px;
  }

  #sign .form__wrap .form__row:nth-child(2):before {
    width: 55px;
  }

  #sign .form__wrap .form__row:nth-child(3):before {
    width: 117px;
  }

  #sign .form__wrap .form__row:nth-child(4):before {
    width: 157px;
  }

  #sign .form__wrap .form__row:nth-child(5):before {
    width: 110px;
  }

  #sign .form__wrap .form__row:nth-child(6):before {
    width: 165px;
  }

  #sign .form__wrap .agreement__checkbox {
    margin: 20px 0 0 0;
  }

  #sign .form__wrap .checkbox__label {
    font-size: 13px;
  }

  #sign .form__wrap .form__button {
    margin: 25px 0 0 0;
    font-size: 21px;
  }

  #sign .team__wrap {
    padding: 48px 16px 52px;
  }

  #sign .team__wrap .team__title {
    margin: 0 0 25px 0;
  }

  #sign .team__wrap .team__image {
    max-width: 386px;
    margin: 0 auto;
  }

  #sign .data__wrap {
    padding: 50px 0 55px;
  }

  #sign .data__wrap h2.data__title {
    margin: 0 0 30px 0;
  }
}
#list .list__wrap {
  padding: 10.234375% 0 11.328125%;
}

#list h2.list__title {
  color: #172251;
  line-height: 87.5%;
}

#list .list__table {
  margin: 4.296875% 0 0 0;
  width: 100%;
}

#list .list__table tr {
  border-bottom: 1px solid #E5E5E5;
}

#list .list__table td {
  font-size: 18px;
  line-height: 130%;
  color: #9B9B9B;
  padding: 15.5px 18px 15.5px 0;
}
#list .list__table td:nth-child(5n+1) {
  font-size: 23px;
  color: #000000;
  width: 3.90625%;
}
#list .list__table td:nth-child(5n+2) {
  font-size: 23px;
  color: #000000;
  width: 36.71875%;
}
#list .list__table td:nth-child(5n+3) {
  width: 22.8125%;
}
#list .list__table td:nth-child(5n+4) {
  width: 26.171875%;
}
#list .list__table td:nth-child(5n+5) {
  padding: 15.5px 0;
  white-space: nowrap;
}

#list .list__footer {
  margin: 50px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#list .dots__item {
  font-size: 23px;
  line-height: 117.3913043478%;
  text-align: center;
  color: #9B9B9B;
  padding: 0 10px;
}

#list .dots__item.active {
  color: #000000;
  font-size: 30px;
}

#list .dots__item:hover,
#list .dots__item:focus {
  color: #000000;
}

#list .footer__arrow {
  position: absolute;
  height: 100%;
  width: 92px;
  margin: 0 -15px 0 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 300px;
}

#list .footer__arrow:hover {
  background: #FFB800;
}

@media (min-width: 769px) {
  #list .footer__show_more {
    display: none;
  }
}

@media (max-width: 1400px) {
  #list .list__table td {
    font-size: 15px;
  }
  #list .list__table td:nth-child(5n+1) {
    font-size: 19px;
  }
  #list .list__table td:nth-child(5n+2) {
    font-size: 19px;
    color: #000000;
    width: 42.96875%;
  }
  #list .list__table td:nth-child(5n+3) {
    width: 19.6875%;
  }
  #list .list__table td:nth-child(5n+4) {
    width: 23.046875%;
  }
}
@media (max-width: 992px) {
  #list .list__table td {
    font-size: 13px;
  }
  #list .list__table td:nth-child(5n+1) {
    font-size: 16px;
    padding: 15.5px 5px 15.5px 0;
  }
  #list .list__table td:nth-child(5n+2) {
    font-size: 16px;
    color: #000000;
    width: 46.09375%;
  }
  #list .list__table td:nth-child(5n+3) {
    width: 16.5625%;
  }
  #list .list__table td:nth-child(5n+4) {
    width: 23.046875%;
  }

  #list .list__footer {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 768px) {
  #list .list__wrap {
    padding: 46px 0 100px;
  }

  #list .list__table {
    margin: 10px 0 0 0;
  }

  #list .list__table tr:nth-child(n) {
    display: none;
  }
  #list .list__table tr:nth-child(-n+10) {
    display: table-row;
  }

  #list .list__table td {
    line-height: 138%;
  }
  #list .list__table td:nth-child(n) {
    padding: 0;
  }
  #list .list__table td:nth-child(5n+1) {
    vertical-align: top;
    padding: 17px 7px 0 0;
    font-size: 15px;
    line-height: 120%;
  }
  #list .list__table td:nth-child(5n+2), #list .list__table td:nth-child(5n+3), #list .list__table td:nth-child(5n+4), #list .list__table td:nth-child(5n+5) {
    display: block;
    width: 100%;
  }
  #list .list__table td:nth-child(5n+2) {
    font-size: 15px;
    line-height: 120%;
    padding: 17px 0 12.5px 0;
  }
  #list .list__table td:nth-child(5n+5) {
    padding: 0 0 14.5px 0;
  }

  #list .footer__dots {
    display: none;
  }

  #list .footer__arrow {
    display: none;
  }

  #list .footer__show_more {
    display: inline-block;
    padding: 19px 60px 21px;
    font-weight: 500;
    font-size: 21px;
    line-height: 25px;
    text-align: center;
    color: #060F37;
    border: 1px solid #1F2D67;
    border-radius: 3px;
  }

  #list .footer__show_more:hover,
#list .footer__show_more:focus {
    background-color: #1F2D67;
    color: #FFFFFF;
  }
}
@media (max-width: 375px) {
  #list .footer__show_more {
    width: 100%;
    padding: 19px 20px 21px;
  }
}
footer {
  background: #060F37;
  padding: 58px 0;
}

footer .footer__copyright {
  width: 810px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

footer .copyright__image {
  margin: 0 22px 0 0;
}

footer .copyright__text {
  font-size: 18px;
  line-height: 156%;
  color: #8E97BD;
}
footer .copyright__text span {
  white-space: nowrap;
}

@media (max-width: 992px) {
  footer .footer__copyright {
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 44px 0 68px;
    position: relative;
  }

  footer .copyright__image {
    margin: 0;
    position: absolute;
    right: 16px;
    bottom: 37px;
  }
}

/*# sourceMappingURL=layout_all.css.map */
