* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("/assets/icons/bg-cell.svg");
  background-position-y: 32px;
  scroll-behavior: smooth;
}

img {
  display: block;
  user-select: none;
}

main {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}

.container {
  max-width: 1704px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  flex-shrink: 0;
  height: 80px;
  transition: background-color 0.3s ease-in;
}
.header.header-home .header--inner > .header__logo svg path {
  fill: #FFFFFF;
}
.header.header-home.active .header--inner > .header__logo svg path {
  fill: #424A9C;
}
.header.header-home.active .header--inner > .header__logo svg path:first-child {
  fill: #424A9C;
}
.header.header-home.active .header--inner > .header__logo svg path:nth-child(2) {
  fill: #424A9C;
}
.header.active, .header:not(.header-home) {
  background-color: #FFFFFF;
}
.header.active .header--inner > .header__logo, .header:not(.header-home) .header--inner > .header__logo {
  color: #424A9C;
}
.header.active .header__hamburger span, .header:not(.header-home) .header__hamburger span {
  background-color: #424A9C;
}
.header.active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header--inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  transition: 0.3s;
}
.header__logo svg {
  width: 134px;
  height: 30px;
  margin-right: 16px;
}
.header__logo svg * {
  transition: 0.3s;
}
.header.nofixed {
  position: absolute;
}
.header__menu__links > ul > li {
  min-width: 96px;
  text-align: center;
}
.header__menu__links > ul > li:not(:first-child) {
  margin-left: 32px;
}
.header__menu__links .header__logo {
  display: none;
}
.header__menu__links .header__menu__link {
  display: none;
}
.header__menu__link {
  transition: 0.3s;
  width: 200px;
  padding: 12px 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  color: #424A9C;
  text-align: center;
}
.header__menu__link:hover {
  background: #424A9C;
  color: #FFFFFF;
}
.header__menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__menu ul li {
  transition: 0.3s;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
  user-select: none;
}
.header__menu ul li a,
.header__menu ul li span {
  display: block;
  position: relative;
  color: inherit;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  transition: 0.3s;
}
.header__menu ul li .submenu_container {
  display: none;
  padding-top: 12px;
  position: absolute;
  width: 1128px;
  left: 50%;
  top: 56px;
  transform: translateX(-50%);
}
.header__menu ul li .sub_menu {
  padding: 42px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  grid-auto-flow: column;
  border-radius: 8px;
  position: relative;
  gap: 16px 42px;
}
.header__menu ul li .sub_menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: #A7ACE8;
  border-radius: 8px 0 0 8px;
}
.header__menu ul li .sub_menu li {
  position: relative;
  transition: 0.3s;
  text-align: left;
  background-color: #fff;
  cursor: default;
  padding: 0;
}
.header__menu ul li .sub_menu li span {
  color: #424A9C;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.header__menu ul li .sub_menu li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #585A66;
}
.header__menu ul li .sub_menu li span + p {
  margin-top: 4px;
}
.header__menu ul li .sub_menu li a {
  border: none;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.header__menu ul li:nth-child(1) .sub_menu {
  background: #FFFFFF url("/assets/icons/header-platfoms-menu-icon.svg") no-repeat right bottom;
  background-size: 320px auto;
  padding-bottom: 100px;
}
.header__menu ul li:nth-child(2) .sub_menu {
  background: #FFFFFF url("/assets/icons/header-solutions-menu-icon.svg") no-repeat right bottom;
}
.header__menu ul li:nth-child(3) .sub_menu {
  background: #FFFFFF url("/assets/icons/header-services-menu-icon.svg") no-repeat right bottom;
}
.header__menu ul li:nth-child(2) .sub_menu, .header__menu ul li:nth-child(3) .sub_menu {
  grid-template-rows: repeat(2, 1fr);
}
.header__menu--close {
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: -100%;
  transition: 0.5s;
  fill: #FAFAF9;
}
.header__menu--close svg {
  display: block;
  width: 32px;
  height: 32px;
}
.header__hamburger {
  display: none;
  width: 32px;
  height: 32px;
  padding: 8px 4px;
  cursor: pointer;
}
.header__hamburger span {
  display: block;
  height: 2px;
  background-color: #FFFFFF;
  margin-bottom: 5px;
  transition: background-color 0.3s;
}
.header__hamburger span:last-child {
  margin-bottom: 0;
}

.footer {
  background: linear-gradient(151.02deg, #171E60 21.73%, #2E368B 82.18%);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 100%);
  padding: 280px 0 42px;
}
.footer__logo {
  display: flex;
  align-items: center;
  height: 45px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 80px;
  margin-right: 67px;
}
.footer__logo svg {
  width: 197px;
  height: 45px;
  margin-right: 20px;
}
.footer--inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 62px;
  padding-right: 144px;
}
.footer__menu {
  width: 100%;
  max-width: 1128px;
}
.footer__menu ul {
  display: flex;
  list-style: none;
}
.footer__menu > ul {
  justify-content: space-between;
}
.footer__menu > ul > li {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
.footer__menu > ul > li ul {
  flex-direction: column;
  position: relative;
  left: -8px;
  margin-top: 8px;
  width: 264px;
}
.footer__menu > ul > li ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.footer__menu > ul > li ul li a {
  display: inline-block;
  border-radius: 4px;
  padding: 8px;
  transition: 0.3s;
  color: #F7F8FA;
}
.footer__menu > ul > li ul li a:hover {
  background: #A7ACE8;
}
.footer__menu > ul > li:last-child {
  margin-top: -8px;
}
.footer__menu > ul > li:last-child a {
  display: block;
}
.footer__menu > ul > li:last-child > a {
  display: inline-block;
  border-radius: 4px;
  padding: 8px;
  margin-left: 32px;
  transition: 0.3s;
}
.footer__menu > ul > li:last-child > a:hover {
  background: #A7ACE8;
}
.footer__menu > ul > li:last-child ul {
  left: 0;
}
.footer__menu > ul > li:last-child ul li {
  padding-left: 40px;
}
.footer__menu > ul > li:last-child ul li:not(:first-child) {
  margin-top: 16px;
}
.footer__menu > ul > li:last-child ul li a {
  padding: 0;
}
.footer__menu > ul > li:last-child ul li a:hover {
  background: transparent;
  color: #A7ACE8;
}
.footer__menu > ul > li:last-child ul li:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  left: 0;
}
.footer__menu > ul > li:last-child ul li:nth-child(1):before {
  background: url("/assets/icons/footer-contacts-location.svg");
}
.footer__menu > ul > li:last-child ul li:nth-child(2):before {
  background: url("/assets/icons/footer-contacts-mail.svg");
}
.footer__menu > ul > li:last-child ul li:nth-child(3):before {
  background: url("/assets/icons/footer-contacts-phone.svg");
}
.footer__copyright {
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
}

@media (min-width: 769px) {
  .header.loaded.active .header__menu ul li, .header.loaded:not(.header-home) .header__menu ul li {
    color: #424A9C !important;
  }
  .header.loaded.active .header__menu ul li.submenu_wrapp:hover, .header.loaded:not(.header-home) .header__menu ul li.submenu_wrapp:hover {
    background: #F3F4FF;
    border-radius: 4px;
  }
  .header.loaded.active .header__menu__link, .header.loaded:not(.header-home) .header__menu__link {
    background: #424A9C;
    color: #FFFFFF;
  }
  .header.loaded.active .header__menu__link:hover, .header.loaded:not(.header-home) .header__menu__link:hover {
    background: #6B6FA3;
  }
  .header.loaded .header__menu ul li.submenu_wrapp:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 100%;
    left: 0;
    background: transparent;
    transition: 0.3s;
    pointer-events: none;
  }
  .header.loaded .header__menu ul li.submenu_wrapp:hover {
    background: #A7ACE8;
    border-radius: 4px;
  }
  .header.loaded .header__menu ul li.submenu_wrapp:hover .submenu_container {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.loaded .header__menu ul li.submenu_wrapp:hover:before {
    background: rgba(39, 43, 92, 0.3);
  }
  .header.loaded .header__menu ul li .submenu_container {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
    cursor: auto;
  }
  .header.loaded .header__menu ul li .submenu_container:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header.loaded .header__menu ul li a:hover,
  .header.loaded .header__menu ul li ul li.active a {
    background-color: #EFF0FC;
  }
}
@media screen and (max-width: 1704px) {
  main {
    overflow: hidden;
  }
  .container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1630px) {
  .footer {
    clip-path: polygon(0 18.5%, 100% 0, 100% 100%, 0 100%);
    padding: 180px 0 32px;
  }
  .footer--inner {
    padding-right: 0;
    padding-left: 50px;
  }
  .footer__copyright {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu ul li .submenu_container {
    padding-top: 16px;
    width: 720px;
  }
  .header__menu ul li .sub_menu {
    padding: 24px 32px;
  }
  .header__menu ul li .sub_menu li span {
    font-size: 14px;
    line-height: 20px;
  }
  .header__menu ul li:nth-child(1) .sub_menu {
    padding-bottom: 24px;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(2, 1fr);
    background: #ffffff;
  }
  .header__menu ul li:nth-child(2) .sub_menu, .header__menu ul li:nth-child(3) .sub_menu {
    grid-template-columns: repeat(2, 1fr);
    background: #ffffff;
  }
  .footer {
    padding-bottom: 37px;
    clip-path: polygon(0 16%, 100% 0, 100% 100%, 0 100%);
  }
  .footer--inner {
    padding-left: 0;
    margin-bottom: 56px;
  }
  .footer__logo {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .footer__logo svg {
    margin-right: 8px;
  }
  .footer__menu > ul {
    flex-wrap: wrap;
  }
  .footer__menu > ul > li {
    font-size: 14px;
    line-height: 20px;
    flex-basis: 50%;
    margin-top: 34px;
  }
  .footer__menu > ul > li ul {
    margin-top: 8px;
  }
  .footer__menu > ul > li ul li {
    font-size: 14px;
    line-height: 21px;
  }
  .footer__menu > ul > li .sub_menu {
    width: 100%;
    max-width: 264px;
  }
  .footer__menu > ul > li:nth-child(even) {
    padding-left: 12px;
  }
  .footer__menu > ul > li:nth-child(odd) {
    padding-right: 12px;
  }
  .footer__menu > ul > li:last-child {
    padding-left: 4px;
    margin-top: -80px;
  }
  .footer__menu > ul > li:last-child ul {
    width: 264px;
  }
  .footer__menu > ul > li:last-child > a {
    margin-left: 0;
  }
  .footer__copyright {
    font-size: 14px;
    line-height: 21px;
    padding-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .header--inner {
    padding: 20px 0;
  }
  .header__logo {
    font-size: 16px;
    line-height: 24px;
  }
  .header__logo svg {
    margin-right: 8px;
  }
  .header__menu__links > ul > li {
    min-width: auto;
  }
  .header__menu__links > ul > li:not(:first-child) {
    margin-left: 24px;
  }
  .header__menu__link {
    width: 140px;
    padding: 12px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .header__menu ul li {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }
  .header__menu ul li a,
  .header__menu ul li span {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
  }
  .header__menu ul li .submenu_container {
    top: 52px;
  }
  .header__menu ul li .sub_menu li a {
    font-size: 14px;
    line-height: 18px;
    padding: 6px 20px;
  }
  .header__menu ul li:nth-child(1) .sub_menu, .header__menu ul li:nth-child(2) .sub_menu, .header__menu ul li:nth-child(3) .sub_menu, .header__menu ul li:nth-child(4) .sub_menu {
    width: auto;
  }
}
@media screen and (max-width: 850px) {
  .header__menu__links > ul > li:not(:first-child) {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  body {
    background-position-y: 10px;
  }
  .container {
    padding: 0 16px;
  }
  main {
    padding-top: 56px;
  }
  .header {
    height: 56px;
  }
  .header.header-home .header__menu ul li .sub_menu li a {
    color: #FFFFFF;
  }
  .header.header-home .header__menu__links {
    background: linear-gradient(151.02deg, #171E60 21.73%, #2E368B 82.18%);
  }
  .header.header-home .header__menu__links .header__logo {
    color: #FFFFFF;
  }
  .header.header-home .header__menu__links .header__logo svg g path:first-child {
    fill: #FFFFFF;
  }
  .header.header-home .header__menu__links .header__logo svg g path:last-child {
    fill: #FFFFFF;
  }
  .header.header-home .header__menu__links .header__logo svg > path {
    fill: #FFFFFF;
  }
  .header:not(.header-home) .header__menu ul li,
  .header:not(.header-home) .header__menu span {
    color: #3F404A;
  }
  .header:not(.header-home) .header__menu--close {
    fill: #3F404A;
  }
  .header:not(.header-home) .header__menu__links > ul > li:before {
    background: url("/assets/icons/shevron-black.svg");
  }
  .header:not(.header-home) .header__menu__links .header__menu__link {
    background: #424A9C;
    color: #FFFFFF;
  }
  .header:not(.header-home) .header__menu__links .header__menu__link:hover {
    background: #6B6FA3;
  }
  .header--inner {
    padding: 12px 0;
  }
  .header__hamburger {
    display: block;
  }
  .header__menu {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    z-index: 100;
    background: transparent;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    transition: background 0.5s, right 0s 0.5s;
    overflow: auto;
  }
  .header__menu.open {
    right: 0;
    background: rgba(63, 64, 74, 0.6);
    transition: background 0.5s;
  }
  .header__menu.open .header__menu__links {
    right: 0;
  }
  .header__menu.open .header__menu--close {
    display: block;
    right: 16px;
  }
  .header__menu__links {
    position: relative;
    background: #FFFFFF;
    padding: 80px 0 80px 32px;
    width: 280px;
    height: max-content;
    min-height: 100%;
    right: -100%;
    transition: 0.5s;
  }
  .header__menu__links .header__logo {
    display: flex;
    margin: 0;
    color: #424A9C;
  }
  .header__menu__links > ul > li {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 20px 8px 0;
    text-align: left;
    width: 100%;
  }
  .header__menu__links > ul > li:not(:first-child) {
    margin-left: 0;
  }
  .header__menu__links > ul > li:last-child {
    margin-top: 18px;
    width: max-content;
  }
  .header__menu__links > ul > li:last-child a {
    padding: 12px 28px;
  }
  .header__menu__links > ul > li:not(:last-child):before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 6px;
    right: 0;
    background: url("/assets/icons/shevron.svg");
    transition: 0.3s;
  }
  .header__menu__links > ul > li:nth-child(1):before {
    left: 62px;
  }
  .header__menu__links > ul > li:nth-child(2):before {
    left: 66px;
  }
  .header__menu__links > ul > li:nth-child(3):before {
    left: 148px;
  }
  .header__menu__links > ul > li:nth-child(4):before {
    left: 44px;
  }
  .header__menu__links .header__menu__link {
    margin-top: 18px;
    display: block;
  }
  .header__menu__link {
    display: none;
  }
  .header__menu ul {
    margin-top: 26px;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
  .header__menu ul > li .submenu_container {
    display: none;
    width: auto;
    height: auto;
    left: 0;
    top: 100%;
    position: relative;
    transform: none;
    padding: 0;
  }
  .header__menu ul > li .sub_menu {
    position: relative;
    background: transparent !important;
    margin: 0;
    padding: 0 0 0 16px;
    display: block;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
  }
  .header__menu ul > li .sub_menu:before {
    display: none;
  }
  .header__menu ul > li .sub_menu li {
    background: transparent;
  }
  .header__menu ul > li .sub_menu li a {
    padding: 8px 0;
  }
  .header__menu ul > li .sub_menu li a span {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
  }
  .header__menu ul > li .sub_menu li a p {
    display: none;
  }
  .header__menu ul > li .sub_menu li:first-child {
    padding: 0;
    border-radius: 0;
  }
  .header__menu ul > li .sub_menu li:last-child {
    padding: 0;
    border-radius: 0;
  }
  .header__menu ul > li .sub_menu li:last-child a {
    padding-bottom: 0;
  }
  .header__menu ul > li.submenu_wrapp {
    position: relative;
  }
  .header__menu ul > li.submenu_wrapp.open .submenu_container {
    display: block;
  }
  .header__menu ul > li.submenu_wrapp.open .sub_menu {
    margin-top: 11px;
    position: relative;
    height: auto;
    padding-bottom: 0;
  }
  .header__menu ul > li.submenu_wrapp.open:before {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 570px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 30px;
    clip-path: polygon(0 5.9%, 100% 0, 100% 100%, 0 100%);
  }
  .footer--inner {
    margin-bottom: 40px;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__menu > ul > li {
    flex-basis: 100%;
    width: max-content;
    margin-top: 20px;
  }
  .footer__menu > ul > li ul {
    left: -4px;
    margin-top: 4px;
  }
  .footer__menu > ul > li ul li a {
    padding: 4px;
  }
  .footer__menu > ul > li:nth-child(1) .sub_menu, .footer__menu > ul > li:nth-child(2) .sub_menu, .footer__menu > ul > li:nth-child(3) .sub_menu, .footer__menu > ul > li:nth-child(4) .sub_menu {
    width: 100%;
  }
  .footer__menu > ul > li:nth-child(1) {
    margin-top: 0;
  }
  .footer__menu > ul > li:nth-child(odd) {
    padding-right: 0;
  }
  .footer__menu > ul > li:nth-child(even) {
    padding-left: 0;
  }
  .footer__menu > ul > li:last-child {
    padding-left: 0;
    margin-top: 16px;
  }
  .footer__menu > ul > li:last-child > a {
    padding: 4px;
  }
  .footer__menu > ul > li:last-child ul li:not(:first-child) {
    margin-top: 12px;
  }
}
@media screen and (max-width: 550px) {
  body {
    background-size: 24px;
  }
}/*# sourceMappingURL=index.css.map */