@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap");
:root {
  --font-family: "Ubuntu Sans", sans-serif; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  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;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

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:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #fff;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto;
  margin-top: 83px; }
  @media (max-width: 480px) {
  .page {
    margin-top: 71px; } }

._container {
  max-width: 1246px;
  padding: 0 15px;
  margin: 0 auto; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 16px 0; }
  @media (max-width: 480px) {
  .header {
    padding: 10px 0; } }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__content {
    display: flex;
    align-items: center;
    column-gap: 50px; }
    @media (max-width: 1200px) {
  .header__content {
    display: none; } }
  .header__items {
    display: flex;
    align-items: center;
    column-gap: 34px; }
  .header__item {
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #787a8c; }
  .header__eye {
    display: flex;
    align-items: center;
    column-gap: 12px;
    cursor: pointer; }
    .header__eye span {
      font-weight: 400;
      font-size: 16px;
      line-height: 137%;
      color: #787a8c; }
  .header__langs {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .header__lang {
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #787a8c;
    position: relative; }
    .header__lang.active {
      color: #001e52; }
    .header__lang:not(:last-child)::after {
      content: "/";
      display: block;
      position: absolute;
      right: -9px;
      top: 0;
      font-weight: 400;
      font-size: 16px;
      line-height: 137%;
      color: #787a8c; }
  .header__mobile {
    display: none; }
    @media (max-width: 1200px) {
  .header__mobile {
    display: flex;
    align-items: center;
    column-gap: 20px; } }
    @media (max-width: 480px) {
  .header__mobile {
    column-gap: 15px; } }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  transition: 0.8s;
  transform: translateX(-100%); }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 50px;
    cursor: pointer;
    color: #bbb; }
    @media (max-width: 480px) {
  .menu__close {
    right: 15px;
    top: 10px;
    font-size: 40px; } }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 40px; }

section {
  margin-top: 90px; }
  @media (max-width: 480px) {
  section {
    margin-top: 60px; } }

.main {
  height: calc(100vh - 83px);
  margin-top: 0;
  background: url("../themes/demo/assets/images/banner.jpg") center / cover no-repeat; }
  @media (max-width: 480px) {
  .main {
    height: calc(100vh - 71px); } }
  .main__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .main__title {
    font-weight: 700;
    font-size: 58px;
    line-height: 106%;
    letter-spacing: -0.03em;
    color: #fff;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; }
    @media (max-width: 480px) {
  .main__title {
    font-size: 30px;
    row-gap: 5px; } }
    .main__title strong {
      font-weight: 700;
      font-size: 80px;
      line-height: 98%;
      letter-spacing: -0.03em;
      color: #fff; }
      @media (max-width: 480px) {
  .main__title strong {
    font-size: 50px; } }
  .main__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    max-width: 480px;
    margin-bottom: 20px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 16px; } }
  .main__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    border-radius: 38px;
    background: #001e52;
    padding: 20px 60px;
    transition: 0.5s; }
    @media (max-width: 480px) {
  .main__button {
    font-size: 16px;
    padding: 15px 40px; } }
    .main__button:hover {
      box-shadow: 0 0 20px #001e52; }

.title {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  color: #001e52;
  max-width: 1060px;
  margin-bottom: 40px; }
  @media (max-width: 480px) {
  .title {
    font-size: 26px;
    margin-bottom: 25px; } }
  .title::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: #001e52;
    margin-top: 10px; }

.top__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 1100px) {
    .top__items {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 800px) {
    .top__items {
      grid-template-columns: 1fr 1fr;
      gap: 15px; } }
  @media (max-width: 550px) {
    .top__items {
      grid-template-columns: 1fr; } }
  .item-team {
    border: 1px solid #d4d7de;
    border-radius: 10px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column; }
  .item-team__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 10px; }
  .item-team__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c;
    margin-bottom: 15px;
    flex-grow: 1; }
  .item-team__button {
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    line-height: 86%;
    text-align: center;
    color: #001e52;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border: 0.5px solid #d4d7de;
    border-radius: 25px;
    transition: 0.5s;
    cursor: pointer; }
  .item-team__button:hover {
    background-color: #001e52;
    color: #fff;
    border: 0.5px solid transparent; }

.how__body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center; }
  @media (max-width: 992px) {
    .how__body {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .how__video {
    border: 0.5px solid #d4d7de;
    border-radius: 10px;
    width: 100%;
    height: 453px;
    overflow: hidden; }
  @media (max-width: 480px) {
    .how__video {
      height: 300px; } }
  .how__video iframe {
    width: 100%;
    height: 100%; }
  .how__items {
    display: flex;
    flex-direction: column;
    row-gap: 18px; }
  @media (max-width: 480px) {
    .how__items {
      row-gap: 15px; } }
  .item-how {
    display: flex;
    align-items: start;
    column-gap: 24px; }
  @media (max-width: 480px) {
  .item-how {
    column-gap: 15px; } }
  .item-how__number {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    text-align: right;
    color: #001e52; }
  @media (max-width: 480px) {
    .item-how__number {
      font-size: 18px; } }
  .item-how__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-how__title {
      font-size: 18px; } }
  .item-how__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c; }
  @media (max-width: 480px) {
    .item-how__text {
      font-size: 14px; } }

.for__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 860px) {
    .for__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 520px) {
    .for__items {
      grid-template-columns: 1fr; } }
  .item-for {
    display: flex;
    flex-direction: column; }
  .item-for__image img {
    width: 100%;
    border-radius: 10px; }
  .item-for__content {
    flex-grow: 1;
    padding: 30px 20px;
    border: 1px solid #d4d7de;
    border-radius: 10px;
    background-color: #fff;
    margin-top: -25px;
    display: flex;
    flex-direction: column; }
  .item-for__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 10px; }
  .item-for__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c;
    margin-bottom: 15px;
    flex-grow: 1; }
  .item-for__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    line-height: 120%;
    text-align: center;
    color: #fff;
    padding: 13px;
    width: 100%;
    border-radius: 21px;
    background: #001e52;
    transition: 0.3s;
    cursor: pointer; }
  .item-for__button:hover {
    box-shadow: 0 0 20px #001e52; }

.team__body {
  display: flex;
  align-items: center;
  margin: 0 -40px; }
  @media (max-width: 992px) {
    .team__body {
      display: flex;
      flex-direction: column;
      align-items: start;
      row-gap: 20px; } }
  .team__image {
    flex: 0 0 55%;
    padding: 0 40px; }
  .team__image img {
    width: 100%; }
  .team__content {
    flex: 1 0 45%;
    padding: 0 40px; }
  .team__title {
    margin-bottom: 25px; }
  .team__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
    color: #787a8c;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .team__text {
      font-size: 16px; } }

.what__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 800px) {
    .what__items {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 550px) {
    .what__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-what {
    padding: 30px 20px;
    border: 1px solid #d4d7de;
    border-radius: 10px; }
  .item-what__image {
    margin-bottom: 30px; }
  .item-what__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-what__title {
      font-size: 18px; } }
  .item-what__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c; }

.use__body {
  display: flex;
  align-items: center;
  margin: 0 -40px; }
  @media (max-width: 992px) {
    .use__body {
      display: flex;
      flex-direction: column;
      align-items: start;
      row-gap: 20px; } }
  .use__image {
    flex: 0 0 47%;
    padding: 0 40px; }
  .use__image img {
    width: 100%; }
  .use__content {
    flex: 1 0 53%;
    padding: 0 40px; }
  .use__title {
    margin-bottom: 25px; }
  .use__text {
    font-weight: 400;
    font-size: 24px;
    line-height: 125%;
    color: #787a8c;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .use__text {
      font-size: 16px; } }

.posts__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  column-gap: 10px;
  padding: 5px; }
  @media (max-width: 480px) {
    .posts__pagination {
      margin-top: 20px; } }
  .posts__pagination .swiper-pagination-bullet {
    opacity: 1 !important;
    margin: 0 !important;
    border: 1px solid #001e52 !important;
    border-radius: 1px !important;
    width: 8px !important;
    height: 8px !important;
    transform: rotate(-45deg) !important;
    background: transparent;
    transition: 0.4s; }
    .posts__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      width: 12px !important;
      height: 12px !important;
      background: #001e52 !important; }

.item-posts {
  padding: 29px 22px;
  border: 1px solid #d4d7de;
  border-radius: 10px; }
  @media (max-width: 480px) {
  .item-posts {
    padding: 25px 20px; } }
  .item-posts__icon {
    margin-bottom: 20px; }
  .item-posts__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 10px; }
  @media (max-width: 480px) {
    .item-posts__title {
      font-size: 18px; } }
  .item-posts__doc {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c; }

.footer {
  padding: 45px 0 30px;
  background: #001e52; }
  .footer__body {
    display: flex;
    align-items: start;
    justify-content: space-between; }
  @media (max-width: 767px) {
    .footer__body {
      flex-direction: column;
      row-gap: 30px; } }
  .footer__content {
    display: flex;
    align-items: start;
    column-gap: 100px; }
  @media (max-width: 767px) {
    .footer__content {
      flex-direction: column;
      row-gap: 30px; } }
  .footer__nav-title {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px; }
  .footer__nav-items {
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  .footer__nav-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #fff; }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid #fff;
    margin-top: 80px; }
  @media (max-width: 480px) {
    .footer__foot {
      margin-top: 40px; } }
  .footer__foot a {
    display: flex;
    align-items: center;
    justify-content: center; }
  .footer__foot span {
    font-weight: 400;
    font-size: 13px;
    color: #fff; }

.breadcrumbs {
  margin-top: 50px; }
  @media (max-width: 480px) {
  .breadcrumbs {
    margin-top: 30px; } }
  .breadcrumbs__items {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: wrap;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .breadcrumbs__items {
      column-gap: 30px; } }
  .breadcrumbs__item {
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #787a8c;
    position: relative; }
  @media (max-width: 480px) {
    .breadcrumbs__item {
      font-size: 14px; } }
  .breadcrumbs__item:not(:last-child)::after {
    content: "/";
    display: block;
    position: absolute;
    right: -28px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #787a8c;
    top: 0; }
    @media (max-width: 480px) {
    .breadcrumbs__item:not(:last-child)::after {
      right: -16px;
      font-size: 14px; } }
  .breadcrumbs__item.active {
    font-weight: 600; }

.info {
  margin-top: 50px; }
  @media (max-width: 480px) {
  .info {
    margin-top: 30px; } }
  .info__body {
    display: flex;
    align-items: center;
    margin: 0 -40px; }
  @media (max-width: 992px) {
    .info__body {
      display: flex;
      flex-direction: column;
      align-items: start;
      row-gap: 20px; } }
  .info__image {
    flex: 0 0 45%;
    padding: 0 40px; }
  .info__image img {
    width: 100%; }
  .info__content {
    flex: 1 0 55%;
    padding: 0 40px; }
  .info__title {
    margin-bottom: 25px; }
  .info__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 125%;
    color: #787a8c;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .info__text {
      font-size: 16px; } }

.faq__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }
  .item-faq {
    padding: 30px 80px;
    border: 0.5px solid #d4d7de;
    border-radius: 12px; }
  @media (max-width: 992px) {
  .item-faq {
    padding: 30px 40px; } }
  @media (max-width: 480px) {
  .item-faq {
    padding: 20px; } }
  .item-faq.active .item-faq__button::before {
    transform: translate(-50%, -50%) rotate(90deg); }
  .item-faq__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    cursor: pointer; }
  @media (max-width: 480px) {
    .item-faq__top {
      column-gap: 20px; } }
  .item-faq__title {
    font-weight: 600;
    font-size: 20px;
    color: #001e52; }
  @media (max-width: 480px) {
    .item-faq__title {
      font-size: 16px; } }
  .item-faq__button {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    position: relative; }
  .item-faq__button::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 2px;
    background-color: #001e52;
    transition: 0.5s; }
  .item-faq__button::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #001e52; }
  .item-faq__wrapper {
    margin-top: 15px;
    display: none; }
  .item-faq__text {
    font-weight: 400;
    font-size: 15px;
    color: #787a8c;
    display: flex;
    line-height: 1.3;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .item-faq__text {
      font-size: 13px; } }

.docs__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px; }
  @media (max-width: 480px) {
    .docs__items {
      row-gap: 15px; } }
  .item-docs {
    padding: 45px 60px;
    border: 1px solid #d4d7de;
    border-radius: 10px;
    display: flex;
    align-items: center;
    column-gap: 60px; }
  @media (max-width: 767px) {
  .item-docs {
    flex-direction: column;
    row-gap: 15px;
    align-items: start; } }
  @media (max-width: 480px) {
  .item-docs {
    padding: 30px 20px; } }
  .item-docs__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #001e52;
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-docs__title {
      font-size: 18px; } }
  .item-docs__date {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c;
    margin-bottom: 5px; }
  .item-docs__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #787a8c; }

#modalForm_forms_flash .close {
  display: none; }
  #modalForm_forms_flash p {
    color: green;
    font-size: 18px;
    font-family: var(--font-family);
    line-height: 133%;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    #modalForm_forms_flash p {
      font-size: 16px;
      margin-bottom: 10px; } }

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 21, 21, 0.314);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 10px;
  display: none; }
  .modal.active {
    display: flex; }
  .modal__body {
    padding: 70px 50px;
    background-color: #fff;
    border-radius: 20px;
    position: relative; }
  @media (max-width: 767px) {
    .modal__body {
      padding: 30px 15px; } }
  .modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    color: #bbb;
    background-color: transparent;
    cursor: pointer; }
  @media (max-width: 480px) {
    .modal__close {
      font-size: 30px;
      top: 10px;
      right: 15px; } }
  .modal__title {
    margin-bottom: 20px;
    font-size: 35px; }
  @media (max-width: 480px) {
    .modal__title {
      font-size: 25px; } }
  .modal__text {
    max-width: 500px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 135%;
    color: #444;
    margin-bottom: 20px; }
  @media (max-width: 480px) {
    .modal__text {
      font-size: 14px; } }
  .modal__inputs {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "c c"; }
  .modal__input:first-child {
    grid-area: a; }
  .modal__input:nth-child(2) {
    grid-area: b; }
  .modal__input:nth-child(3) {
    grid-area: c; }
  .modal__input input {
    width: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #151515;
    padding: 18px 13px 16px;
    border-radius: 10px;
    background: #e8ecf2; }
    .modal__input input::placeholder {
      color: #828282; }
  .modal__button {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px 13px;
    margin-top: 25px;
    border-radius: 10px;
    transition: 0.5s;
    background: #001e52; }
  .modal__button:hover {
    box-shadow: 0 0 20px #001e52; }

.use__text.mb35 {
  margin-bottom: 35px; }
