:root {
  --main-color:       #0D0E25;
  --dark-color:       #000000;
  --accent-color:     #FC881D;
  --header-height:    118px;
  --blue-gradient:    linear-gradient(305deg, #293DCD 0%, #32A1E9 100%);
  --blue-gradient-h:  linear-gradient(305deg, #32A1E9 0%, #293DCD 100%);

}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Regular.woff2') format('woff2'),
  url('../fonts/SourceSansPro-Regular.woff') format('woff');
  font-weight: 400;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-SemiBold.woff2') format('woff2'),
  url('../fonts/SourceSansPro-SemiBold.woff') format('woff');
  font-weight: 600;
}

@font-face {
  font-family: 'Source Sans Pro';
  src: url('../fonts/SourceSansPro-Bold.woff2') format('woff2'),
  url('../fonts/SourceSansPro-Bold.woff') format('woff');
  font-weight: 700;
}

@font-face {
  font-family: 'Exo2';
  src: url('../fonts/Exo2-Bold.woff2') format('woff2'),
  url('../fonts/Exo2-Bold.woff') format('woff');
  font-weight: 700;
}

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

.svg-sprite {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  flex-shrink: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

html.behavior-auto {
  scroll-behavior: auto;
}

html.is-loading:before,
html.is-loading:after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999998;
}

html.is-loading:before {
  background: rgba(0, 0, 0, .4);
}

html.is-loading:after {
  width: 50px;
  height: 50px;
  margin: auto;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
  z-index: 99999999;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

body {
  font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 25px;
  background: #fff;
  color: var(--main-color);
  min-width: 320px;
  margin: 0;
}

html.is-noscroll body {
  position: fixed !important;
  left: 0;
  right: 0;
  margin-right: var(--scrollbarWidth);
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

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

:active,
:focus:not(:focus-visible) {
  outline: none;
}

img {
  vertical-align: middle;
  border: none;
  max-width: 100%;
  height: auto;
}

b,
strong {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
  margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: bold;
  line-height: normal;
  color: var(--dark-color);
  margin: 0 0 24px 0;
}

h1,
.h1 {
  font-size: 50px;
  line-height: 63px;
  font-weight: normal;
}

h2,
.h2 {
  font-size: 42px;
  line-height: 53px;
}

h3,
.h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 30px;
}

h5,
.h5 {
  font-size: 20px;
  line-height: 30px;
}

.swiper:not(.swiper-initialized) ~ * {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  top: auto;
  margin: 0;
  bottom: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: auto;
  right: 80px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-disabled {
  display: none;
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 23px !important;
  width: auto !important;
}

.swiper-pagination-bullet {
  margin: 0 15px 0 0 !important;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #DDE0E4;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 45px;
  background: var(--accent-color);
  opacity: 1;
}

.form-message h5 {
  margin: 0;
}

.form-group {
  margin-bottom: 10px;
}

.form-control,
.form-select {
  display: block;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  transition: 0.15s ease-in-out;
  width: 100%;
  height: 60px;
  border: 1px solid #E5E5E5;
  background-color: #F5F4F9;
  color: var(--main-color);
  font-size: 16px;
  line-height: 20px;
  padding: 19px 22px;
  border-radius: 10px;
}

.form-control::placeholder {
  color: #757575;
}

.form-control:not([readonly]):focus::placeholder {
  color: transparent;
}

.form-select {
  max-width: 100%; 
  margin: 0;
  padding-right: 25px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23383838' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px 8px;
}

.form-select::-ms-expand {
  display: none;
}

textarea.form-control {
  max-width: 100%;
  min-width: 100%;
  overflow: auto;
  height: 131px;
  resize: none;
}

.form-control:focus,
.form-select:focus {
  outline: none;
}

.form-control[disabled],
.form-select[disabled] {
  opacity: .55;
  cursor: default;
  cursor: not-allowed;
}

.form-control.error,
.form-select.error {
  border-color: red;
}

div.error {
  font-size: 14px;
  line-height: 20px;
  color: red;
  margin: 1px 0 -8px 23px;
}

.btn {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  border: none;
  background-image: var(--blue-gradient);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 20px 61px;
  border-radius: 10px;
  transition: 0.15s ease-in-out;
  transition-property: color, background-image;
}

.btn:hover {
  background-image: var(--blue-gradient-h);
  color: #fff;
}

.btn_outline {
  padding: 1px;
}

.btn_outline > span {
  display: block;
  background: var(--main-color);
  padding: 19px 60px;
  border-radius: 9px;
}

.btn[disabled],
.btn.is-disabled {
  opacity: .55;
  cursor: default;
  cursor: not-allowed;
}

.d-flex {
  display: flex;
}

.row {
  --gx: 20px;
  --gy: 0px;
  display: flex;
  flex-wrap: wrap;
  margin: calc(-1 * var(--gy)) calc(-.5 * var(--gx)) 0;
}

.row + .row {
  margin-top: 0;
}

.row > * {
  flex: 0 0 auto;
  padding: 0 calc(.5 * var(--gx));
  margin-top: var(--gy);
  width: 100%;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-2 {
  width: 16.6666%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333%;
}

.col-6 {
  width: 50%;
}

.col-8 {
  width: 66.6666%;
}

.col-9 {
  width: 75%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-2 {
    width: 16.6666%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.3333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-8 {
    width: 66.6666%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-2 {
    width: 16.6666%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.3333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-8 {
    width: 66.6666%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-2 {
    width: 16.6666%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.3333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-8 {
    width: 66.6666%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-2 {
    width: 16.6666%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.3333%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-8 {
    width: 66.6666%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-12 {
    width: 100%;
  }
}

.container {
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
}

.target {
  scroll-margin-top: var(--header-height);
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1002;
  color: #fff;
  transition: background-color 0.35s ease-in-out;
}

html.is-scrolled .header {
  background-color: var(--main-color);
}

.header__inner {
  position: relative;
}

.header__logo {
  position: absolute;
  left: 0;
  top: 30px;
}

.header__logo img {

}

.menu-btn,
.menu-popup__bg,
.menu-popup__close {
  display: none;
}

.header__content {

}

.header__content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding-top: 18px;
  padding-left: 236px;
}

.header__nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  min-width: 1px;
}

.header__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.header__nav li {
  margin: 0 20px;
}

.header__nav a {
  color: inherit;
  text-decoration: none;
}

.header__nav a:hover {
  text-decoration: underline;
}

.header__languages {

}

.languages {
  position: relative;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.languages__flag {
  width: 36px;
  flex-shrink: 0;
  margin-right: 12px;
}

.languages__flag img {

}

.languages__target {
  border: none;
  padding: 0;
  background: none;
  display: flex;
  align-items: center;
}

.languages.is-open .languages__target .icon {
  transform: rotate(180deg);
}

.languages__droplist {
  position: absolute;
  right: 0;
  top: 100%;
  margin: 11px 0 0 0;
  list-style: none;
  background: #fff;
  color: #0A1125;
  border-radius: 10px;
  padding: 13px;
  display: none;
}

.languages.is-open .languages__droplist {
  display: block;
}

.languages__item {
  margin-bottom: 14px;
}

.languages__item:last-child {
  margin-bottom: 0;
}

.languages__item.is-active {
  display: none;
}

.languages__link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.languages__text {
  flex-shrink: 0;
}

.header__callback-btn {
  margin-left: 50px;
}

.content {

}

.bg-section {
  background-color: #FFF6ED;
  padding-bottom: 1px;
  margin-bottom: 105px;
}

.hero-wrapper {
  background-image: url('../images/hero-bg.svg');
  background-size: 100% 1110px;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: var(--header-height);
  min-height: 1110px;
  color: #fff;
}

.hero {
  display: flex;
  padding-top: 125px;
}

.hero__content {
  flex: 0 0 auto;
  width: 44.583%;
  line-height: 34px;
  padding-right: 20px;
}

.hero h1 {
  font-family: 'Exo2', Helvetica, Arial, sans-serif;
  font-size: 42px;
  line-height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  color: #32A1E9;
  margin-bottom: 30px;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero h1 > span {
    color: transparent;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero h2 {
  font-size: 50px;
  line-height: 63px;
  font-weight: normal;
  color: inherit;
  margin-bottom: 30px;
}

.hero .btn {
  margin-top: 20px;
}

.hero__image {
  align-self: flex-end;
  flex: 0 0 auto;
  width: 55.417%;
}

.hero__image-inner {
  margin-right: -15px;
}

.about-section {
  margin-bottom: 90px;
}

.about {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../images/about-bg.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  color: #fff;
  text-align: center;
  padding: 20px 80px;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  z-index: 1;
}

.about__inner {
  width: 100%;
  max-width: 630px;
  margin-bottom: 5px;
}

.about h2 {
  color: inherit;
  font-size: 36px;
  margin-bottom: 15px;
}

.about__lead {
  font-size: 1.2em;
  margin: 0 -20px 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 43px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  margin: 0;
}

.services-section {
  margin-bottom: 149px;
}

.services-section .section-header {
  text-align: left;
  margin-bottom: 37px;
}

.services {

}

.service {
  display: flex;
  margin-left: -50px;
  margin-bottom: 61px;
}

.service:nth-child(even) {
  flex-direction: row-reverse;
}

.service:nth-child(even) .service__content-inner {
  max-width: 535px;
}

.service__image {
  flex: 0 0 auto;
  width: 46.8%;
  padding-left: 50px;
}

.service__content {
  flex: 0 0 auto;
  width: 53.2%;
  padding-left: 50px;
  padding-top: 34px;
  font-size: 24px;
  line-height: 40px;
}

.service__content h3 {
  margin-bottom: 24px;
}

.service__content p {
  opacity: 0.6;
}

.service__content-inner {

}

.clients-section {
  margin-bottom: 107px;
}

.clients {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.faq-section {
  margin-bottom: 90px;
}

.faq {

}

.faq__item {
  margin-bottom: 10px;
  border: 1px solid #DFE1EC;
  border-radius: 10px;
  padding: 26px 30px;
  color: #000;
}

.faq__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq__item-title {
  color: inherit;
  max-width: 938px;
  margin: 0;
}

.faq__item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin: -6px 4px -6px 20px;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  color: #1E1E1E;
}

.faq__item-icon:before,
.faq__item-icon:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  margin: -1px 0 0 -8px;
  border-radius: 2px;
  background: currentColor;
}

.faq__item-icon:after {
  transform: rotate(90deg);
}

.faq__item-content {
  max-width: 938px;
  line-height: 24px;
  margin-top: 7px;
  margin-bottom: 3px;
  margin-right: 60px;
  display: none;
}

.faq__item-content p:last-child {
  margin-bottom: 0;
}

.faq__item,
.faq__item-icon {
  transition: 0.25s ease-in-out;
  transition-property: background-color, border-color, color, transform;
}

.faq__item.is-open {
  background-color: #0D0E25;
  border-color: #0D0E25;
  color: #fff;
}

.faq__item.is-open .faq__item-icon {
  background-color: var(--accent-color);
  color: #fff;
  transform: rotate(45deg);
}

.faq__item.is-open .faq__item-content {
  display: block;
}

.reviews-section {
  margin-bottom: 103px;
}

.reviews-section .section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 55px;
}

.reviews {
  position: relative;
  padding-bottom: 97px;
  padding-top: 1px;
}

.reviews .swiper {
  margin: -85px -18px -138px;
  padding: 85px 18px 138px;
  pointer-events: none;
}

.reviews .swiper-slide {
  height: auto;
  display: flex;
}

.review {
  width: 100%;
  display: flex;
  position: relative;
  pointer-events: auto;
}

.review:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url('../images/review-bg.png') center center no-repeat;
  background-size: contain;
  margin: -85px -18px -138px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}

.review:hover:before {
  opacity: 1;
  visibility: visible;
}

.review__inner {
  width: 100%;
  border: 2px solid #DDDDDD;
  border-radius: 10px;
  padding: 28px;
  background: #fff;
  position: relative;
  z-index: 1;
  transition: 0.15s ease-in-out;
}

.review:hover .review__inner {
  border-color: var(--accent-color);
}

.review__header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.review__image {
  flex-shrink: 0;
  margin-right: 20px;
}

.review__image img {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review__author {
  flex-grow: 1;
  min-width: 1px;
}

.review__author-name {
  font-size: 18px;
  font-weight: bold;
  color: #0B132A;
  line-height: 24px;
}

.review__author-position {
  font-size: 14px;
  color: #4F5665;
  line-height: 18px;
}

.review__rating {
  display: flex;
  align-items: center;
  margin-right: -13px;
}

.review__rating-value {
  font-size: 16px;
  font-weight: 600;
}

.review__rating-star {
  color: #FEA250;
  margin-left: 12px;
}

.review__rating-star .icon {
  display: block;
}

.review__content {
  text-align: center;
}

.review__content p:last-child {
  margin-bottom: 3px;
}

.review .swiper-pagination {

}

.review .swiper-button-prev {

}

.review .swiper-button-next {

}

.footer {
  background-image: url(../images/footer-bg.svg);
  background-size: 100% 720px;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 720px;
  padding-top: 137px;
  padding-bottom: 47px;
}

.contacts-section {
  color: #fff;
}

.contacts-section .section-header {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 580px;
  line-height: 34px;
}

.contacts-section .section-header h2 {
  color: inherit;
}

.contacts {
  display: flex;
  border-radius: 20px;
  background: #fff;
  color: var(--main-color);
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.10);
  margin-bottom: 74px;
}

.contacts__header {
  flex: 0 0 auto;
  width: 46%;
  background: var(--blue-gradient);
  color: #fff;
  padding: 77px 100px;
  border-radius: 10px;
}

.contacts__header h4 {
  color: inherit;
  margin-bottom: 62px;
}

.contacts-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  line-height: 30px;
}

.contacts-list__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contacts-list__item:last-child {
  margin-bottom: 0;
}

.contacts-list__icon {
  flex-shrink: 0;
  margin-right: 15px;
}

.contacts-list__text {
  flex-grow: 1;
  min-width: 1px;
}

.contacts__content {
  flex: 0 0 auto;
  width: 54%;
  padding: 54px 100px 55px 57px;
}

.callback-form {

}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__copyright {
  color: rgba(13, 14, 37, 0.60);
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
}

.footer__social {
  display: flex;
  gap: 20px;
}

.footer__social a {
  flex-shrink: 0;
}