/**************************************************/
/**         GENERAL RESET & BASE STYLES          **/
/**************************************************/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Unbounded:wght@200..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;

  color: #282828;
}

:root {
  --white: #fff;
  --brown: #e8e3de;
  --gray: #f5f5f5;
  --app-height: 100svh;
}
@supports (height: 100dvh) {
  :root {
    --app-height: 100svh;
  }
}

*:focus {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: auto;
  overscroll-behavior: none;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gray);
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto !important;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

b {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
}

input,
textarea,
select {
  max-height: 90px;
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
  resize: none;

  border: 1px solid transparent;
  color: #000c49;
  background-color: #fff;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: rgba(40, 40, 40, 0.3);
  font-size: 16px;
}

textarea:focus::-webkit-input-placeholder,
input:focus::-webkit-input-placeholder {
  color: #b9b9b9;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.hover {
  cursor: pointer;
  transition: opacity 0.4s;
}

.hover:hover {
  opacity: 0.5;
}

.container {
  display: block;
  position: relative;
  width: 1440px;
  padding: 0;
  margin: 0 auto;
  height: 100%;
}

/**************************************************/
/**                 MAIN STYLES                  **/
/**************************************************/

.no-scroll {
  overflow: hidden;
  height: var(--app-height);
  touch-action: none;
}

.orientation-fallback {
  display: none;
}

.orientation-fallback.active {
  display: none;
  position: fixed;
  place-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: #d8d4d0;
}

.load-previu {
  position: fixed;
  inset: 0;
  z-index: 8;
  background-color: #d8d4d0;

  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

/*.load-previu.hide {
  opacity: 0;
  visibility: hidden;
}*/

@media screen and (orientation: landscape) and (max-height: 599px) {
  .orientation-fallback.active {
    display: grid;
  }
}

.m-t {
  padding-top: 120px;
}

.p-t {
  margin-top: 120px;
}

.title-h1,
.title-h1 * {
  font-family: Unbounded;
  font-size: 90px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -2.7px;
  text-transform: uppercase;
}

.title-h2,
.title-h2 span {
  font-family: Unbounded;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  overflow: hidden;
}

.text-16-400 {
  font-size: 16px;
  font-weight: 400;
}

.text-18-400 {
  font-size: 18px;
  font-weight: 400;
}

.text-18-500 {
  font-size: 18px;
  font-weight: 500;
}

.text-18-600 {
  font-size: 18px;
  font-weight: 600;
}

.black-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px;
  padding-left: 16px;
  width: max-content;
  border-radius: 70px;
  background: #1b1b1b;
}

.black-btn p,
.black-btn a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  /* 17.6px */
}

.black-btn .svg {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  background: #fff;
}

.brown-btn {
  padding: 11px 20px;
  border-radius: 50px;
  background: #ded2c2;

  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* lang menu */
.right_side {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang_menu {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

/* родительский пункт */
.lang_menu .pll-parent-menu-item {
  position: relative;
  display: inline-block;
}

/* ссылка-триггер (ENG) */
.lang_menu .pll-parent-menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 10px;
  line-height: 1;
  user-select: none;
}

/* стрелочка */
.lang_menu .pll-parent-menu-item > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -2px;
}

/* выпадашка */
.lang_menu .pll-parent-menu-item > .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 12px;

  background: #cfccc5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;

  z-index: 9999;
}

/* пункты */
.lang_menu .pll-parent-menu-item > .sub-menu > li {
  margin: 0;
}

/* ссылки внутри */
.lang_menu .pll-parent-menu-item > .sub-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

/* hover */
.lang_menu .pll-parent-menu-item > .sub-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* текущий язык */
.lang_menu .pll-parent-menu-item > .sub-menu > li.current-lang > a {
  background: rgba(255, 255, 255, 0.12);
}

/* ОТКРЫТОЕ СОСТОЯНИЕ (класс добавит JS) */
.lang_menu .pll-parent-menu-item.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang_menu .pll-parent-menu-item.is-open > a::after {
  transform: rotate(-135deg);
}

/* мобильный тап-таргет чуть больше */
@media (max-width: 768px) {
  .lang_menu .pll-parent-menu-item > a {
    padding: 12px 14px;
  }
  .lang_menu .pll-parent-menu-item > .sub-menu {
    min-width: 140px;
  }
}
/* hero */
.hero {
  height: var(--app-height);
  padding-top: 130px;
  position: relative;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.pin-spacer {
  width: 99.2vw !important;
  overflow: hidden !important;
}

section {
  overflow: hidden;
}

.hero .descr {
  max-width: 700px;
  font-size: 20px;
  font-weight: 400;
}

.hero .center {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero .center .title-h1 {
  margin-top: -70px;
  text-align: end;
}

.hero .bottom {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 50px;
}

.hero .arrow {
  display: inline-block;
  animation: arrowDown 1.6s infinite ease-in-out;
}

@keyframes arrowDown {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* hero */

/* foto */
.section-foto {
  padding: 65px 0;
  height: 100dvh;
}

.section-foto #foto {
  width: 100%;
  height: 670px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* ===== section-foto video + play ===== */
.section-foto .container {
  position: relative;
  height: auto;
}

.section-foto video {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== reveal on scroll ===== */
.section-foto .container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  will-change: clip-path;

  /* старт */
  --clipL: 50%;
  --clipR: 50%;

  -webkit-clip-path: inset(0% var(--clipR) 0% var(--clipL));
  clip-path: inset(0% var(--clipR) 0% var(--clipL));
}

/* видео заполняет контейнер */
.section-foto video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== PLAY BUTTON ===== */
.section-foto .container {
  position: relative;
}

.section-foto .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.section-foto .video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 0.55);
}

.section-foto .video-play-btn:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.section-foto .video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  display: block;
  transform: translateX(2px);
}

/* ===== MODAL (beautiful open/close) ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  pointer-events: none;
}

.video-modal.is-open {
  display: block;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  /* gsap animates */
}

.video-modal__stage {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal__box {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #000;

  opacity: 0;
  /* gsap animates */
  transform: translateY(18px) scale(0.96);
  filter: blur(8px);
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  /* cover если надо */
  background: #000;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  z-index: 5;
}

/* fullscreen on mobile */
@media (max-width: 768px) {
  .video-modal__stage {
    padding: 0;
  }

  .video-modal__box {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }
}

/* foto */
/* partners */
.partners {
  padding: 40px 0;
  border: 1px solid #00000030;
  background: #f5f5f5;
  position: relative;
}

.partners .top {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.partners_marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
  padding: 20px 0 0;
}

.partners_content {
  flex-shrink: 0;
  display: flex;
  gap: 20px;
  max-width: max-content;
  animation: scroll 25s linear infinite;
  justify-content: space-between;
}

/* .partners_marquee:hover .partners_content {
  animation-play-state: paused;
} */

.partners_item {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 295px;
  padding: 40px 85px;
  background: var(--white);
  border-radius: 20px;
}

.partners_item img {
  display: block;
  width: 124px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 20px));
  }
}

/* partners */

/* circle */
.circle-section {
  /* height: calc((var(--vh, 1vh) * 100)); */
  width: 100%;
  overflow: hidden;
}

.circle {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  inset: 0;
  border: 1px solid var(--white);
  position: absolute;
  z-index: 2;
}

.circle-section__text {
  max-width: 755px;
}

.circle-section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  min-height: 150px;
}

.circle-section__heading .title-h2 {
  max-width: 1120px;
  text-align: center;
}

.circle-section__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 40px;
}

.circle-wrap {
  flex: 1;
  position: relative;
  margin-top: 160px;
  flex-shrink: 0;
  height: calc(var(--app-height) - 220px);
  /* <-- подстрой: отнимаем хедер секции */
  min-height: 420px;
  width: 100%;
}

.circle-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.circle-items {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}

.circle-bg {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  top: 0;
  overflow: hidden;
  z-index: -1;
}

.circle-bg__imgs,
.circle-bg__imgs .vanta-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.circle-bg__imgs .vanta-bg {
  position: absolute;
  inset: 0;
}

.vanta-bg {
  background: #d8d4d0;
}

.circle-bg__imgs .vanta-bg canvas {
  width: 100% !important;
  height: 100% !important;
  bottom: 0;
}

.circle-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  width: 80px;
}

.circle-item__num {
  width: 45px;
  height: 45px;
  border-radius: 40px;
  display: grid;
  place-content: center;
  color: var(--white);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  background-color: #282828;
  border: 1px solid #282828;
}

.circle-item__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  margin-top: 10px;
}

.circle-item__dot {
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background-color: #282828;
  border-radius: 50%;
}

.circle-item__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 100vh;
}

.circle-item__inner .img {
  margin-top: 30px;
  flex: 1;
  display: flex;
  align-items: center;
}

.circle-item__inner .img img {
  max-width: 175px;

  display: block;
}

.circle-item__text {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  max-width: 500px;
}

.circle-item__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: absolute;
  width: 760px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.1s ease-in-out;
  margin-top: 20px;
  opacity: 0;
  /* transition-delay: 0.2s; */
}

.circle-item.active .circle-item__content {
  opacity: 1;
}

.circle-item__title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 100%;
  max-width: 420px;
}

.circle-item__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 80%;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  border-right: 1px dashed #282828;
}

/* .circle-item__line {
  width: 1px;
  height: 100%;
  border: 1px dashed #282828;
  position: absolute;
  top: -100%;
} */

/* circle styles */

/* benefit */
.benefit {
  background: #f5f5f5;
  position: relative;
}
.benefit .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.benefit .top .title-h2 {
  max-width: 1020px;
  text-align: center;
}

.benefit .bottom {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.benefit .bottom > div {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit .bottom .left {
  background: rgba(255, 255, 255, 0.8);
}

.benefit .bottom .left .title {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  /* 35.2px */
}

.benefit .bottom .left .title img {
  display: block;
  width: 47px;
  aspect-ratio: 47/39;
}

.benefit .bottom .right {
  background: var(--brown);
}

.benefit .bottom .right .title {
  min-height: 39px;
  display: flex;
  align-items: center;
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 500;
  line-height: 115%;
  /* 23px */
  letter-spacing: -0.2px;
  text-decoration-line: line-through;
}

.benefit .bottom .list {
  border-top: 1px dashed #c2c2c2;
}

.benefit .bottom .list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #c2c2c2;

  /* font-size: 14px; */
  font-weight: 400;
  line-height: 115%;
  /* 16.1px */
  letter-spacing: -0.14px;
}

.benefit .bottom .list-item svg {
  flex-shrink: 0;
}

/* benefit */

/* conditions */
.conditions {
  background: #f5f5f5;
  position: relative;
}
.conditions .top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.conditions .center {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.conditions .btn-wrap {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 50px;
  background: var(--white);
}

.conditions .btn-item {
  padding: 16px 20px;
  min-width: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;

  color: #b8b8b8;
  font-size: 18px;
  font-weight: 400;
  line-height: 125%;
  /* 22.5px */
  text-transform: uppercase;
  transition: 0.4s all;
}

.conditions .btn-item.active {
  font-weight: 600;
  color: #282828;
  background: #ded2c2;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}

.conditions .bottom {
  min-height: 340px;
  position: relative;
  margin-top: 40px;
}

.conditions-item {
  border-radius: 20px;
  background: var(--white);
  padding: 40px;
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  transition: opacity 0.5s;
  min-height: 320px;
}

.conditions-item.active {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.conditions-item_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.conditions-title {
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  /* 20.7px */
  letter-spacing: -0.18px;
}

.conditions-item_top .left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conditions-item_top .left .text-16-400 {
  max-width: 560px;
}

.conditions-item_top .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.conditions-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conditions-list .num {
  width: 26px;
  height: 25px;
  border-radius: 115px;
  background: #ded2c2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  text-align: center;
  font-family: Unbounded;
  font-size: 13px;
  font-weight: 400;
  line-height: 115%;
  /* 14.95px */
  letter-spacing: -0.13px;
}

.conditions-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.conditions-list li p {
  font-size: 16px;
  font-weight: 600;
}

/* conditions */

/* faq */
.faq {
  padding: 60px 0;
  background: #d8d4d0;
}

.faq-inner {
  display: flex;
  gap: 40px;
}

.faq-inner > .left {
  width: 470px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-inner > .left img {
  margin-top: 12px;
  display: block;
}

.f-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s;
}

.f-bottom span {
  display: block;
  height: 10px;
}

.f-bottom > div {
  min-height: 0;
}

.active .f-bottom {
  grid-template-rows: 1fr;
}

.f-bottom ul li,
.f-bottom ul li strong {
  position: relative;
  min-height: 0;
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 400;
}

.faq .f-bottom ul li strong {
  font-weight: 600;
}

.f-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: disc;
  margin-left: 0.8em;
  padding-left: 0.8em;
}

.f-bottom ul li {
  display: list-item;
}

.faq .right {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.faq-item {
  padding: 16px;
  border-bottom: 1px dashed #fff;
  cursor: pointer;
}

.faq-top_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
}

.f-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.f-top-l {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-top-l img {
  display: block;
  flex-shrink: 0;
  width: 26px;
}

.f-close {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s all;
  transform: rotate(45deg);
}

.faq-item.active .f-close {
  transform: rotate(-135deg);
}

#faq,
#result {
  position: relative;
}

#faq video,
#result video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* faq */

/* meet */
.meet {
  margin-top: 0;
  background: #f5f5f5;
  position: relative;
}
.meet-inner {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.meet-inner .left {
  border-radius: 30px;
  overflow: hidden;
}

.meet-inner .left img {
  display: block;
  object-position: center;
  object-fit: cover;
}

.meet-inner .right {
  border-radius: 20px;
  background: var(--white);
  padding: 40px;
}

.meet-inner .right .text-18-400 {
  margin-top: 20px;
}

.meet-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.18px;
}

.meet-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meet-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed #c2c2c2;

  font-size: 16px;
  font-weight: 400;
}

.meet-list li .num {
  width: 10px;
  height: 10px;
  border-radius: 115px;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meet-btn {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* meet */

/* result */
.result {
  padding-top: 100px;
  padding-bottom: 55px;
}

.result-iner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.result-iner .right {
  max-width: 52%;
}

.resultSwiper {
  width: 100%;
}

.result-iner .left {
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.result-iner .left .img {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-iner .left .img img {
  display: block;
  max-width: 335px;
}

.resultSwiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resultSwiper .swiper-slide > div {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.result .top-line {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px dashed #c2c2c2;
  gap: 10px;
}

.result .top-line .box {
  padding: 8px 12px;
  border-radius: 20px;
  background: #ded2c2;

  font-size: 14px;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.14px;
}

.result-title {
  margin: 20px 0;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.18px;
}

.result .top {
  min-height: 360px;
  flex: 1;
}

.result .top ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result .top ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result .top ul li svg {
  flex-shrink: 0;
}

.result .top ul li,
.result .top ul li strong {
  font-size: 16px;
  font-weight: 400;
}

.result .resultSwiper .top ul li strong {
  font-weight: 600;
  display: contents;
}

.result .rewies {
  margin: 20px 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 6px;
}

.result .foto {
  padding: 0;
  width: 37px;
  height: 37px;
  border-radius: 37px;
  overflow: hidden;
}

.result .foto img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.author-about {
  font-size: 14px;
  font-weight: 600;
  line-height: 115%;
  letter-spacing: -0.14px;
}

.author-location {
  margin-top: 4px;
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
  /* 17.5px */
}

.resultSwiper .swiper-pagination {
  position: static;
  margin-top: 5px;
}

span.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #282828;
}

.swiper-pagination-bullet {
  background: var(--white);
  margin: 0px 3px !important;
  opacity: 1;
}

/* result */

#num {
  position: relative;
}

.numbers {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
}

.number {
  font-size: 120px;
  line-height: 280px;
  font-weight: 700;
  color: #282828;
  text-align: center;
  padding: 10px 0px;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  font-family: Unbounded;
}

.number.absolute {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.numbers-wrap {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 560px 1fr;
  gap: 50px;
  overflow: hidden;
  align-items: center;
}
.about {
  padding-top: 0;
}
.about.is-pinned .container {
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100vh;
}

#num {
  position: relative;
}

#num .test {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#num {
  position: relative;
}

.number0 {
  pointer-events: none;
  opacity: 0;
}

.numbers-inner {
  perspective: 1000px;
  width: 100%;
  border-radius: 300px;
  overflow: hidden;
  position: relative;

  background: #e8e3de;
}

.numbers-inner:before {
  background: linear-gradient(
    180deg,
    #e8e3de 0%,
    #e8e3decc 15%,
    #e8e3de66 25%,
    #e8e3de22 30%,
    #e8e3de00 35%
  );

  content: "";
  inset: 0;

  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.numbers-inner:after {
  background: linear-gradient(
    0deg,
    #e8e3de 0%,
    #e8e3decc 15%,
    #e8e3de66 25%,
    #e8e3de22 30%,
    #e8e3de00 35%
  );

  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

/* my */
.num-link a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.num-link {
  position: relative;
  margin-top: 20px;
  min-height: 80px;
}

.num-link > div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: 0.4s all;
}

.num-link > div.active {
  position: relative;
  opacity: 1;
  z-index: 1;
  transition: 0.4s all;
}

.numbers-wrap .right {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  height: 120px;
}

.numbers-wrap .right .text {
  color: #282828;
  font-size: 18px;
  font-weight: 500;

  position: absolute;
  width: 100%;
  opacity: 0;
  transition:
    opacity 0.1s ease,
    transform 0.1s ease;
}

.numbers-wrap .right .text.active {
  opacity: 1;
}

/* about */

/* footer */
.footer {
  background-color: #f5f5f5;
  padding: 40px 0;
  position: relative;
  padding-bottom: 160px;
  z-index: 1;
}

.swiper_arrows {
  display: none;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer__inner .left {
  max-width: 540px;
}

.footer-title {
  color: #000;
  font-family: Unbounded;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.footer-text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}

.footer__inner .footer-box {
  margin-top: 40px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.footer__inner .footer-box .item {
  display: flex;
  gap: 5px;
  align-items: center;

  font-size: 18px;
  font-weight: 500;
}

.footer__inner .footer-box .item img {
  flex-shrink: 0;
  display: block;
  width: 30px;
  height: 30px;
}

.footer__inner .center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.footer__inner .center a {
  font-size: 16px;
  font-weight: 400;
}

.footer__inner .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}

.footer__inner .right .r-top {
  border-radius: 20px;
  background: #e8e3de;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  max-width: 450px;
}

.right .r-top .right-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 490px;
  width: 100%;
}

.right .r-top .right-text .item {
  display: flex;
  gap: 2px;
  align-items: center;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
}

.right .r-top .right-text .item:nth-child(2) {
  color: rgba(40, 40, 40, 0.8);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}

.right .r-top .right-text .item img {
  display: block;
  width: 47px;
  height: 39px;
}

.footer__inner .right-qr {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;

  color: rgba(40, 40, 40, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__inner .right-qr img {
  display: block;
  width: 100px;
  height: 100px;
}

/* footer */

/* header */
.menu-burger {
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

button.menu {
  background-color: transparent;
  border: none;
  width: 48px;
  height: 47px;
  transform: rotate(180deg);
}

.line {
  fill: none;
  stroke: #282828;
  stroke-width: 3;
  transition:
    stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 40 207;
}

.line2 {
  stroke-dasharray: 60 75;
  stroke-dashoffset: -134;
  border-radius: 40px;
}

.line3 {
  stroke-dasharray: 40 207;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -90;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.heade-menu ul {
  gap: 0px;
}

.burger {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  padding-bottom: 100px;
  z-index: 4;
  transition: all 0.4s;
  gap: 40px;
  padding-top: 145px;
}

.burger video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.heade-menu ul li::before {
  content: "";
  display: none;
}

.burger .wrap__logo,
.burger .black-button {
  display: none;
}

.burger.active {
  left: 0;
}

.heade-menu ul {
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.heade-menu ul li {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--white);
}

.heade-menu ul li a {
  width: 100%;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 400;
}

.wrap__logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

.wrap__logo img {
  display: block;
  width: 47px;
  height: 39px;
}

.burger__menu {
  margin-top: 15px;
  padding-top: 6px;
  /* border-top: 1px solid rgba(125, 125, 125, 0.6); */
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.header {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
}

.header.is-sticky {
  position: fixed;
  z-index: 20;
  padding-bottom: 15px;
  backdrop-filter: blur(10px);
}

.btn-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #282828;
  mix-blend-mode: difference;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-menu::before {
  content: "";
  mix-blend-mode: difference;
}
.btn-menu .btn-menu__label {
  mix-blend-mode: difference;
}

.header--link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header--link,
.header--link span {
  font-size: 16px;
  font-weight: 500;
}

.header--link svg {
  transform: rotate(-90deg);
}

.burger {
  padding-top: 150px;
}

.burger--wrap {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  gap: 130px;
}

.burger .r-top {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  max-width: 450px;
}

.burger .r-top .right-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 490px;
  width: 100%;
}

.header-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* как твой бордер */
  background: rgba(125, 125, 125, 0.25);
  overflow: hidden;
}

/* сама “заливка” прогресса */
.header-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  transform-origin: 0 50%;
  background: rgba(125, 125, 125, 0.9);
}

.burger .r-top .right-text .item {
  display: flex;
  gap: 2px;
  align-items: center;
  font-family: Unbounded;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
}

.burger .r-top .right-text .item:nth-child(2) {
  color: rgba(40, 40, 40, 0.8);
  font-family: Manrope;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}

.burger .r-top .right-text .item img {
  display: block;
  width: 47px;
  height: 39px;
}

.burger .right-qr {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;

  color: rgba(40, 40, 40, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.burger .right-qr img {
  display: block;
  width: 100px;
  height: 100px;
}

/* header */
:root {
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

.preloader-bottom {
  padding-bottom: calc(12px + var(--safe-bottom));
}
/* preloader */
.preloader {
  padding: 70px 0 50px;
  z-index: 10;
  position: fixed;
  top: 0;
  height: var(--app-height);
  width: 100%;
  background-color: #d3cfcb;
  /* opacity: 0; */
}

.preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  margin-top: -70px;
  margin-bottom: -50px;
}

@keyframes scaleImage {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes scaleTitle {
  0% {
    transform: translateY(20px) scale(0);
    opacity: 0;
  }

  100% {
    transform: translateY(20px) scale(1);
    opacity: 1;
  }
}

.prelosder-image {
  top: 50%;
  transform: translateY(-50%) scale(0);
  position: absolute;
  width: 298.007px;
  height: 321.228px;
  aspect-ratio: 298.01/321.23;
  animation: scaleImage 1s 0.5s ease-out forwards;
}

.preloader--inner {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.preloader-title {
  max-width: 900px;
  text-align: center;
  font-family: Unbounded;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  animation: scaleTitle 1s 0.5s ease-out forwards;
}

.preloader-text {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.preloader-text > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.preloader-text .item {
  display: flex;
  width: 520px;
  min-height: 90px;
  gap: 5px;
}

.preloader-text .item::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url(../images/dot.png);
  background-position: center;
  background-size: 10px;
  background-repeat: no-repeat;
}

.preloader-text .item p {
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.preloader-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.preloader-bottom .num {
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.preloader-bottom .line {
  position: relative;
  height: 4px;
  width: 100%;
  background: rgba(125, 125, 125, 0.7);
}

.preloader-bottom .line::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: #282828;
  width: var(--p, 0%);
  height: 4px;
}

/* показать item */
@keyframes itemIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.preloader-text .item.is-visible {
  animation: itemIn 520ms ease forwards;
}

/* если ты хочешь отдельно запускать появление контейнера картинки классом .animate */
.prelosder-image {
  opacity: 0;
}

.prelosder-image.animate {
  opacity: 1;
  animation: scaleImage 1s ease-out forwards;
}

/* оборот ИМЕННО IMG (не контейнера, чтобы не конфликтовать с translateY/scale на контейнере) */
@keyframes spinYOnce {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.prelosder-image img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.prelosder-image img.animated {
  animation: spinYOnce 520ms ease-out 1;
}

/* чтобы при первом рендере ничего не мигало */
.preloader-text .item {
  opacity: 0;
  transform: translateY(20px);
}

/* прелоудер сразу видим, но без текста */
.preloader {
  /*opacity: 0;*/
  /* display: none; */
}

html.has-preloader .preloader {
  display: block;
  opacity: 1;
}

html.fonts-loading body {
  visibility: hidden;
}

html.fonts-loaded body {
  visibility: visible;
}

/* preloader */

.header-stick-btn {
  display: block;
  color: #282828;
  font-family: Manrope;
  font-size: 17px;
  font-weight: 500;

  border-radius: 20px;
  background: #e8e3de;
  border: 1px solid #282828;

  padding: 10px 30px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  opacity: 0;
  z-index: -1;

  transition: opacity 0.5s ease;
}

.header-stick-btn.is-visible {
  opacity: 1;
  z-index: 10;
}

.header-stick-btn.is-visible:hover {
  opacity: 0.5;
}

/* pop-up styles */
.pop_up {
  position: fixed;
  z-index: -1;
  top: -100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.3);
  backdrop-filter: blur(6.5px);
  overflow: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(6.5px);
  transition: 0.5s all;
}

.pop_up.calc .pop-up_container {
  max-width: 555px;
  width: max-content;
}

.questions-l {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.questions-l .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.questions-l .form .title {
  color: #282828;
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 400;
  line-height: 115%;
  letter-spacing: -0.16px;
}

.questions-l .form ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.questions-l .form ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.questions-l .form ul li div,
.questions-l .form ul li svg {
  flex-shrink: 0;
}

.questions-l .form ul li p {
  flex: 1;
  color: #282828;
  font-size: 16px;
  font-weight: 600;
}

.questions-l .form ul li img {
  display: block;
  width: 25px;
}

.questions-l_title {
  color: #282828;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.18px;
}

.pop_up.modal_active {
  opacity: 1;
  z-index: 11;
  top: 0;
}

.pop_up.calc.modal_active {
  opacity: 1;
  z-index: 12;
  top: 0;
}

.pop-up_container {
  border-radius: 20px;
  background: #e8e3de;
  padding: 40px;
  margin: 0 20px;
  width: 100%;
  max-width: 795px;
  position: relative;
  display: flex;
  justify-content: center;
}

.pop-up_content {
  width: 100%;
}

.close-pop_up {
  position: absolute;
  right: 35px;
  top: 15px;
  cursor: pointer;

  font-size: 48px;
  font-weight: 400;
  transform: rotate(45deg);

  transition: 0.5s;
}

.close-pop_up:hover {
  transform: rotate(225deg);
}

.pop_up .footer-form__btn:hover {
  opacity: 0.8;
  background-color: var(--white);
}

.pop_up .footer-form__btn:hover span {
  color: var(--black);
}

.pop-up_container form {
  max-width: 650px;
}

/* pop-up styles */

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip-text {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  padding: 8px 10px;
  background: #111;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 6px;
  white-space: normal;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.tooltip.active .tooltip-text {
  opacity: 1;
}

/* pop-up styles */
.pop-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social .pop-up_container {
  max-width: 555px;
  width: max-content;
}

.pop-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.pop-title {
  color: #282828;
  font-family: Unbounded;
  font-size: 18px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.18px;
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.input-text {
  margin-bottom: 10px;
  color: #282828;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
}

.input {
  width: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;

  padding: 11px 15px;
  gap: 10px;
  align-self: stretch;
}

.wpcf7-response-output {
  color: #282828;
}

.wpcf7-submit {
  background: transparent;
  border: none;
  color: #fff;
  font-family: Manrope;
  font-weight: 500;
  line-height: 110%;
  /* 17.6px */
}

html.scroll-locked,
body.scroll-locked {
  overflow: hidden !important;
}

#how_connect .circle,
#how .circle {
  --dial-rotation: 0deg;
}

#how_connect .circle-items,
#how .circle-items {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;

  display: block;
}

#how_connect .circle-item,
#how .circle-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;

  display: block;
  align-items: unset;
  justify-content: unset;
  flex-direction: unset;

  height: 1px;
  width: 1px;

  --angle: 0deg;
  --badge-size: 45px;
  --badge-out: 8px;
  --radius: calc(
    (min(100%, 100%) / 2) - (var(--badge-size) / 2) + var(--badge-out)
  );

  transform: rotate(calc(var(--angle) + var(--dial-rotation)))
    translateY(
      calc(((100% / 2) - (var(--badge-size) / 2) + var(--badge-out)) * -1)
    );
  transform-origin: 0 0;
}

#how_connect .circle-item__inner,
#how .circle-item__inner {
  position: relative;
  width: 1px;
  height: 1px;
  min-height: 0 !important;
}

#how_connect .circle-item__head,
#how .circle-item__head {
  position: absolute;
  left: 0;
  top: 0;
  translate: -50% -31% !important;
  transform-origin: 50% 50%;
  margin-top: 0;
}

#how_connect .circle-item__content,
#how .circle-item__content {
  opacity: 0;
  visibility: hidden;
}

#how_connect .circle-item__content.active,
#how .circle-item__content.active {
  opacity: 1 !important;
  visibility: visible !important;
}

#how_connect .circle-center,
#how .circle-center {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 40px));
  text-align: center;
  z-index: 4;
  pointer-events: auto;
  opacity: 1;
  min-height: 200px;
}

#how_connect .circle-item__num,
#how .circle-item__num {
  width: 45px;
  height: 45px;
}

#how_connect .circle-item__dot,
#how .circle-item__dot {
  margin-top: 0 !important;
}

#how_connect .circle-bg,
#how .circle-bg {
  top: 0%;
}

#how_connect .circle,
#how .circle {
  top: 0%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.marquee_title {
  font-size: 18px;
  text-transform: initial;
  font-family: "Manrope", sans-serif;
}

/* добавь в all.css один раз */
.js-reveal-title.reveal-ready {
  display: inline-block;
  /* чтобы вел себя как обычный заголовок */
}

.reveal-word__mask {
  display: inline-block;
  overflow: hidden;
  /* маска как в React */
  vertical-align: bottom;
}

.reveal-word {
  display: inline-block;
  will-change: transform;
}

#how .circle-wrap {
  margin-top: 60px;
  min-height: 520px;
}

#how_connect .circle-wrap {
  margin-top: 60px;
  min-height: 520px;
}

/* или свои значения */

.open-calc-modal {
  border-bottom: 1px dashed #282828;
  filter: blur(4px);
  cursor: pointer;
}

.open-calc-modal.counted {
  filter: blur(0);
}

.pop_up.mk-forms {
  z-index: 200;
}
