@charset "UTF-8";
.menu {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 11111;
  -webkit-transition: 1.2s ease;
  transition: 1.2s ease;
  pointer-events: none;
  visibility: hidden;
}
.menu.active {
  right: 0;
  pointer-events: all;
  visibility: visible;
}
.menu__btn--close {
  position: absolute;
  right: 32px;
  top: 32px;
}
.menu__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: 20px;
  padding: 60px 40px 40px 40px;
}
@media (max-width: 440px) {
  .menu__list {
    gap: 0;
    padding: 100px 20px 20px 20px;
  }
}
.menu__list-link {
  font-family: "Anton";
  font-weight: 400;
  font-size: clamp(2rem, 1.78rem + 0.8vw, 2.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  display: inline-block;
  letter-spacing: 2px;
}
@media (max-width: 440px) {
  .menu__list-link {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0745098039);
    font-size: 28px;
  }
}
.menu__list-link:hover {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0.7;
}
.menu-info {
  padding: 0 0 0 40px;
  position: absolute;
  bottom: 40px;
}
@media (max-width: 440px) {
  .menu-info {
    padding: 0 0 0 20px;
    bottom: 20px;
  }
}
.menu-info .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
  margin-bottom: 42px;
}
@media (max-width: 440px) {
  .menu-info .top {
    margin-bottom: 30px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu-info__block-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.menu-info__block-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
}

.menu-info__block-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: 0.09em;
  color: #000;
  max-width: 240px;
  display: block;
}

.menu-info__copyright {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #000;
}

.menu__btn--close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  font-size: 14px;
  text-transform: uppercase;
}
.menu__btn--close span {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu__btn--close img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu__btn--close:hover img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu__btn--close:hover span {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.btn-open__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (max-width: 440px) {
  .btn-open__menu {
    gap: 8px;
  }
}
.btn-open__menu:hover span:nth-child(2) {
  width: 54px;
}
@media (max-width: 440px) {
  .btn-open__menu:hover span:nth-child(2) {
    width: 44px;
  }
}
.btn-open__menu:hover span:nth-child(3) {
  width: 54px;
}
@media (max-width: 440px) {
  .btn-open__menu:hover span:nth-child(3) {
    width: 44px;
  }
}
.btn-open__menu span {
  display: block;
  background-color: #000;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.btn-open__menu span:nth-child(1) {
  width: 54px;
  height: 3px;
}
@media (max-width: 440px) {
  .btn-open__menu span:nth-child(1) {
    height: 2px;
    width: 44px;
  }
}
.btn-open__menu span:nth-child(2) {
  width: 36px;
  height: 3px;
}
@media (max-width: 440px) {
  .btn-open__menu span:nth-child(2) {
    height: 2px;
    width: 24px;
  }
}
.btn-open__menu span:nth-child(3) {
  width: 24px;
  height: 3px;
}
@media (max-width: 440px) {
  .btn-open__menu span:nth-child(3) {
    height: 2px;
    width: 14px;
  }
}

@media (max-width: 440px) {
  .menu__btn--close {
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 440px) {
  .menu__btn--close img {
    width: 30px;
  }
}

.phone {
  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;
  z-index: 10;
}
@media (max-width: 440px) {
  .phone {
    height: 80vh;
  }
}

.phone__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 20px;
}
@media (max-width: 440px) {
  .phone__inner {
    display: block;
  }
}

.text-carousel-title {
  font-size: clamp(2rem, -0.824rem + 10.27vw, 11.5rem);
  font-family: "Anton";
  text-transform: uppercase;
  margin: 0 auto;
  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;
  max-width: 440px;
}
.text-carousel-title span {
  font-family: "Anton";
}
@media (max-width: 440px) {
  .text-carousel-title {
    display: none;
  }
}

.phone-hd {
  display: block;
  margin: auto;
	
	min-width: 315px;
	min-height: 499px;
}

.about {
  background: #fff;
  position: relative;
  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;
  height: 100vh;
  width: 100%;
  overflow: visible;
}
@media (max-width: 440px) {
  .about {
    height: auto;
    min-height: auto;
    padding: 4vh 0;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 1640px) {
  .about::before {
    width: 700px;
    height: 700px;
  }
}
@media (max-width: 767px) {
  .about::before {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 440px) {
  .about::before {
    display: none;
  }
}
.about .container {
  width: 100%;
  overflow: visible;
}
.about__inner {
  width: 100%;
  height: 94vh;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}
@media (max-width: 440px) {
  .about__inner {
    height: auto;
  }
}
.about__inner::before {
  content: "One Brief.";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
          transform: translate(-50%, -55%);
  font-family: "Anton", sans-serif;
  font-size: 54px;
  line-height: 1;
  color: #111;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .about__inner::before {
    font-size: 22px;
  }
}
@media (max-width: 440px) {
  .about__inner::before {
    display: none;
  }
}
.about__inner::after {
  content: "Infinite Creativity";
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 767px) {
  .about__inner::after {
    font-size: 11px;
    top: calc(50% + 16px);
  }
}
@media (max-width: 440px) {
  .about__inner::after {
    display: none;
  }
}
.about__svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1640px) {
  .about__svg {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .about__svg {
    width: 95%;
  }
}
@media (max-width: 440px) {
  .about__svg {
    display: none;
  }
}
.about__mob-title {
  display: none;
}
@media (max-width: 440px) {
  .about__mob-title {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-family: "Anton", sans-serif;
    font-size: 26px;
    line-height: 1;
    color: #111;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
  }
  .about__mob-title span {
    display: block;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
  }
}

.about-blocks {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
}
@media (max-width: 440px) {
  .about-blocks {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 31vw 3vw 31vw 3vw 31vw;
    grid-template-columns: 31vw 31vw 31vw;
    -ms-grid-rows: auto 3vw auto 3vw auto 3vw auto;
    grid-template-rows: repeat(4, auto);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 3vw;
    min-height: 100vh;
  }
  .about-blocks > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .about-blocks > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .about-blocks > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .about-blocks > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .about-blocks > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .about-blocks > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .about-blocks > *:nth-child(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .about-blocks > *:nth-child(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .about-blocks > *:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
  .about-blocks > *:nth-child(10) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .about-blocks > *:nth-child(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .about-blocks > *:nth-child(12) {
    -ms-grid-row: 7;
    -ms-grid-column: 5;
  }
}
.about-blocks__item {
  position: absolute;
  text-align: center;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  width: 134px;
  height: 200px;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1640px) {
  .about-blocks__item {
    width: 160px;
    height: 236px;
    border-radius: 16px;
  }
}
@media (max-width: 767px) and (min-width: 441px) {
  .about-blocks__item {
    width: 18vw;
    height: 26vw;
  }
}
@media (max-width: 440px) {
  .about-blocks__item {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    height: 46vw;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
  }
  .about-blocks__item:nth-child(9) {
    display: none !important;
  }
  .about-blocks__item:nth-child(10) {
    display: none !important;
  }
}
.about-blocks__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.45)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.about-blocks__item:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.about-blocks__item img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.about-blocks__item[data-pos="1"] {
  top: 16%;
  left: 50%;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="1"] {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-transform: rotate(-2.5deg) translateY(4px);
            transform: rotate(-2.5deg) translateY(4px);
    z-index: 3;
  }
}
.about-blocks__item[data-pos="2"] {
  top: 86%;
  left: 50%;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="2"] {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 4;
    grid-row: 4;
    -webkit-transform: rotate(2deg) translateY(-3px);
            transform: rotate(2deg) translateY(-3px);
    z-index: 3;
  }
}
.about-blocks__item[data-pos="3"] {
  top: 50%;
  left: 12%;
}
@media (min-width: 1640px) {
  .about-blocks__item[data-pos="3"] {
    left: 14%;
  }
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="3"] {
    left: 5%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="3"] {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    -webkit-transform: rotate(3deg) translate(3px, -2px);
            transform: rotate(3deg) translate(3px, -2px);
    z-index: 2;
  }
}
.about-blocks__item[data-pos="4"] {
  top: 50%;
  left: 88%;
}
@media (min-width: 1640px) {
  .about-blocks__item[data-pos="4"] {
    left: 86%;
  }
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="4"] {
    left: 95%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="4"] {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 2;
    grid-row: 2;
    -webkit-transform: rotate(-3.5deg) translate(-2px, 5px);
            transform: rotate(-3.5deg) translate(-2px, 5px);
    z-index: 4;
  }
}
.about-blocks__item[data-pos="5"] {
  top: 22%;
  left: 30%;
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="5"] {
    left: 22%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="5"] {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-transform: rotate(-4deg) translate(-2px, 6px);
            transform: rotate(-4deg) translate(-2px, 6px);
    z-index: 4;
  }
}
.about-blocks__item[data-pos="6"] {
  top: 22%;
  left: 70%;
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="6"] {
    left: 78%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="6"] {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 1;
    grid-row: 1;
    -webkit-transform: rotate(3.5deg) translate(2px, 3px);
            transform: rotate(3.5deg) translate(2px, 3px);
    z-index: 2;
  }
}
.about-blocks__item[data-pos="7"] {
  top: 78%;
  left: 30%;
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="7"] {
    left: 22%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="7"] {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
    -webkit-transform: rotate(2.5deg) translate(4px, -4px);
            transform: rotate(2.5deg) translate(4px, -4px);
    z-index: 3;
    display: block;
  }
}
.about-blocks__item[data-pos="8"] {
  top: 78%;
  left: 70%;
}
@media (max-width: 767px) {
  .about-blocks__item[data-pos="8"] {
    left: 78%;
  }
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="8"] {
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 3;
    grid-row: 3;
    -webkit-transform: rotate(-2deg) translate(-3px, 2px);
            transform: rotate(-2deg) translate(-3px, 2px);
    z-index: 4;
    display: block;
  }
}
.about-blocks__item {
  /* Доп. карточки из scene — только мобилка */
}
.about-blocks__item[data-pos="9"] {
  display: none;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="9"] {
    display: block;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
    -webkit-transform: rotate(-1.5deg) translate(1px, 3px);
            transform: rotate(-1.5deg) translate(1px, 3px);
    z-index: 3;
  }
}
.about-blocks__item[data-pos="10"] {
  display: none;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="10"] {
    display: block;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
    -webkit-transform: rotate(2deg) translate(-1px, -2px);
            transform: rotate(2deg) translate(-1px, -2px);
    z-index: 3;
  }
}
.about-blocks__item[data-pos="11"] {
  display: none;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="11"] {
    display: block;
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 4;
    grid-row: 4;
    -webkit-transform: rotate(-3deg) translate(2px, 4px);
            transform: rotate(-3deg) translate(2px, 4px);
    z-index: 2;
  }
}
.about-blocks__item[data-pos="12"] {
  display: none;
}
@media (max-width: 440px) {
  .about-blocks__item[data-pos="12"] {
    display: block;
    -ms-grid-column: 3;
    grid-column: 3;
    -ms-grid-row: 4;
    grid-row: 4;
    -webkit-transform: rotate(3deg) translate(-2px, -3px);
            transform: rotate(3deg) translate(-2px, -3px);
    z-index: 4;
  }
}
.about-blocks__category {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.18);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  font-weight: 600;
  line-height: 145%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  pointer-events: none;
}
@media (min-width: 1640px) {
  .about-blocks__category {
    font-size: 12px;
    padding: 5px 12px;
  }
}
@media (max-width: 767px) and (min-width: 441px) {
  .about-blocks__category {
    top: 4px;
    left: 4px;
    padding: 2px 5px;
    font-size: 10px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (max-width: 440px) {
  .about-blocks__category {
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(20, 20, 20, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.18);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 6px 20px rgba(0, 0, 0, 0.18);
  }
}
.about-blocks__view {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 11;
}
@media (min-width: 1640px) {
  .about-blocks__view {
    bottom: 12px;
    left: 12px;
    gap: 6px;
  }
}
@media (max-width: 767px) {
  .about-blocks__view {
    bottom: 7px;
    left: 7px;
    gap: 3px;
  }
}
@media (max-width: 440px) {
  .about-blocks__view {
    bottom: 10px;
    left: 10px;
    gap: 5px;
  }
}
.about-blocks__view span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 1640px) {
  .about-blocks__view span {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .about-blocks__view span {
    font-size: 10px;
  }
}
@media (max-width: 440px) {
  .about-blocks__view span {
    font-size: 16px;
    font-weight: 700;
  }
}
.about-blocks__view svg {
  width: 16px;
  height: 12px;
}
@media (min-width: 1640px) {
  .about-blocks__view svg {
    width: 18px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .about-blocks__view svg {
    width: 10px;
    height: 8px;
  }
}
@media (max-width: 440px) {
  .about-blocks__view svg {
    width: 19px;
    height: 15px;
  }
}

.why-us {
  position: relative;
  padding: 0 0 100px;
  background: #fff;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 18%, rgba(0, 0, 0, 0.028), transparent 20%), radial-gradient(circle at 88% 82%, rgba(0, 0, 0, 0.02), transparent 24%);
}
.why-us .container {
  position: relative;
  z-index: 2;
}
.why-us .title {
  margin: 0;
  display: block;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(46px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}
.why-us__block {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.why-us__block-title {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111;
}
.why-us__block-item {
  position: relative;
  min-width: 0;
  padding: 26px 22px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.012)), to(rgba(0, 0, 0, 0.003))), #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.012), rgba(0, 0, 0, 0.003)), #fff;
}
.why-us__block-item .list ul {
  display: -ms-grid;
  display: grid;
  gap: 0;
}
.why-us__block-item li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.why-us__block-item li:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}
.why-us__block-item .text-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: 2px;
  min-width: 0;
}
.why-us__block-item .item-title {
  display: block;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  text-transform: uppercase;
  color: #111;
}
.why-us__block-item .item-subtitle {
  display: block;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  font-style: italic;
  color: rgba(17, 17, 17, 0.5);
}
.why-us__block-item .mark {
  position: relative;
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  min-width: 62px;
  min-height: 62px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  background: #fff;
}
.why-us__block-item .mark img,
.why-us__block-item .mark svg {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.why-us__block-item.primary {
  border: 0;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.74)), to(rgba(0, 0, 0, 0.92))), url("../images/bg-why.jpg") center/cover no-repeat;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.92)), url("../images/bg-why.jpg") center/cover no-repeat;
  overflow: hidden;
}
.why-us__block-item.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.1), transparent 20%), radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.08), transparent 24%);
}
.why-us__block-item.primary .why-us__block-title,
.why-us__block-item.primary .list,
.why-us__block-item.primary li,
.why-us__block-item.primary .mark,
.why-us__block-item.primary .text-content {
  position: relative;
  z-index: 2;
}
.why-us__block-item.primary .why-us__block-title {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.why-us__block-item.primary li {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
.why-us__block-item.primary .mark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.why-us__block-item.primary .mark svg path {
  stroke: #fff;
}
.why-us__block-item.primary .item-title {
  color: #fff;
}
.why-us__block-item.primary .item-subtitle {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1440px) {
  .why-us {
    padding: 100px 0 84px;
  }
  .why-us__block {
    gap: 16px;
    margin-top: 46px;
  }
  .why-us__block-item {
    padding: 24;
  }
  .why-us__block-item .item-title {
    font-size: 16px;
  }
  .why-us__block-item .item-subtitle {
    font-size: 12px;
  }
  .why-us__block-title {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .why-us {
    padding: 90px 0 76px;
  }
}
@media (max-width: 900px) {
  .why-us {
    padding: 78px 0 66px;
  }
  .why-us .title {
    font-size: clamp(42px, 8vw, 72px);
  }
  .why-us__block {
    margin-top: 36px;
    gap: 16px;
  }
  .why-us__block-title {
    margin-bottom: 14px;
    padding-bottom: 14px;
    font-size: 22px;
  }
  .why-us__block-item {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }
  .why-us__block-item.primary {
    border-radius: 24px;
  }
  .why-us__block-item li {
    min-height: 64px;
    gap: 12px;
    padding: 14px 0;
  }
  .why-us__block-item .item-title {
    font-size: 15px;
  }
  .why-us__block-item .item-subtitle {
    font-size: 12px;
  }
  .why-us__block-item .mark {
    width: 38px;
    height: 38px;
    -ms-flex-preferred-size: 38px;
        flex-basis: 38px;
  }
}
@media (max-width: 767px) {
  .why-us {
    padding: 64px 0 54px;
  }
  .why-us .title {
    font-size: 38px;
    line-height: 0.95;
  }
  .why-us__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 14px;
  }
  .why-us__block-title {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }
  .why-us__block-item {
    padding: 18px 14px 14px;
    border-radius: 20px;
  }
  .why-us__block-item.primary {
    border-radius: 22px;
  }
  .why-us__block-item li {
    min-height: 58px;
    gap: 10px;
    padding: 12px 0;
  }
  .why-us__block-item .item-title {
    font-size: 14px;
    line-height: 1.3;
  }
  .why-us__block-item .item-subtitle {
    font-size: 11px;
  }
  .why-us__block-item .mark {
    width: 34px;
    height: 34px;
    -ms-flex-preferred-size: 34px;
        flex-basis: 34px;
  }
  .why-us__block-item .mark img,
  .why-us__block-item .mark svg {
    min-width: 20px !important;
    max-width: 38px;
    max-height: 38px;
  }
}
@media (max-width: 420px) {
  .why-us {
    padding: 0 0 46px;
  }
  .why-us .title {
    font-size: 34px;
  }
  .why-us__block-title {
    font-size: 18px;
  }
  .why-us__block-item {
    padding: 16px 12px 12px;
  }
  .why-us__block-item .item-title {
    font-size: 13px;
  }
  .why-us__block-item .item-subtitle {
    font-size: 14px;
  }
}

.real-art {
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.real-art .hero__cta {
  display: none;
}
@media (max-width: 440px) {
  .real-art .hero__cta {
    -webkit-transform: none;
            transform: none;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 14px;
    bottom: 4vh;
  }
}
.real-art::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 22;
  pointer-events: none;
}
@media (max-width: 440px) {
  .real-art::before {
    height: 200px;
  }
}
.real-art::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 22;
  pointer-events: none;
}
@media (max-width: 440px) {
  .real-art::after {
    height: 200px;
  }
}
.real-art .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.real-art__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateX(6%);
          transform: translateX(6%);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: none;
  transition: none;
}
.real-art__bg.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: opacity 1s ease, -webkit-transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 1s ease, -webkit-transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease;
  transition: transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1s ease, -webkit-transform 1.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.real-art__content {
  max-width: 560px;
  min-width: 0;
}
.real-art__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  background: #fff;
}
.real-art__title {
  margin: 0 0 28px;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 118px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  font-family: "Anton";
}
@media (max-width: 440px) {
  .real-art__title {
    line-height: 125%;
  }
}
.real-art__title span {
  font-family: "Anton", sans-serif;
}
.real-art__text {
  max-width: 200px;
  margin: 0;
  font: 500 18px/1.7 "Inter", sans-serif;
  color: rgba(17, 17, 17, 0.62);
}
.real-art__bottom {
  margin-top: 42px;
  display: -ms-grid;
  display: grid;
  gap: 28px;
}
.real-art__quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  max-width: 470px;
}
.real-art__quote-line {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  height: 1px;
  margin-top: 13px;
  background: #111;
}
.real-art__quote p {
  margin: 0;
  font: 500 15px/1.8 "Inter", sans-serif;
  color: rgba(17, 17, 17, 0.72);
}
.real-art__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.real-art__tags span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #fff;
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
}
.real-art__visual {
  min-width: 0;
}
.real-art__visual-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(82%, transparent));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 82%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(82%, transparent));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 82%);
  opacity: 0.35;
}
.real-art__placeholder {
  position: relative;
  width: min(100%, 560px);
  height: 88%;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 22%, rgba(0, 0, 0, 0.04), transparent 22%), radial-gradient(circle at 76% 78%, rgba(0, 0, 0, 0.04), transparent 20%), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.02)), to(rgba(0, 0, 0, 0.008))), #fafafa;
  background: radial-gradient(circle at 30% 22%, rgba(0, 0, 0, 0.04), transparent 22%), radial-gradient(circle at 76% 78%, rgba(0, 0, 0, 0.04), transparent 20%), linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.008)), #fafafa;
  border: 1px dashed rgba(17, 17, 17, 0.14);
  overflow: hidden;
}
.real-art__placeholder::before {
  content: "";
  position: absolute;
  inset: auto 8% 6% 8%;
  height: 32px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  -webkit-filter: blur(18px);
          filter: blur(18px);
}
.real-art__placeholder::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 10%;
  width: 1px;
  height: 72%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0)), color-stop(18%, rgba(17, 17, 17, 0.14)), color-stop(82%, rgba(17, 17, 17, 0.14)), to(rgba(17, 17, 17, 0)));
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.14) 18%, rgba(17, 17, 17, 0.14) 82%, rgba(17, 17, 17, 0) 100%);
}
.real-art__placeholder-mark {
  position: absolute;
  left: 22px;
  bottom: 20px;
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}
@media (max-width: 1200px) {
  .real-art {
    padding: 96px 0 88px;
  }
  .real-art__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .real-art__content {
    max-width: 360px;
  }
  .real-art__text {
    max-width: 360px;
  }
  .real-art__visual-frame {
    min-height: 620px;
  }
  .real-art__visual-stage {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 900px) {
  .real-art {
    padding: 78px 0 72px;
  }
  .real-art__eyebrow {
    margin-bottom: 18px;
  }
  .real-art__title {
    font-size: clamp(48px, 9vw, 74px);
    margin-bottom: 20px;
  }
  .real-art__text {
    font-size: 16px;
  }
  .real-art__bottom {
    margin-top: 28px;
    gap: 20px;
  }
  .real-art__visual-frame {
    min-height: 540px;
    border-radius: 28px;
  }
  .real-art__visual-frame::before {
    inset: 12px;
    border-radius: 18px;
  }
  .real-art__visual-grid {
    background-size: 58px 58px;
  }
  .real-art__visual-stage {
    padding: 24px;
  }
  .real-art__placeholder {
    width: 100%;
    height: 84%;
    border-radius: 22px;
  }
}
@media (max-width: 767px) {
  .real-art {
    padding: 62px 0 58px;
  }
  .real-art__eyebrow {
    min-height: 34px;
    padding: 0 12px;
    margin-bottom: 16px;
    font-size: 9px;
  }
  .real-art__title {
    font-size: 42px;
    margin-bottom: 16px;
  }
  .real-art__text {
    font-size: 14px;
    line-height: 1.75;
  }
  .real-art__bottom {
    margin-top: 24px;
    gap: 18px;
  }
  .real-art__quote {
    gap: 12px;
  }
  .real-art__quote-line {
    -ms-flex-preferred-size: 28px;
        flex-basis: 28px;
    margin-top: 11px;
  }
  .real-art__quote p {
    font-size: 14px;
    line-height: 1.7;
  }
  .real-art__tags {
    gap: 8px;
  }
  .real-art__tags span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 9px;
  }
  .real-art__visual-frame {
    min-height: 430px;
    border-radius: 22px;
  }
  .real-art__visual-stage {
    padding: 16px;
  }
  .real-art__placeholder {
    height: 82%;
    border-radius: 18px;
  }
  .real-art__placeholder-mark {
    left: 16px;
    bottom: 14px;
    font-size: 9px;
  }
}
@media (max-width: 440px) {
  .real-art {
    padding: 0;
    height: 90vh;
  }
  .real-art__bg {
    background-position: 63% 10%;
  }
  .real-art__content {
    position: relative;
    top: -20vh;
  }
}

@media (max-width: 440px) {
  .real-art__text {
    max-width: 220px;
  }
}

.channel {
  background: #fff;
  overflow: hidden;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  padding: 60px 0;
}
@media (max-width: 440px) {
  .channel {
    padding: 44px 0;
  }
}
.channel__inner {
  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;
  text-align: center;
}
.channel__muted, .channel__subtitle, .channel__text {
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.channel__muted.is-visible, .channel__subtitle.is-visible, .channel__text.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.channel__muted {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
}
.channel__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(100px, 19vw, 230px);
  line-height: 0.88;
  color: #111;
  letter-spacing: -0.02em;
  opacity: 0;
  -webkit-transform: translateY(30px) scale(0.96);
          transform: translateY(30px) scale(0.96);
  -webkit-transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
@media (max-width: 440px) {
  .channel__title {
    font-size: 32px;
    line-height: 125%;
  }
}
.channel__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.channel__subtitle {
  margin: 14px 0 0;
  font-size: clamp(11px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #111;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.channel__text {
  margin: 14px 0 0;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.65;
  color: #888;
  max-width: 340px;
  -webkit-transition-delay: 0.38s;
          transition-delay: 0.38s;
}

.channel-our {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.channel-our__title {
  margin: 0 0 clamp(20px, 3.5vh, 36px);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -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;
}
.channel-our__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.channel-our .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(16px, 2.8vw, 44px);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 440px) {
  .channel-our .content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.channel-our__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: 7px;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -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;
}
.channel-our__item:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.channel-our__item:nth-child(2) {
  -webkit-transition-delay: 80ms;
          transition-delay: 80ms;
}
.channel-our__item:nth-child(3) {
  -webkit-transition-delay: 160ms;
          transition-delay: 160ms;
}
.channel-our__item:nth-child(4) {
  -webkit-transition-delay: 240ms;
          transition-delay: 240ms;
}
.channel-our__item:nth-child(5) {
  -webkit-transition-delay: 320ms;
          transition-delay: 320ms;
}
.channel-our__item:nth-child(6) {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.channel-our__item:nth-child(7) {
  -webkit-transition-delay: 480ms;
          transition-delay: 480ms;
}
.channel-our__item:nth-child(8) {
  -webkit-transition-delay: 560ms;
          transition-delay: 560ms;
}
.channel-our__item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.channel-our__item.is-visible:hover .channel-our__item-image {
  -webkit-transform: translateY(-4px) scale(1.07);
          transform: translateY(-4px) scale(1.07);
  -webkit-box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
          box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}
.channel-our__item-image {
  width: clamp(68px, 8vw, 96px);
  height: clamp(68px, 8vw, 96px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  background: #e0e0e0;
}
.channel-our__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.channel-our__item-title {
  margin: 0;
  font-size: clamp(8px, 0.85vw, 11px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  line-height: 1.2;
}
.channel-our__item-count {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(16px, 1.9vw, 22px);
  color: #111;
  line-height: 1;
}
.channel-our__item-followers {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  line-height: 1;
}

.marquee {
  width: 100%;
  overflow: hidden;
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(8%, #000), color-stop(92%, #000), to(transparent));
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(8%, #000), color-stop(92%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee--top {
  margin-bottom: clamp(6px, 0.7vw, 10px);
}
.marquee__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.marquee--top .marquee__track {
  -webkit-animation: marquee-left 40s linear infinite;
          animation: marquee-left 40s linear infinite;
}
.marquee--bottom .marquee__track {
  -webkit-animation: marquee-right 45s linear infinite;
          animation: marquee-right 45s linear infinite;
}
.marquee__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(6px, 0.7vw, 10px);
  padding: 0;
  margin: 0;
  list-style: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.marquee__list:first-child {
  padding-right: clamp(6px, 0.7vw, 10px);
}
.marquee:hover .marquee__track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes marquee-left {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-left {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes marquee-right {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee-right {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.channel-follower {
  width: 100%;
  margin-top: clamp(40px, 7vh, 72px);
}
.channel-follower__title {
  margin: 0 0 10px;
  font-family: "Anton", sans-serif;
  font-size: clamp(22px, 3.4vw, 48px);
  text-transform: uppercase;
  color: #111;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.channel-follower__title.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.channel-follower__subittle {
  margin: 0 0 clamp(20px, 3.5vh, 36px);
  font-size: clamp(11px, 1.1vw, 13px);
  color: #888;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(16px);
          transform: translateY(16px);
  -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;
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.channel-follower__subittle.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.channel-follower__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: clamp(10px, 1.2vw, 16px);
  width: clamp(140px, 15vw, 200px);
  aspect-ratio: 1/1;
  background: #1a1a1a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  transition: box-shadow 0.4s ease, transform 0.4s ease, -webkit-box-shadow 0.4s ease, -webkit-transform 0.4s ease;
}
.channel-follower__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(38%, rgba(0, 0, 0, 0.28)), color-stop(60%, transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.28) 38%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.channel-follower__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
  display: block;
  -webkit-filter: brightness(0.82) grayscale(0.1);
          filter: brightness(0.82) grayscale(0.1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.5s ease;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-filter 0.5s ease;
}
.channel-follower__item:hover {
  -webkit-box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
          box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.channel-follower__name, .channel-follower__art {
  position: absolute;
  left: clamp(10px, 1.4vw, 14px);
  z-index: 2;
  color: #fff;
  line-height: 1.1;
}
.channel-follower__name {
  bottom: clamp(22px, 3.2vh, 32px);
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(10px, 1vw, 13px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.channel-follower__name::after {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1d9bf0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}
.channel-follower__art {
  bottom: clamp(8px, 1.4vh, 14px);
  font-size: clamp(8px, 0.85vw, 10px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.channel-bar {
  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;
  width: 100%;
  padding: clamp(18px, 3vh, 28px) clamp(20px, 4vw, 60px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: clamp(36px, 6vh, 56px);
  gap: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.channel-bar.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 640px) {
  .channel-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.channel-bar__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(9px, 0.9vw, 11px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  line-height: 1.55;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.channel-bar__col svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.55;
}
.channel-bar__col--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;
  gap: 2px;
  text-align: center;
}
.channel-bar__col--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}
@media (max-width: 640px) {
  .channel-bar__col--right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.channel-bar__logo {
  font-family: "Anton", sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
  color: #111;
  letter-spacing: 0.08em;
  line-height: 1;
}
.channel-bar__logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}

.channel-follower__title #typewriter {
  font-family: "Anton", sans-serif !important;
  font-size: clamp(22px, 3.4vw, 48px) !important;
  text-transform: uppercase;
  color: #111;
}

.cursor {
  -webkit-animation: blink 0.7s infinite;
          animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    -webkit-animation-play-state: paused !important;
            animation-play-state: paused !important;
  }
}
.steps {
  padding: 100px 0 0 0;
}
@media (max-width: 1024px) {
  .steps {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .steps {
    padding: 60px 0;
  }
}
@media (max-width: 440px) {
  .steps {
    padding: 48px 0;
  }
}
@media (max-width: 360px) {
  .steps {
    padding: 40px 0;
  }
}
.steps__muted {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(17, 17, 17, 0.5);
}
@media (max-width: 440px) {
  .steps__muted {
    font-size: 11px;
    padding: 4px 11px;
  }
}
@media (max-width: 360px) {
  .steps__muted {
    font-size: 10px;
  }
}
.steps__title {
  font-family: "Anton";
  font-weight: 400;
  font-size: 92px;
  line-height: 120%;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin: 22px 0;
}
@media (max-width: 1024px) {
  .steps__title {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .steps__title {
    font-size: 56px;
    max-width: 320px;
  }
}
@media (max-width: 440px) {
  .steps__title {
    font-size: 42px;
    max-width: 260px;
    margin: 20px 0;
    min-width: 100%;
  }
}
@media (max-width: 360px) {
  .steps__title {
    font-size: 36px;
    max-width: 220px;
    margin: 16px 0;
  }
}
.steps__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000;
  max-width: 280px;
}
@media (max-width: 440px) {
  .steps__subtitle {
    font-size: 14px;
    max-width: 240px;
    line-height: 155%;
  }
}
@media (max-width: 360px) {
  .steps__subtitle {
    font-size: 13px;
    max-width: 220px;
  }
}

.steps-content {
  margin-top: 100px;
  padding: 100px 0;
  overflow: clip;
}
@media (max-width: 1024px) {
  .steps-content {
    margin-top: 80px;
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .steps-content {
    margin-top: 60px;
    padding: 60px 0;
  }
}
@media (max-width: 440px) {
  .steps-content {
    margin-top: 50px;
    padding: 50px 0;
  }
}
@media (max-width: 360px) {
  .steps-content {
    margin-top: 40px;
    padding: 40px 0;
  }
}
.steps-content .step-circle-1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -40px;
}
@media (max-width: 440px) {
  .steps-content .step-circle-1 {
    top: -24px;
    display: none;
  }
  .steps-content .step-circle-1 svg {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 360px) {
  .steps-content .step-circle-1 {
    top: -20px;
  }
  .steps-content .step-circle-1 svg {
    width: 38px;
    height: 38px;
  }
}
.steps-content .steps-content__text:not(.step-add-1) {
  background-color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 11;
}
.steps-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background-color: #fff;
  padding: 20px;
}
@media (max-width: 440px) {
  .steps-content__text {
    padding: 16px;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .steps-content__text {
    padding: 12px;
    gap: 8px;
  }
}
.steps-content__text-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 440px) {
  .steps-content__text-title {
    gap: 7px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.steps-content__text-title span {
  font-family: "Anton";
}
.steps-content__text-title span:nth-child(1) {
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff6b00, #e85500, #cc4400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .steps-content__text-title span:nth-child(1) {
    font-size: 20px;
  }
}
@media (max-width: 440px) {
  .steps-content__text-title span:nth-child(1) {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .steps-content__text-title span:nth-child(1) {
    font-size: 16px;
  }
}
.steps-content__text-title span:nth-child(2) {
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 768px) {
  .steps-content__text-title span:nth-child(2) {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .steps-content__text-title span:nth-child(2) {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .steps-content__text-title span:nth-child(2) {
    font-size: 18px;
  }
}
.steps-content__text-subtitle {
  max-width: 240px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #000;
}
@media (max-width: 440px) {
  .steps-content__text-subtitle {
    font-size: 13px;
    max-width: 200px;
    line-height: 150%;
  }
}
@media (max-width: 360px) {
  .steps-content__text-subtitle {
    font-size: 12px;
    max-width: 180px;
  }
}
.steps-content__social {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.steps-content__social .content-text {
  display: block;
  background-color: #fff;
  padding: 12px;
  z-index: 11;
  text-align: center;
}
@media (max-width: 440px) {
  .steps-content__social .content-text {
    padding: 10px;
  }
}
.steps-content__social-muted {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  display: inline-block;
}
@media (max-width: 440px) {
  .steps-content__social-muted {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .steps-content__social-muted {
    font-size: 12px;
  }
}
.steps-content__social-title {
  font-family: "Anton";
  font-weight: 400;
  font-size: 102px;
  line-height: 100%;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f59646), color-stop(80%, #f54646));
  background: linear-gradient(180deg, #f59646 20%, #f54646 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: inline-block;
}
@media (max-width: 768px) {
  .steps-content__social-title {
    font-size: 80px;
  }
}
@media (max-width: 440px) {
  .steps-content__social-title {
    font-size: 56px;
  }
}
@media (max-width: 360px) {
  .steps-content__social-title {
    font-size: 46px;
  }
}

.content-svg {
  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;
  width: 100%;
  max-width: 1322px;
  margin: 0 auto;
}
.content-svg::before {
  position: absolute;
  content: "";
  left: calc(50% - 0.5px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: var(--line-h, 0px);
  top: -10%;
  background-color: rgba(0, 0, 0, 0.4392156863);
  -webkit-transition: none;
  transition: none;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 440px) {
  .content-svg::before {
    top: -100%;
    height: var(--line-h, 0px);
  }
}
.content-svg svg.steps-svg-main {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 440px) {
  .content-svg svg.steps-svg-main {
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
  }
}
@media (max-width: 768px) {
  .content-svg {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 440px) {
  .content-svg {
    padding: 0;
    margin-top: 210px;
    margin-bottom: 40px;
  }
}

.dot-wrap {
  position: absolute;
  width: 108px;
  height: 108px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1022 !important;
}
.dot-wrap img {
  position: absolute;
  z-index: 111;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  width: 30px;
  height: auto;
}
@media (max-width: 440px) {
  .dot-wrap img {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .dot-wrap {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 440px) {
  .dot-wrap {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 360px) {
  .dot-wrap {
    width: 32px;
    height: 32px;
  }
}

.dot-wrap .dot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.dot-ig {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  -webkit-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
@media (max-width: 768px) {
  .dot-ig {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 440px) {
  .dot-ig {
    width: 12px;
    height: 12px;
    border-radius: 3px;
  }
}
@media (max-width: 360px) {
  .dot-ig {
    width: 12px;
    height: 12px;
  }
}

.dot-1 {
  left: 18.25%;
  top: 40.7%;
}
@media (max-width: 440px) {
  .dot-1 {
    display: none;
  }
}

.dot-2 {
  left: 81.71%;
  top: 40.7%;
}
@media (max-width: 440px) {
  .dot-2 {
    display: none;
  }
}

.dot-3 {
  left: 18.25%;
  top: 59.18%;
}
@media (max-width: 440px) {
  .dot-3 {
    display: none;
  }
}

.dot-4 {
  left: 81.71%;
  top: 59.18%;
}
@media (max-width: 440px) {
  .dot-4 {
    display: none;
  }
}

.dot-5 {
  left: 37.23%;
  top: 25.61%;
}
@media (max-width: 440px) {
  .dot-5 {
    left: 24%;
    top: 8%;
    width: 64px;
    height: 64px;
  }
}

.dot-6 {
  left: 62.65%;
  top: 25.61%;
}
@media (max-width: 440px) {
  .dot-6 {
    left: 76%;
    top: 8%;
    width: 64px;
    height: 64px;
  }
}

.dot-7 {
  left: 37.23%;
  top: 74.27%;
}
@media (max-width: 440px) {
  .dot-7 {
    left: 24%;
    top: 92%;
    width: 64px;
    height: 64px;
  }
}

.dot-8 {
  left: 50.02%;
  top: 88.3%;
}
@media (max-width: 440px) {
  .dot-8 {
    left: 50%;
    top: 124%;
    width: 64px;
    height: 64px;
  }
}

.dot-9 {
  left: 50.02%;
  top: 12.28%;
}
@media (max-width: 440px) {
  .dot-9 {
    left: 50%;
    top: -26%;
    width: 64px;
    height: 64px;
  }
}

.dot-10 {
  left: 29.75%;
  top: 48.54%;
}
@media (max-width: 440px) {
  .dot-10 {
    left: 10%;
    top: 47%;
    width: 64px;
    height: 64px;
  }
}

.dot-11 {
  left: 70.21%;
  top: 48.54%;
}
@media (max-width: 440px) {
  .dot-11 {
    left: 90%;
    top: 47%;
    width: 64px;
    height: 64px;
  }
}

.dot-12 {
  left: 62.65%;
  top: 74.27%;
}
@media (max-width: 440px) {
  .dot-12 {
    left: 76%;
    top: 92%;
    width: 64px;
    height: 64px;
  }
}

.step-add-1 {
  position: relative;
  top: auto;
  bottom: 100px;
}
@media (max-width: 768px) {
  .step-add-1 {
    bottom: 60px;
  }
}
@media (max-width: 440px) {
  .step-add-1 {
    bottom: 40px;
  }
}
@media (max-width: 360px) {
  .step-add-1 {
    bottom: 30px;
  }
}

.step-add-2 {
  position: relative;
  top: 300px;
}
@media (max-width: 1024px) {
  .step-add-2 {
    top: 200px;
  }
}
@media (max-width: 768px) {
  .step-add-2 {
    top: 140px;
  }
}
@media (max-width: 440px) {
  .step-add-2 {
    top: 80px;
  }
}
@media (max-width: 360px) {
  .step-add-2 {
    top: 60px;
  }
}

.step-add-3 {
  position: relative !important;
  margin-top: 150px;
}
@media (max-width: 768px) {
  .step-add-3 {
    margin-top: 100px;
  }
}
@media (max-width: 440px) {
  .step-add-3 {
    margin-top: 290px;
  }
}

.step-add-4 {
  position: absolute;
  top: 100%;
}
@media (max-width: 440px) {
  .step-add-4 {
    position: relative !important;
    top: auto !important;
    margin-top: 60px;
    -webkit-transform: translate(-50%, -20%) !important;
            transform: translate(-50%, -20%) !important;
  }
}

.content-social-labels {
  width: 324px;
  height: 324px;
  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;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .content-social-labels {
    width: 280px;
    height: 280px;
    margin-top: 80px;
  }
}
@media (max-width: 440px) {
  .content-social-labels {
    width: 240px;
    height: 240px;
    margin-top: 60px;
  }
}
@media (max-width: 360px) {
  .content-social-labels {
    width: 210px;
    height: 210px;
    margin-top: 50px;
  }
}
.content-social-labels .circle-animate {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  z-index: 2;
}
@media (max-width: 440px) {
  .content-social-labels .circle-animate {
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
}
@media (max-width: 360px) {
  .content-social-labels .circle-animate {
    -webkit-transform: translate(-50%, -50%) scale(0.42);
            transform: translate(-50%, -50%) scale(0.42);
  }
}
.content-social-labels .circle-center-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  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: 0;
  text-align: center;
  white-space: nowrap;
}
.content-social-labels .circle-center-text .circle-center-title {
  font-family: "Anton";
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(135deg, #ff6b00, #e85500, #cc4400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 768px) {
  .content-social-labels .circle-center-text .circle-center-title {
    font-size: 52px;
  }
}
@media (max-width: 440px) {
  .content-social-labels .circle-center-text .circle-center-title {
    font-size: 44px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .circle-center-text .circle-center-title {
    font-size: 36px;
  }
}
.content-social-labels .circle-center-text .circle-center-subtitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  text-transform: uppercase;
  color: #1a1a1a;
}
@media (max-width: 440px) {
  .content-social-labels .circle-center-text .circle-center-subtitle {
    font-size: 13px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .circle-center-text .circle-center-subtitle {
    font-size: 12px;
  }
}
.content-social-labels .circle-center-text .circle-center-muted {
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: #1a1a1a;
}
@media (max-width: 440px) {
  .content-social-labels .circle-center-text .circle-center-muted {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .circle-center-text .circle-center-muted {
    font-size: 10px;
  }
}
.content-social-labels .social {
  width: 250px;
  height: 250px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .content-social-labels .social {
    width: 210px;
    height: 210px;
  }
}
@media (max-width: 440px) {
  .content-social-labels .social {
    width: 175px;
    height: 175px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social {
    width: 150px;
    height: 150px;
  }
}
.content-social-labels .social .social-item {
  position: absolute;
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item svg,
  .content-social-labels .social .social-item img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item svg,
  .content-social-labels .social .social-item img {
    width: 22px;
    height: 22px;
  }
}
.content-social-labels .social .social-item:nth-child(1) {
  left: 60px;
  top: 0;
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(1) {
    left: 28px;
    top: -8px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(1) {
    left: 20px;
    top: -10px;
  }
}
.content-social-labels .social .social-item:nth-child(2) {
  left: 60px;
  bottom: 0;
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(2) {
    left: 28px;
    bottom: -8px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(2) {
    left: 20px;
    bottom: -10px;
  }
}
.content-social-labels .social .social-item:nth-child(3) {
  right: 60px;
  bottom: 0;
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(3) {
    right: 28px;
    bottom: -8px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(3) {
    right: 20px;
    bottom: -10px;
  }
}
.content-social-labels .social .social-item:nth-child(4) {
  right: 60px;
  top: 0;
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(4) {
    right: 28px;
    top: -8px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(4) {
    right: 20px;
    top: -10px;
  }
}
.content-social-labels .social .social-item:nth-child(5) {
  right: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(5) {
    right: -18px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(5) {
    right: -20px;
  }
}
.content-social-labels .social .social-item:nth-child(6) {
  left: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 440px) {
  .content-social-labels .social .social-item:nth-child(6) {
    left: -18px;
  }
}
@media (max-width: 360px) {
  .content-social-labels .social .social-item:nth-child(6) {
    left: -20px;
  }
}

.step-company {
  position: relative;
  z-index: 11;
  margin-top: 390px;
}
@media (max-width: 1024px) {
  .step-company {
    margin-top: 320px;
  }
}
@media (max-width: 768px) {
  .step-company {
    margin-top: 240px;
  }
}
@media (max-width: 440px) {
  .step-company {
    margin-top: 140px;
  }
}
@media (max-width: 360px) {
  .step-company {
    margin-top: 110px;
  }
}
.step-company .step-add-4 {
  position: absolute !important;
  top: -50% !important;
}
@media (max-width: 440px) {
  .step-company .step-add-4 {
    position: relative !important;
    top: auto !important;
    margin-bottom: 120px;
  }
}
.step-company__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1200px) {
  .step-company__block {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .step-company__block {
    -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 440px) {
  .step-company__block {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background-color: #fff;
  }
}
@media (max-width: 360px) {
  .step-company__block {
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.step-company__block-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;
  text-align: center;
  gap: 12px;
  border: 3px dashed rgba(0, 0, 0, 0.631372549);
  padding: 30px 0;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 768px) {
  .step-company__block-item {
    padding: 24px 10px;
    gap: 10px;
  }
}
@media (max-width: 440px) {
  .step-company__block-item {
    padding: 20px 8px;
    gap: 8px;
    border-radius: 8px;
  }
  .step-company__block-item:last-child {
    display: none;
  }
}
@media (max-width: 360px) {
  .step-company__block-item {
    padding: 16px 6px;
    gap: 6px;
  }
}
.step-company__block-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ff6b00, #e85500, #cc4400);
  border-radius: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step-company__block-img svg {
  width: 32px;
  height: auto;
}
.step-company__block-img svg path {
  fill: #fff;
}
@media (max-width: 768px) {
  .step-company__block-img {
    width: 52px;
    height: 52px;
  }
  .step-company__block-img svg {
    width: 26px;
    height: auto;
  }
}
@media (max-width: 440px) {
  .step-company__block-img {
    width: 48px;
    height: 48px;
  }
  .step-company__block-img svg {
    width: 26px;
    height: auto;
  }
}
@media (max-width: 360px) {
  .step-company__block-img {
    width: 42px;
    height: 42px;
  }
  .step-company__block-img svg {
    width: 14px;
    height: auto;
  }
}
.step-company__block-count {
  font-family: "Anton";
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (max-width: 1024px) {
  .step-company__block-count {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .step-company__block-count {
    font-size: 24px;
  }
}
@media (max-width: 440px) {
  .step-company__block-count {
    font-size: 24px;
  }
}
.step-company__block-subtitle {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: #888;
}
@media (max-width: 768px) {
  .step-company__block-subtitle {
    font-size: 12px;
  }
}
@media (max-width: 440px) {
  .step-company__block-subtitle {
    font-size: 14px;
    line-height: 145%;
    max-width: 100px;
  }
}
@media (max-width: 360px) {
  .step-company__block-subtitle {
    font-size: 11px;
  }
}
.step-company__block-extra {
  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;
  margin-top: 8px;
  min-height: 36px;
}
@media (max-width: 768px) {
  .step-company__block-extra {
    margin-top: 6px;
    min-height: 30px;
  }
}
@media (max-width: 440px) {
  .step-company__block-extra {
    margin-top: 4px;
    min-height: 28px;
  }
}
.step-company__block-extra .chart-line {
  width: 100%;
  height: 48px;
  display: block;
}
@media (max-width: 768px) {
  .step-company__block-extra .chart-line {
    height: 26px;
  }
}
@media (max-width: 440px) {
  .step-company__block-extra .chart-line {
    height: 40px;
  }
}
.step-company__block-extra .extra-avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.step-company__block-extra .extra-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}
.step-company__block-extra .extra-avatars img:first-child {
  margin-left: 0;
}
@media (max-width: 768px) {
  .step-company__block-extra .extra-avatars img {
    width: 28px;
    height: 28px;
    margin-left: -6px;
  }
}
@media (max-width: 440px) {
  .step-company__block-extra .extra-avatars img {
    width: 26px;
    height: 26px;
    margin-left: -6px;
  }
}
@media (max-width: 360px) {
  .step-company__block-extra .extra-avatars img {
    width: 24px;
    height: 24px;
    margin-left: -5px;
  }
}
.step-company__block-extra .extra-avatars__more {
  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;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f3f3f3;
  border: 2px solid #fff;
  margin-left: -8px;
  font-weight: 700;
  font-size: 12px;
  color: #888;
}
@media (max-width: 768px) {
  .step-company__block-extra .extra-avatars__more {
    width: 28px;
    height: 28px;
    margin-left: -6px;
    font-size: 11px;
  }
}
@media (max-width: 440px) {
  .step-company__block-extra .extra-avatars__more {
    width: 26px;
    height: 26px;
    margin-left: -6px;
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .step-company__block-extra .extra-avatars__more {
    width: 24px;
    height: 24px;
    margin-left: -5px;
    font-size: 10px;
  }
}
.step-company__block-extra .extra-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  background-color: #fff;
}
.step-company__block-extra .extra-socials img {
  width: auto;
  height: 18px;
  -webkit-filter: grayscale(1) contrast(9999) !important;
          filter: grayscale(1) contrast(9999) !important;
}
.step-company__block-extra .extra-brands {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 440px) {
  .step-company__block-extra .extra-brands {
    gap: 0;
  }
}
.step-company__block-extra .extra-brands img {
  width: auto;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1) brightness(0);
  -webkit-filter: grayscale(1) brightness(0);
  opacity: 1;
}

.company-work {
  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: 40px;
  margin-bottom: 100px;
}
@media (max-width: 440px) {
  .company-work {
    gap: 24px;
    margin-bottom: 60px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 360px) {
  .company-work {
    gap: 20px;
    margin-bottom: 50px;
  }
}
.company-work .line {
  display: block;
  width: 1px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1176470588);
}
@media (max-width: 440px) {
  .company-work .line {
    height: 40px;
  }
}
@media (max-width: 360px) {
  .company-work .line {
    height: 30px;
  }
}

@media (max-width: 440px) {
  .step-circle-2 {
    display: none;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.popup-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.popup-overlay.is-active .popup {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.popup__close {
  position: fixed;
  top: 32px;
  right: 40px;
  z-index: 100001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: none;
  border: none;
  padding: 8px;
}
.popup__close span {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup__close svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.popup__close:hover span {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.popup__close:hover svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 768px) {
  .popup__close {
    top: 16px;
    right: 16px;
  }
  .popup__close span {
    display: none;
  }
}
.popup__scroll {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.popup__scroll::-webkit-scrollbar {
  width: 5px;
}
.popup__scroll::-webkit-scrollbar-track {
  background: transparent;
}
.popup__scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}
.popup__container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .popup__container {
    padding: 72px 24px 60px;
  }
}
@media (max-width: 440px) {
  .popup__container {
    padding: 60px 16px 40px;
  }
}
.popup__title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 60px;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.6s 0.15s ease, -webkit-transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.15s ease, -webkit-transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.15s ease, transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.15s ease, transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
  word-break: break-word;
  overflow-wrap: break-word;
}
.popup-overlay.is-active .popup__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 768px) {
  .popup__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 440px) {
  .popup__title {
    margin-bottom: 24px;
  }
}
.popup__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 60px 1fr;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s 0.3s ease, -webkit-transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.3s ease, -webkit-transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.3s ease, transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.3s ease, transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.popup-overlay.is-active .popup__body {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 900px) {
  .popup__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.popup__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: 32px;
  padding-top: 4px;
}
@media (max-width: 900px) {
  .popup__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 440px) {
  .popup__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.popup__info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (max-width: 900px) {
  .popup__info-block {
    min-width: 140px;
  }
}
.popup__label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.45);
}
.popup__value {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  margin: 0;
}
@media (max-width: 440px) {
  .popup__value {
    font-size: 13px;
  }
}
.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
}
.popup__form-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #111;
  margin-bottom: 16px;
}
@media (max-width: 440px) {
  .popup__form-label {
    margin-bottom: 12px;
  }
}
.popup__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
@media (max-width: 540px) {
  .popup__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.popup__field {
  position: relative;
  min-width: 0;
}
.popup__field input,
.popup__field textarea {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #111;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 0;
}
.popup__field input::-webkit-input-placeholder, .popup__field textarea::-webkit-input-placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 400;
}
.popup__field input::-moz-placeholder, .popup__field textarea::-moz-placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 400;
}
.popup__field input:-ms-input-placeholder, .popup__field textarea:-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 400;
}
.popup__field input::-ms-input-placeholder, .popup__field textarea::-ms-input-placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 400;
}
.popup__field input::placeholder,
.popup__field textarea::placeholder {
  color: rgba(17, 17, 17, 0.35);
  font-weight: 400;
}
.popup__field input:focus,
.popup__field textarea:focus {
  border-bottom-color: #111;
}
@media (max-width: 440px) {
  .popup__field input,
  .popup__field textarea {
    padding: 14px 0;
    font-size: 16px;
  }
}
.popup__field textarea {
  resize: none;
  min-height: 80px;
  line-height: 1.6;
}
@media (max-width: 440px) {
  .popup__field textarea {
    min-height: 60px;
	max-height: 100px;
  }
}
.popup__captcha {
  margin-top: 24px;
}
@media (max-width: 440px) {
  .popup__captcha {
    margin-top: 16px;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
@media (max-width: 360px) {
  .popup__captcha {
    -webkit-transform: scale(0.78);
            transform: scale(0.78);
  }
}
.popup__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  min-width: 140px;
  height: 48px;
  
   
  border: 1.5px solid #111;
  background: #111;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  -webkit-transition: background 0.35s ease, color 0.35s ease, -webkit-transform 0.2s ease;
  transition: background 0.35s ease, color 0.35s ease, -webkit-transform 0.2s ease;
  transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease;
  transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.popup__submit:hover {
  background: #fff;
  color: #111;
}
.popup__submit:active {
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}
@media (max-width: 440px) {
  .popup__submit {
    width: 100%;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    height: 52px;
    
    font-size: 14px;
  }
}
.popup__submit.is-loading {
  pointer-events: none;
  opacity: 0.6;
}
.popup__submit.is-loading span {
  opacity: 0;
}
.popup__submit.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: popup-spin 0.6s linear infinite;
          animation: popup-spin 0.6s linear infinite;
}
.popup__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s 0.5s ease, -webkit-transform 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.5s ease, -webkit-transform 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.5s ease, transform 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.6s 0.5s ease, transform 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.popup-overlay.is-active .popup__bottom {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 768px) {
  .popup__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
  }
}
@media (max-width: 440px) {
  .popup__bottom {
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
  }
}
.popup__contact-link {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  word-break: break-all;
  overflow-wrap: break-word;
}
.popup__contact-link:hover {
  opacity: 0.6;
}
.popup__contact-link--email, .popup__contact-link--phone {
  font-size: clamp(18px, 4vw, 42px);
}
.popup__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: #fff;
  z-index: 10;
  padding: 40px 20px;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popup__success.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: popup-success-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popup-success-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.popup__success-icon {
  margin-bottom: 28px;
}
.popup__success-icon svg circle {
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  -webkit-animation: popup-circle-draw 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popup-circle-draw 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.popup__success-icon svg path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  -webkit-animation: popup-check-draw 0.5s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popup-check-draw 0.5s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.popup__success-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  text-transform: uppercase;
  color: #111;
  margin: 0 0 10px;
}
.popup__success-text {
  font: 500 15px/1.7 "Montserrat", sans-serif;
  color: rgba(17, 17, 17, 0.45);
  margin: 0;
  max-width: 400px;
}
@media (max-width: 440px) {
  .popup__success-text {
    font-size: 14px;
  }
}

.popup__field--select {
  overflow: visible;
  z-index: 50;
}

.custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 50;
}
.custom-select__trigger {
  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;
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  background: transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.custom-select__trigger p{
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.custom-select__trigger:hover {
  border-bottom-color: rgba(17, 17, 17, 0.35);
}
@media (max-width: 440px) {
  .custom-select__trigger {
    padding: 14px 0;
  }
}
.custom-select__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.35);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.wpcf7-not-valid-tip {
    font-size: 12px;
    margin: 10px 0;
}
@media (max-width: 440px) {
  .custom-select__text {
    font-size: 16px;
  }
}
.custom-select__arrow {
  color: #111;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
  margin-left: 8px;
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.15);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  pointer-events: none;
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  max-height: 240px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 440px) {
  .custom-select__dropdown {
    max-height: 200px;
  }
}
.custom-select__option {
  padding: 14px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: background 0.2s ease, padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
}
.custom-select__option:hover {
  background: rgba(17, 17, 17, 0.04);
  padding-left: 22px;
}
.custom-select__option:active {
  background: rgba(17, 17, 17, 0.08);
}
.custom-select__option.is-selected {
  font-weight: 600;
  background: rgba(17, 17, 17, 0.06);
}
@media (max-width: 440px) {
  .custom-select__option {
    padding: 16px;
    font-size: 15px;
  }
}
.custom-select.is-open {
  z-index: 200;
}
.custom-select.is-open .custom-select__trigger {
  border-bottom-color: #111;
}
.custom-select.is-open .custom-select__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-select.is-open .custom-select__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: all;
}
.custom-select.has-value .custom-select__text {
  color: #111;
}

@-webkit-keyframes popup-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes popup-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes popup-success-in {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popup-success-in {
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes popup-circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes popup-circle-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes popup-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes popup-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes popup-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  40% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  60% {
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  80% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
@keyframes popup-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
  40% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  60% {
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px);
  }
  80% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
}
.popup-overlay.is-active .popup__field {
  opacity: 0;
  -webkit-transform: translateY(14px);
          transform: translateY(14px);
  -webkit-animation: popup-field-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: popup-field-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.popup-overlay.is-active .popup__field:nth-child(1) {
  -webkit-animation-delay: 0.41s;
          animation-delay: 0.41s;
}
.popup-overlay.is-active .popup__field:nth-child(2) {
  -webkit-animation-delay: 0.47s;
          animation-delay: 0.47s;
}
.popup-overlay.is-active .popup__field:nth-child(3) {
  -webkit-animation-delay: 0.53s;
          animation-delay: 0.53s;
}
.popup-overlay.is-active .popup__field:nth-child(4) {
  -webkit-animation-delay: 0.59s;
          animation-delay: 0.59s;
}
.popup-overlay.is-active .popup__field:nth-child(5) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
.popup-overlay.is-active .popup__field:nth-child(6) {
  -webkit-animation-delay: 0.71s;
          animation-delay: 0.71s;
}
.popup-overlay.is-active .popup__field:nth-child(7) {
  -webkit-animation-delay: 0.77s;
          animation-delay: 0.77s;
}
.popup-overlay.is-active .popup__field:nth-child(8) {
  -webkit-animation-delay: 0.83s;
          animation-delay: 0.83s;
}

.popup-overlay.is-active .popup__row .popup__field:nth-child(1) {
  -webkit-animation-delay: 0.41s;
          animation-delay: 0.41s;
}
.popup-overlay.is-active .popup__row .popup__field:nth-child(2) {
  -webkit-animation-delay: 0.47s;
          animation-delay: 0.47s;
}

@-webkit-keyframes popup-field-in {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes popup-field-in {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.footer-premium {
  position: relative;
  padding: 100px 0 40px;
  background: #fff;
  color: #111;
  overflow: hidden;
  z-index: 3;
  bottom: 1px;
}
.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.025), transparent 24%), radial-gradient(circle at 88% 80%, rgba(0, 0, 0, 0.02), transparent 26%);
}
.footer-premium__inner {
  position: relative;
  z-index: 2;
}
.footer-premium__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  padding: 0 18px;
  margin-bottom: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}
.footer-premium__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 72px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
.footer-premium__grid .footer-img-stat {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 440px) {
  .footer-premium__grid .footer-img-stat {
    max-width: 360px;
    left: 160px;
  }
}
.footer-premium__left {
  min-width: 0;
}
.footer-premium__title {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 7.5vw, 138px);
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #111;
  line-height: 125%;
  font-family: "Anton", sans-serif;
  padding-bottom: 250px;
}
.footer-premium__right {
  min-width: 0;
  padding-top: 14px;
}
.footer-premium__text {
  margin: 0 0 32px;
  max-width: 340px;
  font: 500 15px/1.9 "Inter", sans-serif;
  color: rgba(17, 17, 17, 0.62);
}
.footer-premium__link {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  font: 700 12px/1 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}
.footer-premium__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(17, 17, 17, 0.18);
}
.footer-premium__middle {
  margin-bottom: 110px;
}
.footer-premium__line {
  width: 100%;
  height: 1px;
  margin-bottom: 40px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(12%, rgba(17, 17, 17, 0.14)), color-stop(88%, rgba(17, 17, 17, 0.14)), to(transparent));
  background: linear-gradient(90deg, transparent 0%, rgba(17, 17, 17, 0.14) 12%, rgba(17, 17, 17, 0.14) 88%, transparent 100%);
}
.footer-premium__meta {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}
.footer-premium__meta-block {
  min-width: 0;
  padding-right: 10px;
}
.footer-premium__meta-label {
  display: block;
  margin-bottom: 20px;
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}
.footer-premium__meta-link, .footer-premium__meta-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: 500 15px/1.75 "Inter", sans-serif;
  color: #111;
  text-decoration: none;
}
.footer-premium__meta-text {
  max-width: 280px;
  margin: 0;
}
.footer-premium__nav {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-premium__nav li {
  margin: 0;
}
.footer-premium__nav a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: 500 15px/1.75 "Inter", sans-serif;
  color: #111;
  text-decoration: none;
}
.footer-premium__bottom {
  position: relative;
  padding-top: 34px;
}
.footer-premium__bottom-top {
  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;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-premium__copyright, .footer-premium__status {
  font: 700 10px/1 "Inter", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.42);
}
.footer-premium__brand {
  font-family: "Anton", sans-serif;
  font-size: clamp(96px, 18vw, 340px);
  line-height: 0.8;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
  -webkit-transform: translateX(-0.01em);
          transform: translateX(-0.01em);
}
.footer-premium__brand-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}
.footer-premium__brand-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: rgba(17, 17, 17, 0.08);
}
@media (max-width: 1200px) {
  .footer-premium {
    padding: 140px 0 34px;
  }
  .footer-premium__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-premium__right {
    padding-top: 0;
  }
  .footer-premium__text {
    max-width: 640px;
    margin-bottom: 28px;
  }
  .footer-premium__middle {
    margin-bottom: 80px;
  }
  .footer-premium__meta {
    -ms-grid-columns: 1fr 28px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }
  .footer-premium__brand {
    font-size: clamp(84px, 15vw, 220px);
    white-space: normal;
  }
}
@media (max-width: 900px) {
  .footer-premium {
    padding: 110px 0 28px;
  }
  .footer-premium__eyebrow {
    margin-bottom: 28px;
  }
  .footer-premium__title {
    font-size: clamp(52px, 10vw, 92px);
    line-height: 125%;
  }
  .footer-premium__text, .footer-premium__meta-link, .footer-premium__meta-text, .footer-premium__nav a {
    font-size: 14px;
  }
  .footer-premium__middle {
    margin-bottom: 60px;
  }
  .footer-premium__line {
    margin-bottom: 28px;
  }
  .footer-premium__meta {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-premium__bottom-top {
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  .footer-premium {
    padding: 84px 0 22px;
  }
  .footer-premium__eyebrow {
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .footer-premium__grid {
    gap: 24px;
  }
  .footer-premium__title {
    font-size: 44px;
    line-height: 0.92;
  }
  .footer-premium__text {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.75;
  }
  .footer-premium__link {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding-bottom: 10px;
  }
  .footer-premium__middle {
    margin-bottom: 42px;
  }
  .footer-premium__line {
    margin-bottom: 22px;
  }
  .footer-premium__meta {
    gap: 24px;
  }
  .footer-premium__meta-block {
    padding-right: 0;
  }
  .footer-premium__meta-label {
    margin-bottom: 14px;
    font-size: 9px;
  }
  .footer-premium__meta-link, .footer-premium__meta-text {
    font-size: 14px;
    line-height: 1.65;
  }
  .footer-premium__nav {
    gap: 10px;
  }
  .footer-premium__nav a {
    font-size: 14px;
    line-height: 1.65;
  }
  .footer-premium__bottom {
    padding-top: 22px;
  }
  .footer-premium__bottom-top {
    -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: 10px;
    margin-bottom: 18px;
  }
  .footer-premium__copyright, .footer-premium__status {
    font-size: 9px;
    line-height: 1.3;
  }
  .footer-premium__brand {
    font-size: 62px;
    line-height: 0.9;
    white-space: normal;
    word-break: break-word;
  }
  .footer-premium__brand-wrap {
    padding-top: 14px;
  }
}
@media (max-width: 420px) {
  .footer-premium {
    padding: 32px 0 20px;
  }
  .footer-premium__title {
    font-size: 38px;
    line-height: 125%;
  }
  .footer-premium__text, .footer-premium__meta-link, .footer-premium__meta-text, .footer-premium__nav a {
    font-size: 18px;
  }
  .footer-premium__brand {
    font-size: 52px;
  }
}

.footer-premium__right_text {
  position: absolute;
  left: 20%;
  top: 50%;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
}
@media (max-width: 1440px) {
  .footer-premium__right_text {
    left: 10%;
    top: -50%;
  }
}
@media (min-width: 1040px) and (max-width: 1240px) {
  .footer-premium__right_text {
    left: 20vw;
    top: -50%;
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
}
@media (min-width: 740px) and (max-width: 1039px) {
  .footer-premium__right_text {
    left: 10vw;
    top: -50%;
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
}
@media (min-width: 740px) and (max-width: 880px) {
  .footer-premium__right_text {
    left: -2vw;
    top: -50%;
    -webkit-transform: translateY(-80%);
            transform: translateY(-80%);
  }
}
@media (min-width: 540px) and (max-width: 739px) {
  .footer-premium__right_text {
    left: -12vw;
    top: -50%;
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}
@media (max-width: 440px) {
  .footer-premium__right_text {
    -webkit-transform: translate(-30%, 0%);
            transform: translate(-30%, 0%);
  }
}

.footer-premium__right_text {
  position: relative;
  max-width: 420px;
  z-index: 11;
  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;
  text-align: center;
  padding: 80px 40px;
}
.footer-premium__right_text::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(245, 150, 70) 0%, rgba(245, 150, 70, 0) 70%);
  z-index: -1;
}
.footer-premium__right_text::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(255, 160, 80, 0.3);
  z-index: -1;
}
.footer-premium__right_text-title {
  font-family: "PP Editorial New" !important;
  font-size: clamp(28px, 4vw, 42px);
  font-family: "Anton";
  line-height: 125%;
  text-transform: uppercase;
  color: #1a1a1a;
  font-weight: bold;
}
.footer-premium__right_text-title span,
.footer-premium__right_text-title em {
  color: #e85d20;
  font-family: "Playfair Display", serif;
  font-style: italic;
  text-transform: none;
}
.footer-premium__right_text-subtitle {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #1a1a1a;
}

.hero__cta-footerr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-family: "Montserrat";
  margin-top: 24px;
}
.hero__cta-footerr svg {
  width: 20px;
  height: 20px;
}



/*  */

.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.popup__captcha .g-recaptcha {
    transform: scale(1.2);
    transform-origin: left top;
}
.wpcf7-spinner {
    display: none !important;
}


.popup__captcha {
	margin-bottom: 20px;
}

/*  */

/* ============================================================
   FIX: Channel-follower cards — чистая картинка + градиент только снизу
   Картинка всегда в hover-состоянии (статично)
   ============================================================ */

.channel-follower__item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.channel-follower__item a {
	opacity: 1;
	filter: none;
}

/* убиваем любые старые затемнения/оверлеи на карточке */
.channel-follower__item::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

/* картинка — яркая, без фильтров, сразу увеличенная (как в hover) */
.channel-follower__item img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block !important;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 1 !important;
  background: none !important;
  transform: scale(1.05) !important;
  transition: none !important;
  z-index: 1 !important;
}

/* нежный градиент ТОЛЬКО снизу — подложка под белый текст */
.channel-follower__item::before {
  content: "";
  position: absolute;
  inset: 0;
  top: auto;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.75) 20%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}
/* текст всегда поверх градиента */
.channel-follower__name,
.channel-follower__art {
  z-index: 3 !important;
  position: absolute !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* при наведении ничего не меняется — статично */


/*  */

.channel,
.channel-follower,
.marquee,
.marquee__track,
.marquee__list {
  background: transparent !important;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}


