@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "TT Firs Neue";
  src: url("../fonts/TTFirsNeue-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  font-family: "Montserrat";
}

body {
  margin: 0;
  padding: 0;
  background: var(--Gray-700, #101010);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
}

.wrapper {
  overflow: hidden;
}

.list-reset {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.btn-reset {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.input-reset {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 440px) {
  .container {
    padding: 0 16px;
  }
}

.cirlcle-filter-rose {
  width: 251px;
  height: 256px;
  background: #e499ff;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  position: absolute;
  pointer-events: none;
}
@media (max-width: 440px) {
  .cirlcle-filter-rose {
    width: 164px;
    height: 164px;
  }
}

.cirlcle-filter-purple {
  width: 251px;
  height: 256px;
  background: #6067ee;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  position: absolute;
  pointer-events: none;
}
@media (max-width: 440px) {
  .cirlcle-filter-purple {
    width: 164px;
    height: 164px;
  }
}

/* Убираем стрелки в Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убираем стрелки в Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-reset.active {
  opacity: 1 !important;
}

.header {
  border-bottom: 1px solid var(--Gray-500, #353535);
  background: var(--luiqid-glass, rgba(23, 23, 23, 0.2));
  background-blend-mode: screen;
  backdrop-filter: blur(16.5px);
  padding: 18px 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 333;
}
@media (max-width: 1080px) {
  .header {
    padding: 20px 0;
  }
}
@media (max-width: 1080px) {
  .header__logo img {
    width: 64px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 1080px) {
  .header__list {
    display: none;
  }
}
.header__list-link {
  color: var(--Gray-300, #8e8e8e);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0;
  position: relative;
}
.header__list-link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background-color: #e59cff;
}
@media (min-width: 1080px) {
  .header__list-link:hover {
    color: var(--Gray-100, #d2d2d2);
  }
}
.header__list-link:hover::before {
  width: 100%;
}
.header__btn {
  border-radius: 8.908px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--Gray-700, #101010);
  font-family: "TT Firs Neue";
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}
.header__btn:active {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, #e59cff), color-stop(148.83%, #6067ee));
  background: linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%);
}
.header__btn:hover {
  background-color: var(--Gray-200, #b4b4b4);
}
@media (max-width: 1080px) {
  .header__btn {
    padding: 9px 24px;
  }
}
@media (max-width: 1080px) and (max-width: 1080px) {
  .header__btn {
    display: none;
  }
}
.header__border-menu {
  display: none;
}
@media (max-width: 1080px) {
  .header__border-menu {
    display: block;
  }
}

.menu-phone {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  background: var(--Gray-700, #101010);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  z-index: 30;
  max-height: 0;
  overflow: auto;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  height: 100vh;
  padding-bottom: 20px;
}
.menu-phone.active {
  max-height: 100vh;
}
.menu-phone__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 70px;
  padding: 30px 16px 0 16px;
  width: 100%;
}
.menu-phone__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-top: 132px;
}
.menu-phone__list-link {
  color: var(--Gray-300, #8e8e8e);
  /* montserrat/title/large-medium */
  font-size: 20px;
  font-weight: 500;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (min-width: 1080px) {
  .menu-phone__list-link:hover {
    color: #fff;
  }
}
.menu-phone .footer__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.menu-phone .footer__end .footer-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu-phone .header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 138px;
  margin: 0 auto;
}

.menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}

.hero {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1080px) {
  .hero {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
}
.hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 728px;
}
.hero-content__muted {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-blend-mode: screen;
  -webkit-box-shadow: 0 -7.79px 12.25px 0 rgba(164, 143, 255, 0.12) inset;
          box-shadow: 0 -7.79px 12.25px 0 rgba(164, 143, 255, 0.12) inset;
  backdrop-filter: blur(3.4000000954px);
  padding: var(--Space-m, 8px) var(--Space-xl, 28px);
}
@media (max-width: 1080px) {
  .hero-content__muted {
    padding: 8px 18px;
  }
}
.hero-content__muted-text {
  color: var(--Base-White, #fff);
  text-align: center;
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(0.75rem, 0.655rem + 0.34vw, 1rem);
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.hero-content__title {
  color: var(--Base-White, #fff);
  text-align: center;
  font-size: clamp(1.5rem, 0.647rem + 3.1vw, 3.75rem);
  font-weight: 500;
  line-height: 110%; /* 66px */
  letter-spacing: var(--Letter-Spacing-None, 0);
  margin: 24px 0;
}
.hero-content__title span {
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content__subtitle {
  color: #d1d5db;
  text-align: center;
  font-size: clamp(0.875rem, 0.828rem + 0.17vw, 1rem);
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-bottom: 24px;
}
@media (max-width: 440px) {
  .hero-content__subtitle {
    line-height: 120%; /* 22.4px */
  }
}
.hero-content__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26.724px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
@media (max-width: 440px) {
  .hero-content__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    top: 10px;
  }
}
.hero-content__actions-btn {
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(0.875rem, 0.828rem + 0.17vw, 1rem);
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-content__actions-btn.cons {
  color: #f4f0ff;
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid #6067ee;
  background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), -webkit-gradient(linear, left top, left bottom, from(rgba(243, 238, 255, 0)), to(rgba(243, 238, 255, 0.04))), rgba(96, 103, 238, 0.4);
  background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, 0.04) 100%), rgba(96, 103, 238, 0.4);
  -webkit-box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
          box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
}
@media (min-width: 1080px) {
  .hero-content__actions-btn.cons:hover {
    border-radius: 12px;
    border: 1px solid #6067ee;
    background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), -webkit-gradient(linear, left top, left bottom, from(rgba(243, 238, 255, 0)), to(rgba(243, 238, 255, 0.04))), rgba(96, 103, 238, 0.01);
    background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, 0.04) 100%), rgba(96, 103, 238, 0.01);
    -webkit-box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
            box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
  }
}
.hero-content__actions-btn.cons:active {
  border-radius: 12px;
  border: 1px solid #6067ee;
  background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), -webkit-gradient(linear, left top, left bottom, from(rgba(243, 238, 255, 0)), to(rgba(243, 238, 255, 0.04))), rgba(96, 103, 238, 0.4);
  background: radial-gradient(103.15% 103.15% at 50.39% 114.1%, rgba(96, 103, 238, 0.86) 0%, rgba(53, 41, 128, 0) 100%), linear-gradient(180deg, rgba(243, 238, 255, 0) 0%, rgba(243, 238, 255, 0.04) 100%), rgba(96, 103, 238, 0.4);
  -webkit-box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
          box-shadow: 0 4px 4px 0 rgba(30, 13, 73, 0.25) inset, 0 2px 5px 0 rgba(16, 0, 51, 0.25), 0 9px 9px 0 rgba(16, 0, 51, 0.25), 0 21px 12px 0 rgba(16, 0, 51, 0.12), 0 37px 15px 0 rgba(16, 0, 51, 0.06), 0 4px 4px 0 rgba(16, 0, 51, 0.25), 0 0 2.1px 0 rgba(255, 255, 255, 0.25) inset, 0 -8.91px 35px 0 #1e0d49 inset;
}
@media (max-width: 440px) {
  .hero-content__actions-btn.cons {
    max-width: 150px;
    width: 100%;
  }
}
.hero-content__actions-btn.learn-more {
  color: var(--Gray-300, #8e8e8e);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-content__actions-btn.learn-more:hover {
  color: var(--Base-White, #fff);
}
.hero-content__actions-btn.learn-more:hover svg path {
  fill: #fff;
}
.hero-content__actions-btn.learn-more:active {
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content__actions-btn.learn-more:active svg path {
  fill: #e59cff;
}
.hero-content__actions-btn.learn-more:active svg * {
  -webkit-transition: none !important;
  transition: none !important;
}
.hero-content__actions-btn.learn-more span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-content__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 60px;
}
.hero-content__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--Space-m, 8px);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  text-align: center;
}
.hero-content__info-count {
  text-align: center;
  /* tt firs neue/headline/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(1.5rem, 1.31rem + 0.69vw, 2rem);
  font-weight: 500;
  line-height: 110%; /* 35.2px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-content__info-subtitle {
  color: var(--Base-White, #fff);
  text-align: center;
  /* tt firs neue/title/small-regular */
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(0.75rem, 0.703rem + 0.17vw, 0.875rem);
  font-weight: 400;
  line-height: 110%; /* 15.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}

.service {
  position: relative;
}
.service__title {
  text-align: center;
  font-size: clamp(1.5rem, 0.789rem + 2.59vw, 3.375rem);
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: var(--Heading-H3_Semibold-Letter-Spacing, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 125px;
  padding-bottom: 16px;
}
@media (max-width: 1080px) {
  .service__title {
    padding-top: 54px;
  }
}
.service__subtitle {
  color: var(--Gray-200, #b4b4b4);
  text-align: center;
  /* montserrat/title/large-regular */
  font-size: clamp(0.875rem, 0.733rem + 0.52vw, 1.25rem);
  font-weight: 400;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-bottom: 32px;
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1080px) {
  .service__subtitle {
    padding: 0 10px;
  }
}

.service-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1080px) {
  .service-blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 26px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}
@media (max-width: 768px) {
  .service-blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.service-blocks__item {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 34px 28px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--Space-2xs, 2px);
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.service-blocks__item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.service-blocks__item:hover::before {
  opacity: 0;
}
@media (max-width: 440px) {
  .service-blocks__item {
    padding: 27px 22px;
  }
}
.service-blocks__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4196078431), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.service-blocks__item-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background: var(--Base-White, #fff);
}
@media (max-width: 440px) {
  .service-blocks__item-icon {
    width: 54px;
    height: 54px;
  }
}
.service-blocks__item-title {
  margin: 14px 0 13px 0;
  color: var(--Base-White, #fff);
  /* montserrat/title/large-medium */
  font-size: 20px;
  font-weight: 500;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.service-blocks__item-subtitle {
  color: var(--Gray-100, #d2d2d2);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-bottom: 18px;
}
@media (max-width: 440px) {
  .service-blocks__item-subtitle {
    margin-bottom: 17px;
    line-height: 120%;
    font-size: 14px;
  }
}
.service-blocks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--Space-l, 12px);
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}
@media (max-width: 440px) {
  .service-blocks__list {
    gap: 14px;
  }
}
.service-blocks__list-item p {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/medium-light */
  font-size: 16px;
  font-weight: 300;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  display: block;
  position: relative;
  padding-left: 20px;
}
.service-blocks__list-item p::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
  background: var(--Base-White, #fff);
  width: 8px;
  height: 8px;
}
.service-blocks__item-link {
  color: var(--Base-White, #fff);
  /* tt firs neue/title/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 12px 0;
  margin-top: 20px;
  width: 100%;
  -webkit-transition: 0.2s ease !important;
  transition: 0.2s ease !important;
}
.service-blocks__item-link:hover {
  color: #e59cff;
}
.service-blocks__item-link:hover svg path {
  fill: #e59cff;
}
@media (max-width: 440px) {
  .service-blocks__item-link {
    margin-top: 34px;
    font-size: 14px;
  }
}
.service-blocks__item-link span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service .cirlcle-filter-rose {
  right: -10vw;
  bottom: 0;
}

.achievements {
  position: relative;
}
.achievements .cirlcle-filter-purple {
  left: -10vw;
  bottom: 0;
}
.achievements__subtitle {
  color: var(--Gray-200, #b4b4b4);
  font-size: clamp(1rem, 0.905rem + 0.34vw, 1.25rem);
  font-weight: 400;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-top: 100px;
}
@media (max-width: 1080px) {
  .achievements__subtitle {
    margin-top: 70px;
    margin-bottom: 16px;
  }
}
.achievements__title {
  color: var(--Base-White, #fff);
  /* montserrat/display/medium-medium */
  font-size: clamp(2rem, 1.478rem + 1.9vw, 3.375rem);
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: var(--Heading-H3_Semibold-Letter-Spacing, 0);
  padding: 16px 0 32px 0;
}

.achievements-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) {
  .achievements-info {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.achievements-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.achievements-info__item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.achievements-info__item:hover::before {
  opacity: 0;
}
@media (max-width: 440px) {
  .achievements-info__item {
    min-height: 232px;
  }
}
.achievements-info__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4509803922), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.achievements-info__item-count {
  /* montserrat/display/large-medium */
  font-size: clamp(2.625rem, 2.198rem + 1.55vw, 3.75rem);
  font-weight: 500;
  line-height: 110%; /* 66px */
  letter-spacing: var(--Letter-Spacing-None, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}
.achievements-info__item-title {
  color: var(--Base-White, #fff);
  /* montserrat/headline/small-medium */
  font-size: clamp(1.25rem, 1.155rem + 0.34vw, 1.5rem);
  font-weight: 500;
  line-height: 110%; /* 26.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.achievements-info__item-subtitle {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/medium-medium */
  font-size: clamp(0.875rem, 0.828rem + 0.17vw, 1rem);
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-top: 8px;
}

.achievements-stage {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.achievements-stage .achievements-stage__item-subtitle {
  margin: 8px 0 20px 0;
}
.achievements-stage .achievements-stage__item-subtitle.sep {
  margin-bottom: 0 !important;
}
@media (max-width: 1080px) {
  .achievements-stage {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.achievements-stage__item {
  position: relative;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  padding: 36px 32px;
  position: relative;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.achievements-stage__item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.achievements-stage__item:hover::before {
  opacity: 0;
}
@media (max-width: 440px) {
  .achievements-stage__item {
    min-height: 232px;
  }
}
.achievements-stage__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4509803922), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.achievements-stage__item .contentss {
  position: absolute;
  bottom: 32px;
}
@media (max-width: 1080px) {
  .achievements-stage__item .contentss {
    position: static;
  }
}
.achievements-stage__item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.achievements-stage__item:hover::before {
  opacity: 0;
}
@media (max-width: 440px) {
  .achievements-stage__item {
    min-height: 232px;
  }
}
.achievements-stage__item.invers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.achievements-stage__item.invers .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.achievements-stage__item.invers .achievements-stage__item-count {
  margin-bottom: 0 !important;
}
@media (max-width: 440px) {
  .achievements-stage__item.invers .achievements-stage__item-count img {
    height: 100px;
  }
}
.achievements-stage__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4509803922), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.achievements-stage__item-count {
  /* montserrat/display/large-medium */
  font-size: clamp(2.625rem, 2.198rem + 1.55vw, 3.75rem);
  font-weight: 500;
  line-height: 110%; /* 66px */
  letter-spacing: var(--Letter-Spacing-None, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.achievements-stage__item-title {
  color: var(--Base-White, #fff);
  /* montserrat/headline/small-medium */
  font-size: clamp(1.25rem, 1.155rem + 0.34vw, 1.5rem);
  font-weight: 500;
  line-height: 110%; /* 26.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.achievements-stage__item-subtitle {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/medium-medium */
  font-size: clamp(0.875rem, 0.828rem + 0.17vw, 1rem);
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}

.achievements__text-subtitle {
  color: var(--Base-White, #fff);
  text-align: center;
  /* montserrat/display/small-medium */
  font-size: clamp(1.25rem, 0.728rem + 1.9vw, 2.625rem);
  font-weight: 500;
  line-height: 130%; /* 54.6px */
  letter-spacing: var(--Heading-H4_Semibold-Letter-Spacing, 0);
  margin-top: 144px;
}
@media (max-width: 440px) {
  .achievements__text-subtitle {
    line-height: 110%;
    margin-top: 68px;
  }
}
.achievements__text-subtitle span {
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievements-stage__height .achievements-stage__item-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.achievements-stage__height .counts {
  color: var(--Gray-200, #b4b4b4) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 142.857% !important;
}
@media (max-width: 440px) {
  .achievements-stage__height .counts {
    font-size: 8px !important;
  }
}
.achievements-stage__height .counts:nth-child(2) {
  font-weight: 700 !important;
}

.achievements-stage__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.achievements-stage__items:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.achievements-stage__items:hover::before {
  opacity: 0;
}
@media (max-width: 440px) {
  .achievements-stage__items {
    min-height: 232px;
  }
}
.achievements-stage__items::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4509803922), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.achievements-stage__item-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: center;
  width: 100%;
}

.achievements-stage__stage-sep {
  max-width: 100%;
  width: 100%;
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-blend-mode: screen;
  margin: 4px 0;
  display: block;
}

/* стартовое состояние для элементов */
.achievements-init {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.achievements-show {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

/* рост столбцов */
.achievements-stage__stage-sep {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.6s ease;
  transition: height 0.6s ease;
}
.achievements-stage__stage-sep {
  height: 0; /* стартуем с 0 */
  -webkit-transition: height 0.6s ease;
  transition: height 0.6s ease; /* плавная анимация */
  overflow: hidden;
}

.achievements-stage__items {
  width: 100%;
}
@media (min-width: 1080px) {
  .achievements-stage__items {
    min-height: 260px;
  }
  .achievements-stage__items .achievements-stage__item-items {
    min-height: 112px;
  }
}
@media (min-width: 1080px) and (max-width: 440px) {
  .achievements-stage__items .achievements-stage__item-items {
    min-height: 280px;
  }
}

@media (max-width: 1080px) {
  .achievements-stage__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (max-width: 1080px) {
  .advantages .cirlcle-filter-purple {
    display: none;
  }
}
.advantages__title {
  padding-top: clamp(1.5rem, 0.552rem + 3.45vw, 4rem);
  padding-bottom: 32px;
  color: var(--Base-White, #fff);
  text-align: center;
  /* montserrat/display/medium-medium */
  font-size: clamp(1.5rem, 0.789rem + 2.59vw, 3.375rem);
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: var(--Heading-H3_Semibold-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .advantages__title {
    padding: 48px 0 24px 0;
  }
}
.advantages__blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 440px) {
  .advantages__blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.advantages__blocks-item {
  position: relative;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  padding: var(--Space-3xl, 32px);
  border-radius: 12px;
  background: var(--luiqid-glass, rgba(23, 23, 23, 0.2));
  background-blend-mode: screen;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.advantages__blocks-item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.advantages__blocks-item:hover::before {
  opacity: 0;
}
.advantages__blocks-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4509803922), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.advantages__blocks-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: var(--Base-White, #fff);
  margin-bottom: 50px;
}
.advantages__blocks-title {
  margin-bottom: 8px;
  color: var(--Base-White, #fff);
  font-size: clamp(1.25rem, 1.155rem + 0.34vw, 1.5rem);
  font-weight: 500;
  line-height: 110%; /* 26.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.advantages__blocks-subtitle {
  color: var(--Gray-300, #8e8e8e);
  font-size: clamp(0.875rem, 0.828rem + 0.17vw, 1rem);
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}

.advantages__text {
  color: var(--Base-White, #fff);
  text-align: center;
  /* montserrat/display/small-medium */
  font-size: 42px;
  font-weight: 500;
  line-height: 130%; /* 54.6px */
  letter-spacing: var(--Heading-H4_Semibold-Letter-Spacing, 0);
  margin: 64px 0 30px 0;
}
@media (max-width: 440px) {
  .advantages__text {
    margin: 44px 0 30px 0;
  }
}
.advantages__text span {
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.advantages__text-subtitle {
  max-width: 1154px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 0.728rem + 1.9vw, 2.625rem);
}
@media (max-width: 440px) {
  .advantages__text-subtitle {
    line-height: 110%;
  }
}
.advantages__list {
  max-width: 638px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 440px) {
  .advantages__list {
    margin-top: 36px;
    gap: 23px;
  }
}
.advantages__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 440px) {
  .advantages__list-item {
    gap: 24px;
  }
}
@media (max-width: 440px) {
  .advantages__list-item span img {
    max-width: 30px;
  }
}
.advantages__list-item p {
  color: var(--Base-White, #fff);
  font-size: clamp(1rem, 0.81rem + 0.69vw, 1.5rem);
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .advantages__list-item p {
    gap: 24px;
    max-width: 268px;
  }
}

.advantages .cirlcle-filter-purple {
  right: -10vw;
  bottom: 0px;
}

.portfolio {
  position: relative;
}
.portfolio__title {
  padding: 144px 0 16px 0;
  color: var(--Base-White, #fff);
  text-align: center;
  /* montserrat/display/medium-medium */
  font-size: clamp(1.5rem, 0.789rem + 2.59vw, 3.375rem);
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: var(--Heading-H3_Semibold-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .portfolio__title {
    padding: 70px 0 16px 0;
  }
}
.portfolio__subtitle {
  margin-bottom: 32px;
  color: var(--Gray-200, #b4b4b4);
  text-align: center;
  /* montserrat/title/large-regular */
  font-size: clamp(1rem, 0.905rem + 0.34vw, 1.25rem);
  font-weight: 400;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .portfolio__subtitle {
    margin-bottom: 26px;
  }
}
.portfolio .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .portfolio .content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.portfolio__start {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--Space-2xs, 2px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  max-width: 472px;
  width: 100%;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .portfolio__start {
    max-width: 100%;
    padding: 26px 14px;
  }
}
.portfolio__start::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4196078431), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.portfolio__info {
  color: var(--Base-White, #fff);
  text-align: center;
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(1rem, 0.858rem + 0.52vw, 1.375rem);
  font-weight: 500;
  line-height: 100%; /* 22px */
}
.portfolio__count {
  text-align: center;
  margin: 12px 0;
  font-size: clamp(1.5rem, 1.073rem + 1.55vw, 2.625rem);
  font-weight: 500;
  line-height: 130%; /* 54.6px */
  letter-spacing: var(--Heading-H4_Semibold-Letter-Spacing, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .portfolio__count {
    margin-bottom: 4px;
  }
}
.portfolio__muted {
  color: var(--Gray-300, #8e8e8e);
  font-size: 14px;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  margin-bottom: 24px;
}
.portfolio__muted span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: var(--Space-2xs, 2px) var(--Space-xs, 4px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  border-radius: 10px;
  background: var(--green-badge, linear-gradient(90deg, #9cffb1 0%, #6067ee 99.93%));
  background-blend-mode: screen;
  color: var(--Gray-700, #101010);
  /* montserrat/body/medium-semibold */
  font-size: 10px;
  font-weight: 600;
  line-height: 120%; /* 12px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.portfolio__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.portfolio__end img {
  pointer-events: none;
}
@media (max-width: 768px) {
  .portfolio__end img {
    position: relative;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 440px) {
  .portfolio__end img {
    -webkit-transform: scale(2.2) translateX(-22px) translateY(-7px);
            transform: scale(2.2) translateX(-22px) translateY(-7px);
  }
}

.portfolio-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
@media (max-width: 440px) {
  .portfolio-blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.portfolio-blocks__item {
  border-radius: 12px;
  background: var(--Gray-600, #171717);
  padding: 14px;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
}
.portfolio-blocks__item.active {
  border-color: #e59cff;
}
.portfolio-blocks__item:hover {
  border-color: #e59cff;
}
@media (max-width: 440px) {
  .portfolio-blocks__item {
    padding: 16px 20px;
  }
}
.portfolio-blocks__item:nth-child(1) {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
}
.portfolio-blocks__item:nth-child(3) {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.portfolio-blocks__item:nth-child(3) .portfolio-blocks__item-range {
  border-radius: 10px;
  background: var(--red-badge, linear-gradient(90deg, #f0654c 0%, #6067ee 99.93%));
  background-blend-mode: screen;
}
.portfolio-blocks__item-title {
  margin-bottom: 6px;
  color: var(--Base-White, #fff);
  font-family: "TT Firs Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.portfolio-blocks__item-range {
  border-radius: 10px;
  background: var(--green-badge, linear-gradient(90deg, #9cffb1 0%, #6067ee 99.93%));
  background-blend-mode: screen;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: var(--Space-2xs, 2px) var(--Space-xs, 4px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: var(--Gray-700, #101010);
  /* montserrat/body/medium-semibold */
  font-family: Montserrat;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 12px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.portfolio-blocks__item-range span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.portfolio-blocks__range {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 8px 1fr;
  grid-template-columns: 3fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 12px;
}
@media (max-width: 440px) {
  .portfolio-blocks__range {
    -ms-grid-columns: 7fr 1fr;
    grid-template-columns: 7fr 1fr;
    margin-top: 8px;
  }
}
.portfolio-blocks__item-body {
  width: 100%;
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(23, 23, 23, 0.2);
  max-width: 480px;
  width: 100%;
}
.portfolio-blocks__item-body::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4196078431), rgba(145, 145, 145, 0.5019607843), #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.portfolio-blocks__item-body .line {
  height: 100%;
  border-radius: 100px;
  background-color: #fff;
}
.portfolio-blocks__item-count {
  color: var(--Base-White, #fff);
  /* montserrat/body/large-semibold */
  font-size: 12px;
  font-weight: 600;
  line-height: 120%; /* 14.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  text-align: right;
}

@media (max-width: 440px) {
  .range-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.portfolio-blocks__item-resp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--luiqid-glass, rgba(23, 23, 23, 0.2));
  background-blend-mode: screen;
  position: relative;
  z-index: 1;
  position: absolute;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: default !important;
}
.portfolio-blocks__item-resp p {
  color: var(--Base-White, #fff);
  font-family: "TT Firs Neue";
  font-size: 12px;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
}


.portfolio-blocks__item-resp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4196078431), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.portfolio-blocks__item-resp .resp__circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  bottom: -12px;
  width: 8px;
  height: 8px;
  background-color: #fff;
  display: block;
  border-radius: 50%;
}

.resp-1 {
  top: 53px;
  left: 34px;
}

.resp-2 {
  left: 331px;
  top: 161px;
}

.resp-3 {
  right: 39px;
  top: 221px;
}

.resp-4 {
  left: 62px;
  bottom: 201px;
}

.resp-5 {
  top: 59px;
  right: 173px;
}

.resp-6 {
  right: 105px;
  bottom: 158px;
}

.about {
  position: relative;
}
.about .cirlcle-filter-rose {
  left: -10vw;
  top: 0;
}
@media (max-width: 1080px) {
  .about .cirlcle-filter-rose {
    top: auto;
    bottom: 50%;
  }
}
.about__title {
  color: var(--Base-White, #fff);
  /* montserrat/display/medium-medium */
  font-size: clamp(1.5rem, 0.789rem + 2.59vw, 3.375rem);
  font-weight: 500;
  line-height: 110%; /* 59.4px */
  letter-spacing: var(--Heading-H3_Semibold-Letter-Spacing, 0);
  padding-top: 148px;
  padding-bottom: 38px;
}
@media (max-width: 1080px) {
  .about__title {
    padding-top: 78px;
  }
}
@media (max-width: 440px) {
  .about__title {
    padding: 14px 0 24px;
  }
}

.about-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 66px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
}
@media (max-width: 768px) {
  .about-blocks {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.about-blocks .start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (max-width: 1080px) {
  .about-blocks .start {
    gap: 24px;
  }
}
.about-blocks .end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin: 246px 0 0 0;
}
@media (max-width: 1080px) {
  .about-blocks .end {
    gap: 12px;
    margin: 0;
  }
}
.about-blocks__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--Space-3xl, 32px);
  position: relative;
  z-index: 1;
  border-radius: 12px;
  background: rgba(23, 23, 23, 0.2);
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  -webkit-transition: 0.4s ease-in-out !important;
  transition: 0.4s ease-in-out !important;
}
.about-blocks__item:hover {
  -webkit-box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 0px 50px -3px rgba(0, 0, 0, 0.315);
  background: #0f0f0f;
}
.about-blocks__item:hover::before {
  opacity: 0;
}
@media (max-width: 1080px) {
  .about-blocks__item {
    gap: 24px;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .about-blocks__item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.about-blocks__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4196078431), #3b3b3b, #000000);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .about-blocks__icon svg {
    width: 45px;
    height: 45px;
  }
}
.about-blocks__content-title {
  margin-bottom: 18px;
  color: #fff;
  /* montserrat/headline/small-medium */
  font-size: clamp(1rem, 0.81rem + 0.69vw, 1.5rem);
  font-weight: 500;
  line-height: 110%; /* 26.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.about-blocks__content-subtitle {
  color: #fff;
  /* montserrat/title/large-regular */
  font-size: 16px;
  font-weight: 400;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .about-blocks__content-subtitle {
    line-height: 120%;
    font-size: 12px;
  }
}

.about__text-subtitle {
  max-width: 1154px;
  margin: 0 auto;
  text-align: center;
  color: var(--Base-White, #fff);
  text-align: center;
  /* montserrat/display/small-medium */
  font-size: clamp(1.25rem, 0.728rem + 1.9vw, 2.625rem);
  font-weight: 500;
  line-height: 130%; /* 54.6px */
  letter-spacing: var(--Heading-H4_Semibold-Letter-Spacing, 0);
  padding: 48px 0 120px 0;
}
@media (max-width: 440px) {
  .about__text-subtitle {
    padding: 24px 0 56px 0;
  }
}
.about__text-subtitle span {
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form {
  position: relative;
}
.form .cirlcle-filter-purple {
  left: -10vw;
  top: 0;
}
.form .cirlcle-filter-rose {
  right: -10vw;
  bottom: 0;
}
.form__inner {
  border-radius: 24px;
  background: var(--luiqid-glass, rgba(23, 23, 23, 0.2));
  background-blend-mode: screen;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 36px 40px 36px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (max-width: 440px) {
  .form__inner {
    padding: 32px 24px;
  }
}
.form__start {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 440px) {
  .form__start img {
    width: 100%;
    height: 305px;
    position: relative;
  }
}
.form__title {
  max-width: 320px;
  color: var(--Base-White, #fff);
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
  /* tt firs neue/headline/large-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(1.25rem, 0.871rem + 1.38vw, 2.25rem);
  font-weight: 500;
  line-height: 110%; /* 39.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .form__title {
    left: 20px;
    top: 20px;
    max-width: 170px;
    
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.form__end textarea,
.form__end input {
  resize: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: var(--Space-1xl, 18px) var(--Space-xl, 16px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  border: 1px solid var(--Gray-300, #fff);
  color: var(--Gray-300, #ffffff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  opacity: 0.4;
}
@media (min-width: 1080px) {
  .form__end textarea:hover,
  .form__end input:hover {
    opacity: 1;
  }
}
.form__end textarea:focus,
.form__end input:focus {
  opacity: 1;
}
.form__end textarea::-webkit-input-placeholder, .form__end input::-webkit-input-placeholder {
  color: var(--Gray-300, #fff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__end textarea::-moz-placeholder, .form__end input::-moz-placeholder {
  color: var(--Gray-300, #fff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__end textarea:-ms-input-placeholder, .form__end input:-ms-input-placeholder {
  color: var(--Gray-300, #fff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__end textarea::-ms-input-placeholder, .form__end input::-ms-input-placeholder {
  color: var(--Gray-300, #fff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__end textarea::placeholder,
.form__end input::placeholder {
  color: var(--Gray-300, #fff);
  /* montserrat/title/medium-medium */
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
@media (max-width: 440px) {
  .form__end textarea::-webkit-input-placeholder, .form__end input::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form__end textarea::-moz-placeholder, .form__end input::-moz-placeholder {
    font-size: 14px;
  }
  .form__end textarea:-ms-input-placeholder, .form__end input:-ms-input-placeholder {
    font-size: 14px;
  }
  .form__end textarea::-ms-input-placeholder, .form__end input::-ms-input-placeholder {
    font-size: 14px;
  }
  .form__end textarea::placeholder,
  .form__end input::placeholder {
    font-size: 14px;
  }
}
@media (max-width: 440px) {
  .form__end textarea,
  .form__end input {
    padding: 14px;
  }
}
.form__end textarea {
  height: 58px;
  padding: var(--Space-1xl, 18px) var(--Space-xl, 16px);
  overflow: hidden;
}
@media (max-width: 440px) {
  .form__end textarea {
    height: 74px;
  }
}
.form__muted {
  color: var(--Base-White, #fff);
  /* montserrat/headline/medium-medium */
  font-size: clamp(1.25rem, 0.966rem + 1.03vw, 2rem);
  font-weight: 500;
  line-height: 110%; /* 35.2px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__subtitle {
  color: var(--Base-White, #fff);
  margin: 12px 0 24px 0;
  /* montserrat/title/large-regular */
  font-size: clamp(0.875rem, 0.733rem + 0.52vw, 1.25rem);
  font-weight: 400;
  line-height: 110%; /* 22px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Space-1xl, 18px) var(--Space-3xl, 32px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--Space-m, 8px);
  border-radius: 12px;
  background: var(--Base-White, #fff);
  width: 100%;
  color: var(--Gray-700, #101010);
  text-align: center;
  font-family: "TT Firs Neue", sans-serif;
  font-size: clamp(1rem, 0.905rem + 0.34vw, 1.25rem);
  font-weight: 500;
  line-height: 110%;
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
@media (min-width: 1080px) {
  .form__btn:hover {
    background: var(--Gray-200, #b4b4b4);
  }
}
.form__btn:active {
  -webkit-transition: none !important;
  transition: none !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, #e59cff), color-stop(148.83%, #6067ee));
  background: linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%);
  background-blend-mode: screen;
}
@media (max-width: 440px) {
  .form__btn {
    padding: 14px 0;
  }
}
.form__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 140px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 1080px) {
  .form-content {
    gap: 70px;
  }
}
@media (max-width: 768px) {
  .form-content {
    gap: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .form-content img {
    width: 100%;
    height: 305px;
  }
}

.user-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.popup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 100px;
  left: 50%;
  z-index: 10;
  width: 463px;
  padding: 12px 0;
  -webkit-transform: translateX(-50%) translateY(-20px);
          transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  /* ✅ ПОКАЗ ПОПАПА */
  /* ✅ Только стили для успех/ошибки */
}
@media (max-width: 1080px) {
  .popup-form {
    width: 92%;
  }
}
.popup-form__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-form p {
  color: var(--Base-Black, #000);
  font-family: "TT Firs Neue";
  font-weight: 400;
  line-height: 110%;
  font-size: 16px;
}
@media (max-width: 440px) {
  .popup-form p {
    font-size: 14px;
  }
}
.popup-form.active {
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.popup-form.true {
  border-radius: var(--Radius-xl, 12px);
  background: -webkit-gradient(linear, left top, right top, from(#9cffb1), color-stop(99.93%, #6067ee));
  background: linear-gradient(90deg, #9cffb1 0%, #6067ee 99.93%);
}
.popup-form.false {
  display: none;
  border-radius: var(--Radius-xl, 12px);
  background: -webkit-gradient(linear, left top, right top, from(#f0654c), color-stop(99.93%, #6067ee));
  background: linear-gradient(90deg, #f0654c 0%, #6067ee 99.93%);
}

.sfer {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 1080px) {
  .sfer {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    height: 345px;
  }
}
@media (max-width: 440px) {
  .sfer {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    height: 345px;
  }
}

.sfer-content__title {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--Gray-700, #101010);
  /* montserrat/display/small-regular */
  font-size: 42px;
  font-weight: 400;
  line-height: 110%; /* 46.2px */
  letter-spacing: var(--Heading-H4_Semibold-Letter-Spacing, 0);
}
.sfer-content__items-circle {
  border: 1px solid #fff;
}

.portfolio__end {
  width: 100%;
}

.sfer-item-1 .sfer-content__items-circle {
  width: 268px;
  height: 300px;
  border-radius: 50%;
  -webkit-transform: rotateY(70deg);
          transform: rotateY(70deg); /* <-- поворот в 3D боком */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.blur-item {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  min-width: 400px;
  min-width: 400px;
}
.blur-item img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.blur-item-purple {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -2;
  border-radius: 338px;
  background: radial-gradient(79.45% 79.61% at -7.66% 50%, #e59cff 0%, #6067ee 100%);
  background-blend-mode: screen;
  -webkit-filter: blur(250px);
          filter: blur(250px);
  width: 331px;
  height: 338px;
}

.sfer-item-1,
.sfer-item-2,
.sfer-item-3,
.sfer-item-4,
.sfer-item-5,
.sfer-item-6 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sfer-content__items-item svg {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.sfer-item-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.sfer-item-2 svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.sfer-item-1 {
  -webkit-transform: translate(-50%, -50%) scaleX(-1) rotate(115deg);
          transform: translate(-50%, -50%) scaleX(-1) rotate(115deg);
}
.sfer-item-1 svg g {
  -webkit-transform: rotate(-112deg) scaleX(-1);
          transform: rotate(-112deg) scaleX(-1);
}

.sfer-item-6 {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}
.sfer-item-6 svg g {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.sfer-content__items-item svg g {
    cursor: default !important;
}



.footer {
  margin-top: 125px;
}
@media (max-width: 440px) {
  .footer {
    margin-top: 70px;
  }
}
.footer__inner .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner .top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 28px;
  }
}
.footer__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__start {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    gap: 32px;
  }
}
.footer__logo img {
  width: 100px;
}
@media (max-width: 768px) {
  .footer__logo img {
    width: 100px;
  }
}
.footer__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 70%;
}
@media (max-width: 768px) {
  .footer__end {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.footer__copyright {
  padding: 24px 0;
  width: 100%;
  position: relative;
  margin-top: 40px;
}
.footer__copyright::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(50%, #eeeef0), to(rgba(239, 239, 241, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #eeeef0 50%, rgba(239, 239, 241, 0) 100%);
}
.footer__copyright p {
  text-align: center;
  color: var(--Base-White, #fff);
  /* montserrat/body/large-regular */
  font-size: 12px;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}

.footer-list__title {
  color: var(--Base-White, #fff);
  margin-bottom: 16px;
  /* tt firs neue/title/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.footer-list__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer-list__info-link {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/small-light */
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.footer-list__info-link:hover {
  color: #fff;
}

.footer-address__title {
  color: var(--Base-White, #fff);
  margin-bottom: 16px;
  /* tt firs neue/title/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.footer-address__info {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/small-light */
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  margin-bottom: 16px;
}
.footer-address__social {
  color: var(--Base-White, #fff);
  /* tt firs neue/title/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.footer-address__list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer-address__list-item {
  width: 32px;
  height: 32px;
  position: relative;
}
.footer-address__list-item svg {
  width: 32px;
  height: 32px;
}
.footer-address__list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.footer-address__list-link svg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.footer-address__list-link img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
.footer-address__list-link:hover img {
  opacity: 1;
}
.footer-address__list-link:hover svg {
  opacity: 0;
}

@media (max-width: 768px) {
  .footer-contact {
    width: 100%;
  }
}
.footer-contact__title {
  color: var(--Base-White, #fff);
  margin-bottom: 16px;
  /* tt firs neue/title/medium-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%; /* 17.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
}
.footer-contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (max-width: 768px) {
  .footer-contact__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .footer-contact__col:nth-child(2) {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
}
.footer-contact__col-number {
  /* tt firs neue/title/small-medium */
  font-family: "TT Firs Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 110%; /* 15.4px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  background: var(--1, linear-gradient(90deg, #e59cff 0.01%, #6067ee 148.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.footer-contact__list-schedule {
  color: var(--Gray-200, #b4b4b4);
  /* montserrat/title/small-light */
  font-size: 14px;
  font-weight: 300;
  line-height: 140%; /* 19.6px */
  letter-spacing: var(--Subtitle-Subtitle-2_Medium-Letter-Spacing, 0);
  cursor: default;
}
.footer-contact__list-schedule:hover {
  color: #fff;
}

.sfer-content__items-item.active {
    z-index: 1111;
}

.portfolio-blocks__item-resp.active {
  background: #6067ee;
}

