@import url(https://fonts.googleapis.com/css?family=Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);
body {
  font-family: Lato;
  font-weight: 400;
  overflow-x: hidden;
}
*,
::after,
::before {
  box-sizing: border-box;
  outline: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  max-width: 100%;
}
button,
input,
select {
  border: none;
  outline: 0;
}
.page-container {
  overflow: hidden;
}
.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}
.footer {
  padding: 70px 0;
  background: #3c3c3b;
}
.footer__inner {
  display: flex;
  align-items: center;
}
.footer__inner .logo {
  margin-right: 180px;
}
@media (max-width: 991px) {
  .footer__inner .logo {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .footer__inner .logo {
    margin-right: 0;
  }
}
.footer__inner .socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer__inner .socials {
    justify-content: center;
  }
}
.footer__inner .menu-wrap {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__inner .menu-wrap {
    align-items: center;
    margin-left: 0;
  }
}
.footer__inner .copyright {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.footer__inner ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 470px) {
  .footer__inner ul {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__inner ul a {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 21px 0;
}
.header__inner .logo img {
  width: 120px;
  height: auto;
}
.header__inner ul {
  display: flex;
  align-items: center;
  gap: 45px;
}
.header__inner ul a {
  color: #1f2a37;
  font-size: 16px;
  position: relative;
  transition: 0.2s linear;
}
.header__inner ul a::after {
  content: "";
  height: 100%;
  max-height: 2px;
  width: 100%;
  left: 0;
  position: absolute;
  top: calc(100% + 4px);
  background: #1f2a37;
  opacity: 0;
  transition: 0.2s linear;
}
.header__inner ul .current_page_item a::after,
.header__inner ul a:hover::after {
  opacity: 1;
}
.button {
  font-family: Lato;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  display: inline-flex;
  padding: 10px 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #005eb8;
  transition: 0.2s linear;
}
@media (max-width: 768px) {
  .button {
    padding: 10px 20px;
  }
}
.button:hover {
  background: #245290;
}
.button:active {
  background: #1a3b67;
}
.section__title {
  color: #3c3c3b;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%;
  letter-spacing: -0.36px;
}
@media (max-width: 991px) {
  .section__title {
    font-size: 24px;
  }
}
.section__text {
  color: #6b7280;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 991px) {
  .section__text {
    font-size: 16px;
  }
}
.hero {
  padding: 96px 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
}
.hero__content {
  background: #005eb8;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px 0;
  position: relative;
}
.hero__content::before {
  content: "";
  position: absolute;
  right: 100%;
  height: 100%;
  width: 100vw;
  background: #005eb8;
}
.hero__content-subtitle {
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  max-width: 345px;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 24px;
  }
  .hero__content::before {
    display: none;
  }
  .hero__content-subtitle {
    font-size: 24px;
  }
}
.hero__content-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  max-width: 345px;
}
.hero--services .hero__content {
  background: rgba(41, 94, 164, 0.06);
  color: #1f2a37;
}
.hero--services .hero__content-subtitle,
.hero--services .hero__content-title {
  max-width: 720px;
}
@media (max-width: 1200px) and (min-width: 769px) {
  .hero--services .hero__content-title {
    font-size: 38px;
  }
  .hero--services .hero__content-subtitle {
    font-size: 28px;
  }
}
.hero--services .hero__content::before {
  right: auto;
  left: 100%;
  background: rgba(41, 94, 164, 0.06);
}
@media (min-width: 769px) {
  .hero--services .hero__content {
    padding-left: 90px;
  }
  .hero--services .hero__inner {
    grid-template-columns: 340px 1fr;
  }
}
.help {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .hero__content-title {
    font-size: 32px;
  }
  .help {
    padding: 24px 0;
  }
}
.help__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .help__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.help__block--text {
  padding: 32px 48px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.help__block--text .section__title {
  margin-bottom: 16px;
}
.help__block--clip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px;
}
@media (max-width: 1200px) {
  .help__block--clip {
    padding: 64px;
  }
}
@media (min-width: 581px) {
  .help__block--clip {
    -webkit-clip-path: polygon(
      30% 0,
      100% 0,
      100% 70%,
      70% 100%,
      0 100%,
      0 30%
    );
    clip-path: polygon(30% 0, 100% 0, 100% 70%, 70% 100%, 0 100%, 0 30%);
    min-height: 300px;
  }
}
.help__block-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 125%;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .help__block--clip {
    padding: 32px;
  }
  .help__block-title {
    font-size: 18px;
  }
}
.help__block:last-child {
  padding: 80px 48px;
}
@media (min-width: 992px) {
  .help__block:last-child {
    grid-column-start: 2;
    grid-column-end: 4;
  }
}
@media (min-width: 581px) and (max-width: 991px) {
  .help__block:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 580px) {
  .help__inner {
    grid-template-columns: 1fr;
  }
  .help__block:last-child {
    padding: 32px 0;
  }
}
.advantages .container {
  max-width: 1440px;
}
.advantages__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px;
  color: #3c3c3b;
}
.advantages__item {
  position: relative;
}
.advantages__item:nth-child(2)::before,
.advantages__item:nth-child(3)::before {
  content: "";
  width: 100vw;
  background: #005eb8;
  height: 100%;
  position: absolute;
  top: 0;
}
.advantages__item:nth-child(2)::before {
  right: 199%;
}
.advantages__item:nth-child(3)::before {
  left: 199%;
}

@media (max-width: 1200px) {
  .advantages__item {
    padding: 64px;
  }
}
.advantages__item:nth-child(1),
.advantages__item:nth-child(4) {
  background: #005eb8;
  color: #fff;
}
@media (min-width: 769px) {
  .advantages__item:nth-child(1) {
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 125px),
      calc(100% - 125px) 100%,
      0 100%,
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 125px),
      calc(100% - 125px) 100%,
      0 100%,
      0 0
    );
  }
  .advantages__item:nth-child(4) {
    -webkit-clip-path: polygon(
      125px 0,
      100% 0,
      100% 50%,
      100% 100%,
      0 100%,
      0 125px
    );
    clip-path: polygon(125px 0, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 125px);
  }
}
@media (max-width: 768px) {
  .advantages__inner {
    grid-template-columns: 1fr;
  }
  .advantages__item {
    padding: 32px 24px;
  }
  .advantages__item:nth-child(3) {
    background: #005eb8;
    color: #fff;
  }
  .advantages__item:nth-child(4) {
    background: 0 0;
    color: #3c3c3b;
  }
}
.advantages__item .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: 50px;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .advantages__item .title {
    font-size: 24px;
    margin-top: 24px;
  }
}
.advantages__item .text {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.community .container {
  max-width: 100%;
}
.community__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 150px;
}
.community__content {
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 1201px) {
  .community .container {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .advantages__item .text {
    font-size: 18px;
  }
  .community__inner {
    gap: 64px;
  }
}
.community__img img {
  width: 100%;
  height: auto;
  display: block;
}
.community__content {
  padding-top: 115px;
}
@media (max-width: 768px) {
  .community__inner {
    grid-template-columns: 1fr;
  }
  .community__img {
    display: none;
  }
  .community__content {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.community__content .section__title {
  margin-bottom: 16px;
}
.community__content .section__text {
  max-width: 710px;
}
.community__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 720px;
  padding-top: 80px;
}
.community__list-title {
  color: #3c3c3b;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 12px;
}
.community__list-item {
  padding-left: 48px;
  position: relative;
}
.community__list-item::before {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  left: 0;
  top: 0;
  background: #f6c962;
}
.connect .section__title {
  margin-bottom: 20px;
}
.connect__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  padding: 64px 0;
  row-gap: 64px;
}
@media (max-width: 1200px) {
  .connect {
    padding: 64px 0;
  }
  .connect__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .connect__grid {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 32px 0;
  }
}
.connect__grid-title {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
  -webkit-clip-path: polygon(44px 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(44px 0, 100% 0, 100% 100%, 0 100%);
  margin-bottom: 20px;
  padding: 14px 16px 14px 54px;
}
.solution {
  padding: 96px 0;
  margin: 96px 0;
  background: rgba(41, 94, 164, 0.06);
}
@media (max-width: 768px) {
  .solution {
    margin: 40px 0;
    padding: 40px 0;
  }
}
.solution .section__title {
  margin-bottom: 20px;
}
.solution .section__title + .section__text {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 991px) {
  .connect__grid-title {
    font-size: 16px;
  }
  .solution .section__title + .section__text {
    font-size: 18px;
  }
}
.solution__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
}
@media (min-width: 1201px) {
  .connect__grid-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 5;
  }
  .connect__grid-item:nth-child(2) {
    grid-column-start: 5;
    grid-column-end: 9;
  }
  .connect__grid-item:nth-child(3) {
    grid-column-start: 9;
    grid-column-end: 13;
  }
  .connect__grid-item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 7;
  }
  .connect__grid-item:nth-child(5) {
    grid-column-start: 7;
    grid-column-end: 13;
  }
  .solution__list {
    padding-left: 80px;
  }
}
.solution__item:nth-child(3),
.solution__item:nth-child(4) {
  position: relative;
}
.solution__item:nth-child(3),
.solution__item:nth-child(4) {
  background: #005eb8;
  color: #fff;
  padding: 80px 0;
}
.solution__item:nth-child(3) .section__text,
.solution__item:nth-child(4) .section__text {
  color: #fff;
}
.solution__item:nth-child(3)::before,
.solution__item:nth-child(4)::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #005eb8;
  left: -100px;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .solution__list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .solution__item {
    padding: 24px 0;
  }
  .solution__item:nth-child(3)::before,
  .solution__item:nth-child(4)::before {
    left: -10px;
    display: none;
  }
}
.solution__item:nth-child(3) .solution__item-icon,
.solution__item:nth-child(3) .solution__item-text,
.solution__item:nth-child(3) .solution__item-title,
.solution__item:nth-child(4) .solution__item-icon,
.solution__item:nth-child(4) .solution__item-text,
.solution__item:nth-child(4) .solution__item-title {
  position: relative;
  z-index: 5;
}
.solution__item-title {
  font-family: Lato;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 22px;
}
.grow {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .grow {
    padding: 40px 0;
  }
}
.grow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
}
@media (max-width: 580px) {
  .grow__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.grow__content-list {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #d1d5db;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.grow__content-list li {
  position: relative;
  color: var(--gray-900, #111928);
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.grow__content-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='18' height='18' transform='translate(0 0.5)' fill='%23F6C962' fill-opacity='0.22'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.6949 6.20507C13.8261 6.33634 13.8998 6.51436 13.8998 6.69997C13.8998 6.88559 13.8261 7.0636 13.6949 7.19487L8.09488 12.7949C7.96361 12.9261 7.78559 12.9998 7.59998 12.9998C7.41437 12.9998 7.23635 12.9261 7.10508 12.7949L4.30508 9.99487C4.17757 9.86285 4.10701 9.68603 4.10861 9.50249C4.1102 9.31895 4.18382 9.14339 4.31361 9.0136C4.44339 8.88381 4.61896 8.8102 4.8025 8.8086C4.98604 8.80701 5.16286 8.87756 5.29488 9.00507L7.59998 11.3102L12.7051 6.20507C12.8364 6.07384 13.0144 6.00012 13.2 6.00012C13.3856 6.00012 13.5636 6.07384 13.6949 6.20507Z' fill='%23F6C962'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: center;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: -30px;
  top: 5px;
}
.grow__image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-clip-path: polygon(150px 0, 100% 0, 100% 100%, 0 100%, 0 150px);
  clip-path: polygon(150px 0, 100% 0, 100% 100%, 0 100%, 0 150px);
}
.best {
  padding: 80px 0;
  background: rgba(41, 94, 164, 0.06);
  position: relative;
}
@media (max-width: 768px) {
  .best {
    padding: 24px 0;
  }
}
.best__inner {
  padding-left: 130px;
}
.best__inner .section__title {
  margin-bottom: 20px;
}
.best__cols {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.best__cols .section__text:nth-child(1) {
  padding-right: 40px;
  border-right: 1px solid #d1d5db;
}
.best::before {
  content: "";
  width: 120px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #83c2ba;
}
@media (max-width: 768px) {
  .best__inner {
    padding-left: 40px;
  }
  .best__cols {
    grid-template-columns: 1fr;
  }
  .best__cols .section__text:nth-child(1) {
    border-right: 0;
    padding-right: 0;
  }
  .best::before {
    width: 30px;
  }
}
.about-hero {
  padding: 96px 0;
  background: rgba(41, 94, 164, 0.06);
}
.about-hero__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 64px;
}
@media (max-width: 991px) {
  .solution__item-title {
    font-size: 20px;
  }
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero__content-title {
  color: #1f2a37;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  margin-bottom: 4px;
}
.about-hero__content-subtitle {
  color: #111928;
  font-family: Lato;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  max-width: 360px;
}
.about-hero__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.requirements {
  padding: 96px 0;
}
.requirements__inner .section__title {
  max-width: 418px;
  margin-bottom: 20px;
}
.requirements__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
.requirements__cols .section__text:nth-child(1) {
  padding-right: 40px;
  border-right: 1px solid #d1d5db;
}
@media (max-width: 768px) {
  .about-hero__content-title {
    font-size: 36px;
  }
  .about-hero__content-subtitle {
    font-size: 28px;
    line-height: normal;
  }
  .requirements {
    padding: 40px 0;
  }
  .requirements__cols {
    grid-template-columns: 1fr;
  }
  .requirements__cols .section__text:nth-child(1) {
    border-right: 0;
    padding-right: 0;
  }
}
.requirements__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .requirements__items {
    grid-template-columns: 1fr;
  }
}
.requirements__item {
  padding: 0 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-right: -1px;
}
@media (min-width: 992px) {
  .requirements__item {
    -webkit-clip-path: polygon(
      100px 0,
      100% 0,
      100% calc(100% - 100px),
      calc(100% - 100px) 100%,
      0 100%,
      0 100px
    );
    clip-path: polygon(
      100px 0,
      100% 0,
      100% calc(100% - 100px),
      calc(100% - 100px) 100%,
      0 100%,
      0 100px
    );
  }
}
@media (max-width: 1200px) {
  .requirements__item {
    padding: 0 64px;
  }
}
@media (min-width: 768px) {
  .requirements__item {
    min-height: 340px;
  }
}
.requirements__item-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 125%;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .requirements__item {
    -webkit-clip-path: polygon(
      50px 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%,
      0 50px
    );
    clip-path: polygon(
      50px 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%,
      0 50px
    );
    padding: 32px;
  }
  .requirements__item-title {
    font-size: 18px;
  }
}
.requirements__item-text {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.our-team__inner .section__title {
  margin-bottom: 20px;
}
.our-team__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 768px) {
  .our-team__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.our-team__list {
  padding-top: 32px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.our-team__list-wrap .section-text {
  margin-bottom: 12px;
}
.our-team__list li {
  position: relative;
  color: var(--gray-900, #111928);
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.our-team__list li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='19' viewBox='0 0 18 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.5' width='18' height='18' rx='9' fill='%2383C2BA' fill-opacity='0.34'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.6949 6.2051C13.8262 6.33637 13.8999 6.51439 13.8999 6.7C13.8999 6.88562 13.8262 7.06363 13.6949 7.1949L8.09494 12.7949C7.96367 12.9261 7.78566 12.9999 7.60004 12.9999C7.41443 12.9999 7.23641 12.9261 7.10514 12.7949L4.30514 9.9949C4.17763 9.86288 4.10707 9.68606 4.10867 9.50252C4.11026 9.31898 4.18388 9.14342 4.31367 9.01363C4.44345 8.88384 4.61902 8.81023 4.80256 8.80863C4.9861 8.80704 5.16292 8.87759 5.29494 9.0051L7.60004 11.3102L12.7051 6.2051C12.8364 6.07387 13.0144 6.00015 13.2 6.00015C13.3857 6.00015 13.5637 6.07387 13.6949 6.2051Z' fill='%2383C2BA'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: center;
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: -30px;
  top: 5px;
}
.our-team__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 70px;
}
.our-team__item {
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  max-width: 245px;
  margin-bottom: 30px;
}
.our-team__item-image {
  position: relative;
  margin-bottom: 16px;
}
.our-team__item-image img {
  width: 213px;
  height: auto;
  display: block;
}
.our-team__item-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s linear;
  opacity: 0;
}
.our-team__item-icon img {
  width: 48px;
  height: 48px;
}
.our-team__item:hover .our-team__item-icon {
  opacity: 1;
}
.our-team__item-name {
  color: #111928;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
.our-team__item-position {
  color: #6b7280;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.our-team__item-text {
  margin-top: 8px;
  color: #6b7280;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
section.text {
  padding: 96px 0;
  background: #005eb8;
}
section.text .text__inner {
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%;
  letter-spacing: -0.2px;
}
.reviews {
  background: #f6c962;
}
.reviews__inner {
  padding: 96px 0;
  background: #f9fafb;
  -webkit-clip-path: polygon(
    150px 0,
    100% 0,
    100% calc(100% - 150px),
    calc(100% - 150px) 100%,
    0 100%,
    0 150px
  );
  clip-path: polygon(
    150px 0,
    100% 0,
    100% calc(100% - 150px),
    calc(100% - 150px) 100%,
    0 100%,
    0 150px
  );
}
.reviews .reviews-slider {
  max-width: 770px;
  margin: 0 auto;
}
.reviews .reviews-slider .reviews__text {
  color: #111928;
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 162.5%;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .reviews__inner {
    -webkit-clip-path: polygon(
      50px 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%,
      0 50px
    );
    clip-path: polygon(
      50px 0,
      100% 0,
      100% calc(100% - 50px),
      calc(100% - 50px) 100%,
      0 100%,
      0 50px
    );
  }
  .reviews .reviews-slider .reviews__text {
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.reviews .reviews-slider .reviews__author {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: #111928;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
.reviews .reviews-slider .reviews__author .name {
  color: #111928;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
.reviews .reviews-slider .reviews__author .position {
  color: #6b7280;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}
.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  gap: 24px;
}
.reviews__nav > div {
  cursor: pointer;
}
.reviews__nav > div:hover {
  opacity: 0.7;
}
.contact-banner {
  background: #005eb8;
}
.contact-banner .container {
  max-width: 1480px;
}
.contact-banner__inner {
  display: grid;
  grid-template-columns: 1fr 540px;
}
@media (max-width: 1200px) {
  .contact-banner__inner {
    padding: 24px 0;
    gap: 32px;
    grid-template-columns: 1fr;
  }
}
.contact-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 1201px) {
  .contact-banner__content {
    padding-left: 200px;
  }
}
@media (max-width: 1200px) {
  .contact-banner__content {
    gap: 8px;
  }
}
.contact-banner__title {
  color: #fff;
  font-family: Lato;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
}
.contact-banner__subtitle {
  color: #fff;
  font-family: Lato;
  font-size: 36px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
}
.contact-banner__image img {
  display: block;
  width: 100%;
  height: 100%;
}
.contact {
  padding: 96px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 160px;
}
@media (max-width: 991px) {
  .contact__inner {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
}
.contact__content-title {
  color: #111928;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.contact__content-subtitle {
  color: #111928;
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 16px;
  margin-top: 32px;
}
.contact__content-info {
  color: #6b7280;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.contact .input-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 32px;
}
@media (max-width: 540px) {
  .contact .input-row {
    flex-direction: column;
  }
}
.contact .input-row .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.contact .input-row .input-wrap input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
}
.contact .wpcf7-acceptance label {
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #6b7280;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
}
.contact .wpcf7-acceptance label a {
  color: #111928;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}
.contact .checkbox input {
  width: 16px;
  height: 16px;
}
.contact .button {
  font-size: 14px;
  line-height: 150%;
  border-radius: 8px;
  padding: 14px 30px;
  cursor: pointer;
}
.wpcf7-list-item {
  padding-left: 0;
  margin-left: 0;
}
.wpcf7-submit:disabled {
  opacity: 0.5;
}
.grow .section__title {
  margin-bottom: 16px;
}
.our-team {
  padding: 96px 0px;
  background: rgba(0, 94, 184, 0.06);
}
@media (max-width: 768px) {
  .our-team {
    padding: 40px 0px;
  }
}
@media (max-width: 768px) {
  .solution .container {
    padding: 0;
  }
  .solution__item {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .solution__item:nth-child(4) {
    padding-top: 0px;
  }
  .solution__inner .section__title,
  .solution__inner .section__text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .solution__item-text {
    padding: 0px !important;
  }
  .solution__item:nth-child(3),
  .solution__item:nth-child(4) {
    padding: 24px 0px;
  }
}
.solution__item-icon {
  margin-bottom: 20px;
}

.solution__item-icon,
.solution__item-title,
.solution__item-text {
  position: relative;
  z-index: 5;
}

.solution__item:nth-child(4)::before {
  display: none;
}

.advantages {
  background: rgba(41, 94, 164, 0.06);
}

.last-news {
  padding: 100px 0px;
  border-top: 1px solid var(--gray-100, #f3f4f6);
}
@media (max-width: 768px) {
  .last-news {
    padding: 50px 0px;
  }
}
.last-news__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 64px;
}
.last-news__header .text {
  max-width: 580px;
  color: var(--gray-500, #6b7280);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 25px */
}
.last-news__header .section-title {
  color: #3c3c3b;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 45px */
  letter-spacing: -0.36px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .last-news__header {
    margin-bottom: 32px;
  }
  .last-news__header .section-title {
    font-size: 24px;
  }
  .last-news__header .text {
    font-size: 18px;
  }
}
.last-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.last-news__item {
  display: flex;
  flex-direction: column;
}
.last-news__item img {
  width: 100%;
  max-height: 195px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.last-news__item .text-sm {
  color: var(--gray-500, #6b7280);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.last-news__item h3 {
  color: #111928;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 16px;
}
.last-news__item .more {
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 8px;
  color: #005eb8;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-top: 16px;
}


.accordion-header {
  display: flex;
  align-items: center;
  justify-items: space-between;
  gap: 16px;
  color: #005EB8;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  cursor: pointer;

}

.accordion-header::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M14.7072 7.29302C14.5197 7.10555 14.2654 7.00023 14.0002 7.00023C13.735 7.00023 13.4807 7.10555 13.2932 7.29302L10.0002 10.586L6.70721 7.29302C6.61497 7.19751 6.50462 7.12133 6.38262 7.06892C6.26061 7.01651 6.12939 6.98892 5.99661 6.98777C5.86384 6.98662 5.73216 7.01192 5.60926 7.0622C5.48636 7.11248 5.37471 7.18673 5.28082 7.28063C5.18693 7.37452 5.11267 7.48617 5.06239 7.60907C5.01211 7.73196 4.98681 7.86364 4.98796 7.99642C4.98912 8.1292 5.0167 8.26042 5.06911 8.38243C5.12152 8.50443 5.1977 8.61477 5.29321 8.70702L9.29321 12.707C9.48074 12.8945 9.73505 12.9998 10.0002 12.9998C10.2654 12.9998 10.5197 12.8945 10.7072 12.707L14.7072 8.70702C14.8947 8.51949 15 8.26518 15 8.00002C15 7.73486 14.8947 7.48055 14.7072 7.29302Z' fill='%23005EB8'/%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  background-size: cover;
  background-position: center;
  transition: 0.2s linear;
}

.accordion {
  margin-bottom: 24px;
}

.accordion-content {
  color: #6B7280;

  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: none;
}

.accordion.open .accordion-content {
  display: block;
}

.accordion.open .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-content p {
  margin: 4px 0px;
}
