@import "../fonts/Google Sans/stylesheet.css";
@import "../fonts/IBM Plex Sans/stylesheet.css";
@import "../fonts/IBM Plex Sans Condensed/stylesheet.css";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
  outline-offset: -1px;
}

a:focus {
  outline: none;
  box-shadow: none;
}

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%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

b,
strong {
  font-weight: bolder;
}

em,
i {
  font-style: italic;
}

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

textarea {
  resize: vertical;
  width: 100%;
  min-height: 76px;
  display: block;
  line-height: 1.3;
}

input {
  line-height: 1.1;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #ccc;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: inherit;
}
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: inherit;
}
input:focus + .search-form-button:before,
textarea:focus + .search-form-button:before {
  color: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/*
 * Grid
 */
body {
  background: var(--black-bg, #080808);
  font-family: "Google Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--text-main, #FFF);
}
body.fixed {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}
body::-webkit-scrollbar-track {
  background-color: #646464;
}
body::-webkit-scrollbar-track-piece {
  background-color: #000;
}
body::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #666;
  border-radius: 3px;
}

.mobile {
  display: none;
}
@media (max-width: 991px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media (max-width: 991px) {
  .desktop {
    display: none;
  }
}

#main {
  overflow-x: hidden;
}

/*
 * Grid
 */
.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .container {
    padding: 0 27.5px;
  }
}

.big-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.98px;
  text-align: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .big-title {
    font-size: 4.5833333333vw;
  }
}
@media (max-width: 991px) {
  .big-title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 8.5333333333vw;
    letter-spacing: normal;
    font-weight: 600;
  }
}

.header {
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(40px);
  padding: 30px 0 16px;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
  width: 100%;
  overflow-x: clip;
  z-index: 3;
}
@media (max-width: 991px) {
  .header {
    width: 100vw;
  }
}
.header-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(184, 173, 207, 0.26);
  transform: translateX(-100%);
}
.header.scrolled {
  padding: 16px 0;
  backdrop-filter: blur(40px);
  z-index: 20;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .header {
    padding: 2.0833333333vw 0 1.1111111111vw;
  }
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  display: flex;
  width: 45px;
  height: 35px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
}
@media (max-width: 991px) {
  .header-logo {
    width: auto !important;
    transform: none !important;
    left: 0 !important;
    position: static;
  }
}
.header-logo img {
  object-fit: cover;
  height: 100%;
  object-position: left;
}
.header-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .header-nav {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 8px;
    width: 41.3333333333vw;
    display: flex;
    flex-direction: column;
    padding: 4.2666666667vw;
    border: 1px solid var(--gradient-for-btn, #2E0582);
    backdrop-filter: blur(40px);
    z-index: 10;
    background: var(--black-bg, #080808);
    gap: 6.4vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: visibility 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
    will-change: visibility, opacity, transform;
  }
  .header-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-nav li {
  opacity: 0;
}
@media (max-width: 991px) {
  .header-nav li {
    opacity: 1;
  }
}
.header-nav a {
  padding: 6px 12px;
  color: var(--text-secondary, #B8ADCF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background-color 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .header-nav a {
    padding: 0.4166666667vw 0.8333333333vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .header-nav a {
    padding: 1.6vw 3.2vw;
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.header-nav a:hover {
  background: var(--bg-for-block-hover, rgba(40, 40, 40, 0.7));
}
.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  right: 50%;
  transform: translateX(50%);
  width: 48px;
  opacity: 0;
}
@media (max-width: 991px) {
  .header-right {
    width: auto !important;
    transform: none !important;
    right: 0 !important;
    position: static;
  }
}
.header-right span {
  opacity: 0;
}
@media (max-width: 991px) {
  .header-right span {
    opacity: 1;
  }
}
.header-btn {
  width: 48px;
  height: 36px;
  position: static;
}
@media (max-width: 991px) {
  .header-btn {
    width: auto !important;
    height: auto !important;
  }
}

.page-template-privacy .header-line {
  transform: none;
}
.page-template-privacy .header-logo, .page-template-privacy .header-right {
  transform: none;
  opacity: 1;
  position: static;
}
.page-template-privacy .header-nav li {
  opacity: 1;
}
.page-template-privacy .header-right span {
  opacity: 1;
}
.page-template-privacy .header-btn, .page-template-privacy .header-right {
  width: max-content;
}
.page-template-privacy .header-logo {
  width: auto;
}

.footer {
  border-radius: 60px 60px 0px 0px;
  background: #000;
  padding: 69px 0 33px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer {
    border-radius: 4.1666666667vw 4.1666666667vw 0 0;
    padding: 4.7916666667vw 0 2.2916666667vw;
  }
}
@media (max-width: 991px) {
  .footer {
    padding: 14.4vw 4.2666666667vw 6.4vw;
    overflow-x: clip;
  }
}
.footer:after {
  content: "";
  display: block;
  position: absolute;
  width: 1524px;
  right: -500px;
  top: 0;
  height: 367.941px;
  transform: rotate(45deg);
  border-radius: 1000px;
  opacity: 0.7;
  background: var(--light-violet, #5D3D9E);
  filter: blur(210px);
  z-index: 0;
}
@media (max-width: 991px) {
  .footer:after {
    display: none;
  }
}
.footer-logo {
  display: flex;
  width: 303px;
  height: 95px;
  text-decoration: none;
  margin-bottom: 74px;
  position: relative;
  z-index: 2;
}
.footer-logo:hover svg, .footer-logo:hover img {
  transform: scale(0.95);
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-logo {
    width: 21.0416666667vw;
    height: 6.5972222222vw;
    margin-bottom: 5.1388888889vw;
  }
}
@media (max-width: 991px) {
  .footer-logo {
    width: 100%;
    height: auto;
    margin-bottom: 28.5333333333vw;
  }
}
.footer-logo svg, .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.footer-menus {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 78px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-menus {
    gap: 5.4166666667vw;
  }
}
@media (max-width: 991px) {
  .footer-menus {
    flex-direction: column;
    gap: 4.2666666667vw;
  }
}
.footer-nav {
  max-width: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-nav {
    max-width: 10.4166666667vw;
    gap: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .footer-nav {
    max-width: none;
    gap: 4.2666666667vw;
  }
}
.footer-nav__item {
  color: var(--text-main, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
  overflow: hidden;
  max-width: max-content;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-nav__item {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .footer-nav__item {
    font-size: 4.8vw;
    line-height: 6.4vw;
  }
}
.footer-nav__item:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--light-violet, #5D3D9E);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}
.footer-nav__item:hover:before {
  transform: translateX(0);
}
@media (max-width: 991px) {
  .footer-services {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer-services li {
  display: block;
}
.footer-services li:first-child {
  color: var(--text-main, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
  overflow: hidden;
  max-width: max-content;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-services li:first-child {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .footer-services li:first-child {
    font-size: 4.8vw;
    line-height: 6.4vw;
    width: 100%;
    max-width: none;
  }
}
.footer-services__item {
  padding: 6px 12px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  color: var(--text-secondary, #B8ADCF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  transition: background-color 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-services__item {
    padding: 0.4166666667vw 0.8333333333vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .footer-services__item {
    padding: 1.6vw 3.2vw;
    font-size: 4.2666666667vw;
  }
}
.footer-services__item:hover {
  background: var(--bg-for-block-hover, rgba(40, 40, 40, 0.7));
}
.footer-links {
  margin-top: 88px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-links {
    margin-top: 6.1111111111vw;
    gap: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .footer-links {
    margin-top: 15.7333333333vw;
    gap: 8.5333333333vw;
  }
}
.footer-links__item:hover img, .footer-links__item:hover svg {
  opacity: 1;
}
.footer-links svg, .footer-links img {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-links svg, .footer-links img {
    width: 2.7777777778vw;
    height: 2.7777777778vw;
  }
}
@media (max-width: 991px) {
  .footer-links svg, .footer-links img {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.footer-terms {
  margin-top: 3px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 81px;
  color: var(--text-tetriary, #6A607E);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-terms {
    margin-top: 0.2083333333vw;
    gap: 5.625vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .footer-terms {
    margin-top: 9.0666666667vw;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3.2vw 7.7333333333vw;
    font-size: 4.2666666667vw;
  }
}
.footer-terms li {
  transition: color 0.4s ease;
}
.footer-terms li:hover {
  color: var(--text-secondary, #B8ADCF);
}
.footer-terms a {
  color: var(--text-tetriary, #6A607E);
  transition: color 0.4s ease;
}
.footer-terms a:hover {
  color: var(--text-secondary, #B8ADCF);
}
.footer-terms li:not(:first-child) {
  position: relative;
}
.footer-terms li:not(:first-child):before {
  content: "";
  display: block;
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--darck-violet, #370F87);
}
@media (max-width: 991px) {
  .footer-terms li:not(:first-child):before {
    left: -4vw;
    width: 1.3333333333vw;
    height: 1.3333333333vw;
  }
}
.footer-media {
  position: absolute;
  width: 740px;
  height: 740px;
  top: 0;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .footer-media {
    width: 51.3888888889vw;
    height: 51.3888888889vw;
  }
}
@media (max-width: 991px) {
  .footer-media {
    top: 0;
    left: 0;
    right: auto;
    width: 100vw;
    height: 91.4666666667vw;
  }
}
.footer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .footer-bottom {
    overflow: hidden;
  }
}

.btn.btn-default {
  padding: 8px 16px;
  color: var(--text-main, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
.btn.btn-default:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #6A3DC2 -21.02%, #4946E4 99.94%);
}
.btn.btn-default:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--light-violet, #5D3D9E);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.btn.btn-default span {
  position: relative;
  z-index: 2;
}
.btn.btn-default:hover:after {
  opacity: 1;
}

.btn-skew {
  padding: 16px 40px;
  color: var(--text-main, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  position: relative;
  transform: skew(-40deg);
  overflow: hidden;
  max-width: max-content;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .btn-skew {
    padding: 1.1111111111vw 2.7777777778vw;
    font-size: 1.25vw;
  }
}
@media (max-width: 991px) {
  .btn-skew {
    padding: 3.2vw 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.btn-skew span {
  position: relative;
  z-index: 1;
  transform: skew(40deg);
}
.btn-skew.btn-filled:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-for-btn, linear-gradient(90deg, #2E0582 -21.02%, #5E3D9E 99.94%));
  transition: transform 0.4s ease;
}
.btn-skew.btn-filled span:after {
  content: "";
  height: 155px;
  left: -75px;
  position: absolute;
  top: -50px;
  transition: all 900ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 15px;
  z-index: -10;
  transform: skew(-40deg);
  opacity: 0.1;
  background: #FFEFAF;
  background-blend-mode: overlay;
  filter: blur(12px);
}
.btn-skew.btn-transparent:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-for-btn, linear-gradient(90deg, #2E0582 -21.02%, #5E3D9E 99.94%));
  transition: transform 0.4s ease;
}
.btn-skew.btn-transparent:after {
  content: "";
  display: block;
  position: absolute;
  left: 1.5px;
  top: 1.5px;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  background: #080808;
  transition: transform 0.4s ease;
}
.btn-skew:hover span:after {
  left: 130%;
  transition: all 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--black-bg, #080808);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader-wrap {
  width: 40px;
  height: 40px;
  transform: scale(0);
  background: white;
  overflow: hidden;
}
.preloader .top-line {
  transform: translateY(80px);
}
.preloader .top-left, .preloader .top-right {
  transform: translateY(40px);
}
.preloader .bottom-line {
  transform: translateY(-80px);
}
.preloader .bottom-left, .preloader .bottom-right {
  transform: translateY(-40px);
}

.hero {
  padding-top: 148px;
  padding-bottom: 95px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero {
    padding-top: 10.2777777778vw;
    padding-bottom: 6.5972222222vw;
  }
}
@media (max-width: 991px) {
  .hero {
    padding-top: 33.3333333333vw;
    padding-bottom: 0;
    min-height: 90vh;
  }
}
.hero-desc {
  max-width: 448px;
  margin: 16px auto 0;
  color: #B8ADCF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero-desc {
    max-width: 31.1111111111vw;
    margin: 1.1111111111vw auto 0;
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .hero-desc {
    max-width: 96vw;
    margin: 4.2666666667vw auto 0;
    font-size: 4.2666666667vw;
    line-height: 5.3333333333vw;
  }
}
.hero-desc span {
  background: linear-gradient(90deg, #E9C4FF 56.67%, #E674E6 73.49%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .big-title {
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991px) {
  .hero .big-title {
    max-width: 70.4vw;
    margin: 0 auto;
  }
}
.hero-wrap {
  position: relative;
  z-index: 2;
}
.hero .btn-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 39px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero .btn-wrap {
    margin-top: 3.3333333333vw;
    gap: 2.7083333333vw;
  }
}
@media (max-width: 991px) {
  .hero .btn-wrap {
    margin-top: 7.2vw;
    gap: 2.6666666667vw;
  }
}
@media all and (max-width: 360px) {
  .hero .btn-wrap {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .hero .btn-wrap a {
    width: 100%;
    max-width: none;
  }
  .hero .btn-wrap a span {
    width: 100%;
    text-align: center;
  }
}
.hero .btn-wrap a {
  opacity: 0;
}
.hero-media {
  width: 100%;
  height: auto;
  margin-top: -64px;
  position: relative;
  opacity: 0;
}
@media all and (min-width: 2900px) {
  .hero-media {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero-media {
    margin-top: -4.4444444444vw;
  }
}
@media (max-width: 991px) {
  .hero-media {
    margin-top: 11.7333333333vw;
    height: 73.8666666667vw;
  }
}
.hero-media:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 52px;
  width: 100%;
  height: 368px;
  z-index: -1;
  border-radius: 1000px;
  background: #322B7B;
  filter: blur(210px);
}
@media (max-width: 991px) {
  .hero-media:after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: auto;
    border-radius: 115.4666666667vw;
    filter: blur(50px);
  }
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.hero-media__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 991px) {
  .hero-media__bg {
    display: none;
  }
}
.hero-media__bg:before {
  content: "";
  display: block;
  position: absolute;
  width: 286px;
  height: 368px;
  top: 130px;
  left: -160px;
  border-radius: 1000px;
  background: #ABD2F0;
  filter: blur(175px);
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero-media__bg:before {
    width: 19.8611111111vw;
    height: 25.5555555556vw;
    top: 9.0277777778vw;
    left: -11.1111111111vw;
  }
}
@media (max-width: 991px) {
  .hero-media__bg:before {
    width: 33.0666666667vw;
    height: 42.4vw;
    top: 50%;
    transform: translateY(-50%);
    left: -42.6666666667vw;
  }
}
.hero-media__bg:after {
  content: "";
  display: block;
  position: absolute;
  width: 286px;
  height: 368px;
  top: 24px;
  right: -200px;
  border-radius: 1000px;
  background: #ABD2F0;
  filter: blur(175px);
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .hero-media__bg:after {
    width: 19.8611111111vw;
    height: 25.5555555556vw;
    top: 9.0277777778vw;
    right: -13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .hero-media__bg:after {
    width: 33.0666666667vw;
    height: 42.4vw;
    top: 30%;
    transform: translateY(-50%);
    right: -26.6666666667vw;
  }
}

.about {
  padding-top: 103px;
  overflow-x: clip;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about {
    padding-top: 7.1527777778vw;
  }
}
@media (max-width: 991px) {
  .about {
    padding-top: 13.6vw;
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    align-items: center;
  }
}
.about-top {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-top h6 {
  margin-bottom: 16px;
  transform: translateY(20px);
  opacity: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-top h6 {
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .about-top h6 {
    margin-bottom: 4.2666666667vw;
  }
}
.about-top p {
  transform: translateY(20px);
  opacity: 0;
  position: relative;
  margin-bottom: -40px !important;
  padding-bottom: 30px !important;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-top p {
    margin-bottom: -2.7777777778vw !important;
    padding-bottom: 2.0833333333vw !important;
  }
}
@media (max-width: 991px) {
  .about-top p {
    margin-bottom: -10.6666666667vw !important;
    padding-bottom: 8vw !important;
  }
}
.about-top p:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 22px;
  width: 100%;
  height: 100%;
  background: url("../img/about-top.png") center center no-repeat;
  background-size: cover;
  filter: blur(15px);
  z-index: -1;
  backdrop-filter: blur(1px) opacity(0.3);
}
@media (max-width: 991px) {
  .about-top p:before {
    backdrop-filter: none;
  }
}
.about-bottom {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-bottom p {
  margin-bottom: 16px !important;
  transform: translateY(-20px);
  opacity: 0;
  position: relative;
  margin-top: -65px !important;
  padding-top: 35px !important;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-bottom p {
    margin-top: -4.5138888889vw !important;
    padding-top: 2.4305555556vw !important;
  }
}
@media (max-width: 991px) {
  .about-bottom p {
    margin-top: -17.3333333333vw !important;
    padding-top: 9.3333333333vw !important;
    opacity: 1;
  }
}
.about-bottom p:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/about-bottom.png") top center no-repeat;
  background-size: cover;
  filter: blur(15px);
  z-index: -1;
  backdrop-filter: blur(1px) opacity(0.1);
}
@media (max-width: 991px) {
  .about-bottom p:before {
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-bottom p {
    margin-bottom: 1.1111111111vw !important;
  }
}
@media (max-width: 991px) {
  .about-bottom p {
    margin-bottom: 4.2666666667vw !important;
  }
}
.about-bottom h6 {
  transform: translateY(-20px);
  opacity: 0;
}
@media (max-width: 991px) {
  .about-bottom h6 {
    opacity: 1;
  }
}
.about-media {
  width: 387px;
  height: 365px;
  margin: -18px auto -26px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-media {
    width: 26.875vw;
    height: 25.3472222222vw;
    margin: -1.25vw auto -1.8055555556vw;
  }
}
@media (max-width: 991px) {
  .about-media {
    width: 72.2666666667vw;
    height: 68vw;
    margin: -4.8vw auto -6.9333333333vw;
  }
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(120deg) scale(0.5);
  transform-origin: center;
  will-change: transform, opacity;
}
@media (max-width: 991px) {
  .about-media img {
    transform: none;
  }
}
.about-wrap h6 {
  text-align: center;
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-wrap h6 {
    font-size: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .about-wrap h6 {
    font-size: 6.4vw;
    opacity: 1;
  }
}
.about-wrap p {
  max-width: 449px;
  margin: 0 auto;
  color: var(--text-secondary, #B8ADCF);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .about-wrap p {
    font-size: 1.25vw;
    max-width: 31.1805555556vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .about-wrap p {
    font-size: 4.2666666667vw;
    max-width: 91.4666666667vw;
    line-height: 5.3333333333vw;
    opacity: 1;
  }
}

.features {
  padding-top: 148px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features {
    padding-top: 10.2777777778vw;
  }
}
@media (max-width: 991px) {
  .features {
    padding-top: 26.6666666667vw;
    overflow-x: clip;
  }
}
.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-list {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .features-list {
    gap: 6.4vw;
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-wrap {
  display: flex;
  align-items: center;
  height: 480px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-wrap {
    height: 33.3333333333vw;
  }
}
@media (max-width: 991px) {
  .features-wrap {
    height: auto;
  }
}
.features-item {
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  box-shadow: 0px 42px 87.1px 0px rgba(93, 61, 158, 0.32);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 306px;
  cursor: pointer;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-item {
    width: 21.25vw;
  }
}
@media (max-width: 991px) {
  .features-item {
    width: 100%;
    box-shadow: 0px 22px 88px 0px rgba(93, 61, 158, 0.2);
    position: relative;
  }
}
.features-item:hover {
  box-shadow: 16px 14px 0px 0px #000, 0px 42px 87.1px 0px rgba(93, 61, 158, 0.32);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .features-item:hover {
    transform: scale(1);
    box-shadow: none;
  }
}
.features-item:hover .features-item__title {
  transform: scale(1.15);
}
@media (max-width: 991px) {
  .features-item:hover .features-item__title {
    transform: scale(1);
  }
}
.features-item:hover .features-item__desc {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .features-item:hover .features-item__desc {
    transform: scale(1);
  }
}
.features-item:hover .features-item__img img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .features-item:hover .features-item__img img {
    transform: scale(1);
  }
}
.features-item__img {
  height: 238px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-item__img {
    height: 16.5277777778vw;
  }
}
@media (max-width: 991px) {
  .features-item__img {
    position: absolute;
    right: 0;
    top: 0;
    width: 41.0666666667vw;
    height: 100%;
    z-index: 1;
  }
}
.features-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 991px) {
  .features-item__img img {
    object-fit: contain;
    object-position: right;
  }
}
.features-item__info {
  padding: 16px 32px;
  position: relative;
  height: 100%;
  transition: padding 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-item__info {
    padding: 1.1111111111vw 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .features-item__info {
    padding: 4.2666666667vw 8.5333333333vw;
    max-width: 68.8vw;
    position: static;
  }
}
.features-item__info:before {
  content: "";
  display: block;
  position: absolute;
  right: -142px;
  bottom: -90px;
  width: 500px;
  height: 171px;
  opacity: 0.3;
  background: var(--light-violet, #5D3D9E);
  filter: blur(55px);
  z-index: -1;
}
@media (max-width: 991px) {
  .features-item__info:before {
    background: linear-gradient(180deg, rgb(40, 40, 40) 0%, rgb(55, 15, 135) 50%, rgb(93, 61, 158) 100%);
    filter: none;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
.features-item__info:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -266px;
  right: -272px;
  width: 450px;
  height: 432px;
  opacity: 0.3;
  background: var(--darck-violet, #370F87);
  filter: blur(55px);
  z-index: -1;
}
@media (max-width: 991px) {
  .features-item__info:after {
    display: none;
  }
}
.features-item__title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-item__title {
    font-size: 1.6666666667vw;
    margin-bottom: 0.5555555556vw;
  }
}
@media (max-width: 991px) {
  .features-item__title {
    font-size: 6.4vw;
    margin-bottom: 2.1333333333vw;
  }
}
.features-item__desc {
  color: var(--text-secondary, #B8ADCF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .features-item__desc {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .features-item__desc {
    font-size: 4.2666666667vw;
  }
}

.offer {
  padding-top: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer {
    padding-top: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .offer {
    padding-top: 26.6666666667vw;
  }
}
.offer-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-title {
    font-size: 2.2222222222vw;
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .offer-title {
    font-size: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.offer-desc {
  max-width: 372px;
  color: #B8ADCF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-desc {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    max-width: 25.8333333333vw;
  }
}
@media (max-width: 991px) {
  .offer-desc {
    font-size: 4.2666666667vw;
    line-height: 5.3333333333vw;
    max-width: 91.4666666667vw;
  }
}
.offer-desc span {
  background: linear-gradient(90deg, #E9C4FF 56.67%, #E674E6 73.49%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offer-cards {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: 44px;
  overflow: hidden;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-cards {
    gap: 3.0555555556vw;
    margin-top: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .offer-cards {
    gap: 11.7333333333vw;
    margin-top: 11.7333333333vw;
  }
}
.offer-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  padding: 44px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-start;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card {
    padding: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .offer-card {
    padding: 6.4vw;
    flex-wrap: wrap;
    gap: 2.1333333333vw;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.offer-card__left {
  width: 400px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__left {
    width: 27.7777777778vw;
  }
}
@media (max-width: 991px) {
  .offer-card__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.0666666667vw;
  }
}
.offer-card__left:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 295px;
  height: 44px;
  opacity: 0.2;
  background: linear-gradient(0deg, #C4E6FF 0%, #C4E6FF 100%), #C4E6FF;
  filter: blur(150px);
  z-index: -1;
}
@media (max-width: 991px) {
  .offer-card__left:before {
    display: none;
  }
}
.offer-card__left:after {
  content: "";
  display: block;
  position: absolute;
  top: 44px;
  left: 0;
  width: 44px;
  height: calc(100% - 44px);
  opacity: 0.2;
  background: linear-gradient(0deg, #C4E6FF 0%, #C4E6FF 100%), #C4E6FF;
  filter: blur(150px);
  z-index: -1;
}
@media (max-width: 991px) {
  .offer-card__left:after {
    display: none;
  }
}
.offer-card__right {
  width: 575px;
  position: relative;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__right {
    width: 27.7777777778vw;
  }
}
@media (max-width: 991px) {
  .offer-card__right {
    width: 100%;
  }
}
.offer-card__right:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 183px;
  height: 176px;
  opacity: 0.2;
  background: #9747FF;
  filter: blur(150px);
  z-index: -1;
}
@media (max-width: 991px) {
  .offer-card__right:before {
    display: none;
  }
}
.offer-card__right:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 688px;
  height: 152px;
  opacity: 0.2;
  background: #5D3D9E;
  filter: blur(150px);
  z-index: -1;
}
@media (max-width: 991px) {
  .offer-card__right:after {
    display: none;
  }
}
.offer-card__number {
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__number {
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .offer-card__number {
    font-size: 4.8vw;
    font-weight: 400;
    font-family: "Google Sans", sans-serif;
  }
}
.offer-card__title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.68px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__title {
    font-size: 3.8888888889vw;
  }
}
@media (max-width: 991px) {
  .offer-card__title {
    font-size: 8.5333333333vw;
    font-weight: 600;
    font-family: "IBM Plex Sans", sans-serif;
    letter-spacing: normal;
  }
}
.offer-card__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__features {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .offer-card__features {
    gap: 4.2666666667vw;
  }
}
.offer-card__feature {
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .offer-card__feature {
    user-select: none;
  }
}
.offer-card__feature:hover .offer-card__text {
  transform: scale(1.3);
  color: var(--text-main, #FFF);
  text-shadow: 12px 12px 0px #000;
}
@media (max-width: 991px) {
  .offer-card__feature:hover .offer-card__text {
    transform: scale(1);
    text-shadow: none;
  }
}
.offer-card__feature:hover .offer-card__line:before {
  transform: translateX(0);
}
.offer-card__text {
  color: var(--text-secondary, #B8ADCF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.4s ease;
  display: inline-block;
  transform-origin: center left;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .offer-card__text {
    font-size: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .offer-card__text {
    font-size: 6.4vw;
    font-weight: 700;
  }
}
.offer-card__line {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(100% + 18px);
  height: 2px;
  width: 565px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .offer-card__line {
    display: none;
  }
}
.offer-card__line:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../img/svg/offer-line.svg") center center no-repeat;
  background-size: cover;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.works {
  padding-top: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works {
    padding-top: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .works {
    padding-top: 26.6666666667vw;
  }
}
.works-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-title {
    font-size: 2.2222222222vw;
    margin-bottom: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .works-title {
    font-size: 6.1333333333vw;
    margin-bottom: 11.7333333333vw;
  }
}
.works-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 32px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-list {
    gap: 2.0833333333vw 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .works-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.2666666667vw;
  }
}
.works-item {
  padding: 33px 28px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item {
    padding: 2.2916666667vw 1.9444444444vw;
  }
}
@media (max-width: 991px) {
  .works-item {
    padding: 4.2666666667vw;
  }
}
.works-item:hover .works-item__img img {
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .works-item:hover .works-item__img img {
    transform: scale(1);
  }
}
.works-item__tags {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: var(--text-secondary, #B8ADCF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  gap: 24px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item__tags {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    gap: 1.6666666667vw;
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .works-item__tags {
    gap: 6.4vw;
    font-size: 4.2666666667vw;
    line-height: 5.3333333333vw;
  }
}
.works-item__media {
  position: relative;
  padding-bottom: 59px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item__media {
    padding-bottom: 4.0972222222vw;
  }
}
@media (max-width: 991px) {
  .works-item__media {
    padding-bottom: 12vw;
  }
}
.works-item__img {
  width: 100%;
  height: 255px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item__img {
    height: 17.7083333333vw;
  }
}
@media (max-width: 991px) {
  .works-item__img {
    height: 80.2666666667vw;
  }
}
.works-item__img:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #171717 0%, rgba(23, 23, 23, 0) 50%);
  transform: rotate(180deg);
  z-index: 1;
}
.works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.works-item__title {
  position: absolute;
  bottom: 0;
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.68px;
  z-index: 2;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item__title {
    font-size: 3.8888888889vw;
    line-height: 3.8888888889vw;
  }
}
@media (max-width: 991px) {
  .works-item__title {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 8.5333333333vw;
    line-height: 10.6666666667vw;
    font-weight: 600;
    letter-spacing: normal;
  }
}
.works-item__link {
  margin-top: 16px;
  padding: 8px 16px;
  text-align: center;
  background: var(--gray, #242424);
  color: var(--text-main, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
  transition: background-color 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-item__link {
    padding: 0.5555555556vw 1.1111111111vw;
    margin-top: 1.1111111111vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .works-item__link {
    margin-top: 2.1333333333vw;
    padding: 2.1333333333vw 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}
.works-item__link:hover {
  background: var(--bg-for-block-hover, rgba(40, 40, 40, 0.7));
}
.works-more {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .works-more {
    margin-top: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .works-more {
    margin-top: 11.7333333333vw;
  }
}

.industries {
  padding-top: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries {
    padding-top: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .industries {
    padding-top: 26.6666666667vw;
  }
}
.industries-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries-title {
    font-size: 2.2222222222vw;
    margin-bottom: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .industries-title {
    font-size: 8.5333333333vw;
    margin-bottom: 11.7333333333vw;
  }
}
.industries-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries-list {
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .industries-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 19.2vw;
  }
}
.industries-item {
  padding: 25px 36px 47px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries-item {
    padding: 1.7361111111vw 2.5vw 3.2638888889vw;
  }
}
@media (max-width: 991px) {
  .industries-item {
    padding: 11.4666666667vw 0 11.4666666667vw 0;
    position: relative;
    user-select: none;
  }
}
.industries-item__media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.industries-item__img {
  width: 272px;
  height: 277px;
  opacity: 0.6;
  transition: all 0.4s ease;
  transform-origin: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries-item__img {
    width: 18.8888888889vw;
    height: 19.2361111111vw;
  }
}
@media (max-width: 991px) {
  .industries-item__img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 46.4vw;
    height: 47.2vw;
    opacity: 1;
  }
}
.industries-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.industries-item__title {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 21px 15px;
  color: var(--text-main, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.4s ease;
  backdrop-filter: blur(1px);
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .industries-item__title {
    padding: 1.4583333333vw 1.0416666667vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .industries-item__title {
    font-size: 4.8vw;
    position: static;
    padding: 0 4vw 0 55.2vw;
    text-align: left;
  }
}
.industries-item__title span {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 0.4s ease;
}
.industries-item:hover .industries-item__img {
  transform: scale(1.16);
  opacity: 1;
}
@media (max-width: 991px) {
  .industries-item:hover .industries-item__img {
    transform: scale(1) translateY(-50%);
  }
}
.industries-item:hover .industries-item__title {
  font-weight: 700;
  background: transparent;
  backdrop-filter: blur(4px);
}
@media (max-width: 991px) {
  .industries-item:hover .industries-item__title {
    font-weight: 400;
    backdrop-filter: blur(0);
  }
}
.industries-item:hover .industries-item__title span {
  transform: scale(1.2);
}
@media (max-width: 991px) {
  .industries-item:hover .industries-item__title span {
    transform: none;
  }
}

.technologies {
  padding-top: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies {
    padding-bottom: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .technologies {
    padding-top: 26.6666666667vw;
  }
}
.technologies-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-title {
    font-size: 2.2222222222vw;
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .technologies-title {
    font-size: 8.5333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}
.technologies-slider__title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 44px;
  height: 31px;
}
@media (max-width: 991px) {
  .technologies-slider__title {
    font-size: 4.8vw;
    height: 8.2666666667vw;
    margin-bottom: 6.4vw;
    white-space: normal;
    width: 61.3333333333vw;
    min-height: 14.4vw;
  }
}
.technologies-desc {
  max-width: 331px;
  color: var(--text-secondary, #B8ADCF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-desc {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    margin-bottom: 3.0555555556vw;
    max-width: 22.9861111111vw;
  }
}
@media (max-width: 991px) {
  .technologies-desc {
    font-size: 4.8vw;
    margin-bottom: 11.7333333333vw;
    line-height: 5.8666666667vw;
    max-width: 88.2666666667vw;
  }
}
.technologies-list {
  display: flex;
}
.technologies-slider {
  overflow: hidden;
}
.technologies-item {
  width: 202px;
  user-select: none;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-item {
    width: 14.0277777778vw;
  }
}
@media (max-width: 991px) {
  .technologies-item {
    width: 27.4666666667vw;
  }
}
.technologies-item__title {
  white-space: nowrap;
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 44px;
  height: 31px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-item__title {
    font-size: 1.6666666667vw;
    height: 2.1527777778vw;
    margin-bottom: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .technologies-item__title {
    font-size: 4.8vw;
    height: 8.2666666667vw;
    margin-bottom: 6.4vw;
    white-space: normal;
    width: 61.3333333333vw;
    min-height: 14.4vw;
  }
}
.technologies-item__media {
  width: 205px;
  height: 205px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-item__media {
    width: 14.2361111111vw;
    height: 14.2361111111vw;
  }
}
@media (max-width: 991px) {
  .technologies-item__media {
    width: 28vw;
    height: 28vw;
  }
}
.technologies-item__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  transform-origin: center;
}
.technologies-item__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  transition: transform 0.4s ease;
  transform-origin: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-item__img {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media (max-width: 991px) {
  .technologies-item__img {
    width: 12.2666666667vw;
    height: 12.2666666667vw;
  }
}
.technologies-item__img img, .technologies-item__img svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.4s ease;
}
.technologies-item:hover .technologies-item__bg {
  transform: scale(0.95);
}
.technologies-item:hover .technologies-item__img {
  transform: translate(-50%, -50%) scale(1.08);
}
.technologies-actions {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-actions {
    margin-top: 3.0555555556vw;
    gap: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .technologies-actions {
    margin-top: 8.5333333333vw;
    gap: 3.2vw;
  }
}
.technologies-actions .swiper-button-prev, .technologies-actions .swiper-button-next {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  flex-shrink: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-actions .swiper-button-prev, .technologies-actions .swiper-button-next {
    width: 4.4444444444vw;
    height: 4.4444444444vw;
  }
}
@media (max-width: 991px) {
  .technologies-actions .swiper-button-prev, .technologies-actions .swiper-button-next {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
  }
}
.technologies-actions .swiper-button-prev svg, .technologies-actions .swiper-button-next svg {
  width: 34px;
  height: 34px;
  transition: all 0.4s ease;
  transform-origin: center;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .technologies-actions .swiper-button-prev svg, .technologies-actions .swiper-button-next svg {
    width: 2.3611111111vw;
    height: 2.3611111111vw;
  }
}
@media (max-width: 991px) {
  .technologies-actions .swiper-button-prev svg, .technologies-actions .swiper-button-next svg {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
  }
}
.technologies-actions .swiper-button-prev:hover svg, .technologies-actions .swiper-button-next:hover svg {
  transform: scale(1.1);
}
.technologies-actions .swiper-pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.technologies-actions .swiper-pagination span {
  width: 100%;
  height: 3px;
  background: var(--gray, #242424);
  display: flex;
  margin: 0 4px;
  transition: all 0.7s ease;
}
@media (max-width: 991px) {
  .technologies-actions .swiper-pagination span {
    margin: 0 2px;
  }
}
.technologies-actions .swiper-pagination span.swiper-pagination-bullet-active {
  background: var(--light-violet, #5D3D9E);
  width: 500%;
}
@media (max-width: 991px) {
  .technologies-actions .swiper-pagination span.swiper-pagination-bullet-active {
    width: 300%;
  }
}

.clients {
  padding-top: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients {
    padding-top: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .clients {
    padding-top: 26.6666666667vw;
    overflow-x: clip;
  }
}
.clients-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 44px;
}
.clients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 31px;
}
@media (max-width: 991px) {
  .clients-list {
    display: inline-flex;
    flex-direction: row;
    gap: 0;
  }
}
.clients .swiper-slide:first-child {
  grid-area: 1/1/2/2;
}
.clients .swiper-slide:nth-child(2) {
  grid-area: 1/2/2/3;
}
.clients .swiper-slide:nth-child(3) {
  grid-area: 1/3/3/4;
}
.clients .swiper-slide:nth-child(4) {
  grid-area: 2/1/3/2;
}
.clients .swiper-slide:last-child {
  grid-area: 2/2/3/3;
}
@media (max-width: 991px) {
  .clients .swiper-slide {
    grid-area: auto !important;
    max-width: none;
  }
}
.clients-item {
  min-height: 354px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .clients-item {
    min-height: 350px;
    width: 100%;
  }
}
.clients-item.clients-default {
  padding: 44px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-default {
    padding: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-default {
    padding: 4.2666666667vw;
  }
}
.clients-item.clients-default .clients-default__desc {
  color: #B8ADCF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: "Google Sans", sans-serif;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-default .clients-default__desc {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    margin-bottom: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-default .clients-default__desc {
    font-size: 4.8vw;
    line-height: 6.4vw;
    margin-bottom: 8.5333333333vw;
  }
}
.clients-item.clients-default .clients-default__info {
  margin-top: auto;
}
.clients-item.clients-default .clients-default__info h6 {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-default .clients-default__info h6 {
    font-size: 1.6666666667vw;
    margin-bottom: 0.5555555556vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-default .clients-default__info h6 {
    font-size: 6.4vw;
    margin-bottom: 2.1333333333vw;
  }
}
.clients-item.clients-default .clients-default__info p {
  color: #6B6B6B;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-default .clients-default__info p {
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-default .clients-default__info p {
    font-size: 4.2666666667vw;
  }
}
.clients-item.clients-titled {
  border: 1px solid #FFF;
  background: linear-gradient(306deg, rgba(81, 14, 182, 0.2) -5.06%, rgba(81, 14, 182, 0) 121.51%), rgba(40, 40, 40, 0.2);
}
.clients-item.clients-titled h5 {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-titled h5 {
    font-size: 2.2222222222vw;
    margin-bottom: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-titled h5 {
    font-size: 7.4666666667vw;
    margin-bottom: 8.5333333333vw;
  }
}
.clients-item.clients-video {
  border: 1px solid #FFF;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  position: relative;
  padding: 44px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-video {
    padding: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-video {
    padding: 11.7333333333vw;
  }
}
.clients-item.clients-video .clients-video__media {
  width: 400px;
  height: 497px;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-video .clients-video__media {
    width: 27.7777777778vw;
    height: 34.5138888889vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-video .clients-video__media {
    display: none;
  }
}
.clients-item.clients-video .clients-video__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clients-item.clients-video .clients-video__info {
  margin-top: auto;
}
.clients-item.clients-video .clients-video__info p {
  color: #B8ADCF;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
}
.clients-item.clients-video .clients-video__info a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gray, #242424);
  color: var(--text-main, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.clients-item.clients-img {
  padding: 44px;
  background: linear-gradient(306deg, rgba(81, 14, 182, 0.2) -5.06%, rgba(81, 14, 182, 0) 121.51%), rgba(40, 40, 40, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-img {
    padding: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-img {
    padding: 4.2666666667vw;
  }
}
.clients-item.clients-img .clients-img__media {
  position: absolute;
  right: 0;
  top: 0;
  width: 399px;
  height: 210px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-img .clients-img__media {
    width: 27.7083333333vw;
    height: 14.5833333333vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-img .clients-img__media {
    width: 106.4vw;
    height: 56vw;
  }
}
.clients-item.clients-img .clients-img__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clients-item.clients-img .clients-default__info {
  margin-top: auto;
}
.clients-item.clients-img .clients-default__info h6 {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .clients-item.clients-img .clients-default__info h6 {
    font-size: 2.2222222222vw;
  }
}
@media (max-width: 991px) {
  .clients-item.clients-img .clients-default__info h6 {
    font-size: 7.4666666667vw;
  }
}
.clients-actions {
  margin-top: 44px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .clients-actions {
    display: flex;
    margin-top: 5.6vw;
    gap: 6.4vw;
  }
}
.clients-actions .swiper-button-prev, .clients-actions .swiper-button-next {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .clients-actions .swiper-button-prev, .clients-actions .swiper-button-next {
    width: 17.0666666667vw;
    height: 17.0666666667vw;
  }
}
.clients-actions .swiper-button-prev svg, .clients-actions .swiper-button-next svg {
  width: 34px;
  height: 34px;
}
@media (max-width: 991px) {
  .clients-actions .swiper-button-prev svg, .clients-actions .swiper-button-next svg {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
  }
}
.clients-actions .swiper-pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.clients-actions .swiper-pagination span {
  width: 100%;
  height: 3px;
  background: var(--gray, #242424);
  display: flex;
  margin: 0 4px;
  transition: all 0.7s ease;
}
@media (max-width: 991px) {
  .clients-actions .swiper-pagination span {
    margin: 0 3px;
  }
}
.clients-actions .swiper-pagination span.swiper-pagination-bullet-active {
  background: var(--light-violet, #5D3D9E);
  width: 500%;
}
@media (max-width: 991px) {
  .clients-actions .swiper-pagination span.swiper-pagination-bullet-active {
    width: 500%;
  }
}

.contacts {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts {
    padding-top: 13.8888888889vw;
    padding-bottom: 13.8888888889vw;
  }
}
@media (max-width: 991px) {
  .contacts {
    padding-top: 26.6666666667vw;
    padding-bottom: 26.6666666667vw;
  }
}
.contacts-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .contacts-wrap {
    gap: 14.9333333333vw;
  }
}
.contacts-left {
  width: 408px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-left {
    width: 28.3333333333vw;
  }
}
@media (max-width: 991px) {
  .contacts-left {
    width: 100%;
  }
}
.contacts-title {
  color: var(--text-main, #FFF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-title {
    font-size: 2.2222222222vw;
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .contacts-title {
    font-size: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.contacts-desc {
  color: var(--text-secondary, #B8ADCF);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-desc {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .contacts-desc {
    font-size: 4.2666666667vw;
    line-height: 5.3333333333vw;
  }
}
.contacts-list {
  margin-top: 177px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-list {
    margin-top: 12.2916666667vw;
    gap: 0.8333333333vw;
  }
}
@media (max-width: 991px) {
  .contacts-list {
    margin-top: 8.5333333333vw;
    gap: 3.2vw;
  }
}
.contacts-list__item a {
  padding: 8px 16px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary, #B8ADCF);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: background-color 0.4s ease;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-list__item a {
    padding: 0.5555555556vw 1.1111111111vw;
    gap: 0.5555555556vw;
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .contacts-list__item a {
    padding: 2.1333333333vw 4.2666666667vw;
    gap: 2.1333333333vw;
    font-size: 4.8vw;
    font-weight: 400;
    font-family: "Google Sans", sans-serif;
  }
}
.contacts-list__item:hover a {
  background: var(--bg-for-block-hover, rgba(40, 40, 40, 0.7));
}
.contacts-right {
  width: 912px;
  padding: 44px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-right {
    width: 63.3333333333vw;
    padding: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .contacts-right {
    width: 100%;
    padding: 4.2666666667vw;
  }
}
.contacts-right h2 {
  color: #FFF;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.98px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-right h2 {
    font-size: 4.5833333333vw;
  }
}
@media (max-width: 991px) {
  .contacts-right h2 {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    letter-spacing: normal;
    font-size: 8.5333333333vw;
  }
}
.contacts-right h2 + p {
  color: #B8ADCF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 44px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-right h2 + p {
    font-size: 1.25vw;
    line-height: 1.6666666667vw;
    margin-bottom: 3.0555555556vw;
  }
}
@media (max-width: 991px) {
  .contacts-right h2 + p {
    font-size: 4.2666666667vw;
    line-height: 5.3333333333vw;
    margin-bottom: 11.7333333333vw;
  }
}
.contacts-right h2 + p span {
  background: var(--gradient-for-text, linear-gradient(90deg, #E9C4FF 4.48%, #E674E6 17.06%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contacts-right br {
  display: none;
}
.contacts-right .wpcf7 form .wpcf7-response-output {
  border: none;
  padding: 0;
  margin-top: 20px;
  font-size: 16px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts-right .wpcf7 form .wpcf7-response-output {
    margin-top: 1.3888888889vw;
    font-size: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .contacts-right .wpcf7 form .wpcf7-response-output {
    margin-top: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.contacts .form-row {
  display: flex;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts .form-row {
    margin-bottom: 1.1111111111vw;
  }
}
@media (max-width: 991px) {
  .contacts .form-row {
    margin-bottom: 4.2666666667vw;
  }
}
.contacts .form-row span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contacts .form-row span.wpcf7-not-valid-tip {
  font-size: 12px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts .form-row span.wpcf7-not-valid-tip {
    font-size: 0.8333333333vw;
  }
}
@media (max-width: 991px) {
  .contacts .form-row span.wpcf7-not-valid-tip {
    font-size: 3.2vw;
  }
}
.contacts .form-row input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  padding: 16px 32px;
  color: #fff;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: none;
}
.contacts .form-row input::placeholder {
  color: #959595;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.contacts .form-row textarea {
  width: 100%;
  height: 85px;
  border-radius: 8px;
  background: var(--bg-for-block, rgba(40, 40, 40, 0.3));
  padding: 16px 32px;
  color: #fff;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  resize: none;
  border: none;
}
.contacts .form-row textarea::placeholder {
  color: #959595;
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.contacts .form-action {
  margin-top: 32px;
  padding: 0 25px;
  cursor: pointer;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .contacts .form-action {
    margin-top: 2.2222222222vw;
    padding: 0 1.7361111111vw;
  }
}
@media (max-width: 991px) {
  .contacts .form-action {
    margin-top: 8.5333333333vw;
    padding: 0 6.6666666667vw;
  }
}
.contacts .form-action button {
  border: none;
  max-width: none;
  width: 100%;
  cursor: pointer;
  background-clip: content-box;
}
.contacts .form-action button span {
  width: 100%;
}
.contacts .form-action button span:after {
  transition: all 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.not-found {
  min-height: 100vh;
  padding: 135px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url("../img/404.png") bottom center no-repeat;
  background-size: 100% 100%;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .not-found {
    padding: 9.375vw 0;
  }
}
@media (max-width: 991px) {
  .not-found {
    padding: 13.3333333333vw 0;
  }
}
.not-found:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.not-found__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.not-found__container img {
  width: 632px;
  height: 289px;
  object-fit: cover;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .not-found__container img {
    width: 43.8888888889vw;
    height: 20.0694444444vw;
  }
}
@media (max-width: 991px) {
  .not-found__container img {
    width: 100%;
    height: auto;
  }
}
.not-found__container h1 {
  margin: 54px 0 12px;
  color: #FFF;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.98px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .not-found__container h1 {
    margin: 3.75vw 0 0.8333333333vw;
    font-size: 4.5833333333vw;
  }
}
@media (max-width: 991px) {
  .not-found__container h1 {
    font-size: 6.4vw;
    line-height: 8.5333333333vw;
  }
}
.not-found__container p {
  color: #B8ADCF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 414px;
  margin: 0 auto 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .not-found__container p {
    margin: 0 auto 1.6666666667vw;
    max-width: 28.75vw;
    font-size: 1.1111111111vw;
    line-height: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .not-found__container p {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
    max-width: none;
    text-align: center;
  }
}

.section-defaultPage {
  padding-top: 156px;
  position: relative;
  background: url("../img/legal.png") top center repeat-x;
  background-size: contain;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage {
    padding-top: 9.375vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage {
    padding-top: 36vw;
  }
}
.section-defaultPage:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.section-defaultPage h1 {
  color: #FFF;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.98px;
  text-align: center;
  margin-bottom: 13px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h1 {
    font-size: 4.5833333333vw;
    margin-bottom: 0.9027777778vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h1 {
    font-size: 8.5333333333vw;
    line-height: 10.6666666667vw;
    margin-bottom: 3.4666666667vw;
  }
}
.section-defaultPage .last-updated {
  color: #B8ADCF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 151px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage .last-updated {
    font-size: 1.6666666667vw;
    margin-bottom: 10.4861111111vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage .last-updated {
    font-size: 6.4vw;
    line-height: 8.5333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.section-defaultPage .container {
  max-width: 855px;
  position: relative;
  z-index: 1;
}
.section-defaultPage__content {
  position: relative;
  z-index: 1;
}
.section-defaultPage p {
  color: #B8ADCF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage p {
    font-size: 1.25vw;
    line-height: 2.0833333333vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage p {
    font-size: 3.7333333333vw;
    line-height: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage h2 {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h2 {
    font-size: 2.2222222222vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h2 {
    font-size: 7.4666666667vw;
    line-height: 9.6vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage h3 {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h3 {
    font-size: 1.6666666667vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h3 {
    font-size: 5.3333333333vw;
    line-height: 7.4666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage ul, .section-defaultPage ol {
  padding-left: 20px;
  list-style: disc;
}
.section-defaultPage ul li, .section-defaultPage ol li {
  color: #B8ADCF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage ul li, .section-defaultPage ol li {
    font-size: 1.25vw;
    line-height: 2.0833333333vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage ul li, .section-defaultPage ol li {
    font-size: 3.7333333333vw;
    line-height: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage h4 {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h4 {
    font-size: 1.25vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h4 {
    font-size: 4.8vw;
    line-height: 7.4666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage h5 {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h5 {
    font-size: 1.1111111111vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h5 {
    font-size: 4.2666666667vw;
    line-height: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}
.section-defaultPage h6 {
  color: #FFF;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
  .section-defaultPage h6 {
    font-size: 0.9722222222vw;
    margin-bottom: 1.6666666667vw;
  }
}
@media (max-width: 991px) {
  .section-defaultPage h6 {
    font-size: 3.7333333333vw;
    line-height: 5.3333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}

.page-template-privacy .preloader {
  display: none;
}

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