html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --main-font: "Montserrat";
  --white-color: #fff;
  --light-color: #EEECFF;
  --vh: 1vh;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body {
  font-family: var(--main-font);
  color: var(--white-color);
  background-color: #171717;
}

img {
  max-width: 100%;
}

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

.overlay {
  background-color: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}

.section {
  padding: 80px 0;
}

.ui {
  padding: 150px 0;
}

.ui__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ui__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}

.ui__row:not(:last-child) {
  margin-bottom: 20px;
}

.ui a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

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

.page {
  padding: 120px 0 0 0;
  overflow: hidden;
  position: relative;
}

.page:before,
.page:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
  position: absolute;
  left: 50%;
}

.page::before {
  width: 1120px;
  height: 980px;
  background-image: url("../img/page-buble-top.svg");
  top: -280px;
  margin-left: -1280px;
}

.page:after {
  width: 1500px;
  height: 2250px;
  background-image: url("../img/page-buble-bot.svg");
  top: 950px;
}

.btn-border {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: var(--light-color);
  text-align: center;
  text-decoration: none;
  padding: 22px 28px;
  border-radius: 90px;
  background: rgba(0,0,0,0);
  border: none;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: inline-block;
}

.btn-border::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 88px;
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  -webkit-transform: translateX(-102%);
      -ms-transform: translateX(-102%);
          transform: translateX(-102%);
  -webkit-clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

.btn-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: -o-linear-gradient(355.38deg, #8E83FF 0%, #4E9DFF 25%, #8E83FF 50%, #A16BFF 75%, #8E83FF 100%);
  background: linear-gradient(94.62deg, #8E83FF 0%, #4E9DFF 25%, #8E83FF 50%, #A16BFF 75%, #8E83FF 100%);
  background-size: 320% 100%;
  -webkit-animation: btn-border-flow 5s linear infinite;
          animation: btn-border-flow 5s linear infinite;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-border:hover::after {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn-border:hover:before {
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes btn-border-flow {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 320% 50%;
  }
}

@keyframes btn-border-flow {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 320% 50%;
  }
}

.btn-main {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  padding: 27px 15px;
  border-radius: 50px;
  border: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(127, 36, 255, 0.77)), to(#080A12));
  background: -o-linear-gradient(top, rgba(127, 36, 255, 0.77) 0%, #080A12 100%);
  background: linear-gradient(180deg, rgba(127, 36, 255, 0.77) 0%, #080A12 100%);
  text-decoration: none;
  min-width: 370px;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-animation: soft-pulse 2.5s ease-in-out infinite;
          animation: soft-pulse 2.5s ease-in-out infinite;
}

.btn-main:hover {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(127, 36, 255, 0.9)), to(#0A0C14));
  background: -o-linear-gradient(top, rgba(127, 36, 255, 0.9) 0%, #0A0C14 100%);
  background: linear-gradient(180deg, rgba(127, 36, 255, 0.9) 0%, #0A0C14 100%);
}

@-webkit-keyframes soft-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.5);
            box-shadow: 0 0 0 0 rgba(127,36,255,.5);
  }

  50% {
    -webkit-box-shadow: 0 0 40px 20px rgba(127,36,255,.3);
            box-shadow: 0 0 40px 20px rgba(127,36,255,.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.5);
            box-shadow: 0 0 0 0 rgba(127,36,255,.5);
  }
}

@keyframes soft-pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.5);
            box-shadow: 0 0 0 0 rgba(127,36,255,.5);
  }

  50% {
    -webkit-box-shadow: 0 0 40px 20px rgba(127,36,255,.3);
            box-shadow: 0 0 40px 20px rgba(127,36,255,.3);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.5);
            box-shadow: 0 0 0 0 rgba(127,36,255,.5);
  }
}

.btn-blue {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
  padding: 21px 15px;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  text-decoration: none;
  min-width: 370px;
  display: inline-block;
  text-align: center;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn-blue:hover {
  background: -webkit-gradient(linear, left top, right top, from(#73B0FF), color-stop(49.52%, #8077FF), to(#9544FF));
  background: -o-linear-gradient(left, #73B0FF 0%, #8077FF 49.52%, #9544FF 100%);
  background: linear-gradient(90deg, #73B0FF 0%, #8077FF 49.52%, #9544FF 100%);
}

.arrow-btn {
  line-height: 1;
  font-weight: 600;
  color: #7f71ff;
  position: relative;
  text-decoration: none;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.arrow-btn:hover {
  text-decoration: underline;
}

.arrow-btn:hover:after {
  right: -5px;
}

.arrow-btn--sm {
  font-size: 20px;
  padding-right: 53px;
}

.arrow-btn--sm::after {
  width: 43px;
  height: 30px;
  background-image: url("../img/btn-arrow.svg");
}

.arrow-btn--md {
  font-size: 24px;
  padding-right: 65px;
}

.arrow-btn--md::after {
  width: 56px;
  height: 30px;
  background-image: url("../img/btn-arrow.svg");
}

.arrow-btn:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider-control__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--light-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.slider-control__btn:hover {
  border-color: #7f71ff;
}

.slider-control__btn:hover svg {
  fill: #7f71ff;
}

.slider-control__btn svg {
  fill: var(--light-color);
  width: 10px;
  height: 20px;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.slider-control__count {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: var(--light-color);
  width: 54px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.back-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--light-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.back-link:hover {
  border-color: #7f71ff;
}

.back-link:hover svg {
  fill: #7f71ff;
}

.back-link svg {
  fill: var(--light-color);
  width: 10px;
  height: 20px;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

b {
  font-weight: 700;
}

.section-title {
  margin-bottom: 50px;
}

.h1 {
  font-size: 50px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -1%;
  text-transform: uppercase;
}

.h2 {
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}

.h3 {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.h4 {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.d-none {
  display: none;
}

.header {
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 0;
  z-index: 100;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.header.sticky {
  padding: 15px 0;
  background-color: #171717;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__logo {
  margin-right: auto;
}

.header__logo img {
  display: block;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  gap: 0 20px;
}

.header__nav a {
  font-size: 20px;
}

.drop-menu {
  position: fixed;
  top: 20px;
  right: calc(50% - 645px);
  background: rgba(40,43,57,.6980392157);
  -webkit-backdrop-filter: blur(60px);
          backdrop-filter: blur(60px);
  padding: 100px 0;
  border-radius: 50px;
  width: 455px;
  z-index: 102;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-16px);
      -ms-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-transition: opacity .35s ease,visibility .35s ease,-webkit-transform .35s ease;
  transition: opacity .35s ease,visibility .35s ease,-webkit-transform .35s ease;
  -o-transition: opacity .35s ease,transform .35s ease,visibility .35s ease;
  transition: opacity .35s ease,transform .35s ease,visibility .35s ease;
  transition: opacity .35s ease,transform .35s ease,visibility .35s ease,-webkit-transform .35s ease;
}

.drop-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.drop-menu__logo {
  display: none;
  width: 55px;
}

.drop-menu__logo img {
  display: block;
}

.drop-menu__close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
  z-index: 10;
}

.drop-menu__close:hover svg {
  fill: #7f71ff;
}

.drop-menu__close svg {
  width: 100%;
  height: 100%;
  fill: #a4a4a4;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.drop-menu__nav {
  text-align: center;
}

.drop-menu__nav li:not(:last-child) {
  margin-bottom: 50px;
}

.drop-menu__nav a {
  font-size: 20px;
  line-height: 1;
  color: var(--light-color);
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.drop-menu__nav a.active {
  color: #7f71ff;
}

.drop-menu__nav a:hover {
  color: #7f71ff;
}

.drop-menu__nav a:hover .tg-icon {
  fill: #7f71ff;
}

.drop-menu__nav a svg {
  width: 24px;
  height: 24px;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.drop-menu__nav a svg.tg-icon {
  fill: var(--light-color);
}

.drop-menu__footer {
  display: none;
}

.drop-menu__btn {
  width: 100%;
}

.menu-btn {
  width: 36px;
  height: 36px;
  background-image: url("../img/burger-menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  background-color: rgba(0,0,0,0);
  border: none;
  margin-left: 50px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  background-color: #232429;
  padding: 80px 0;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__l {
  margin-right: 20px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 30px;
}

.footer__logo img {
  display: block;
}

.footer__copy {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #7f7f84;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  padding-top: 20px;
}

.footer__nav a {
  font-size: 18px;
  line-height: 1;
  color: var(--light-color);
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer__nav a:hover {
  color: #7f71ff;
}

.footer__soc {
  padding-top: 20px;
}

.footer__soc li:not(:last-child) {
  margin-bottom: 25px;
}

.footer__soc a {
  font-size: 18px;
  line-height: 1;
  color: var(--light-color);
  font-weight: 400;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer__soc a:hover {
  color: #7f71ff;
}

.footer__soc a:hover .tg-icon {
  fill: #7f71ff;
}

.footer__soc a:hover .insta-icon {
  stroke: #7f71ff;
}

.footer__soc a svg {
  width: 24px;
  height: 24px;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.footer__soc a svg.tg-icon {
  fill: var(--light-color);
}

.footer__soc a svg.insta-icon {
  stroke: var(--light-color);
}

.popup {
  margin: 0 auto;
  width: 550px;
  max-width: 96%;
  border-radius: 70px;
  padding: 50px 60px;
  display: none;
}

.popup__head {
  margin-bottom: 30px;
}

.popup__title {
  color: var(--light-color);
  margin-bottom: 12px;
}

.popup__text {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.popup--white {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
          box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
}

.popup--black {
  background-color: #232429;
  -webkit-box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
          box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
}

.popup--black .person-data {
  color: rgba(238,236,255,.72);
}

.popup--black .person-data span {
  color: #b8b0ff;
}

.fancybox__content:has(.popup--black) {
  --fancybox-content-bg: transparent;
  --fancybox-content-color: var(--light-color);
  padding: 0;
  background: rgba(0,0,0,0);
}

.chat-btn {
  width: 64px;
  height: 64px;
  background-color: #7f71ff;
  background-image: url("../img/chat-btn.svg");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  border-radius: 50%;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  display: none;
}

.chat {
  width: 440px;
  max-width: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  -webkit-box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
          box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
  background-color: #2e3038;
  border-radius: 50px;
}

.chat.show .chat__head {
  cursor: default;
  border-bottom: 1px solid #5f5f5f;
}

.chat.show .chat__close {
  display: block;
}

.chat.show .chat__title {
  display: block;
}

.chat__head {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: none;
  height: 100px;
}

.chat__inner {
  height: 500px;
}

.chat__title {
  cursor: pointer;
}

.chat__close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: none;
  margin-left: auto;
}

.chat__close svg {
  width: 100%;
  height: 100%;
  fill: #a4a4a4;
}

.chat__body {
  padding: 30px 30px 0 30px;
  overflow-y: scroll;
  height: calc(100% - 135px);
}

.chat__body::-webkit-scrollbar {
  width: 5px;
}

.chat__body::-webkit-scrollbar-thumb {
  background: #585960;
  border-radius: 5px;
}

.chat__body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.chat__message {
  width: 76%;
  padding: 28px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--light-color);
}

.chat__message:not(:last-child) {
  margin-bottom: 20px;
}

.chat__message--admin {
  border-radius: 32px 32px 32px 0;
  background-color: #585960;
  margin-right: auto;
}

.chat__message--client {
  border-radius: 32px 32px 0 32px;
  background-color: #4a467d;
  margin-left: auto;
}

.chat__footer {
  height: 75px;
  position: relative;
  padding: 0 30px;
  margin: 30px 0;
}

.chat__input {
  padding: 26px 170px 26px 30px;
  background: rgba(75,85,102,.3019607843);
  border-radius: 130px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--light-color);
}

.chat__input::-webkit-input-placeholder {
  color: #aaa;
}

.chat__input::-moz-placeholder {
  color: #aaa;
}

.chat__input:-ms-input-placeholder {
  color: #aaa;
}

.chat__input::-ms-input-placeholder {
  color: #aaa;
}

.chat__input::placeholder {
  color: #aaa;
}

.chat__btns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  right: 37px;
}

.chat__emojis {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.chat__attach {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.chat__send {
  width: 58px;
  height: 58px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #7f71ff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.chat__send:disabled {
  cursor: default;
  opacity: .5;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 150;
  width: calc(100% - 32px);
  max-width: 720px;
  padding: 0;
  border-radius: 40px;
  background: rgba(40,43,57,.6980392157);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border: 1px solid rgba(142,131,255,.25);
  -webkit-box-shadow: 0 8px 40px rgba(0,0,0,.35);
          box-shadow: 0 8px 40px rgba(0,0,0,.35);
  -webkit-transition: opacity .35s ease,visibility .35s ease,-webkit-transform .35s ease;
  transition: opacity .35s ease,visibility .35s ease,-webkit-transform .35s ease;
  -o-transition: opacity .35s ease,transform .35s ease,visibility .35s ease;
  transition: opacity .35s ease,transform .35s ease,visibility .35s ease;
  transition: opacity .35s ease,transform .35s ease,visibility .35s ease,-webkit-transform .35s ease;
}

.cookie-banner--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateX(-50%) translateY(16px);
      -ms-transform: translateX(-50%) translateY(16px);
          transform: translateX(-50%) translateY(16px);
}

.cookie-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px 20px;
  padding: 22px 26px 22px 24px;
}

.cookie-banner__emoji {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 36px;
  line-height: 1;
}

.cookie-banner__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.cookie-banner__title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--light-color);
  margin: 0 0 8px;
}

.cookie-banner__title b {
  font-weight: 600;
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(238,236,255,.88);
  margin: 0;
}

.cookie-banner__link {
  color: #7f71ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
}

.cookie-banner__link:hover {
  color: #9e58ff;
}

.cookie-banner__accept.btn-blue {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 0;
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.form .formgroup {
  position: relative;
  margin-bottom: 15px;
}

.form--white .form__label {
  color: #232429;
}

.form--white .form__input {
  color: #232429;
  background-color: #eeecff;
}

.form--black .form__label {
  color: var(--light-color);
}

.form--black .form__input {
  color: var(--light-color);
  background-color: rgba(238,236,255,.1490196078);
}

.form__label {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
}

.form label.error {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: tomato;
  width: 100%;
  padding: 0 10px;
}

.form__input {
  font-size: 16px;
  font-weight: 400;
  border-radius: 90px;
  padding: 21px 30px;
  border: none;
  outline: none;
  border: 1px solid rgba(238,236,255,.1490196078);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.form__input:focus,
.form__input:active {
  border-color: #7f71ff;
}

.form input {
  width: 100%;
}

.form__btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.form .checkbox-privat {
  margin-top: 30px;
}

.person-data {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #8c8c8c;
  position: relative;
  padding-left: 27px;
  margin-top: 30px;
}

.person-data::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/checked.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -3px;
  left: 0;
}

.checkbox-privat {
  display: block;
  position: relative;
}

.checkbox-privat input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-privat input:checked+.checkbox-privat__text:after {
  opacity: 1;
}

.checkbox-privat__text {
  font-size: 14px;
  color: #8c8c8c;
  line-height: 1;
  font-weight: 400;
  display: block;
  position: relative;
  padding: 0 0 0 27px;
  cursor: pointer;
}

.checkbox-privat__text:before,
.checkbox-privat__text:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 0;
}

.checkbox-privat__text:before {
  border-radius: 0px;
  background-color: #f2c167;
  border-radius: 4px;
}

.checkbox-privat__text:after {
  content: "";
  background-image: url("../img/check.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  opacity: 0;
}

.uploads {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.remove-file {
  cursor: pointer;
  color: tomato;
}

.remove-file:hover {
  text-decoration: underline;
}

.upload-file {
  border: 1px dashed #000;
  border-radius: 6px;
  padding: 50px 20px;
  display: block;
  width: 100%;
  height: 300px;
  position: relative;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

.upload-file__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #7900b1;
  text-align: center;
  margin-bottom: 35px;
}

.upload-file__info {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #353535;
  text-align: center;
  margin-bottom: 10px;
}

.upload-file__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #343434;
  text-align: center;
}

.upload-file input[type=file] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.upload-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 5px 10px;
  margin: 5px 0;
  border: 1px dashed #000;
  border-radius: 5px;
}

.upload-list__name {
  font-size: 18px;
}

.upload-list__remove {
  background-color: rgba(0,0,0,0);
  font-size: 18px;
  border: none;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  cursor: pointer;
  color: tomato;
}

.upload-list__remove:hover {
  text-decoration: underline;
}

.article {
  overflow-wrap: anywhere;
}

.article__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.article__head .circle-link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.article__item--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.article__item:not(:last-child) {
  margin-bottom: 60px;
}

.article__col--text {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(50% - 15px);
}

.article__col--img {
  width: calc(50% + 15px);
}

.article__col--img img {
  display: block;
  width: 100%;
  border-radius: 40px;
}

.article * {
  color: var(--light-color);
}

.article h2 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.article h2:not(:last-child) {
  margin-bottom: 30px;
}

.article p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--light-color);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article p:not(:last-child) {
  margin-bottom: 30px;
}

.article ul:not(:last-child) {
  margin-bottom: 30px;
}

.article ul li {
  font-size: 20px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article ul li:before {
  content: "✅";
}

.article b {
  font-weight: 600;
}

.article a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article img {
  max-width: 100%;
  height: auto;
}

.note {
  padding: 40px;
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(86, 84, 88, 0.15)), to(rgba(72, 51, 123, 0.4)));
  background: -o-linear-gradient(top, rgba(86, 84, 88, 0.15) 0%, rgba(72, 51, 123, 0.4) 100%);
  background: linear-gradient(180deg, rgba(86, 84, 88, 0.15) 0%, rgba(72, 51, 123, 0.4) 100%);
  margin-top: 60px;
}

.note__list li {
  font-size: 20px;
  color: var(--light-color);
}

.note__list li:not(:last-child) {
  margin-bottom: 15px;
}

.note__list li a {
  display: inline-block;
  max-width: 100%;
  font-weight: 600;
  color: #7f71ff;
  text-decoration: none;
  margin-left: 20px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.note__list li a:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 110px;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0a0a0d;
  background-image: -o-radial-gradient(30% 20%, circle, rgba(127, 36, 255, 0.42) 0%, rgba(28, 16, 62, 0.92) 34%, #0a0a0d 72%),url("../img/hero-bg.svg");
  background-image: radial-gradient(circle at 30% 20%, rgba(127, 36, 255, 0.42) 0%, rgba(28, 16, 62, 0.92) 34%, #0a0a0d 72%),url("../img/hero-bg.svg");
  background-repeat: no-repeat,no-repeat;
  background-size: cover,cover;
  background-position: center,center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .35s ease,visibility .35s ease;
  -o-transition: opacity .35s ease,visibility .35s ease;
  transition: opacity .35s ease,visibility .35s ease;
}

.site-preloader__spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(146,107,255,.28);
  border-top-color: #9a6dff;
  border-right-color: #7f24ff;
  -webkit-box-shadow: 0 0 24px rgba(127,36,255,.35);
          box-shadow: 0 0 24px rgba(127,36,255,.35);
  -webkit-animation: site-preloader-spin .9s linear infinite;
          animation: site-preloader-spin .9s linear infinite;
}

.site-preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes site-preloader-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

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

@keyframes site-preloader-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

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

.reveal-up {
  opacity: 0;
  -webkit-transform: translate3d(0, 48px, 0);
          transform: translate3d(0, 48px, 0);
  -webkit-transition: opacity .8s ease,-webkit-transform .8s ease;
  transition: opacity .8s ease,-webkit-transform .8s ease;
  -o-transition: opacity .8s ease,transform .8s ease;
  transition: opacity .8s ease,transform .8s ease;
  transition: opacity .8s ease,transform .8s ease,-webkit-transform .8s ease;
  will-change: opacity,transform;
}

.reveal-up.is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: auto;
}

.hero {
  padding: 170px 0 236px 0;
  position: relative;
  margin-bottom: -100px;
  background-image: url("../img/hero-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__fly {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -220px;
  margin-left: 100px;
  -webkit-animation: hover 6s ease-in-out infinite;
          animation: hover 6s ease-in-out infinite;
}

@-webkit-keyframes hover {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(10px) translateY(5px) rotate(2deg);
            transform: translateX(10px) translateY(5px) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-10px) translateY(-5px) rotate(-2deg);
            transform: translateX(-10px) translateY(-5px) rotate(-2deg);
  }

  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

@keyframes hover {
  0% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }

  25% {
    -webkit-transform: translateX(10px) translateY(5px) rotate(2deg);
            transform: translateX(10px) translateY(5px) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-10px) translateY(-5px) rotate(-2deg);
            transform: translateX(-10px) translateY(-5px) rotate(-2deg);
  }

  100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
}

.hero__bg {
  position: absolute;
  bottom: 200px;
  right: 0;
  z-index: 10;
  display: none;
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.hero__l {
  padding-top: 100px;
  max-width: 720px;
}

.hero__title {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(70px);
      -ms-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-animation: hero-title-reveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
          animation: hero-title-reveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

.hero__subtitle {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(70px);
      -ms-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-animation: hero-title-reveal 1.75s cubic-bezier(0.22, 1, 0.36, 1) 1.45s both;
          animation: hero-title-reveal 1.75s cubic-bezier(0.22, 1, 0.36, 1) 1.45s both;
}

.hero__head {
  margin-bottom: 55px;
}

.hero__r {
  padding-right: 95px;
  margin-left: auto;
}

.hero .btn-main,
.s-services .btn-main,
.call-action .btn-main,
.popup--black .btn-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(0,0,0,0);
  -webkit-animation: hero-btn-glow 2.6s ease-in-out infinite;
          animation: hero-btn-glow 2.6s ease-in-out infinite;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.hero .btn-main::before,
.s-services .btn-main::before,
.call-action .btn-main::before,
.popup--black .btn-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: -o-linear-gradient(355.38deg, #7F24FF 0%, #9E58FF 40%, #B88CFF 75%, #7F24FF 100%);
  background: linear-gradient(94.62deg, #7F24FF 0%, #9E58FF 40%, #B88CFF 75%, #7F24FF 100%);
  background-size: 260% 100%;
  -webkit-animation: hero-btn-border-flow 4.6s linear infinite;
          animation: hero-btn-border-flow 4.6s linear infinite;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.hero .btn-main::after,
.s-services .btn-main::after,
.call-action .btn-main::after,
.popup--black .btn-main::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 48px;
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  -webkit-transform: translateX(-102%);
      -ms-transform: translateX(-102%);
          transform: translateX(-102%);
  -webkit-clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-transform .7s cubic-bezier(0.22, 0.61, 0.36, 1),-webkit-clip-path .55s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: -1;
}

.hero .btn-main:hover,
.s-services .btn-main:hover,
.call-action .btn-main:hover,
.popup--black .btn-main:hover {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.hero .btn-main:hover::before,
.s-services .btn-main:hover::before,
.call-action .btn-main:hover::before,
.popup--black .btn-main:hover::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
}

.hero .btn-main:hover::after,
.s-services .btn-main:hover::after,
.call-action .btn-main:hover::after,
.popup--black .btn-main:hover::after {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.call-action .form__btn--telegram::before,
.popup--black .form__btn--telegram::before {
  background: -o-linear-gradient(355.38deg, #229ED9 0%, #54BCE8 45%, #229ED9 100%);
  background: linear-gradient(94.62deg, #229ED9 0%, #54BCE8 45%, #229ED9 100%);
}

.call-action .form__btn--telegram::after,
.popup--black .form__btn--telegram::after {
  background: #229ed9;
}

.call-action .form__btn--telegram:hover::before,
.popup--black .form__btn--telegram:hover::before {
  background: #229ed9;
}

@-webkit-keyframes hero-title-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes hero-title-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes hero-btn-glow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.45);
            box-shadow: 0 0 0 0 rgba(127,36,255,.45);
  }

  50% {
    -webkit-box-shadow: 0 0 34px 10px rgba(127,36,255,.28);
            box-shadow: 0 0 34px 10px rgba(127,36,255,.28);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.45);
            box-shadow: 0 0 0 0 rgba(127,36,255,.45);
  }
}

@keyframes hero-btn-glow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.45);
            box-shadow: 0 0 0 0 rgba(127,36,255,.45);
  }

  50% {
    -webkit-box-shadow: 0 0 34px 10px rgba(127,36,255,.28);
            box-shadow: 0 0 34px 10px rgba(127,36,255,.28);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(127,36,255,.45);
            box-shadow: 0 0 0 0 rgba(127,36,255,.45);
  }
}

@-webkit-keyframes hero-btn-border-flow {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 260% 50%;
  }
}

@keyframes hero-btn-border-flow {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 260% 50%;
  }
}

.hero-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 55px;
}

.hero-services::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: rgba(0,0,0,0);
}

.hero-services__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: inherit;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.hero-services--mobile-animate .hero-services__track {
  -webkit-animation-name: hero-services-pan;
          animation-name: hero-services-pan;
  -webkit-animation-duration: var(--hero-services-duration, 22s);
          animation-duration: var(--hero-services-duration, 22s);
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: var(--hero-services-delay, 4.6s);
          animation-delay: var(--hero-services-delay, 4.6s);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.hero-services__item {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: var(--light-color);
  position: relative;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
  -webkit-transform: translateX(-48px);
      -ms-transform: translateX(-48px);
          transform: translateX(-48px);
  -webkit-animation: hero-service-horizontal-reveal .8s ease-out both;
          animation: hero-service-horizontal-reveal .8s ease-out both;
}

.hero-services__item:not(:last-child):before {
  content: "";
  display: block;
  background-image: url("../img/services-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: -35px;
  opacity: 0;
  -webkit-transform: translateX(-14px);
      -ms-transform: translateX(-14px);
          transform: translateX(-14px);
  -webkit-animation: hero-service-horizontal-reveal .55s ease-out both;
          animation: hero-service-horizontal-reveal .55s ease-out both;
}

.hero-services__item:nth-child(1) {
  -webkit-transform: translateY(70px);
      -ms-transform: translateY(70px);
          transform: translateY(70px);
  -webkit-animation: hero-title-reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 2.3s both;
          animation: hero-title-reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 2.3s both;
}

.hero-services__item:nth-child(1):before {
  -webkit-animation-delay: 2.75s;
          animation-delay: 2.75s;
}

.hero-services__item:nth-child(2) {
  -webkit-animation-delay: 2.85s;
          animation-delay: 2.85s;
}

.hero-services__item:nth-child(2):before {
  -webkit-animation-delay: 3.15s;
          animation-delay: 3.15s;
}

.hero-services__item:nth-child(3) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}

.hero-services__item:nth-child(3):before {
  -webkit-animation-delay: 3.55s;
          animation-delay: 3.55s;
}

.hero-services__item:nth-child(4) {
  -webkit-animation-delay: 3.65s;
          animation-delay: 3.65s;
}

.hero-clients {
  padding: 60px 24px;
  border-radius: 60px 0 60px 60px;
  -webkit-backdrop-filter: blur(49.5999984741px);
          backdrop-filter: blur(49.5999984741px);
  background: rgba(9,0,94,.3098039216);
  width: 300px;
}

.hero-clients__img {
  margin-bottom: 38px;
}

.hero-clients__count {
  font-size: 70px;
  color: var(--light-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-clients__text {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}

.running-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 3000px;
  margin: 0 auto;
  overflow: hidden;
}

.running-text--left .running-text__el {
  -webkit-animation: running-animation-left 45s linear infinite;
          animation: running-animation-left 45s linear infinite;
}

.running-text--right .running-text__el {
  -webkit-animation: running-animation-right 45s linear infinite;
          animation: running-animation-right 45s linear infinite;
}

.running-text__el {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 65px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--light-color);
  text-transform: uppercase;
  -webkit-animation: running-animation 15s linear infinite;
          animation: running-animation 15s linear infinite;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

@-webkit-keyframes running-animation-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes running-animation-left {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes running-animation-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes running-animation-right {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes hero-service-horizontal-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateX(-48px);
            transform: translateX(-48px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes hero-service-horizontal-reveal {
  from {
    opacity: 0;
    -webkit-transform: translateX(-48px);
            transform: translateX(-48px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes hero-services-pan {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(calc(-1 * var(--hero-services-shift, 0px)), 0, 0);
            transform: translate3d(calc(-1 * var(--hero-services-shift, 0px)), 0, 0);
  }
}

@keyframes hero-services-pan {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(calc(-1 * var(--hero-services-shift, 0px)), 0, 0);
            transform: translate3d(calc(-1 * var(--hero-services-shift, 0px)), 0, 0);
  }
}

.advantage {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-card {
  border-radius: 20px;
  padding: 46px 28px 54px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(106, 127, 213, 0.4)), to(rgba(115, 102, 232, 0.14)));
  background: -o-linear-gradient(right, rgba(106, 127, 213, 0.4), rgba(115, 102, 232, 0.14));
  background: linear-gradient(-90deg, rgba(106, 127, 213, 0.4), rgba(115, 102, 232, 0.14));
}

.advantage-card__count {
  font-size: 55px;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 10px;
}

.advantage-card__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.s-services {
  position: relative;
}

.s-services:before {
  content: "";
  display: block;
  width: 1270px;
  aspect-ratio: 1;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/el-services.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -730px 0;
}

.our-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.our-services__l {
  max-width: 672px;
}

.our-services__r {
  width: 412px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}

.our-services__title {
  margin-bottom: 86px;
}

.services-list {
  margin-bottom: 40px;
}

.services-list__item:not(:last-child) {
  margin-bottom: 40px;
}

.services-list__title {
  margin-bottom: 24px;
}

.services-list__dropdown {
  display: none;
}

.services-list__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.services-list__list li {
  font-size: 20px;
}

.services-list__list li:not(:last-child) {
  margin-bottom: 20px;
}

.services-list__btn {
  font-size: 20px;
  font-weight: 600;
  color: #7f71ff;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.services-list__btn.show::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.services-list__btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: calc(100% + 9px);
  background-image: url("../img/list-btn.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.service-slider {
  margin-bottom: 40px;
}

.service-slider__slide {
  border-radius: 50px;
  overflow: hidden;
}

.service-slider__img {
  display: block;
  width: 100%;
}

.service-slider__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  background: #000;
}

.service-slider__play {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(18.6567153931px);
          backdrop-filter: blur(18.6567153931px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.service-slider__play:hover {
  background: rgba(255,255,255,.2509803922);
}

.service-slider__play svg {
  fill: #fff;
  width: 60px;
  height: 60px;
  margin-left: 14px;
  position: relative;
  z-index: 2;
}

.service-slider__slide--playing .service-slider__play {
  opacity: 0;
  pointer-events: none;
}

.fancybox__slide:has(video.fancybox__html5video) .fancybox__content {
  padding: 0;
  border: 0;
  background: rgba(0,0,0,0);
  border-radius: 24px;
  overflow: visible;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: auto !important;
  height: auto !important;
  max-width: min(92vw,420px);
  max-height: 92vh;
  aspect-ratio: unset !important;
}

.fancybox__slide:has(video.fancybox__html5video) .fancybox__content video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(88vh,92dvh);
  -o-object-fit: contain;
     object-fit: contain;
}

.s-choose {
  position: relative;
}

.s-choose:before {
  content: "";
  display: block;
  width: 1270px;
  aspect-ratio: 1;
  position: absolute;
  top: -70px;
  right: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/el-choose.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 960px 0;
}

.choose-us__title {
  margin-bottom: 50px;
}

.choose-us__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.choose-us__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  position: relative;
}

.choose-us__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
}

.choose-us__discr {
  width: 430px;
  position: relative;
  z-index: 3;
}

.choose-card {
  padding: 30px 22px;
  border-radius: 30px;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.choose-card:not(:last-child) {
  margin-bottom: 35px;
}

.choose-card:nth-child(1) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.choose-card:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.choose-card:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.choose-card:nth-child(1) {
  background: -o-linear-gradient(180.03deg, rgba(65, 103, 255, 0.4) -6.51%, rgba(112, 96, 255, 0) 99.98%);
  background: linear-gradient(-90.03deg, rgba(65, 103, 255, 0.4) -6.51%, rgba(112, 96, 255, 0) 99.98%);
}

.choose-card:nth-child(2) {
  background: -o-linear-gradient(180.03deg, rgba(175, 172, 255, 0.4) 0.02%, rgba(171, 161, 255, 0) 99.98%);
  background: linear-gradient(-90.03deg, rgba(175, 172, 255, 0.4) 0.02%, rgba(171, 161, 255, 0) 99.98%);
}

.choose-card:nth-child(3) {
  background: -o-linear-gradient(180.03deg, rgb(113, 20, 237) -14.33%, rgba(112, 96, 255, 0) 99.98%);
  background: linear-gradient(-90.03deg, rgb(113, 20, 237) -14.33%, rgba(112, 96, 255, 0) 99.98%);
}

.choose-card__title {
  margin-bottom: 10px;
}

.choose-card__text {
  font-size: 16px;
  line-height: 1.25;
  color: var(--light-color);
}

.case-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.our-cases__grid {
  margin-bottom: 60px;
}

.our-cases__btn {
  text-align: right;
}

.case-card {
  padding: 40px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255,255,255,.0392156863);
  position: relative;
  overflow: hidden;
}

.case-card::before,
.case-card::after {
  content: "";
  display: block;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  position: absolute;
  -webkit-filter: blur(90px);
          filter: blur(90px);
  aspect-ratio: 1;
}

.case-card::before {
  background: #7114ed;
}

.case-card::after {
  background: #4646ff;
}

.case-card:nth-child(4n+1)::before {
  width: 276px;
  top: -100px;
  left: -80px;
}

.case-card:nth-child(4n+1):after {
  width: 153px;
  bottom: -60px;
  right: 25px;
}

.case-card:nth-child(4n+2)::before {
  width: 153px;
  left: -3px;
  bottom: -12px;
}

.case-card:nth-child(4n+2):after {
  width: 254px;
  top: -73px;
  right: -26px;
}

.case-card:nth-child(4n+3)::before {
  width: 276px;
  top: -115px;
  left: 49px;
}

.case-card:nth-child(4n+3):after {
  width: 153px;
  bottom: -56px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.case-card:nth-child(4n+4)::before {
  width: 153px;
  left: -3px;
  bottom: -12px;
}

.case-card:nth-child(4n+4):after {
  width: 254px;
  top: -73px;
  right: -26px;
  background: #4d77f6;
}

.case-card * {
  position: relative;
  z-index: 1;
}

.case-card__icon {
  margin-bottom: 30px;
}

.case-card__title {
  margin-bottom: 15px;
}

.case-card__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
}

.s-reviews {
  position: relative;
}

.s-reviews:before {
  content: "";
  display: block;
  width: 1270px;
  aspect-ratio: 1;
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/el-services.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -830px 0;
}

.reviews__title {
  margin-bottom: 50px;
}

.reviews__btn {
  text-align: right;
}

.reviews-slider {
  margin: 0 -15px 60px;
  padding: 0 15px;
}

.reviews-slider__control {
  display: none;
  margin-bottom: 20px;
}

.reviews-card {
  width: 100%;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.reviews-card:nth-child(1) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.reviews-card:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.reviews-card__avatar {
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  margin: 0 auto -120px;
  position: relative;
}

.reviews-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  background: #000;
}

.reviews-card__play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(52,20,97,.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.reviews-card__play:hover {
  background: rgba(255,255,255,.2509803922);
}

.reviews-card__play svg {
  fill: #fff;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.reviews-card__inner {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(56, 56, 56, 0)), to(rgba(72, 51, 123, 0.4)));
  background: -o-linear-gradient(top, rgba(56, 56, 56, 0) 0%, rgba(72, 51, 123, 0.4) 100%);
  background: linear-gradient(180deg, rgba(56, 56, 56, 0) 0%, rgba(72, 51, 123, 0.4) 100%);
  padding: 200px 80px 120px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.reviews-card__position {
  font-size: 20px;
  line-height: 1;
  color: var(--light-color);
  font-weight: 400;
  margin-bottom: 55px;
  position: relative;
}

.reviews-card__position:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../img/quot.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 0;
  bottom: -56px;
}

.reviews-card__position span {
  font-weight: 600;
}

.reviews-card__text {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 30px;
}

.reviews-card__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-top: auto;
}

.reviews-card__avatar--playing .reviews-card__play {
  opacity: 0;
  pointer-events: none;
}

.blog__btn {
  text-align: right;
}

.blog-slider {
  margin-bottom: 60px;
}

.blog-slider .blog-card {
  height: auto;
}

.blog-slider__control {
  display: none;
  margin-bottom: 20px;
}

.blog-card {
  border-radius: 50px;
  padding: 30px 40px 40px;
  background: rgba(255,255,255,.0392156863);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

.blog-card__img {
  border-radius: 35px;
  overflow: hidden;
  margin: 0 -10px 40px;
}

.blog-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  margin-bottom: 15px;
}

.blog-card__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
}

.blog-card::before,
.blog-card::after {
  content: "";
  display: block;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  position: absolute;
  -webkit-filter: blur(90px);
          filter: blur(90px);
}

.blog-card::before {
  width: 276px;
  height: 276px;
  background: #7114ed;
  top: -100px;
  left: -80px;
}

.blog-card::after {
  width: 153px;
  height: 153px;
  background: #4646ff;
  bottom: 90px;
  right: 25px;
}

.blog-card * {
  position: relative;
  z-index: 1;
}

.blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.s-faq {
  position: relative;
}

.s-faq:before {
  content: "";
  display: block;
  width: 1270px;
  aspect-ratio: 1;
  position: absolute;
  top: -500px;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("../img/el-faq.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -950px 0;
}

.faq__item {
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(83, 82, 115, 0.2)), to(rgba(157, 155, 217, 0.15)));
  background: -o-linear-gradient(left, rgba(83, 82, 115, 0.2) 0%, rgba(157, 155, 217, 0.15) 100%);
  background: linear-gradient(90deg, rgba(83, 82, 115, 0.2) 0%, rgba(157, 155, 217, 0.15) 100%);
  padding: 30px 30px 30px 50px;
}

.faq__item:not(:last-child) {
  margin-bottom: 20px;
}

.faq__head {
  position: relative;
}

.faq__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--light-color);
  padding-right: 90px;
  padding: 5px 90px 5px 0;
}

.faq__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #7f71ff;
  background-image: url("../img/plus.svg");
  background-repeat: no-repeat;
  background-size: 17px;
  background-position: center;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
  transition: .3s;
}

.faq__btn:hover {
  background-color: #4797ff;
}

.faq__btn.active {
  background-image: url("../img/minus.svg");
}

.faq__popup {
  margin-top: 20px;
}

.faq__link {
  color: #7f71ff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.faq__link:hover {
  color: #4797ff;
}

.faq__body {
  display: none;
  padding-top: 35px;
}

.faq__body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light-color);
  margin-bottom: 0;
}

.s-team {
  position: relative;
}

.s-team:before {
  content: "";
  display: block;
  width: 1200px;
  aspect-ratio: 1;
  background-image: url("../img/buble.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 600px 0px;
  position: absolute;
  right: 0;
  bottom: -500px;
  z-index: -1;
  pointer-events: none;
}

.team-slider {
  margin-bottom: 25px;
}

.team-card {
  background: rgba(237,232,255,.0509803922);
  padding: 60px 80px 60px 60px;
  border-radius: 80px;
  height: auto;
}

.team-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}

.team-card__photo {
  width: 445px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}

.team-card__photo img {
  border-radius: 50px;
  display: block;
}

.team-card__dicsr {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.team-card__head {
  position: relative;
  padding-top: 60px;
  margin-bottom: 85px;
}

.team-card__head::before {
  content: "";
  display: block;
  width: 66px;
  height: 50px;
  background-image: url("../img/quot.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 100%;
  right: 0;
}

.team-card__name {
  margin-bottom: 10px;
}

.team-card__position {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #7f71ff;
}

.team-card__body p {
  font-size: 24px;
  line-height: 1;
  color: var(--light-color);
  font-weight: 400;
  margin-bottom: 0;
}

.control-slide {
  width: 300px;
  cursor: pointer;
}

.control-slide.swiper-slide-thumb-active .control-slide__inner {
  background: -webkit-gradient(linear, left top, right top, from(#4797FF), color-stop(49.52%, #6156FF), to(#7B15FF));
  background: -o-linear-gradient(left, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
  background: linear-gradient(90deg, #4797FF 0%, #6156FF 49.52%, #7B15FF 100%);
}

.control-slide.swiper-slide-thumb-active .control-slide__photo img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.control-slide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 15px 30px;
  background: #232429;
  border-radius: 100px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.control-slide__photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.control-slide__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  display: block;
}

.control-slide__name {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 50px;
}

.control-slide__name::before {
  content: "";
  display: block;
  width: 41px;
  height: 22px;
  background-image: url("../img/slide-logo.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 0;
}

.call-action {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6.4fr 5.5fr;
  grid-template-columns: 6.4fr 5.5fr;
  gap: 40px;
}

.call-action__discr {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 20px;
}

.call-action__title {
  margin-bottom: 30px;
}

.call-action__form {
  background: #232429;
  -webkit-box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
          box-shadow: 0px 4px 35px 0px rgba(0,0,0,.0705882353);
  padding: 55px;
  border-radius: 50px;
}

@media (max-width: 1300px) {
  .drop-menu {
    right: 15px;
  }

  .footer__nav {
    gap: 30px;
  }

  .chat__inner {
    height: 600px;
    max-height: calc(100vh - 100px);
  }

  .hero__r {
    padding-right: 0;
  }

  .hero-services__item {
    font-size: 18px;
  }

  .advantage-card__count {
    font-size: 40px;
  }

  .advantage-card__text {
    font-size: 18px;
  }

  .s-services:before {
    width: 600px;
    top: -200px;
    background-position: -350px 0;
  }

  .s-choose:before {
    width: 600px;
    top: 200px;
    background-position: 450px 0;
  }

  .choose-us__img img {
    width: 120%;
  }

  .case-grid {
    gap: 20px;
  }

  .s-reviews:before {
    width: 600px;
    top: -200px;
    background-position: -350px 0;
  }

  .reviews-slider {
    margin-bottom: 20px;
  }

  .reviews-slider__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reviews-card {
    width: 616px;
  }

  .blog-card {
    padding: 25px 35px 35px;
    border-radius: 45px;
  }

  .blog-card__img {
    border-radius: 30px;
  }

  .blog-grid {
    gap: 15px;
  }

  .s-faq:before {
    width: 600px;
    top: -300px;
    background-position: -450px 0;
  }

  .team-card__inner {
    gap: 20px;
  }

  .team-card__photo {
    width: 400px;
  }

  .team-card__position {
    font-size: 22px;
  }

  .team-card__body p {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 40px 0;
  }

  .arrow-btn--sm {
    font-size: 18px;
  }

  .arrow-btn--md {
    font-size: 20px;
  }

  .h1 {
    font-size: 40px;
  }

  .h2 {
    font-size: 32px;
  }

  .h3 {
    font-size: 22px;
  }

  .h4 {
    font-size: 18px;
  }

  .header__nav {
    display: none;
  }

  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 30px 0;
  }

  .footer__l {
    width: 230px;
    margin-right: 0;
  }

  .footer__nav {
    width: calc(100% - 240px);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .footer__soc {
    width: 50%;
    padding-top: 0;
  }

  .footer__btn {
    margin-left: auto;
  }

  .popup__text {
    font-size: 16px;
  }

  .article__item--flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }

  .article__item:not(:last-child) {
    margin-bottom: 40px;
  }

  .article__col--text {
    width: 100%;
  }

  .article__col--img {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .note {
    margin-top: 40px;
  }

  .note__list li a {
    margin-left: 5px;
  }

  .hero__l {
    width: calc(100% - 300px);
  }

  .hero-services {
    width: 100%;
    width: calc(100% + 30px);
    overflow: hidden;
    margin-left: -15px;
    padding: 0 15px;
  }

  .hero-services__item {
    padding: 2px 0;
  }

  .hero-clients {
    width: 270px;
  }

  .hero-clients__count {
    font-size: 56px;
  }

  .hero-clients__text {
    font-size: 18px;
  }

  .advantage {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .our-services__r {
    width: calc(50% - 15px);
  }

  .services-list__list li {
    font-size: 18px;
  }

  .services-list__btn {
    font-size: 18px;
  }

  .choose-us__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .choose-us__img {
    width: 100%;
  }

  .choose-us__img img {
    position: static;
    -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    width: 100%;
  }

  .choose-us__discr {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .case-card {
    border-radius: 30px;
    padding: 30px 20px;
  }

  .s-reviews:before {
    height: 100%;
    width: 100%;
    top: 0;
    background-image: url("../img/el-reviews-m.svg");
    background-position: -75px 0;
  }

  .reviews-card {
    width: 500px;
  }

  .reviews-card__inner {
    padding: 180px 60px 80px;
  }

  .reviews-card__position {
    font-size: 16px;
  }

  .reviews-card__text {
    font-size: 16px;
  }

  .s-faq:before {
    height: 100%;
    width: 100%;
    top: -100px;
    background-image: url("../img/el-reviews-m.svg");
    background-position: -75px 0;
  }

  .s-team:before {
    width: 600px;
    bottom: -250px;
    background-position: 300px 0px;
  }

  .team-slider {
    margin: 0 -15px 25px;
    padding: 0 15px;
  }

  .team-card {
    border-radius: 30px;
    padding: 20px 30px 50px 20px;
  }

  .team-card__photo {
    width: 240px;
  }

  .team-card__photo img {
    border-radius: 30px;
  }

  .team-card__head {
    padding-top: 30px;
    margin-bottom: 50px;
  }

  .team-card__head::before {
    width: 40px;
    height: 40px;
    top: calc(100% - 2px);
  }

  .team-card__name {
    font-size: 18px;
  }

  .team-card__position {
    font-size: 18px;
  }

  .team-card__body p {
    font-size: 16px;
  }

  .control-slide {
    width: 260px;
  }

  .control-slide__inner {
    padding: 10px 20px;
  }

  .call-action__form {
    padding: 30px 25px;
  }
}

@media (max-width: 767px) {
  .btn-main {
    min-width: auto;
  }

  .btn-blue {
    min-width: auto;
  }

  .slider-control {
    margin-bottom: 20px;
  }

  .md-none {
    display: none;
  }

  .md-block {
    display: block;
  }

  .chat-btn {
    display: block;
  }

  .chat {
    border-radius: 30px;
    max-width: calc(100vw - 20px);
    bottom: 10px;
    right: -470px;
    -webkit-transition: .5s right;
    -o-transition: .5s right;
    transition: .5s right;
  }

  .chat.m-show {
    right: 10px;
  }

  .chat__head {
    height: 60px;
    padding: 10px 20px;
  }

  .chat__title {
    display: none;
  }

  .chat__body {
    padding: 20px;
    height: calc(100% - 80px);
  }

  .chat__message {
    width: 85%;
    padding: 28px 20px;
  }

  .chat__footer {
    padding: 0 20px;
    margin: 10px 0;
    height: 60px;
  }

  .chat__input {
    padding: 21px 160px 21px 20px;
    font-size: 16px;
  }

  .chat__btns {
    right: 28px;
  }

  .chat__send {
    width: 50px;
    height: 50px;
  }

  .article p {
    font-size: 16px;
  }

  .article p:not(:last-child) {
    margin-bottom: 15px;
  }

  .article ul li {
    font-size: 16px;
  }

  .note__list li {
    font-size: 16px;
  }

  .note__list li a {
    margin-left: 0px;
  }

  .note__list li span {
    display: block;
    line-height: 1.2;
  }

  .hero {
    padding: 170px 0 136px 0;
    margin-bottom: 0;
  }

  .hero__fly {
    width: 500px;
    margin-top: -30px;
    margin-left: -30px;
  }

  .hero__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .hero__l {
    width: 100%;
  }

  .hero__r {
    width: 100%;
    margin-left: 0;
  }

  .s-services:before {
    width: 300px;
    height: 300px;
    background-position: -170px 0;
    top: -100px;
  }

  .our-services {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .our-services__l {
    width: 100%;
  }

  .our-services__r {
    width: 100%;
  }

  .our-services__title {
    margin-bottom: 50px;
  }

  .services-list {
    margin-bottom: 0;
  }

  .service-slider {
    margin-bottom: 20px;
  }

  .service-slider__control {
    margin-bottom: 20px;
  }

  .fancybox__slide:has(video.fancybox__html5video) {
    padding: 8px;
  }

  .fancybox__slide:has(video.fancybox__html5video) .fancybox__content {
    max-width: min(96vw,440px) !important;
  }

  .fancybox__slide:has(video.fancybox__html5video) .fancybox__content video {
    max-height: min(90vh,92dvh);
  }

  .s-choose:before {
    width: 300px;
    height: 300px;
    background-position: 170px 0;
    top: auto;
    bottom: -50px;
  }

  .case-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .our-cases__btn {
    text-align: center;
  }

  .reviews__btn {
    text-align: center;
  }

  .blog-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .s-team:before {
    width: 400px;
    bottom: 0px;
    background-position: 200px 0px;
    opacity: .5;
  }

  .team-card {
    padding: 20px 20px 20px 20px;
  }

  .team-card {
    width: 400px;
  }

  .team-card__inner {
    gap: 15px;
  }

  .team-card__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .team-card__photo {
    width: 100%;
  }

  .team-card__photo img {
    width: 100%;
  }

  .team-card__head {
    padding-top: 0;
    margin-bottom: 40px;
  }

  .control-slide {
    width: 80px;
    height: 80px;
  }

  .control-slide__inner {
    padding: 15px;
  }

  .control-slide__name {
    display: none;
  }

  .call-action {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .section {
    padding: 30px 0;
  }

  .page {
    padding-top: 70px;
  }

  .page::before {
    width: 460px;
    height: 460px;
    margin-left: 0;
    left: -180px;
    top: -180px;
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg);
  }

  .page:after {
    width: 460px;
    height: 690px;
    left: auto;
    right: -260px;
    top: auto;
    bottom: -100px;
  }

  .arrow-btn--sm {
    font-size: 16px;
  }

  .arrow-btn--sm::after {
    width: 43px;
  }

  .arrow-btn--md {
    font-size: 16px;
    padding-right: 53px;
  }

  .arrow-btn--md::after {
    width: 43px;
  }

  .slider-control__btn {
    width: 32px;
    height: 32px;
  }

  .slider-control__btn svg {
    width: 6px;
    height: 11px;
  }

  .slider-control__count {
    font-size: 15px;
  }

  .back-link {
    width: 32px;
    height: 32px;
  }

  .back-link svg {
    width: 6px;
    height: 11px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .h1 {
    font-size: 30px;
  }

  .h2 {
    font-size: 24px;
  }

  .h3 {
    font-size: 16px;
  }

  .h4 {
    font-size: 16px;
  }

  .header {
    padding: 24px 0;
  }

  .header__logo {
    width: 54px;
  }

  .header__btn {
    display: none;
  }

  .drop-menu {
    top: 0;
    right: -580px;
    height: calc(var(--vh, 1vh)*100);
    overflow-y: scroll;
    -webkit-transition: right .5s ease-in-out;
    -o-transition: right .5s ease-in-out;
    transition: right .5s ease-in-out;
    z-index: 102;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 580px;
    border-radius: 0;
    padding: 25px 15px 50px;
    background-color: #0a0a0a;
    overflow: hidden;
    overflow-y: scroll;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background-image: url("../img/m-menu-bg.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
  }

  .drop-menu.show {
    right: 0;
  }

  .drop-menu__head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 100px;
  }

  .drop-menu__logo {
    display: block;
  }

  .drop-menu__close {
    width: 24px;
    height: 24px;
    position: static;
    padding: 4px;
  }

  .drop-menu__close svg {
    fill: #fff;
  }

  .drop-menu__nav {
    margin-bottom: 30px;
  }

  .drop-menu__nav li:not(:last-child) {
    margin-bottom: 30px;
  }

  .drop-menu__nav a {
    font-size: 18px;
  }

  .drop-menu__footer {
    display: block;
    margin-top: auto;
  }

  .menu-btn {
    width: 24px;
    height: 24px;
    background-size: 18px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer__inner {
    gap: 20px;
  }

  .footer__l {
    width: 100%;
  }

  .footer__logo {
    margin-bottom: 20px;
  }

  .footer__logo img {
    width: 55px;
  }

  .footer__nav {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    padding-top: 0;
  }

  .footer__nav a {
    font-size: 15px;
  }

  .footer__soc {
    width: 100%;
  }

  .footer__soc a {
    font-size: 15px;
  }

  .footer__btn {
    margin-left: 0;
    width: 100%;
  }

  .popup__text {
    font-size: 14px;
  }

  .popup {
    border-radius: 20px;
    padding: 50px 30px;
  }

  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 24px);
    border-radius: 28px;
  }

  .cookie-banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
    padding: 20px 18px 18px;
    gap: 16px;
  }

  .cookie-banner__emoji {
    font-size: 32px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }

  .cookie-banner__title {
    font-size: 16px;
  }

  .cookie-banner__accept.btn-blue {
    width: 100%;
    padding: 14px 20px;
  }

  .form__btn {
    font-size: 13px;
    padding: 24px 15px;
  }

  .person-data {
    margin-top: 20px;
  }

  .article__head {
    margin-bottom: 20px;
  }

  .article__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .note {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .note__list li {
    font-size: 14px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .hero {
    background-image: url("../img/hero-bg-m.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0 24px 0;
  }

  .hero__fly {
    display: none;
  }

  .hero__bg {
    display: block;
    -webkit-animation: hover 6s ease-in-out infinite;
            animation: hover 6s ease-in-out infinite;
  }

  .hero__inner {
    gap: 0;
  }

  .hero__l {
    padding-top: 0;
  }

  .hero__head {
    margin-bottom: 20px;
  }

  .hero-services {
    margin-bottom: 20px;
  }

  .hero-services__item {
    font-size: 16px;
  }

  .hero-clients {
    margin-bottom: 30px;
  }

  .hero-clients__text {
    font-size: 16px;
  }

  .running-text__el {
    font-size: 32px;
  }

  .advantage {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 25px;
  }

  .advantage-card {
    padding: 30px 28px 30px;
  }

  .advantage-card__count {
    font-size: 55px;
  }

  .advantage-card__text {
    font-size: 20px;
  }

  .our-services {
    gap: 20px;
  }

  .our-services__title {
    margin-bottom: 20px;
  }

  .services-list__item:not(:last-child) {
    margin-bottom: 15px;
  }

  .services-list__title {
    margin-bottom: 10px;
  }

  .services-list__list li {
    font-size: 14px;
  }

  .services-list__btn {
    font-size: 16px;
  }

  .services-list__btn::before {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }

  .service-slider__slide {
    border-radius: 30px;
  }

  .service-slider__play {
    width: 100px;
    height: 100px;
  }

  .service-slider__play svg {
    width: 46px;
    height: 46px;
  }

  .choose-us__title {
    margin-bottom: 20px;
  }

  .choose-us__inner {
    gap: 0;
  }

  .choose-us__img {
    margin: 0 -15px;
  }

  .choose-us__img img {
    display: block;
  }

  .choose-card:not(:last-child) {
    margin-bottom: 15px;
  }

  .choose-card__text {
    font-size: 15px;
  }

  .case-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .our-cases__grid {
    margin-bottom: 20px;
  }

  .case-card {
    padding: 35px;
  }

  .case-card__icon {
    width: 50px;
    margin-bottom: 10px;
  }

  .reviews-card__avatar {
    margin-bottom: -110px;
  }

  .reviews-card__play {
    width: 45px;
    height: 45px;
  }

  .reviews-card__play svg {
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }

  .reviews-card__inner {
    padding: 125px 40px 55px;
  }

  .reviews-card__position {
    font-size: 12px;
    margin-top: auto;
    margin-bottom: 20px;
  }

  .reviews-card__position:before {
    width: 18px;
    height: 18px;
    bottom: -20px;
  }

  .reviews-card__text {
    font-size: 12px;
  }

  .reviews-card__btn {
    font-size: 14px;
  }

  .blog__btn {
    text-align: center;
  }

  .blog-slider {
    margin: 0 -15px 20px;
    padding: 0 15px;
  }

  .blog-slider__control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .blog-card::after {
    bottom: 80px;
    right: 20px;
  }

  .blog-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .faq__item {
    padding: 20px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 15px;
    border-radius: 30px;
  }

  .faq__title {
    font-size: 14px;
    padding: 5px 32px 5px 0;
  }

  .faq__btn {
    width: 24px;
    height: 24px;
    background-size: 7px;
  }

  .faq__body {
    padding-top: 10px;
  }

  .faq__body p {
    font-size: 15px;
  }

  .team-card__position {
    font-size: 16px;
  }

  .team-card__body p {
    font-size: 14px;
  }

  .call-action__title {
    margin-bottom: 10px;
  }

  .call-action__form {
    border-radius: 30px;
  }
}

@media (max-width: 375px) {
  .hero__bg {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}