@font-face {
  font-family: "AkzidenzGroteskPro";
  src: url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Light.woff2") format("woff2"), url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkzidenzGroteskPro";
  src: url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.woff2") format("woff2"), url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkzidenzGroteskPro";
  src: url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Md.woff2") format("woff2"), url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkzidenzGroteskPro";
  src: url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Bold.woff2") format("woff2"), url("fonts/AkzidenzGroteskPro/AkzidenzGroteskPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IntegralCF";
  src: url("fonts/IntegralCF/integralcf-demibold.woff2") format("woff2"), url("fonts/IntegralCF/integralcf-demibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --swiper-navigation-size: 26px;
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  height: 100%;
  overflow-x: hidden;
  overflow-y: unset;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  color: inherit;
  transition: 0.2s;
}

button {
  border: 0;
  box-shadow: none;
  padding: 0;
}

body {
  background: #fff;
  font-family: "AkzidenzGroteskPro", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
}

.container {
  max-width: 1380px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.title-1 {
  max-width: 75%;
  margin: 0 auto 10px;
  font-size: 72px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media (max-width: 1200px) {
  .title-1 {
    font-size: 56px;
  }
}
@media (max-width: 1023px) {
  .title-1 {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .title-1 {
    max-width: 100%;
    font-size: 34px;
  }
}

.icon {
  display: inline-flex;
}
.icon svg {
  width: 100%;
  height: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  border: 2px solid #0024ff;
  font-size: 16px;
  color: #0024ff;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer;
}
.btn:hover {
  background: #0024ff;
  color: #fff;
}
.btn--big {
  height: 56px;
  padding: 0 20px;
  font-size: 18px;
}
@media (max-width: 500px) {
  .btn--big {
    height: 44px;
    font-size: 16px;
  }
}
.btn--primary {
  background: #ff5871;
  border-color: #ff5871;
  color: #fff;
}
.btn--primary:hover {
  background: #ff5871;
}

.link {
  display: inline-block;
  font-size: 18px;
  color: #0024ff;
}
@media (max-width: 1023px) {
  .link {
    font-size: 16px;
  }
}
.link--big {
  font-weight: 500;
  font-size: 32px;
}
@media (max-width: 1023px) {
  .link--big {
    font-size: 24px;
  }
}
.link:hover {
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  padding: 15px 0;
  background: #fff;
  box-shadow: 0 0 62px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header__container {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  margin-right: auto;
  font-family: "IntegralCF", sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000;
}
@media (max-width: 1023px) {
  .logo {
    font-size: 28px;
  }
}
.logo::after {
  content: "";
  width: 12px;
  height: 12px;
  margin: auto 0 15px 6px;
  background: #ff5871;
  border-radius: 100%;
}
@media (max-width: 1023px) {
  .logo::after {
    width: 8px;
    height: 8px;
    margin: auto 0 13px 5px;
  }
}

.list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}
@media (max-width: 1023px) {
  .list {
    font-size: 16px;
  }
}
.list__item {
  position: relative;
  padding-left: 18px;
}
.list__item:not(:last-of-type) {
  margin-bottom: 8px;
}
.list__item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #ff5871;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0024ff;
}

.dots {
  display: flex;
  align-items: center;
}
.dots span {
  width: 12px;
  height: 12px;
  background: #ff5871;
  border-radius: 100%;
  flex-shrink: 0;
}
.dots span:not(:last-of-type) {
  margin-right: 6px;
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

/*Components import*/
.feedback {
  padding: 80px 0;
  background: #fff;
}

.feedback-form {
  max-width: 544px;
  margin: 40px auto 0;
}
.feedback-form__btn {
  width: 300px;
  margin: 30px auto 0;
}
@media (max-width: 1200px) {
  .feedback-form__btn {
    width: 260px;
  }
}

.form-group {
  position: relative;
}
.form-group:not(:last-of-type) {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .form-group:not(:last-of-type) {
    margin-bottom: 22px;
  }
}

.form-field {
  outline: none;
  appearance: none;
  resize: none;
  position: relative;
  width: 100%;
  height: 60px;
  padding: 0 18px;
  font-family: inherit;
  font-weight: 300;
  font-size: 18px;
  line-height: normal;
  background-color: transparent;
  border: 2px solid #ffd5db;
  transition: 0.1s ease-in-out;
  transition-property: all;
  transition-property: border;
}
@media (max-width: 1200px) {
  .form-field {
    height: 50px;
    padding: 0 16px;
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .form-field {
    height: 44px;
  }
}
.form-field::placeholder {
  opacity: 1;
}
.form-field:focus {
  border-color: #ff5871;
}
.form-field.just-validate-error-field {
  color: inherit !important;
  background: #ffd5db;
  border: 2px solid #ffd5db !important;
}

textarea.form-field {
  vertical-align: top;
  height: 140px;
  padding: 15px 18px;
}
@media (max-width: 1200px) {
  textarea.form-field {
    height: 120px;
    padding: 13px 16px;
  }
}

.just-validate-error-label {
  position: absolute;
  top: calc(100% + 3px);
  right: 0;
  left: 0;
  font-size: 14px;
  line-height: 1;
  color: #ff5871 !important;
}

.about__list {
  max-width: 544px;
  margin-left: auto;
  margin-right: auto;
}

.clients__items {
  margin: 40px 0;
}
@media (max-width: 767px) {
  .clients__items {
    padding: 0 16px;
  }
}
.clients__items .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .clients__items .swiper-wrapper {
    display: flex;
  }
}
.clients__items .swiper-button-prev,
.clients__items .swiper-button-next {
  display: none;
}
@media (max-width: 767px) {
  .clients__items .swiper-button-prev,
.clients__items .swiper-button-next {
    display: flex;
  }
}
.clients__items .swiper-button-prev {
  left: 0;
}
.clients__items .swiper-button-next {
  right: 0;
}
.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px;
  background: #fff;
}
.featured {
  height: 500px;
  padding: 40px 0;
  background: #0024ff;
  text-align: center;
}
@media (max-width: 767px) {
  .featured {
    height: 360px;
  }
}
.featured__container {
  display: flex;
  height: 100%;
}
.featured__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  width: 100%;
  margin: auto;
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 767px) {
  .featured__link {
    font-size: 28px;
  }
}
.featured__link:hover {
  background: #fff;
  color: #0024ff;
}

.team__items {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -30px -30px;
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .team__items {
    margin: 20px -20px -20px;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .team__items {
    margin: 20px 0 -15px;
  }
}
@media (max-width: 500px) {
  .team__items {
    margin: 30px 0 -10px;
    font-size: 20px;
  }
}
.team__item {
  display: flex;
  align-items: center;
  width: calc(33.3333333333% - 60px);
  margin: 30px;
}
@media (max-width: 1200px) {
  .team__item {
    width: calc(33.3333333333% - 40px);
    margin: 20px;
  }
}
@media (max-width: 767px) {
  .team__item {
    width: 100%;
    margin: 15px 0;
  }
}
@media (max-width: 500px) {
  .team__item {
    margin: 10px 0;
  }
}
.team__item:last-of-type {
  margin: 30px auto;
}
@media (max-width: 1200px) {
  .team__item:last-of-type {
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .team__item:last-of-type {
    margin: 15px 0;
  }
}
@media (max-width: 500px) {
  .team__item:last-of-type {
    margin: 10px 0;
  }
}
.team__value {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.team__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: 16px;
  background: #ff5871;
  border-radius: 100%;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}
@media (max-width: 500px) {
  .team__number {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

.technology__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .technology__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.technology__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 16px;
  background: #fff;
}
section {
  padding: 60px 0;
}
section:nth-of-type(2n) {
  background: #f5f5f5;
}

.section-title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 64px;
  line-height: 1.125;
  color: #444;
  text-align: center;
}
@media (max-width: 1200px) {
  .section-title {
    font-size: 56px;
  }
}
@media (max-width: 1023px) {
  .section-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 34px;
  }
}

.section-center {
  text-align: center;
}

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

.error {
  color: #ff5871;
  margin-bottom: 30px;
}
.note {
  color: #24962A;
  margin-bottom: 30px;
}