@charset "UTF-8";
.collapse {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 1s ease-in-out;
}
.collapse.collapse--open {
  grid-template-rows: 1fr;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--color-text-white);
  opacity: 1;
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-text-blue);
}
.swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 308px;
  width: 74%;
  max-width: 278px;
}
.swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__item__title {
  transition: 0.3s;
}
.services__item__title:hover {
  cursor: pointer;
}

.services__item__description {
  max-height: 0;
  overflow: hidden;
  margin-left: 0;
}
.services__item__description p {
  margin-top: 4px;
}
@media only screen and (min-width: 1024px) {
  .services__item__description p {
    font-size: 18px;
  }
}

.main {
  background-image: url("../images/core/bg/gradient-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg, #04010C 3.21%, rgba(4, 1, 12, 0) 100%);
  filter: blur(0px);
  width: 100%;
  height: 156.615px;
}
.main__wrap {
  padding: 104px 0 118px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 480px) {
  .main__wrap {
    padding: 157px 0 85px;
  }
}
@media only screen and (min-width: 768px) {
  .main__wrap {
    padding: 185px 0 125px;
  }
}
@media only screen and (min-width: 1024px) {
  .main__wrap {
    padding: 282px 0 178px;
  }
}
@media only screen and (min-width: 1366px) {
  .main__wrap {
    padding: 247px 0 134px;
  }
}
.main .main__title {
  font-family: Lato, sans-serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (min-width: 380px) {
  .main .main__title {
    font-size: 33px;
  }
}
@media only screen and (min-width: 410px) {
  .main .main__title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 480px) {
  .main .main__title {
    font-size: 44px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 595px) {
  .main .main__title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 665px) {
  .main .main__title {
    font-size: 59px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__title {
    margin-bottom: 20px;
    font-size: 46px;
  }
}
@media only screen and (min-width: 1024px) {
  .main .main__title {
    font-size: 64px;
    margin-bottom: 29px;
  }
}
@media only screen and (min-width: 1366px) {
  .main .main__title {
    font-size: 100px;
    margin-bottom: 68px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__dash {
    display: none;
  }
}
.main .main__tag {
  margin-bottom: 20px;
}
.main .main__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin: 0 auto;
}
.main .main__description br {
  display: none;
}
@media only screen and (min-width: 480px) {
  .main .main__description {
    max-width: 287px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__description {
    font-size: 18px;
    max-width: 560px;
  }
  .main .main__description br {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .main .main__description {
    font-size: 20px;
    font-weight: 500;
  }
}

#gradient-background {
  background-image: radial-gradient(circle at 42.7907% 55.292%, rgb(160, 25, 255) 0%, transparent 50%);
}

.activity {
  padding-top: 36px;
}
@media only screen and (min-width: 480px) {
  .activity {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media only screen and (min-width: 1440px) {
  .activity {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.activity .cnt {
  padding: 0;
}
@media only screen and (min-width: 1440px) {
  .activity .cnt {
    padding-left: 180px;
  }
}
.activity__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .activity__list {
    margin-top: 48px;
    gap: 32px;
  }
}
@media only screen and (min-width: 1440px) {
  .activity__list {
    margin-top: 56px;
  }
}
.activity__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0) 108.07%);
  backdrop-filter: blur(10px);
}
.activity__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 13px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0.03) 108.07%) border-box border-box;
  mask: linear-gradient(#fff 0, #fff 0) padding-box, linear-gradient(#fff 0, #fff 0);
  mask-composite: exclude;
}
@media only screen and (min-width: 768px) {
  .activity__item {
    padding: 40px 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .activity__item {
    padding: 60px 64px;
  }
}
@media only screen and (min-width: 1440px) {
  .activity__item {
    padding: 60px;
  }
}
.activity__item-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
}
@media only screen and (min-width: 480px) {
  .activity__item-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .activity__item-title {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .activity__item-title {
    margin-bottom: 44px;
  }
}
.activity__item-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .activity__item-info {
    margin-bottom: 36px;
  }
}
@media only screen and (min-width: 1024px) {
  .activity__item-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }
}
.activity__item-subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 12px;
}
@media only screen and (min-width: 480px) {
  .activity__item-subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .activity__item-subtitle {
    margin-bottom: 16px;
  }
}
.activity__item-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media only screen and (min-width: 480px) {
  .activity__item-text {
    font-size: 16px;
  }
}
.activity__item-images {
  list-style: none;
  margin-bottom: 32px;
  padding: 22px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 480px) {
  .activity__item-images {
    padding: 32px 44px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .activity__item-images {
    margin-bottom: 36px;
  }
}
@media only screen and (min-width: 1024px) {
  .activity__item-images {
    padding: 34px 50px;
    margin-bottom: 40px;
  }
}
.activity__item-image {
  display: flex;
}
@media only screen and (min-width: 480px) {
  .activity__item-image--square {
    width: 47%;
    flex-grow: 1;
  }
  .activity__item-image--rectangle {
    width: 100%;
    flex-grow: 1;
  }
}
@media only screen and (min-width: 768px) {
  .activity__item-image--square {
    width: 22%;
  }
  .activity__item-image--rectangle {
    width: 48%;
  }
}
.activity__item-image img {
  width: 100%;
}
@media only screen and (min-width: 480px) {
  .activity__item-result .unit-mainscreen__advantages-description {
    font-size: 16px;
  }
}
.activity__item-result_title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .activity__item-result_title {
    font-size: 22px;
  }
}
.activity__advantages {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .activity__advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .activity__advantages {
    column-gap: 60px;
  }
}

.possibilities {
  padding-top: 32px;
}
@media only screen and (min-width: 480px) {
  .possibilities {
    padding-top: 48px;
    padding-bottom: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .possibilities {
    padding-bottom: 48px;
  }
}
.possibilities__title {
  margin-top: 20px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .possibilities__title {
    margin-bottom: 48px;
  }
}
.possibilities__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: list;
}
@media only screen and (min-width: 480px) {
  .possibilities__list {
    gap: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .possibilities__list {
    gap: 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .possibilities__list {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  .possibilities__list {
    margin-top: 65px;
    padding-left: 180px;
    gap: 36px;
  }
}
.possibilities__item {
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (min-width: 480px) {
  .possibilities__item {
    flex-direction: row;
    gap: 24px;
    padding-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .possibilities__item {
    gap: 24px;
    padding-bottom: 34px;
  }
}
@media only screen and (min-width: 1440px) {
  .possibilities__item {
    gap: 36px;
    padding-bottom: 36px;
  }
}
@media only screen and (min-width: 768px) {
  .possibilities__item-labels {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.possibilities__item-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .possibilities__item-wrap {
    gap: 32px;
  }
}
.possibilities__item-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media only screen and (min-width: 480px) {
  .possibilities__item-title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .possibilities__item-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  .possibilities__item-title {
    font-size: 32px;
  }
}
.possibilities__item-description {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media only screen and (min-width: 1024px) {
  .possibilities__item-description {
    font-size: 18px;
  }
}
.possibilities__item::before {
  counter-increment: list;
  content: counter(list, decimal-leading-zero);
  border-radius: 29px;
  border: 0.5px solid #a019ff;
  padding: 4px 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: #a019ff;
}
.possibilities__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.organization {
  padding-top: 45px;
  padding-bottom: 55px;
}
@media only screen and (min-width: 480px) {
  .organization {
    padding-top: 48px;
    padding-bottom: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .organization {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .organization {
    padding: 48px 64px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1440px) {
  .organization {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
@media only screen and (min-width: 1440px) {
  .organization .cnt {
    padding-left: 180px;
  }
}
.organization__title {
  margin-bottom: 36px;
}
@media only screen and (min-width: 1024px) {
  .organization__title {
    margin-bottom: 48px;
  }
}
.organization__title .h2-title__two {
  line-height: normal;
}
@media only screen and (min-width: 1440px) {
  .organization__title .h2-title__two {
    line-height: 10px;
  }
}
@media only screen and (min-width: 1440px) {
  .organization__title {
    margin-bottom: 68px;
  }
}
@media only screen and (min-width: 1024px) {
  .organization__slug {
    padding-right: 250px;
  }
}
@media only screen and (min-width: 1440px) {
  .organization__slug .tag {
    justify-content: flex-start;
  }
}
.organization__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 480px) {
  .organization__list {
    gap: 32px;
  }
}
.organization__list .swiper {
  height: auto;
}
.organization__list .swiper-slide {
  height: auto;
  width: auto;
  min-width: 295px;
  max-width: 100%;
  margin-right: 0;
  text-align: left;
}
.organization__item {
  padding: 24px;
  display: flex;
  max-width: 355px;
  box-sizing: border-box;
  flex-direction: column;
  border: 1px solid var(--card-stroke, rgba(255, 255, 255, 0));
  background: rgba(160, 25, 255, 0.17);
  backdrop-filter: blur(10px);
  border-radius: 13px;
}
.organization__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 13px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0.03) 108.07%) border-box border-box;
  mask: linear-gradient(#fff 0, #fff 0) padding-box, linear-gradient(#fff 0, #fff 0);
  mask-composite: exclude;
}
@media only screen and (min-width: 768px) {
  .organization__item {
    min-width: 354px;
  }
}
@media only screen and (min-width: 1024px) {
  .organization__item {
    padding: 28px;
  }
}
.organization__item-title {
  margin-bottom: 16px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media only screen and (min-width: 480px) {
  .organization__item-title {
    font-size: 22px;
  }
}
.organization__item-description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}
.organization__item-labels.labels-list {
  flex-direction: row;
  gap: 12px;
  margin-bottom: 24px;
}
.organization__item-labels.labels-list li span {
  background: #370856 !important;
}
@media only screen and (min-width: 1024px) {
  .organization__item-labels.labels-list {
    margin-bottom: 24px;
  }
}
.organization__item-image {
  display: flex;
  margin-top: auto;
}
.organization__item-image img {
  width: 100%;
  border-radius: 13px;
}

.double-menu {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 16px;
  top: 168px;
  position: fixed;
  padding-top: 68px;
  padding-right: 40px;
  max-width: 180px;
  z-index: 1;
}
@media only screen and (min-width: 1440px) {
  .double-menu {
    display: flex;
  }
}
.double-menu__item label {
  display: flex;
  align-items: baseline;
  cursor: pointer;
}
.double-menu__item-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}
.double-menu__radio {
  display: none;
}
.double-menu__radio-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid transparent;
  padding: 9px;
  border-radius: 50%;
  margin-right: 8px;
}
.double-menu__radio-indicator::after {
  content: "";
  display: inline-block;
  min-width: 12px;
  min-height: 12px;
  border: 1.5px solid #fff;
  border-radius: 50%;
}
.double-menu__radio:checked + span {
  background: #490b73;
  border-color: #a019ff;
}
.double-menu__radio:checked + span::after {
  border: none;
  background: #a019ff;
}
.double-menu__radio:checked + span + span {
  color: #fff;
}

@keyframes slideInHeader {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes slideInHeaderReverse {
  from {
    top: 0;
  }
  to {
    top: -100px;
  }
}
@keyframes slideInButtons {
  from {
    top: 20px;
  }
  to {
    top: 80px;
  }
}
@keyframes slideInButtonsReverse {
  from {
    top: 80px;
  }
  to {
    top: 20px;
  }
}
@media only screen and (min-width: 768px) {
  @keyframes slideInButtons {
    from {
      top: 32px;
    }
    to {
      top: 90px;
    }
  }
  @keyframes slideInButtonsReverse {
    from {
      top: 90px;
    }
    to {
      top: 32px;
    }
  }
}
@media only screen and (min-width: 1366px) {
  @keyframes slideInButtons {
    from {
      top: 20px;
    }
    to {
      top: 120px;
    }
  }
  @keyframes slideInButtonsReverse {
    from {
      top: 120px;
    }
    to {
      top: 20px;
    }
  }
}
.wrapper.wrapper_unit {
  padding-top: 0;
  background-image: none;
  background-color: #000;
}
.wrapper.wrapper_unit .header {
  position: fixed;
  width: 100%;
  padding-top: 32px;
  top: 0;
  left: 0;
  z-index: 2;
}
.wrapper.wrapper_unit .header--not-fixed {
  animation: slideInHeaderReverse 0.2s forwards;
}
@media only screen and (min-width: 1366px) {
  .wrapper.wrapper_unit .header--fixed {
    position: fixed;
    animation: slideInHeader 0.2s forwards;
  }
}

.labels-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.labels-list li {
  background-image: conic-gradient(from 180deg at 50% 50%, rgba(255, 255, 255, 0.11) 0%, rgba(51, 231, 255, 0.07) 21%, rgb(245, 212, 255) 47%, rgba(51, 157, 255, 0.18) 64%, rgba(167, 166, 166, 0.18) 82%);
  padding: 1px;
  border-radius: 24px;
}
.labels-list li span {
  display: block;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: #e9ebf0;
  background: #000;
}
@media only screen and (min-width: 1024px) {
  .labels-list li span {
    font-size: 16px;
    font-weight: 400;
  }
}

@media only screen and (min-width: 1024px) {
  .advantages-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    gap: 24px;
  }
}
@media only screen and (min-width: 480px) {
  .advantages-list {
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .advantages-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
}
.advantages-list__item {
  display: flex;
  flex-direction: column;
}
.advantages-list__item-name {
  font-weight: 800;
  font-size: 40px;
  color: #a019ff;
  margin-bottom: 4px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .advantages-list__item-name {
    font-size: 46px;
    margin-bottom: 8px;
  }
}
.advantages-list__item-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .advantages-list__item-description {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1440px) {
  .advantages-list__item-description {
    font-weight: 500;
  }
}

.unit-mainscreen {
  padding-top: 102px;
  padding-bottom: 186px;
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen {
    padding-top: 140px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen {
    padding-top: 240px;
  }
}
@media only screen and (min-width: 1440px) {
  .unit-mainscreen {
    padding-bottom: 56px;
    background: none;
  }
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen__wrap {
    padding-right: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__wrap {
    display: flex;
    flex-direction: row;
    gap: 32px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .unit-mainscreen__wrap {
    gap: 45px;
    padding-left: 180px;
  }
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__col:first-child {
    width: 60%;
  }
  .unit-mainscreen__col:last-child {
    width: 40%;
  }
}
.unit-mainscreen__title-wrap {
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen__title-wrap {
    padding-right: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__title-wrap {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .unit-mainscreen__title-wrap {
    padding-left: 180px;
    margin-bottom: 20px;
  }
}
.unit-mainscreen__title {
  text-align: center;
  font-size: 68px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 26px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__title {
    display: block;
  }
}
.unit-mainscreen__slug {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__slug {
    display: block;
  }
}
.unit-mainscreen__buttons.swiper {
  position: fixed;
  top: 80px;
  z-index: 2;
  height: auto;
}
@media only screen and (min-width: 1366px) {
  .unit-mainscreen__buttons.swiper {
    top: 120px;
  }
}
.unit-mainscreen__buttons .swiper-slide {
  height: auto;
  width: auto;
  max-width: 100%;
  margin-right: 0;
}
@media only screen and (min-width: 1024px) {
  .unit-mainscreen__buttons {
    font-size: 16px;
  }
}
.unit-mainscreen__buttons--header-nofixed {
  animation: slideInButtonsReverse 0.2s forwards;
}
@media only screen and (min-width: 1366px) {
  .unit-mainscreen__buttons--header-fixed {
    animation: slideInButtons 0.2s forwards;
  }
}
.unit-mainscreen__button {
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  position: relative;
  background: #370856;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  border-radius: 7px;
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen__button {
    font-size: 14px;
    padding: 16px 36px;
  }
}
.unit-mainscreen__button::before {
  z-index: 0;
}
.unit-mainscreen__button_active {
  background: #a019ff;
}
.unit-mainscreen__image {
  margin-bottom: 20px;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen__image {
    margin-bottom: 45px;
  }
}
.unit-mainscreen__image img {
  border-radius: 13px;
  width: 100%;
  object-fit: cover;
}
.unit-mainscreen__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .unit-mainscreen__description {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .unit-mainscreen__description {
    font-size: 20px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 1440px) {
  .unit .h2-title__two, .unit .h2-title__first {
    font-weight: 400;
    font-size: 68px;
  }
}

:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-dark-violet: #6426AA;
  --color-purple: #A019FF;
  --color-yellow: #FFD455;
  --color-grey: #E9EBF0;
  --color-footer-bg: #1C1C1C;
}

@font-face {
  font-weight: 400; /* Соответствует значению normal */
  font-family: DaMiOne;
  src: url("../fonts/DaMiOne/DaMiOne-Regular.ttf");
}
@font-face {
  font-weight: 300;
  font-family: Lato;
  src: url("../fonts/Lato/Lato-Thin.ttf");
}
@font-face {
  font-weight: 400; /* Соответствует значению normal */
  font-family: Lato;
  src: url("../fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-weight: 500;
  font-family: Lato;
  src: url("../fonts/Lato/Lato-Semibold.ttf");
}
@font-face {
  font-weight: 600;
  font-family: Lato;
  src: url("../fonts/Lato/Lato-Bold.ttf");
}
h1 {
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .h2-header {
    display: flex;
    justify-content: center;
  }
}

.h2-title {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .h2-title {
    align-items: unset;
    max-width: 926px;
  }
}
.h2-title__first, .h2-title__two {
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .h2-title__first--text-center, .h2-title__two--text-center {
    text-align: center;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__first--text-left, .h2-title__two--text-left {
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__first--text-right, .h2-title__two--text-right {
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .h2-title__first, .h2-title__two {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__first, .h2-title__two {
    display: block;
  }
}
@media only screen and (min-width: 1440px) {
  .h2-title__first, .h2-title__two {
    font-weight: 400;
    font-size: 72px;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__first {
    order: 1;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__two {
    order: 3;
    text-align: right;
    line-height: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .h2-title__slug {
    order: 2;
    padding-right: 95px;
  }
}
@media only screen and (min-width: 1440px) {
  .h2-title__slug {
    padding-right: 210px;
  }
}
.h2-title__slug--p-0 {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .h2-title {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .h2-title {
    max-width: 926px;
  }
}

.button[data-size=standard] {
  padding: 16px 34px;
}
[data-variant=white].button[data-size=standard] {
  background-color: var(--color-white);
  color: var(--color-dark-violet);
}
[data-variant=white].button[data-size=standard] .button-dotted {
  background-color: var(--color-dark-violet);
}
[data-variant=primary].button[data-size=standard] {
  background-color: var(--color-purple);
  color: var(--color-white);
}
[data-variant=primary].button[data-size=standard] .button-dotted {
  background-color: var(--color-white);
}
.button[data-size=standard] .button-dotted {
  display: inline-block;
}

.button[data-size=small] {
  padding: 8px 24px;
}
.button[data-size=small] .button-dotted {
  display: none;
}

.button {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 32px;
  text-transform: uppercase;
  transition: opacity 0.25s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.button[data-variant=outline] {
  border-color: var(--color-white);
  color: var(--color-white);
}
.button[data-variant=outline] .button-dotted {
  background-color: var(--color-white);
}
.button .button-dotted {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  margin-left: 16px;
}

.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s linear;
}
.tag[data-them=yellow] {
  color: var(--color-yellow);
}
.tag[data-them=white] {
  color: var(--color-white);
}
.tag .tag__text {
  display: inline-block;
  margin: 0 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .tag .tag__text {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.tag .tag__angle.tag__angle--right {
  transform: rotate(180deg);
}

.main {
  background-image: url("../images/core/bg/gradient-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  position: relative;
}
.main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(360deg, #04010C 3.21%, rgba(4, 1, 12, 0) 100%);
  filter: blur(0px);
  width: 100%;
  height: 156.615px;
}
.main__wrap {
  padding: 104px 0 118px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 480px) {
  .main__wrap {
    padding: 157px 0 85px;
  }
}
@media only screen and (min-width: 768px) {
  .main__wrap {
    padding: 185px 0 125px;
  }
}
@media only screen and (min-width: 1024px) {
  .main__wrap {
    padding: 282px 0 178px;
  }
}
@media only screen and (min-width: 1366px) {
  .main__wrap {
    padding: 247px 0 134px;
  }
}
.main .main__title {
  font-family: Lato, sans-serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (min-width: 380px) {
  .main .main__title {
    font-size: 33px;
  }
}
@media only screen and (min-width: 410px) {
  .main .main__title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 480px) {
  .main .main__title {
    font-size: 44px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 595px) {
  .main .main__title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 665px) {
  .main .main__title {
    font-size: 59px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__title {
    margin-bottom: 20px;
    font-size: 46px;
  }
}
@media only screen and (min-width: 1024px) {
  .main .main__title {
    font-size: 64px;
    margin-bottom: 29px;
  }
}
@media only screen and (min-width: 1366px) {
  .main .main__title {
    font-size: 100px;
    margin-bottom: 68px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__dash {
    display: none;
  }
}
.main .main__tag {
  margin-bottom: 20px;
}
.main .main__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  margin: 0 auto;
}
.main .main__description br {
  display: none;
}
@media only screen and (min-width: 480px) {
  .main .main__description {
    max-width: 287px;
  }
}
@media only screen and (min-width: 768px) {
  .main .main__description {
    font-size: 18px;
    max-width: 560px;
  }
  .main .main__description br {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .main .main__description {
    font-size: 20px;
    font-weight: 500;
  }
}

#gradient-background {
  background-image: radial-gradient(circle at 42.7907% 55.292%, rgb(160, 25, 255) 0%, transparent 50%);
}

.advantages {
  padding: 40px 0;
}
@media only screen and (min-width: 480px) {
  .advantages {
    padding: 33px 0;
    padding-top: 90px;
  }
}
@media only screen and (min-width: 768px) {
  .advantages {
    padding: 86px 0;
  }
}
@media only screen and (min-width: 1366px) {
  .advantages {
    padding: 80px 0;
    margin-top: -4px;
  }
}
@media only screen and (min-width: 768px) {
  .advantages .advantages__list {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .advantages .advantages__list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
  }
}
.advantages .advantages__slider {
  display: none;
}
@media only screen and (min-width: 768px) {
  .advantages .advantages__slider {
    display: block;
    padding: 0 48px;
  }
  .advantages .advantages__slider.swiper {
    width: 100%;
    height: 100%;
  }
  .advantages .advantages__slider.swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 398px;
    width: 74%;
    max-width: 287px;
    border-radius: 13px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) {
  .advantages .advantages__slider {
    display: none;
  }
}
.advantages .advantages__item {
  background-image: url("../images/advantages/card.png");
  background-repeat: no-repeat;
  background-position: top;
  backdrop-filter: blur(10px);
  border-radius: 13px;
  overflow: hidden;
  padding: 36px 28px;
  width: 100%;
  max-width: 287px;
  margin: 0 auto 20px;
  min-height: auto;
  transform: none;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
@media only screen and (min-width: 768px) {
  .advantages .advantages__item {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .advantages .advantages__item {
    max-width: 279px;
    padding: 36px 24px;
    margin: 0;
  }
  .advantages .advantages__item:nth-child(1).animate {
    animation-name: slide-up-1;
    transform: translateY(115px);
  }
  @keyframes slide-up-1 {
    0% {
      transform: translateY(115px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .advantages .advantages__item:nth-child(2) {
    transform: translateY(40px);
  }
  .advantages .advantages__item:nth-child(2).animate {
    animation-name: slide-up-2;
    animation-delay: 0.4s;
  }
  @keyframes slide-up-2 {
    0% {
      transform: translateY(40px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .advantages .advantages__item:nth-child(3) {
    transform: translateY(0);
  }
  .advantages .advantages__item:nth-child(3).animate {
    animation-name: slide-up-3;
    animation-delay: 0.6s;
  }
  @keyframes slide-up-3 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(0);
    }
  }
}
@media only screen and (min-width: 1366px) {
  .advantages .advantages__item {
    max-width: 407px;
    padding: 36px 28px;
    min-height: 489px;
  }
  .advantages .advantages__item:nth-child(1) {
    transform: translateY(115px);
  }
  @keyframes slide-up-1 {
    0% {
      transform: translateY(115px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .advantages .advantages__item:nth-child(2) {
    transform: translateY(44px);
  }
  .advantages .advantages__item:nth-child(2).animate {
    animation-delay: 0.4s;
    animation-name: slide-up-2;
  }
  @keyframes slide-up-2 {
    0% {
      transform: translateY(44px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .advantages .advantages__item:nth-child(3) {
    margin-top: 0;
  }
  .advantages .advantages__item:nth-child(3).animate {
    animation-name: slide-up-3;
    animation-delay: 0.6s;
  }
  @keyframes slide-up-3 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(0);
    }
  }
}
.advantages .advantages__item .advantages__item__title {
  font-family: Lato, sans-serif;
  font-size: 46px;
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 4px;
}
@media only screen and (min-width: 1366px) {
  .advantages .advantages__item .advantages__item__title {
    font-size: 64px;
  }
}
.advantages .advantages__item .advantages__item__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 40px;
}
@media only screen and (min-width: 480px) {
  .advantages .advantages__item .advantages__item__text {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1366px) {
  .advantages .advantages__item .advantages__item__text {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
  }
}
.advantages .advantages__item .advantages__item__img {
  border-radius: 13px;
  object-fit: cover;
  width: 100%;
  overflow: hidden;
}
.advantages .advantages__slider .advantages__item {
  transform: none;
}

.clients {
  padding: 40px 0;
}
@media only screen and (min-width: 480px) {
  .clients {
    background-size: cover;
    padding: 48px 0;
  }
}
@media only screen and (min-width: 768px) {
  .clients {
    padding: 56px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .clients {
    padding: 44px 0;
  }
}
@media only screen and (min-width: 1366px) {
  .clients {
    padding: 80px;
    padding-bottom: 92px;
  }
}
.clients .clients__header {
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .clients .clients__header {
    margin-bottom: -4px;
  }
}
.clients .clients__header-title {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 14px;
  max-width: 308px;
}
@media only screen and (min-width: 768px) {
  .clients .clients__header-title {
    max-width: 508px;
  }
}
.clients .clients__header-title .clients__title--second {
  margin-left: auto;
}
.clients .awards-list {
  margin-top: 7px;
}
.clients .awards-list.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear;
}
.clients .awards-list__item {
  border-radius: 11.752px;
  border: 1.175px solid #484848;
  backdrop-filter: blur(11.7521286011px);
  display: flex;
  padding: 28.205px 35.256px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clients .clients__title {
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .clients .clients__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
  }
}
@media only screen and (min-width: 1366px) {
  .clients .clients__title {
    font-size: 72px;
    line-height: normal;
  }
}
.clients .clients__title.clients__title--first {
  margin-right: 5px;
}
@media only screen and (min-width: 1024px) {
  .clients .clients__title.clients__title--first {
    grid-area: title-first;
    margin-left: -5px;
  }
}
@media only screen and (min-width: 1024px) {
  .clients .clients__title.clients__title--second {
    grid-area: title-second;
    margin-top: -8px;
  }
}
@media only screen and (min-width: 1366px) {
  .clients .clients__title.clients__title--second {
    margin-top: -6px;
  }
}
.clients .clients__slug {
  margin-bottom: 12px;
}
@media only screen and (min-width: 480px) {
  .clients .clients__slug {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .clients .clients__slug {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .clients .clients__slug {
    grid-area: slug;
    margin-bottom: 0;
  }
}
.clients .clients__wrapper {
  display: none;
}
.clients .clients__wrapper[data-size=default] {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .clients .clients__wrapper[data-size=default] {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .clients .clients__wrapper[data-size=l] {
    display: block;
  }
}
@media only screen and (min-width: 1366px) {
  .clients .clients__wrapper[data-size=l] {
    display: none;
  }
}
@media only screen and (min-width: 1366px) {
  .clients .clients__wrapper[data-size=xl] {
    display: block;
  }
}
.clients .clients__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-content: center;
  margin: 24px auto 0;
  max-width: 288px;
}
@media only screen and (min-width: 480px) {
  .clients .clients__list {
    margin-top: 36px;
    grid-gap: 36px;
    max-width: 312px;
  }
}
@media only screen and (min-width: 768px) {
  .clients .clients__list {
    margin-top: 44px;
    grid-column-gap: 48px;
    grid-row-gap: 44px;
    max-width: 528px;
  }
}
@media only screen and (min-width: 1024px) {
  .clients .clients__list {
    margin-top: 36px;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 28px;
    grid-row-gap: 36px;
    max-width: 776px;
  }
}
@media only screen and (min-width: 1366px) {
  .clients .clients__list {
    grid-template-columns: repeat(5, auto);
    max-width: 100%;
  }
}
.clients .clients__item {
  border-radius: 9px;
  border: 1px solid var(--card-stroke, rgba(255, 255, 255, 0));
  background: var(--back-card, linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0) 108.07%));
  backdrop-filter: blur(6.344537735px);
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .clients .clients__item {
    width: 240px;
    height: 89px;
  }
}
.clients .clients__item img {
  width: 100%;
  max-width: 114px;
  max-height: 23px;
}
@media only screen and (min-width: 768px) {
  .clients .clients__item img {
    max-width: 180px;
    max-height: 31px;
  }
}
.clients .clients__btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clients .clients__btn .button {
  margin-top: 32px;
}
@media only screen and (min-width: 480px) {
  .clients .clients__btn .button {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .clients .clients__btn .button {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .clients .clients__btn .button {
    margin-top: 80px;
  }
}

.feedback {
  padding: 40px 0;
}
.feedback .feedback__cnt {
  padding: 40px 16px;
  border-radius: 13px;
  border: 1px solid #A019FF;
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.25) -6.33%, rgba(255, 255, 255, 0) 108.07%);
  position: relative;
}
.feedback .feedback__header {
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (min-width: 480px) {
  .feedback .feedback__header {
    margin-bottom: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__header {
    display: grid;
    grid-template-areas: "title-first title-first" "slug title-second";
    max-width: 405px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
    justify-items: flex-start;
    grid-row-gap: 24px;
    grid-column-gap: 11px;
    align-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1366px) {
  .feedback .feedback__header {
    grid-row-gap: 10px;
    grid-column-gap: 13px;
  }
}
.feedback .feedback__title {
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 120%;
  }
}
@media only screen and (min-width: 1366px) {
  .feedback .feedback__title {
    font-size: 72px;
    line-height: normal;
  }
}
.feedback .feedback__title.feedback__title--first {
  margin-right: 5px;
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__title.feedback__title--first {
    grid-area: title-first;
  }
}
@media only screen and (min-width: 1024px) {
  .feedback .feedback__title.feedback__title--first {
    margin-left: -5px;
  }
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__title.feedback__title--second {
    grid-area: title-second;
  }
}
@media only screen and (min-width: 1024px) {
  .feedback .feedback__title.feedback__title--second {
    margin-top: -8px;
  }
}
@media only screen and (min-width: 1366px) {
  .feedback .feedback__title.feedback__title--second {
    margin-top: -6px;
  }
}
.feedback .feedback__slug {
  margin-bottom: 20px;
}
@media only screen and (min-width: 480px) {
  .feedback .feedback__slug {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__slug {
    grid-area: slug;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .feedback .feedback__slug {
    margin-bottom: 0;
  }
}
.feedback .feedback__description {
  text-align: center;
  margin: 0 auto 24px;
}
@media only screen and (min-width: 480px) {
  .feedback .feedback__description {
    margin-bottom: 40px;
    max-width: 375px;
  }
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__description {
    margin-bottom: 44px;
  }
}
@media only screen and (min-width: 1024px) {
  .feedback .feedback__description {
    margin-bottom: 40px;
    font-size: 18px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .feedback .feedback__wrapper {
    max-width: 540px;
    margin: 0 auto;
  }
}
.feedback .feedback__form {
  width: 100%;
}
.feedback .feedback__form .feedback__form__input {
  font-family: Lato, sans-serif;
  background: transparent;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 13px 19px;
  color: var(--color-white);
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 24px;
}
.feedback .feedback__form .feedback__form__input:last-child {
  margin-bottom: 0;
}
.feedback .feedback__form .feedback__form__input::placeholder {
  font-family: Lato, sans-serif;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
}
.feedback .feedback__form .feedback__form__input:focus, .feedback .feedback__form .feedback__form__input:active, .feedback .feedback__form .feedback__form__input:target {
  border-color: #A019FF;
  outline: none;
}
.feedback .feedback__form .policy-input__wrap {
  display: flex;
  align-items: center;
  font-family: Lato, sans-serif;
  font-size: 12px;
  margin-bottom: 24px;
  font-weight: 300;
  color: #B0B0B0;
}
.feedback .feedback__form .policy-input__wrap a {
  color: #B0B0B0;
  text-decoration: underline;
}
.feedback .feedback__form .policy-input {
  margin-right: 15px;
}
.feedback .feedback__btn {
  width: 238px;
  margin: 8px auto 0;
}

.services {
  padding: 40px 0;
}
.services .cnt {
  padding: 0;
}
@media only screen and (min-width: 480px) {
  .services {
    padding: 48px 0;
  }
}
@media only screen and (min-width: 768px) {
  .services {
    padding: 40px 0;
  }
  .services .cnt {
    padding: 0 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .services {
    padding: 80px 0;
  }
}
.services__slug {
  margin-bottom: 20px;
  padding-right: 0;
}
.services__header {
  margin-bottom: 45px;
}
@media only screen and (min-width: 1024px) {
  .services__header {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .services .services__list {
    max-width: 626px;
  }
}
.services__targets {
  padding-bottom: 68px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-image: url("../images/services/services-targets-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  box-sizing: border-box;
  min-height: 375px;
}
@media only screen and (min-width: 1024px) {
  .services__targets {
    background-image: url("../images/services/services-targets-bg-1024.svg");
    min-height: 540px;
    background-position: bottom left;
  }
}
@media only screen and (min-width: 1440px) {
  .services__targets {
    background-image: url("../images/services/services-targets-bg-1440.svg");
    padding-bottom: 150px;
  }
}
.services__targets-item {
  padding: 10px 12px;
  font-size: 10.785px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: center;
  border-radius: 2.996px;
  border: 0.599px solid rgba(255, 255, 255, 0);
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0) 108.07%);
  backdrop-filter: blur(5.9918208122px);
  position: relative;
}
@media only screen and (min-width: 480px) {
  .services__targets-item {
    font-size: 13.88px;
    padding: 12px 15px;
  }
}
@media only screen and (min-width: 1440px) {
  .services__targets-item {
    font-size: 18px;
    backdrop-filter: blur(10px);
  }
}
.services__targets-item::before, .services__targets-item:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 12.5px;
  height: 12.5px;
  border: 2px solid #a019ff;
}
.services__targets-item:before {
  top: -1.5px;
  left: -1.5px;
  border-right: none;
  border-bottom: none;
}
.services__targets-item:after {
  bottom: -1.5px;
  right: -1.5px;
  border-top: none;
  border-left: none;
}
.services__targets-item:first-child {
  margin-left: auto;
  margin-bottom: 55px;
}
@media only screen and (min-width: 480px) {
  .services__targets-item:first-child {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 1440px) {
  .services__targets-item:first-child {
    margin-bottom: 107px;
  }
}
.services__targets-item:nth-child(2) {
  margin-bottom: 25px;
  margin-left: 85px;
}
@media only screen and (min-width: 480px) {
  .services__targets-item:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .services__targets-item:nth-child(2) {
    margin-bottom: 52px;
  }
}
.services__targets-item:nth-child(3) {
  margin-left: auto;
  margin-bottom: 22px;
  margin-right: 17px;
}
@media only screen and (min-width: 480px) {
  .services__targets-item:nth-child(3) {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1440px) {
  .services__targets-item:nth-child(3) {
    margin-bottom: 50px;
  }
}
.services__targets-item:nth-child(2n+4) {
  margin-right: auto;
}
.services__targets-item:nth-child(2n+5) {
  margin-left: auto;
}
.services .services__divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.services .services__item {
  position: relative;
  color: var(--color-white);
  border-bottom: 1px solid rgba(var(--color-white), 0.5);
  padding: 32px 0;
  margin: 0 24px;
}
@media only screen and (min-width: 480px) {
  .services .services__item {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
.services .services__item .services__item__counter {
  display: inline-flex;
  width: 72px;
  height: 33px;
  padding: 4px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 29px;
  font-size: 18px;
  border: 1px solid currentColor;
}
.services .services__item .services__item__title {
  font-size: 20px;
  display: grid;
  align-items: center;
  align-content: center;
  grid-template-columns: 72px auto;
  grid-column-gap: 30px;
}
@media only screen and (min-width: 1024px) {
  .services .services__item .services__item__title {
    font-size: 22px;
  }
}
.services .services__item .services__item__description {
  color: var(--color-white);
  display: grid;
  align-items: center;
  align-content: center;
}
@media only screen and (min-width: 768px) {
  .services .services__item .services__item__description {
    grid-template-columns: 72px auto;
    grid-column-gap: 30px;
  }
}
.services .services__item .services__item__targets {
  display: block;
  margin: 0 auto;
  max-width: 470px;
}
@media only screen and (min-width: 1024px) {
  .services .services__item .services__item__targets {
    max-width: 480px;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1440px) {
  .services .services__item .services__item__targets {
    display: none;
  }
}
.services .services__item.services__item--active {
  border-radius: 13px;
  border: 1px solid var(--card-stroke, rgba(255, 255, 255, 0));
  background: var(--back-card, linear-gradient(180deg, rgba(160, 25, 255, 0.25) -6.33%, rgba(255, 255, 255, 0) 108.07%));
  backdrop-filter: blur(10px);
  color: var(--color-purple);
  padding: 40px 16px;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .services .services__item.services__item--active {
    padding: 40px 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .services .services__item.services__item--active {
    padding: 32px 24px;
  }
  .services .services__item.services__item--active .services__item__targets {
    display: block;
    position: absolute;
    top: 0;
    right: -100%;
    padding-left: 0;
    width: 100%;
  }
}
.services .services__item.services__item--active .services__item__title {
  color: currentColor;
  margin-bottom: 24px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .services .services__item.services__item--active .services__item__title {
    margin-bottom: 27px;
    align-items: center;
  }
}
@media only screen and (min-width: 1024px) {
  .services .services__item.services__item--active .services__item__title {
    font-size: 22px;
  }
}
.services .services__item.services__item--active .services__item__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media only screen and (min-width: 1024px) {
  .services .services__item.services__item--active .services__item__description {
    font-size: 18px;
  }
}
.services .services__item.services__item--active .services__divider {
  background: currentColor;
}
.services .services__units {
  margin-top: 48px;
  margin-bottom: 48px;
}
@media only screen and (min-width: 1440px) {
  .services .services__units {
    margin-top: 96px;
  }
}
.services .services__units .services__units__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 20px;
}
.services .services__units .services__units__list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 20px;
}
.services .services__units .services__units__item {
  display: inline-block;
  border-radius: 24px;
  border: 1px solid var(--color-white);
  color: var(--color-grey);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 24px;
}
@media only screen and (min-width: 768px) {
  .services .services__units .services__units__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
  }
}
.services .services__list--new {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 320px;
}
@media only screen and (min-width: 768px) {
  .services .services__list--new {
    max-width: 660px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .services .services__list--new {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
  }
}
.services .services__list--new .services__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  border-radius: 13px;
  border: 0.5px solid #A019FF;
  background: var(--back-card, linear-gradient(180deg, rgba(160, 25, 255, 0.17) 0%, rgba(255, 255, 255, 0) 100%));
  backdrop-filter: blur(10px);
}
.services .services__list--new .services__item__title {
  cursor: inherit;
  display: block;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  max-width: 209px;
}
@media only screen and (min-width: 480px) {
  .services .services__list--new .services__item__title {
    font-size: 28px;
  }
}

.quiz {
  padding: 40px 0;
}
@media only screen and (min-width: 480px) {
  .quiz {
    padding: 48px 0;
  }
}
@media only screen and (min-width: 768px) {
  .quiz {
    padding: 56px 0;
  }
}
.quiz__slug {
  margin-bottom: 20px;
}
.quiz__title {
  margin-bottom: 44px;
}
.quiz__image {
  display: flex;
  margin-bottom: 44px;
}
.quiz__image img {
  width: 100%;
}
.quiz__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 32px;
  text-align: center;
}
.quiz__btn {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .quiz__btn {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title {
    align-items: unset;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__first--text-center, .quiz .h2-title__two--text-center {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__first--text-left, .quiz .h2-title__two--text-left {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__first--text-right, .quiz .h2-title__two--text-right {
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__first {
    order: 1;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__two {
    order: 3;
    text-align: right;
    line-height: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz .h2-title__slug {
    order: 2;
    padding-right: 270px;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz .h2-title__slug {
    padding-right: 80px;
  }
}
.quiz .h2-title__slug--p-0 {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .quiz__content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1024px) {
  .quiz__content {
    gap: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz__col {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .quiz__text {
    text-align: left;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz__text {
    font-size: 18px;
  }
}
.quiz-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  display: flex;
  align-items: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
@media only screen and (min-width: 480px) {
  .quiz-popup {
    padding: 50px 32px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz-popup {
    padding: 100px 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz-popup {
    padding: 150px 64px;
  }
}
.quiz-popup .popup-content {
  height: auto;
  min-height: 65vh;
  max-height: 96vh;
  width: 100%;
  padding: 44px 20px;
  margin: 0 auto;
  background-color: #a019ff;
  max-width: 895px;
  border-radius: 13px;
  overflow-y: auto;
}
.quiz-popup .popup-content .cnt {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .popup-content {
    background-image: url("../images/quiz/bg/quiz-pu-bg-768.svg");
    background-position: left bottom;
    background-repeat: no-repeat;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz-popup .popup-content {
    background-image: url("../images/quiz/bg/quiz-pu-bg-1024.svg");
  }
}
.quiz-popup--final .popup-content {
  background-image: none;
}
.quiz-popup__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .quiz-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz-popup__header {
    margin-bottom: 60px;
  }
}
.quiz-popup__header .tag {
  justify-content: flex-start;
}
.quiz-popup__header .quiz__btn {
  justify-content: flex-end;
}
.quiz-popup__question-count {
  margin-top: 36px;
  margin-bottom: 36px;
  grid-column: 1/3;
  grid-row: 2;
}
@media only screen and (min-width: 480px) {
  .quiz-popup__question-count {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz-popup__question-count {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.quiz-popup__question-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 7px;
}
.quiz-popup__question-number {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.quiz-popup__question-number--now {
  color: #ffd455;
}
@media only screen and (min-width: 768px) {
  .quiz-popup__question-number {
    font-size: 22px;
  }
}
.quiz-popup__question-indicator {
  margin-top: 16px;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .quiz-popup__question-indicator {
    margin-top: 20px;
  }
}
.quiz-popup__question-indicator_item {
  height: 4px;
  width: 26px;
  background: #fff;
}
.quiz-popup__question-indicator_item.colored {
  background: #ffd455;
}
.quiz-popup .quiz__question {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .quiz-popup .quiz__question {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 36px;
  }
}
.quiz-popup .quiz__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 36px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__description {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz-popup .quiz__description {
    font-size: 20px;
  }
}
.quiz-popup .quiz__controls {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media only screen and (min-width: 480px) {
  .quiz-popup .quiz__controls {
    flex-direction: row;
    gap: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__controls {
    margin-top: 48px;
  }
}
.quiz-popup .quiz__controls button {
  transition: all 0.2s ease;
}
.quiz-popup .quiz__controls button:hover {
  background: #6426aa;
  color: #fff;
  opacity: 1;
}
.quiz-popup .quiz__controls button:hover .button-dotted {
  background: #fff;
}
.quiz-popup .quiz__finish {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quiz-popup .quiz__finish-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  .quiz-popup .quiz__finish-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__finish-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 48px;
  }
}
.quiz-popup .quiz__finish-btn button {
  transition: all 0.2s ease;
}
.quiz-popup .quiz__finish-btn button:hover {
  background: #6426aa;
  color: #fff;
  opacity: 1;
}
.quiz-popup .quiz__finish-btn button:hover .button-dotted {
  background: #fff;
}
.quiz-popup .quiz__items {
  display: none;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}
.quiz-popup .quiz__items--mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__items--mobile {
    display: none !important;
  }
}
.quiz-popup .quiz__items--mobile .swiper-slide {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
}
.quiz-popup .quiz__items--mobile .swiper-slide .quiz__item {
  width: auto;
}
.quiz-popup .quiz__items--mobile .swiper-slide img {
  width: auto;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__items {
    display: flex;
  }
}
.quiz-popup .quiz__item {
  display: flex;
  flex-direction: column;
  border-radius: 13px;
  gap: 16px;
  width: 30.8%;
  padding: 16px;
  border: 1px solid #fff;
  max-width: 250px;
  background: linear-gradient(180deg, rgba(160, 25, 255, 0.17) -6.33%, rgba(255, 255, 255, 0) 108.07%);
}
.quiz-popup .quiz__item-image {
  height: auto;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}
.quiz-popup .quiz__item-text ul {
  margin-left: 16px;
}
.quiz-popup .quiz__item-text li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
}
.quiz-popup .quiz__item--grow {
  flex-grow: 1;
}
.quiz-popup .quiz__variants {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__variants {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 1024px) {
  .quiz-popup .quiz__variants {
    gap: 40px;
  }
}
.quiz-popup .quiz__variants-btn {
  padding: 8px 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  background: transparent;
  color: #fff;
  border-radius: 24px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .quiz-popup .quiz__variants-btn {
    font-size: 22px;
  }
}
.quiz-popup .quiz__variants-btn:hover {
  background: #6426aa;
  color: #fff;
  opacity: 1;
  border-color: transparent;
}
.quiz-popup .quiz__variants-btn:hover .button-dotted {
  background: #fff;
}
.quiz-popup .quiz__variants-btn.active {
  background: #fff;
  color: #6426aa;
}

.units {
  padding: 40px 0;
  overflow: hidden;
}
@media only screen and (min-width: 480px) {
  .units {
    padding: 48px 0;
  }
}
@media only screen and (min-width: 768px) {
  .units {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .units {
    padding: 80px 0;
  }
}
.units__header {
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .units__header {
    margin-bottom: 107px;
  }
}
@media only screen and (min-width: 1024px) {
  .units__slug {
    padding-left: 220px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1366px) {
  .units__slug {
    padding-left: 100px;
    padding-right: 0;
  }
}
.units__slider {
  list-style: none;
  display: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  height: 100%;
  perspective: 300px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .units__slider {
    display: flex;
    margin-bottom: 107px;
  }
}
.units__slider-mobile {
  display: flex;
  list-style: none;
}
.units__slider-mobile.swiper {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .units__slider-mobile.swiper {
    display: none;
  }
}
.units__slider-mobile.swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 100%;
  max-width: 280px;
  overflow: hidden;
}
.units__slider-mobile.swiper .swiper-slide img {
  object-fit: contain;
  min-width: auto;
}
.units__slider-wrap {
  width: 100%;
  height: 489px;
  position: relative;
  perspective: 1000px;
  margin-top: 50px;
  display: none;
}
@media only screen and (min-width: 1024px) {
  .units__slider-wrap {
    display: block;
  }
}
.units__slider-bg {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.3s ease;
}
.units__slider-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.units__slider-item {
  position: absolute;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 516px;
  height: 489px;
  left: calc(50% - 258px);
  top: 50%;
  transform: translateY(-50%);
  padding: 25px;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  border: 1px solid #A019FF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -6.33%, rgba(160, 25, 255, 0.17) 108.07%);
  backdrop-filter: blur(4px);
}
.units__slider-item[data-pos="-1"] {
  opacity: 1;
  transform: translateX(-93%) translateY(-50%) scale(0.85) rotateY(-7deg);
  z-index: 4;
}
.units__slider-item[data-pos="1"] {
  opacity: 1;
  transform: translateX(93%) translateY(-50%) scale(0.85) rotateY(7deg);
  z-index: 4;
}
.units__slider-item[data-pos="-2"] {
  opacity: 1;
  transform: translateX(-151%) translateY(-50%) scale(0.68) rotateY(-6deg);
  z-index: 3;
}
.units__slider-item[data-pos="2"] {
  opacity: 1;
  transform: translateX(151%) translateY(-50%) scale(0.68) rotateY(6deg);
  z-index: 3;
}
.units__slider-item[data-pos="-3"] {
  opacity: 1;
  transform: translateX(-190%) translateY(-50%) scale(0.55) rotateY(-5deg);
  z-index: 2;
}
.units__slider-item[data-pos="3"] {
  opacity: 1;
  transform: translateX(190%) translateY(-50%) scale(0.55) rotateY(5deg);
  z-index: 2;
}
.units__slider-item--active[data-pos="0"] {
  opacity: 1;
  z-index: 5;
}
.units__slider-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.units__slider-item:hover .units__slider-bg {
  opacity: 1;
}
.units__slider-item:hover a {
  opacity: 0;
}
.units__slider-item_mobile {
  padding: 92px 25px;
  height: 280px;
  width: 280px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  background: #a019ff;
}
.units__slider-image {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
.units__slider-image img {
  width: 100%;
  max-height: 100px;
  min-width: 400px;
  object-fit: contain;
}
.units__slider-text {
  display: inline-block;
  text-align: center;
  border-radius: 34px;
  border: 1.5px solid #fff;
  padding: 8px 24px;
  font-size: 12px;
  font-style: normal;
  color: #fff;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

@keyframes slideInHeader {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
@keyframes slideInHeaderReverse {
  from {
    top: 0;
  }
  to {
    top: -100px;
  }
}
.header .header__menu--desktop {
  display: none;
}
@media only screen and (min-width: 1366px) {
  .header .header__menu--desktop {
    display: block;
  }
}
@media only screen and (min-width: 1366px) {
  .header .header__menu--mobile {
    display: none;
  }
}
.header .header__menu__toggle {
  position: relative;
  z-index: 3;
}
.header .header__nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  background-image: url("../images/core/bg/header-menu-bg.png");
  z-index: 2;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .header__nav .nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1024px) {
  .header .header__nav .nav__list {
    gap: 36px;
    margin-bottom: 48px;
  }
}
.header .header__nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.header .header__nav.open {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.header {
  position: fixed;
  padding-top: 50px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 24px 0;
  }
}
@media only screen and (min-width: 1366px) {
  .header {
    padding: 0;
    padding-top: 30px;
  }
}
.header__left {
  position: relative;
  z-index: 3;
}
.header .header__cnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__logo {
  display: inline-block;
  width: 160px;
}
@media only screen and (min-width: 768px) {
  .header .header__logo {
    width: 244px;
  }
}
@media only screen and (min-width: 1366px) {
  .header .header__logo {
    width: 234px;
    margin-right: 69px;
  }
}
@media only screen and (min-width: 1366px) {
  .header .header__left {
    border-radius: 16px;
    background: rgba(13, 13, 13, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    padding: 18px 36px;
  }
}
.header .header__buttons {
  display: none;
}
@media only screen and (min-width: 1366px) {
  .header .header__buttons {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 16px;
  }
}
.header--not-fixed {
  animation: slideInHeaderReverse 0.2s forwards;
}
.header--fixed {
  background: rgba(13, 13, 13, 0.5);
  position: fixed;
  padding: 24px 0;
}
@media only screen and (min-width: 1366px) {
  .header--fixed {
    padding-top: 30px;
    padding-bottom: 30px;
    background: transparent;
    padding-bottom: 0;
    animation: slideInHeader 0.2s forwards;
  }
}

.nav .nav__list {
  list-style: none;
}
@media only screen and (min-width: 1366px) {
  .nav .nav__list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-column-gap: 54px;
  }
}
.nav .nav__item {
  font-size: 32px;
  font-weight: 500;
}
@media only screen and (min-width: 1024px) {
  .nav .nav__item {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1366px) {
  .nav .nav__item {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
  }
}
.nav .nav__item a {
  color: var(--color-white);
  transition: color 0.25s ease-in-out;
}
.nav .nav__item a:hover {
  color: var(--color-purple);
}

.footer {
  background: var(--color-footer-bg);
}
.footer .footer__info {
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer .footer__info {
    padding: 32px 0 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer__info {
    padding: 32px 0;
  }
}
.footer .footer__info .footer__info__cnt {
  display: grid;
  grid-template-areas: "logo" "links" "holding";
}
@media only screen and (min-width: 768px) {
  .footer .footer__info .footer__info__cnt {
    text-align: left;
    grid-template-areas: "logo holding" "links holding";
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer__info .footer__info__cnt {
    align-items: flex-start;
    grid-template-areas: "logo links holding";
    grid-template-columns: 201px auto auto;
    grid-column-gap: 48px;
  }
}
.footer .footer__logo {
  grid-area: logo;
}
.footer .footer__links {
  grid-area: links;
  margin-top: 24px;
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .footer .footer__links {
    margin: 0;
  }
}
.footer .footer__links ul {
  list-style: none;
}
.footer .footer__links ul li {
  margin-bottom: 8px;
  text-align: inherit;
}
.footer .footer__links ul li a {
  color: var(--color-text-white);
  opacity: 0.8;
}
.footer .footer__links ul li a:hover {
  opacity: 1;
}
.footer .footer__holding {
  grid-area: holding;
}
@media only screen and (min-width: 768px) {
  .footer .footer__holding {
    text-align: right;
  }
}
.footer .footer__socials {
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .footer .footer__socials {
    text-align: right;
    margin-top: 16px;
  }
}
.footer .footer__socials .footer__socials__item {
  margin-left: 16px;
  width: 48px;
  height: 48px;
  text-decoration: none;
}
.footer .footer__copyright {
  padding: 24px 16px 48px;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-text-white);
  opacity: 0.8;
}
@media only screen and (min-width: 480px) {
  .footer .footer__copyright {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .footer .footer__copyright {
    padding: 28px 0 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer__copyright {
    padding: 28px 0;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  font-family: Lato, sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

img {
  display: inline-block;
}

.cnt {
  width: 100%;
  padding: 0 16px;
}
@media only screen and (min-width: 480px) {
  .cnt {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 768px) {
  .cnt {
    padding: 0 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .cnt {
    padding: 0 64px;
  }
}
@media only screen and (min-width: 1366px) {
  .cnt {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0;
  }
}

a {
  text-decoration: none;
}

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