@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
}

body {
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

a:link,
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-weight: inherit;
  font-size: inherit;
}

html {
  font-family: "Roboto", sans-serif;
  color: #020618;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > #content {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

.d-flex {
  display: flex;
}

.flex--row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.flex--column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.section-padding {
  padding-top: 124px;
  padding-bottom: 124px;
}
@media only screen and (max-width: 1024px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

[class*=__container] {
  max-width: 1352px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 1280px) {
  [class*=__container] {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 992px) {
  [class*=__container] {
    padding-left: 20px;
    padding-right: 20px;
  }
}

h1,
h2,
h3,
h6 {
  line-height: 100%;
  font-weight: 700;
}

h1 {
  font-size: 4rem; /* 64px */
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 3rem; /* 48px */
}
@media only screen and (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.75rem; /* 28px */
}
@media only screen and (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 1.5rem; /* 24px */
}

h5 {
  font-size: 1.25rem; /* 20px */
  font-style: italic;
  line-height: 120%;
  color: #155DFC;
  white-space: nowrap;
}
@media only screen and (max-width: 992px) {
  h5 {
    font-size: 16px;
  }
}

h6 {
  font-size: 1.125rem; /* 18px */
}

.btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 10px 10px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%);
  border-radius: 6px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 16px;
  }
}
.btn:not(.black-mode) {
  transition: all 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.btn:not(.black-mode)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(266.87deg, #82B4FF -27.32%, #1447E6 98.02%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.btn:not(.black-mode):hover {
  filter: brightness(0.95) contrast(1.1);
}
.btn:not(.black-mode):hover::before {
  opacity: 1;
}
.btn.black-mode {
  background: #020618;
  padding-right: 24px;
}
.btn.black-mode::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 18px;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(12px);
}
.btn.black-mode:hover {
  color: #2B7FFF;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  margin-bottom: 12px;
  line-height: 120%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
textarea,
select {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #020618;
  background-color: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=number],
  textarea,
  select {
    font-size: 16px;
  }
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #62748E;
  opacity: 0.7;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=number]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #62748E;
  opacity: 0.7;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border-color: #2B7FFF;
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.15);
}
input[type=text].wpcf7-not-valid,
input[type=email].wpcf7-not-valid,
input[type=tel].wpcf7-not-valid,
input[type=url].wpcf7-not-valid,
input[type=number].wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: #E7000B;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  color: #E7000B;
  margin-top: 6px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  padding: 12px 16px !important;
  margin: 20px 0 0 0 !important;
  border: none !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #ecfdf5;
  color: #065f46;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  background-color: transparent;
  color: #E7000B;
}

.wpcf7-submit {
  width: 100%;
  height: 44px;
  margin-top: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  border-bottom: 1px solid #F1F5F9;
  background: #fff;
}
.header__container {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .header__container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.header__logo img {
  width: 84px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .header__logo img {
    width: 53px;
  }
}
.header__logo-link {
  display: block;
}
.header__menu {
  gap: 24px;
}
.header__menu-toggle {
  line-height: 0;
}
.header__menu-item {
  color: #62748E;
}
.header__menu-link {
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__menu-link:hover, .header__menu-link.active {
  font-weight: 500;
  color: #020618;
}
.header__menu-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.header__menu-toggle .icon-close {
  display: none;
}
.header__mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  border-top: 1px solid #F1F5F9;
}
.header__mobile .header__menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.125rem;
}
.header__mobile .header__btn {
  margin-top: auto;
}
.header.menu-open .header__menu-toggle .icon-open {
  display: none;
}
.header.menu-open .header__menu-toggle .icon-close {
  display: block;
}
.header.menu-open .header__mobile {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer {
  color: #fff;
  padding-top: 124px;
  background: #020618;
}
@media only screen and (max-width: 992px) {
  .footer {
    padding-top: 40px;
  }
}
.footer__container.bottom {
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid #0F172B;
}
@media only screen and (max-width: 992px) {
  .footer__container.bottom {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.footer__top {
  align-items: flex-start;
  padding-bottom: 68px;
}
@media only screen and (max-width: 1024px) {
  .footer__top {
    gap: 28px;
  }
}
@media only screen and (max-width: 992px) {
  .footer__top {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.footer__cols {
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .footer__cols {
    flex-direction: column;
  }
}
.footer__col {
  min-width: 188px;
}
.footer__col--logo {
  max-width: 397px;
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo-link img {
  width: 84px;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .footer__logo-link img {
    width: 61px;
  }
}
.footer__tagline {
  margin-top: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 992px) {
  .footer__tagline {
    margin-top: 16px;
  }
}
.footer__tagline-text {
  line-height: 120%;
  color: #E2E8F0;
}
.footer__title {
  margin-bottom: 12px;
}
.footer__list.social a {
  justify-content: flex-start;
  gap: 8px;
}
@media only screen and (max-width: 992px) {
  .footer__list.social a {
    gap: 4px;
  }
}
.footer__list.social a svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 992px) {
  .footer__list.social a svg {
    width: 16px;
    height: 16px;
  }
}
.footer__list li {
  line-height: 120%;
  color: #90A1B9;
  margin-bottom: 8px;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__copyright {
  text-align: center;
}

.hero {
  margin-top: 93px;
  height: calc(100vh - 93px);
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .hero {
    height: auto;
    margin-top: 72px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__body {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.hero__content {
  width: 100%;
}
.hero__badge {
  font-weight: 600;
  font-size: 0.875rem;
  color: #2B7FFF;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 18px;
  background: linear-gradient(266.87deg, rgba(147, 190, 255, 0.08) -27.32%, rgba(43, 127, 255, 0.08) 98.02%);
  border: 1px solid #EFF6FF;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 40px;
}
@media only screen and (max-width: 992px) {
  .hero__badge {
    font-size: 10px;
    padding: 6px 16px;
  }
}
.hero__title {
  margin: 16px 0;
}
@media only screen and (max-width: 992px) {
  .hero__title {
    margin: 12px 0;
  }
}
.hero__title .text-blue {
  font-style: Italic;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%), #020618;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 9px;
}
.hero__desc {
  line-height: 120%;
  max-width: 500px;
  color: #45556C;
}
.hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .hero__actions {
    margin-top: 16px;
    flex-direction: column;
    gap: 12px;
  }
}
.hero__actions .btn {
  padding-top: 8px;
  padding-bottom: 8px;
}
.hero__btn {
  height: 40px;
  min-width: 224px;
}
@media only screen and (max-width: 992px) {
  .hero__btn {
    height: 44px;
  }
  .hero__btn svg {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}
.hero__rating {
  display: flex;
  gap: 3px;
}
.hero__trust {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  width: -moz-max-content;
  width: max-content;
  gap: 4px;
  background: #fff;
  border: 1px solid #F1F5F9;
  box-shadow: 0px 33px 13px rgba(187, 190, 195, 0.01), 0px 19px 11px rgba(187, 190, 195, 0.05), 0px 8px 8px rgba(187, 190, 195, 0.09), 0px 2px 5px rgba(187, 190, 195, 0.1);
  border-radius: 40px;
}
@media only screen and (max-width: 992px) {
  .hero__trust {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.hero__trust-img {
  width: 80px;
  height: 32px;
}
.hero__trust-body {
  align-items: flex-start;
  gap: 4px;
}
.hero__trust-text {
  font-size: 0.75rem;
  font-weight: 700;
}
.hero__image-wrapper {
  position: relative;
}
.hero__float-badge {
  text-align: left;
  position: absolute;
  background: #fff;
  padding: 16px;
  border: 1px solid #F1F5F9;
  box-shadow: 0px 42px 17px rgba(187, 190, 195, 0.01), 0px 24px 14px rgba(187, 190, 195, 0.05), 0px 11px 11px rgba(187, 190, 195, 0.09), 0px 3px 6px rgba(187, 190, 195, 0.1);
  border-radius: 12px;
  gap: 8px;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge {
    padding: 9px;
    gap: 6px;
  }
}
.hero__float-badge.flex--row {
  max-width: 224px;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge.flex--row {
    max-width: 196px;
  }
}
.hero__float-badge h6 {
  color: #314158;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge h6 {
    font-size: 12px;
  }
}
.hero__float-badge p {
  margin-top: -4px;
  font-size: 0.875rem;
  color: #62748E;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge p {
    font-size: 10px;
  }
}
.hero__float-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%);
  border: 1px solid #DBEAFE;
  border-radius: 8px;
}
@media only screen and (max-width: 992px) {
  .hero__float-svg {
    width: 32px;
    height: 32px;
  }
}
.hero__float-badge--mid-left, .hero__float-badge--bot-right {
  align-items: flex-start;
}
.hero__float-badge--top-right {
  top: 10px;
  right: -72px;
}
@media only screen and (max-width: 1024px) {
  .hero__float-badge--top-right {
    right: -52px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__float-badge--top-right {
    top: 9px;
    right: -43px;
    max-width: 194px !important;
  }
}
.hero__float-badge--mid-left {
  left: -81px;
  bottom: 130px;
  max-width: 227px;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge--mid-left {
    left: 0;
    bottom: 88px;
    max-width: 175px;
  }
}
.hero__main-img-box {
  width: 100%;
  max-width: 593px;
}
@media only screen and (max-width: 992px) {
  .hero__main-img-box {
    text-align: center;
    max-width: unset;
  }
}
.hero__img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .hero__img {
    width: calc(100% - 68px);
  }
}
.hero__float-badge--bot-left {
  bottom: 12px;
  left: -112px;
}
@media only screen and (max-width: 992px) {
  .hero__float-badge--bot-left {
    left: -12px;
    bottom: 16px;
    max-width: 142px !important;
  }
}
.hero__float-badge--bot-right {
  right: 0;
  bottom: -23px;
  right: -59px;
  max-width: 216px;
}
@media only screen and (max-width: 1024px) {
  .hero__float-badge--bot-right {
    right: -39px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__float-badge--bot-right {
    bottom: -20px;
    right: -8px;
    max-width: 167px;
  }
}

.devs {
  position: relative;
  overflow: hidden;
}
.devs__header {
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .devs__header {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}
@media only screen and (max-width: 992px) {
  .devs__header-row {
    width: 100%;
  }
}
.devs__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .devs__title {
    margin-bottom: 12px;
  }
}
.devs__subtitle {
  max-width: 606px;
  color: #45556C;
  line-height: 120%;
}
.devs__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.devs__grid {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .devs__grid {
    margin-top: 20px;
  }
}
.devs__grid .dev-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .devs__grid .dev-card {
    padding: 20px;
    width: 320px !important;
  }
}
.devs__grid .dev-card__badge {
  display: inline-block;
  padding: 6px 10px;
  background: #FFF7ED;
  border: 1px solid #FF8904;
  border-radius: 40px;
  font-size: 12px;
  color: #FF8904;
  line-height: 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .devs__grid .dev-card__badge {
    margin-bottom: 14px;
    line-height: 100%;
  }
}
.devs__grid .dev-card__exp {
  margin-top: 8px;
  font-size: 1.125rem;
  color: #62748E;
}
.devs__grid .dev-card__exp strong {
  color: #020618;
  font-weight: 500;
}
.devs__grid .dev-card__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .devs__grid .dev-card__tags {
    margin-top: 14px;
  }
}
.devs__grid .dev-card__tags .tag {
  color: #155DFC;
  text-align: center;
  padding: 6px 14px;
  background: rgba(190, 219, 255, 0.2);
  border: 1px solid #DBEAFE;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 40px;
}
.devs__grid .dev-card__btn {
  position: relative;
  margin-top: 20px;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .devs__grid .dev-card__btn {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.devs__grid .dev-card__btn svg {
  position: absolute;
  top: 8px;
  right: 8px;
}
@media screen and (max-width: 767px) {
  .devs__grid .dev-card__btn svg {
    right: 10px;
  }
}
.devs__footer {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .devs__footer {
    margin-top: 20px;
  }
}
.devs__nav-arrows {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .devs__nav-arrows {
    display: none;
  }
}
.devs__nav-arrows .arrow-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #90A1B9;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 100px;
  transition: border-color 0.2s ease;
}
.devs__nav-arrows .arrow-btn--prev svg {
  transform: rotate(0) !important;
}
.devs__nav-arrows .arrow-btn svg {
  transition: all 0.2s ease;
  transform: rotate(0);
}
.devs__nav-arrows .arrow-btn svg path {
  transition: stroke 0.2s ease;
}
.devs__nav-arrows .arrow-btn:hover {
  border-color: #2B7FFF;
}
.devs__nav-arrows .arrow-btn:hover svg {
  transform: rotate(-45deg);
}
.devs__nav-arrows .arrow-btn:hover svg path {
  stroke: #2B7FFF;
}
@media screen and (max-width: 767px) {
  .devs__more {
    width: 100%;
    text-align: center;
  }
}
.devs__more span {
  color: #45556C;
}
.devs__more .btn {
  margin-top: 16px;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  padding: 12px 24px;
}
@media screen and (max-width: 767px) {
  .devs__more .btn {
    width: 100%;
    height: 44px;
    margin-top: 12px;
  }
}

.services__header {
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .services__header {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }
}
.services__header-row {
  width: 100%;
}
.services__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .services__title {
    margin-bottom: 12px;
  }
}
.services__desc {
  max-width: 606px;
  color: #45556C;
  line-height: 120%;
}
.services__grid {
  margin-top: 68px;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .services__grid {
    margin-top: 20px;
    flex-direction: column;
    gap: 16px;
  }
}
.services .service-card {
  width: 100%;
  padding: 24px 24px 22px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .services .service-card {
    padding: 20px;
  }
}
.services .service-card__title {
  font-weight: 600;
  color: #314158;
  line-height: 120%;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .services .service-card__title {
    margin-bottom: 10px;
  }
}
.services .service-card__list li {
  padding-left: 28px;
  position: relative;
  color: #62748E;
  margin-bottom: 8px;
}
.services .service-card__list li:last-child {
  margin-bottom: 0;
}
.services .service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/verified.svg");
}
.services .service-card__icon {
  margin-top: 16px;
  text-align: right;
}
.services .service-card__icon img {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .services .service-card__icon img {
    width: 88px;
    height: 88px;
  }
}

.trust {
  background-color: #F1F5F9;
}
.trust__header {
  text-align: center;
}
.trust__title .text-blue {
  font-style: Italic;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%), #020618;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 9px;
}
.trust__subtitle {
  margin-top: 16px;
  color: #45556C;
  line-height: 120%;
}
@media screen and (max-width: 767px) {
  .trust__subtitle {
    margin-top: 12px;
  }
}
.trust__grid {
  max-width: 920px;
  margin: 68px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .trust__grid {
    gap: 16px;
    margin-top: 20px;
  }
}
.trust__item {
  flex: 1 1 calc(100% - 398px - 20px);
  padding: 24px;
  background: #fff;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .trust__item {
    padding: 20px;
  }
}
.trust__item:nth-child(1) {
  flex: 0 0 398px;
}
@media only screen and (max-width: 992px) {
  .trust__item {
    flex: 1 1 100% !important;
  }
}
.trust__value {
  font-style: italic;
  font-weight: 700;
  font-size: 6.25rem;
  line-height: 117%;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .trust__value {
    margin-bottom: 14px;
  }
}
.trust__label {
  line-height: 100%;
  font-weight: 600;
  color: #314158;
  margin-bottom: 8px;
}
.trust__desc {
  font-size: 1.125rem;
  line-height: 100%;
  color: #62748E;
}
.trust__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #F1F5F9;
  border: 1px solid #DBEAFE;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 12px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .trust__icon {
    margin-bottom: 14px;
  }
}
.trust__banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #EFF6FF;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/trust-banner.webp");
  flex: 0 0 398px;
  padding: 24px;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
}
@media only screen and (max-width: 992px) {
  .trust__banner {
    flex: 1 1 100%;
    min-height: 221px;
    align-items: center;
  }
}
.trust__banner span {
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 120%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}
.trust__banner span:last-child {
  margin-bottom: 0;
}

.roles__title {
  text-align: center;
}
.roles__subtitle {
  margin-top: 16px;
  color: #45556C;
  line-height: 120%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .roles__subtitle {
    margin-top: 12px;
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
  }
}
.roles__grid {
  margin-top: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .roles__grid {
    gap: 16px;
    margin-top: 20px;
  }
}
.roles .role-card {
  position: relative;
  overflow: hidden;
  width: calc(33.3% - 13px);
  padding: 24px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: right;
  background-image: url("../img/role-card.png");
}
@media only screen and (max-width: 1024px) {
  .roles .role-card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .roles .role-card {
    width: 100%;
    padding: 20px;
  }
}
.roles .role-card__title {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .roles .role-card__title {
    margin-top: 28px;
    font-size: 24px;
  }
}
.roles .role-card__tags {
  display: flex;
  margin-top: 16px;
  gap: 8px;
  flex-wrap: wrap;
}
.roles .role-card__tags .tag {
  padding: 6px 14px;
  border: 1px solid;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .roles .role-card__tags .tag {
    font-size: 16px;
  }
}
.roles .role-card--blue .tag {
  color: #155DFC;
  background: rgba(190, 219, 255, 0.2);
  border-color: #DBEAFE;
}
.roles .role-card--green .tag {
  color: #00BC7D;
  background: #ECFDF5;
  border-color: #D0FAE5;
}
.roles .role-card--purple .tag {
  color: #615FFF;
  background: #EEF2FF;
  border-color: #E0E7FF;
}
.roles .role-card--orange .tag {
  color: #FF6900;
  background: #FFF7ED;
  border-color: #FFEDD4;
}
.roles .role-card--indigo .tag {
  color: #8E51FF;
  background: #F5F3FF;
  border-color: #EDE9FE;
}
.roles .role-card--cyan .tag {
  color: #00A6F4;
  background: #F0F9FF;
  border-color: #DFF2FE;
}
.roles .role-card--red .tag {
  color: #FF2056;
  background: #FFF1F2;
  border-color: #FFE4E6;
}
.roles .role-card--teal .tag {
  color: #00B8DB;
  background: #ECFEFF;
  border-color: #CEFAFE;
}
.roles .role-card--pink .tag {
  color: #F6339A;
  background: #FDF2F8;
  border-color: #FCE7F3;
}

.process {
  position: relative;
}
.process__header {
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .process__header {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }
}
.process__header-row {
  width: 100%;
}
.process__title {
  margin-bottom: 16px;
}
.process__desc {
  max-width: 606px;
  color: #45556C;
  line-height: 120%;
}
.process__steps {
  padding-left: 33px;
  position: relative;
  display: flex;
  gap: 12px;
}
@media only screen and (max-width: 992px) {
  .process__steps {
    flex-direction: column;
    padding-left: 0;
    padding-top: 8px;
    padding-bottom: 68px;
  }
}
.process__wave-img {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 992px) {
  .process__wave-img {
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .process__wave-img {
    top: 0;
    left: 0;
    width: 100%;
    transform: unset;
  }
}
.process__step {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .process__step {
    max-width: 220px;
  }
}
.process__step--1 {
  margin-top: 356px;
}
@media only screen and (max-width: 992px) {
  .process__step--1 {
    margin-top: 55px;
    margin-left: 33px;
  }
}
.process__num {
  font-weight: 400;
  font-size: 168px;
  line-height: 197px;
  color: #E2E8F0;
}
@media only screen and (max-width: 992px) {
  .process__num {
    font-size: 120px;
    line-height: 141px;
  }
}
.process__name {
  color: #1D293D;
  margin-top: -63px;
}
@media only screen and (max-width: 992px) {
  .process__name {
    margin-top: -45px;
  }
}
.process__info {
  margin-top: 8px;
  font-size: 1.125rem;
  line-height: 120%;
  color: #62748E;
}
@media only screen and (max-width: 992px) {
  .process__info {
    margin-top: 6px;
    font-size: 14px;
  }
}
.process__step--2 {
  margin-top: 255px;
}
@media only screen and (max-width: 992px) {
  .process__step--2 {
    margin-top: 16px;
    max-width: 200px;
  }
}
.process__step--3 {
  margin-top: 183px;
}
@media only screen and (max-width: 992px) {
  .process__step--3 {
    margin-top: 78px;
    margin-left: auto;
    max-width: 187px;
  }
}
.process__step--4 {
  margin-top: 0;
}
@media only screen and (max-width: 992px) {
  .process__step--4 {
    margin-top: 29px;
    margin-left: auto;
  }
}
.process__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.benefits__header {
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .benefits__header {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}
@media only screen and (max-width: 992px) {
  .benefits__header-row {
    width: 100%;
  }
}
.benefits__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .benefits__title {
    margin-bottom: 12px;
  }
}
.benefits__desc {
  max-width: 606px;
  color: #45556C;
  line-height: 120%;
}
.benefits__grid {
  margin-top: 68px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .benefits__grid {
    gap: 16px;
    margin-top: 20px;
  }
}
.benefits__grid .benefit-item {
  width: calc(50% - 10px);
  padding: 20px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .benefits__grid .benefit-item {
    width: 100%;
  }
}
.benefits__grid .benefit-item__icon {
  padding: 11px;
  width: -moz-max-content;
  width: max-content;
  background: linear-gradient(266.87deg, rgba(43, 127, 255, 0.2) -27.32%, rgba(147, 190, 255, 0) 98.02%);
  border: 1px solid #DBEAFE;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  border-radius: 12px;
}
.benefits__grid .benefit-item__title {
  color: #314158;
  margin-top: 16px;
  margin-bottom: 12px;
  line-height: 100%;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .benefits__grid .benefit-item__title {
    margin-top: 14px;
    margin-bottom: 8px;
  }
}
.benefits__grid .benefit-item__text {
  color: #62748E;
}

.contact {
  background: #F1F5F9;
}
.contact__wrapper {
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .contact__wrapper {
    flex-direction: column-reverse;
    gap: 28px;
  }
}
.contact__content {
  width: 100%;
}
.contact__title {
  text-align: center;
}
.contact__desc {
  margin-top: 16px;
  text-align: center;
  color: #45556C;
}
@media screen and (max-width: 767px) {
  .contact__desc {
    margin-top: 12px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact__form-box {
  margin-top: 40px;
  padding: 32px;
  gap: 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 28px;
}
@media screen and (max-width: 767px) {
  .contact__form-box {
    padding: 24px;
    margin-top: 0;
  }
}
.contact__image {
  width: 100%;
  max-height: 603px;
  text-align: right;
}
.contact__person {
  width: 100%;
  height: auto;
  max-width: 487px;
}
@media screen and (max-width: 767px) {
  .contact__person {
    max-width: 300px;
  }
}
.contact__badge {
  position: absolute;
  background: #fff;
  padding: 16px;
  border: 1px solid #F1F5F9;
  box-shadow: 0px 42px 17px rgba(187, 190, 195, 0.01), 0px 24px 14px rgba(187, 190, 195, 0.05), 0px 11px 11px rgba(187, 190, 195, 0.09), 0px 3px 6px rgba(187, 190, 195, 0.1);
  border-radius: 12px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .contact__badge {
    gap: 6px;
    padding: 9px 17px 9px 9px;
    min-width: 136px;
    justify-content: flex-start;
  }
}
.contact__badge h6 {
  color: #314158;
}
@media screen and (max-width: 767px) {
  .contact__badge h6 {
    font-size: 14px;
  }
}
.contact__badge p {
  margin-top: -4px;
  font-size: 0.875rem;
  color: #62748E;
}
.contact__badge-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  width: 40px;
  height: 40px;
  background: linear-gradient(266.87deg, #93BEFF -27.32%, #2B7FFF 98.02%);
  border: 1px solid #DBEAFE;
  border-radius: 8px;
  transition: filter 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact__badge-svg {
    width: 32px;
    height: 32px;
  }
}
.contact__badge:hover .contact__badge-svg {
  filter: brightness(0.95) contrast(1.1);
}
.contact__badge--linkedin {
  bottom: 129px;
  left: 93px;
}
@media screen and (max-width: 767px) {
  .contact__badge--linkedin {
    left: 0;
    bottom: 80px;
  }
}
.contact__badge--email {
  bottom: 29px;
  left: 8px;
}
@media screen and (max-width: 767px) {
  .contact__badge--email {
    left: 0;
    bottom: 16px;
  }
}

.testimonials {
  background: #F1F5F9;
}
.testimonials__header {
  align-items: flex-start;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .testimonials__header {
    margin-bottom: 37px;
  }
}
@media only screen and (max-width: 992px) {
  .testimonials__header {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }
}
.testimonials__header-row {
  width: 100%;
}
.testimonials__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .testimonials__title {
    margin-bottom: 12px;
  }
}
.testimonials__desc {
  max-width: 535px;
  color: #45556C;
  line-height: 120%;
}
.testimonials__nav-arrows {
  margin-top: 68px;
  padding: 10px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .testimonials__nav-arrows {
    margin-top: 20px;
  }
}
.testimonials__nav-arrows .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 100%;
  transition: border-color 0.2s ease;
}
.testimonials__nav-arrows .arrow-btn svg path {
  transition: stroke 0.2s ease;
}
.testimonials__nav-arrows .arrow-btn:hover {
  border-color: #2B7FFF;
}
.testimonials__nav-arrows .arrow-btn:hover svg path {
  stroke: #2B7FFF;
}
.testimonials-slider {
  overflow: visible;
}
.testimonials .testimonial-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/testimonial-containers.webp");
  width: 502px !important;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .testimonials .testimonial-card {
    width: 100% !important;
    background-image: url("../img/testimonial-containers-mobile.webp");
  }
}
.testimonials .testimonial-card::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 20px;
  font-weight: 600;
  font-size: 100px;
  line-height: 117px;
  color: #62748E;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .testimonials .testimonial-card::before {
    content: none;
  }
}
.testimonials .testimonial-card__content {
  margin-top: 30px;
  padding: 15px;
  background: #F1F5F9;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .testimonials .testimonial-card__content {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 14px;
  }
}
.testimonials .testimonial-card__content p {
  line-height: 120%;
  color: #45556C;
}
@media screen and (max-width: 767px) {
  .testimonials .testimonial-card__content p {
    font-size: 16px;
    line-height: 120%;
  }
}
.testimonials .testimonial-card__author {
  display: flex;
  gap: 10px;
}
.testimonials .testimonial-card__name {
  margin-bottom: 5px;
  color: #314158;
}
@media screen and (max-width: 767px) {
  .testimonials .testimonial-card__name {
    line-height: 26px;
  }
}
.testimonials .testimonial-card__role {
  display: block;
  color: #62748E;
  font-size: 18px;
  line-height: 21px;
}
.testimonials .testimonial-card__stars {
  margin-top: 5px;
  justify-content: flex-start;
  gap: 3px;
}
.testimonials .testimonial-card__person {
  width: 50px;
  height: 50px;
}

.faq__header {
  align-items: flex-start;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  .faq__header {
    margin-bottom: 37px;
  }
}
@media only screen and (max-width: 992px) {
  .faq__header {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
  }
}
.faq__header-row {
  width: 100%;
}
.faq__title {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 12px;
  }
}
.faq__desc {
  max-width: 535px;
  color: #45556C;
  line-height: 120%;
}
.faq__accordion {
  margin-top: 68px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .faq__accordion {
    margin-top: 38px;
  }
}
.faq__item {
  position: relative;
  margin-bottom: 15px;
  transition: all 0.2s ease;
  border-radius: 12px;
}
.faq__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background: #E2E8F0;
  bottom: -15px;
  left: 0;
}
.faq__item:hover {
  background: linear-gradient(266.87deg, rgba(43, 127, 255, 0.2) -27.32%, rgba(147, 190, 255, 0) 98.02%), #FFFFFF;
}
.faq__item:hover .faq__icon {
  background: #FFFFFF;
}
.faq__item:hover .faq__icon svg path {
  stroke: #2B7FFF !important;
}
.faq__item.is-open {
  background: linear-gradient(266.87deg, rgba(43, 127, 255, 0.2) -27.32%, rgba(147, 190, 255, 0) 98.02%), #FFFFFF !important;
}
.faq__item.is-open .faq__icon {
  background: #FFFFFF;
}
.faq__item.is-open .faq__icon svg {
  transform: rotate(-180deg);
}
.faq__item:last-child::before {
  content: none;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: transparent;
  gap: 12px;
}
.faq__question span {
  font-size: 1.5rem; /* 24px */
  color: #314158;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__question span {
    font-size: 20px;
    line-height: 23px;
  }
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #F8FAFC;
  border-radius: 100%;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .faq__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }
}
.faq__icon svg {
  transition: transform 0.3s ease;
}
.faq__icon svg path {
  transition: stroke 0.2s ease;
}
.faq__answer {
  display: none;
}
.faq__answer-inner {
  padding: 0 20px 10px;
}
.faq__answer-inner p {
  font-size: 14px;
  line-height: 200%;
  color: #62748E;
}
/*# sourceMappingURL=style.min.css.map */
