@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2"), url("../fonts/Gilroy-Heavy.woff") format("woff");
  font-display: swap;
}
*, :before, :after {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --scrollbar-width: 0px;
  --dark-color: #080112;
  --main-color: #7978f6;
  --main-color2: #5747e4;
  --accent-color: #ff5ce8;
  --accent-color2: #df2935;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #919191;
}

::-moz-placeholder {
  opacity: 1;
  color: #919191;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #919191;
}

::-ms-input-placeholder {
  opacity: 1;
  color: #919191;
}

::placeholder {
  opacity: 1;
  color: #919191;
}

body, html {
  font-size: 20px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: var(--dark-color);
  font-family: "Gilroy", sans-serif;
  line-height: 1.2;
  color: #fff;
}

.global-noscroll {
  margin-right: var(--scrollbar-width);
}

.global-noscroll,
.global-noscroll body {
  overflow: hidden !important;
}

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

button {
  cursor: pointer;
}

input[type=submit] {
  white-space: normal;
}

strong {
  font-weight: 500;
}

b {
  font-weight: bold;
}

p, blockquote, ul, ol, h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 800;
}

h1, .h1 {
  text-transform: uppercase;
  line-height: 1;
  font-size: 74px;
}

h2, .h2 {
  text-transform: uppercase;
  font-size: 27px;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
}

.wrapper {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: var(--app-height);
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1110px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}
.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.text-gradient {
  display: inline-block;
  background-color: var(--main-color);
  background-image: linear-gradient(45deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

a.text-gradient {
  text-decoration: none;
}
a.text-gradient:hover {
  opacity: 0.8;
}

.title {
  margin-bottom: 45px;
  text-align: center;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  position: relative;
  z-index: 5;
  padding: 17px 50px;
  background-color: var(--main-color);
  background-image: linear-gradient(55deg, #9998ff 0%, #ac31d5 50%, #ef1637 100%);
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  line-height: 26px;
  font-weight: 500;
  font-size: 23px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 9px;
  background: var(--dark-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  color: #000;
}
.btn:hover:after {
  opacity: 0;
}
.btn._accent {
  background: var(--accent-color2);
}
.btn._accent:after {
  display: none;
}
.btn._accent:hover {
  background-color: #bb1e28;
  color: #fff;
}

.close-btn {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 20px;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.close-btn:hover {
  color: var(--main-color) !important;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.form-grid .form-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  min-width: 40%;
  margin-bottom: 0;
}
.form-grid .form-item._full {
  min-width: 100%;
}
.form-grid .form-action {
  width: 100%;
  margin-top: 10px;
}

.form-item {
  margin-bottom: 14px;
}

.form-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--main-color2);
  border-radius: 10px;
  line-height: 24px;
  font-weight: normal;
  font-size: 20px;
  color: #000;
}

textarea.form-field {
  resize: none;
}
textarea.form-field:not([rows]) {
  height: 100px;
}

.form-action {
  margin-top: 24px;
  text-align: center;
}

.sandwich {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  vertical-align: middle;
  padding: 0;
  border: none;
  background: none;
  font-size: 16px;
  color: inherit;
}
.sandwich__descr {
  position: relative;
  top: 1px;
  text-transform: uppercase;
}
.sandwich__icon {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
}
.sandwich__icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin: -1px 0 0;
  background: currentColor;
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.sandwich__icon span:nth-child(1) {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
}
.sandwich__icon span:nth-child(3) {
  -webkit-transform: translateY(8px);
      -ms-transform: translateY(8px);
          transform: translateY(8px);
}
.sandwich.active .sandwich__icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sandwich.active .sandwich__icon span:nth-child(2) {
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
}
.sandwich.active .sandwich__icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header,
.header__grid {
  height: 112px;
}

.header {
  position: relative;
}
.header__scroll {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
}
.header__scroll:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle farthest-side at center bottom, #140c32, rgba(20, 12, 50, 0));
}
.header__scroll:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  background-image: linear-gradient(45deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
}
.header__scroll._fixed {
  position: fixed;
}
.header__grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1px;
}
.header__logo {
  display: inline-block;
  max-width: 220px;
  margin-right: auto;
}
.header__logo img {
  display: block;
  max-height: 80px;
}
.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  margin-left: 36px;
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu-list ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu-list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__menu-list a:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--main-color);
  background-image: -webkit-gradient(linear, left top, right top, from(#7978f6), to(#e424a7));
  background-image: linear-gradient(90deg, #7978f6 0%, #e424a7 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu-list a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.header__menu-list a.mPS2id-highlight {
  color: transparent;
}
.header__menu-list a.mPS2id-highlight:after {
  opacity: 1;
}
.header__toggle {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-left: 20px;
}

.global-noscroll .header__scroll._fixed,
.popup-opened .header__scroll._fixed {
  margin-right: var(--scrollbar-width);
}

.bann {
  padding: 110px 0 120px;
}
.bann__wrap {
  position: relative;
  max-width: 600px;
}
.bann__head {
  margin-bottom: 0;
}
.bann__subhead {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 32px;
}
.bann__descr {
  font-weight: 500;
  line-height: 1.1;
  font-size: 27px;
  color: var(--accent-color);
}
.bann__img {
  position: absolute;
  z-index: -5;
  left: 100%;
  top: -87px;
  margin-left: 32px;
}
.bann__img-ellips {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 130%;
  background: radial-gradient(50% 50% at 50% 50%, #3e225a, rgba(62, 34, 90, 0));
}
.bann__img-ellips:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.bann__img img {
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.bann__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 75px;
}

.services {
  margin-bottom: 100px;
}
.services__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.services__line {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: 65px 0 85px;
  padding-left: 1%;
  width: 100%;
  text-align: center;
}
.services__action {
  margin-top: 80px;
  text-align: center;
}

.service-item {
  position: relative;
  text-align: center;
  font-size: 19px;
}
.service-item > :last-child {
  margin-bottom: 0;
}
.service-item__number {
  position: absolute;
  z-index: 2;
  top: -100px;
  left: 50%;
  margin: -36px 0 0 -21px;
  border-radius: 50%;
  background-color: var(--main-color);
  background-image: linear-gradient(135deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
  width: 72px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  font-weight: 900;
  font-size: 66px;
  color: var(--accent-color2);
}
.service-item__number:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 50%;
  background: var(--dark-color);
}
.service-item__number:after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 50%;
  width: 1px;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#1f166d), to(#d1385e));
  background: linear-gradient(to top, #1f166d, #d1385e);
}
.service-item__top {
  margin-bottom: 1em;
}
.service-item__head {
  margin: 0;
  font-weight: 800;
  font-size: 1.3em;
  color: var(--main-color2);
}

.service-item:nth-child(1),
.service-item:nth-child(3),
.service-item:nth-child(5) {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
}
.service-item:nth-child(1) .service-item__number,
.service-item:nth-child(3) .service-item__number,
.service-item:nth-child(5) .service-item__number {
  top: auto;
  bottom: -80px;
  margin-top: 0;
  margin-bottom: -36px;
}
.service-item:nth-child(1) .service-item__number:after,
.service-item:nth-child(3) .service-item__number:after,
.service-item:nth-child(5) .service-item__number:after {
  top: -55px;
  bottom: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#1f166d), to(#d1385e));
  background: linear-gradient(to bottom, #1f166d, #d1385e);
}

.service-item:nth-child(1) {
  width: 245px;
  margin-right: 55px;
}
.service-item:nth-child(1) .service-item__number {
  left: 26%;
}

.service-item:nth-child(3) {
  width: 300px;
  margin-right: 55px;
}
.service-item:nth-child(3) .service-item__number {
  left: 45.5%;
}

.service-item:nth-child(5) {
  width: 305px;
}

.service-item:nth-child(2) {
  width: 270px;
  margin-left: auto;
}

.service-item:nth-child(4) {
  width: 255px;
  margin-left: 110px;
}

.service-item:nth-child(6) {
  width: 270px;
  margin-left: 60px;
}
.service-item:nth-child(6) .service-item__number {
  left: 68%;
}

.tools {
  margin-bottom: 120px;
}
.tools__subhead {
  margin-bottom: 50px;
  text-align: center;
  font-size: 24px;
}

.tool-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
.tool-item:last-child {
  margin-bottom: 0;
}
.tool-item__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.tool-item__main .btn {
  margin-top: 35px;
}
.tool-item__main > :last-child {
  margin-bottom: 0;
}
.tool-item__head {
  margin-bottom: 20px;
  max-width: 440px;
  line-height: 1;
  color: var(--main-color2);
}
.tool-item__descr {
  margin: 0;
  line-height: 1;
  font-size: 24px;
}
.tool-item__descr span {
  color: var(--accent-color);
}
.tool-item__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  z-index: -1;
  margin: 0 -115px 0 -55px;
  width: 620px;
  text-align: center;
}
.tool-item__img-box {
  margin-top: -7%;
}

.partners {
  margin-bottom: 100px;
}
.partners .title {
  margin-bottom: 100px;
}
.partners__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.partners__item {
  display: inline-block;
}
.partners__item img {
  max-width: 270px;
  max-height: 100px;
}

.contacts {
  margin-bottom: 100px;
}
.contacts__box {
  position: relative;
  z-index: 1;
  padding: 35px;
  border-radius: 25px;
  background-color: var(--main-color);
  background-image: linear-gradient(135deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
}
.contacts__box:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 24px;
  background-color: #0a0216;
  background-image: radial-gradient(circle farthest-side at left bottom, #140c32, rgba(20, 12, 50, 0));
}
.contacts__title {
  margin-bottom: 35px;
  text-align: center;
}
.contacts__head {
  max-width: 21em;
  margin: 0 auto 20px;
  text-transform: none;
  font-weight: 600;
}

.footer {
  position: relative;
  z-index: 3;
  padding: 35px 0;
}
.footer:before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle farthest-side at center top, #140c32, rgba(20, 12, 50, 0));
}
.footer:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--main-color);
  background-image: linear-gradient(45deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
}
.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px 0;
}
.footer__mail {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}
.footer__copy {
  margin: 0;
  font-size: 14px;
  color: #656f83;
}
.footer__copy a {
  text-decoration: none;
}
.footer__copy a:hover {
  text-decoration: underline;
}
.footer__logo {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: inline-block;
  margin-left: 60px;
  max-width: 220px;
}
.footer__logo img {
  display: block;
  max-height: 80px;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  background-color: var(--main-color);
  background-image: linear-gradient(135deg, #7978f6 0%, #7d44f2 30%, #e424a7 70%, #cc3c52 100%);
  margin: 20px auto;
  padding: 35px;
}
.popup:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 19px;
  background-color: #0a0216;
  background-image: radial-gradient(circle farthest-side at left bottom, #140c32, rgba(20, 12, 50, 0));
}
.popup .mfp-close {
  color: #fff;
}

.tx-popup.popup {
  max-width: 480px;
}
.tx-popup__content > :last-child {
  margin-bottom: 0;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(0, 0, 0, 0.7);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container {
  padding-left: 6px;
  padding-right: 6px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}
.mfp-image-holder .close-btn:hover,
.mfp-iframe-holder .close-btn:hover {
  opacity: 0.7;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}