@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --desc-width: 1440;
  --mob-width: 390;
  --padd-16: 16px;
  --padd-24: 24px;
  --main-white: #fff;
  --main-red: #f15c39;
  --main-green: #1e6b3d;
  --main-gray-light: #f9f9f9;
  --main-gray-mid: #f5f5f5;
  --main-gray-hard: #cdc8c8;
  --main-black-mid: rgba(0, 0, 0, 0.4);
  --main-black: #000;

  --bs-cookie-bg: rgba(24, 17, 17, 0.96);
  --bs-cookie-panel: #ffffff;
  --bs-cookie-red: var(--main-red);
  --bs-cookie-text: #ffffff;
  --bs-cookie-muted: rgba(255, 255, 255, 0.76);
  --bs-cookie-border: rgba(255, 255, 255, 0.78);
  --bs-cookie-dark: #151515;

  --line: #dcdcdc;
  --line-2: rgb(151, 151, 151);
  --line-3: rgba(0, 0, 0, 0.08);
  --main-black-light: rgba(0, 0, 0, 0.1);
  --shadow-lite: 0px 10px 12px 0px rgba(0, 0, 0, 0.1);
  --shadow-hard: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
}

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

body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

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

h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--main-black);
  font-weight: 700;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  color: var(--main-black);
  font-weight: 700;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  color: var(--main-black);
  font-weight: 700;
}

h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--main-black);
  font-weight: 400;
  text-align: center;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--main-black);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

span {
  font-family: "Montserrat", sans-serif;
  color: var(--main-black);
  font-weight: 600;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  line-height: 150%;
  color: var(--main-black);
  font-weight: 400;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.animate-this,
[animate] {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 36px, 0);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.animate-this.is-visible,
[animate].is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  filter: blur(0px);
}

[animate] .line {
  display: block;
  overflow: hidden;
}

[animate] .word {
  display: inline-block;
  will-change: transform, opacity;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--main-black);
  opacity: 1;
  pointer-events: none;
  padding: 24px;
}

.preloader-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.preloader-shield {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.preloader-shield svg {
  width: 50px;
  height: 100%;
  display: block;
}

.preloader-wordmark {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.preloader-wordmark svg {
  width: 140px;
  height: auto;
  display: block;
}

.preloader-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  z-index: 2;
  display: flex;
  justify-content: center;
}

#loader-text {
  color: var(--main-white);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 450px) {
  .preloader-logo {
    gap: 12px;
    transform: scale(0.95);
  }

  .preloader-bottom {
    bottom: 28px;
  }
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 2rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
    line-height: 150%;
  }

  .container {
    padding: 0 24px;
  }

  .hero-title-p br {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 1.9rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
    line-height: 24px;
  }

  span {
    font-size: 1rem;
  }

  .container {
    padding: 0 20px;
  }

  .hero-title-p br {
    display: none;
  }
}

header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1005;
  pointer-events: none;
}

nav {
  position: relative;
  width: min(calc(100% - 48px), 1200px);
  margin: 0 auto;
  pointer-events: auto;
  overflow: visible;
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
}

.nav-wrap {
  position: relative;
  z-index: 2;
  min-height: 72px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 118px;
  height: auto;
}

.links {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}

.links a {
  color: var(--main-black);
  transition: all 0.3s ease-in-out;
}

.links a:hover {
  color: var(--main-red);
  transition: all 0.3s ease-in-out;
}

.hero-wrap {
  margin-top: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--padd-24);
}

.hero-text a {
  width: 100%;
}

.flex-btn {
  margin-top: var(--padd-24);
  display: flex;
  gap: var(--padd-16);
}

.hero-premium {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(241, 92, 57, 0.14),
      transparent 32%
    ),
    radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.055), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
}

.hero-premium::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(241, 92, 57, 0.13);
  filter: blur(70px);
  pointer-events: none;
}

.hero-premium::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 120px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
  pointer-events: none;
}

.hero-premium .container {
  position: relative;
  z-index: 2;
}

.hero-premium .hero-wrap {
  margin-top: 0;
  min-height: calc(100vh - 94px);
  padding: 72px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 76px;
}

.hero-premium .hero-text {
  max-width: 620px;
  gap: 26px;
}

.hero-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--main-black-light);
  border-radius: 120px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--main-black);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main-red);
  box-shadow: 0 0 0 6px rgba(241, 92, 57, 0.12);
}

.hero-premium .hero-title {
  width: 100%;
  max-width: 720px;
  font-size: clamp(56px, 5.35vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 800;
  color: var(--main-black);
}

.hero-premium .hero-title-p {
  max-width: 540px;
  font-size: 18px;
  line-height: 30px;
  color: rgba(0, 0, 0, 0.58);
}

.hero-premium .flex-btn {
  margin-top: 4px;
}

.hero-premium .main-btn {
  padding: 15px 26px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.hero-premium .gray-btn {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
}

.hero-stat {
  padding: 18px 18px;
  border: 1px solid var(--main-black-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1;
  color: var(--main-black);
}

.hero-stat span {
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
}

.hero-photo {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  height: 680px;
  overflow: hidden;
  border-radius: 42px;
  background: #111;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(0, 0, 0, 0.08);
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
  width: 8px;
  height: 100%;
  background: var(--main-red);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}

.hero-photo:hover img {
  transform: scale(1.1);
}

.hero-photo-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 34%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 58%);
}

.hero-photo-label {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 5;
  padding: 11px 16px;
  border-radius: 120px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--main-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-photo-content {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  z-index: 5;
}

.hero-photo-content span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-photo-content h3 {
  max-width: 460px;
  color: var(--main-white);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-premium .scroll-wrap {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.hero-img {
  position: relative;
  width: 100%;
  max-width: 490px;
  height: 470px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero-img img,
.hero-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.license-card {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: var(--main-white);
  margin-bottom: 72px;
}

.license-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

.license-card strong {
  font-size: 16px;
}

.license-card p {
  font-size: 14px;
  line-height: 1.45;
  color: #555;
  max-width: 740px;
}

.license-card .btn {
  min-width: 132px;
}

.license-card .license-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dark-section {
  background: #000;
  color: #fff;
}

.serve-section {
  padding: 86px 0;
}

@media screen and (max-width: 450px) {
  .logo img {
    position: sticky;
    z-index: 1005;
    width: 100px;
    height: auto;
  }

  .links {
    display: none;
  }

  .hero-title {
    width: 100%;
  }

  .hero-wrap {
    margin-top: 150px;
    flex-direction: column;
    gap: 72px;
  }

  .hero-img {
    max-width: 100%;
    height: 270px;
    border-radius: 20px;
  }

  .hero-video::after {
    inset: 10px;
    border-radius: 14px;
  }

  .hero-text {
    gap: var(--padd-24);
  }

  .flex-btn {
    width: 100%;
    gap: var(--padd-16);
  }

  .license-card {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 18px;
    gap: 14px;
  }

  header {
    top: 12px;
  }

  nav {
    width: calc(100% - 48px);
  }

  nav::before {
    border-radius: 18px;
  }

  .nav-wrap {
    min-height: 56px;
    padding: 20px;
  }

  .links {
    display: none;
  }

  .menu-wrapper {
    gap: 8px !important;
  }

  .menu-wrapper .main-btn {
    width: auto;
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 380px) {
  .logo img {
    position: sticky;
    z-index: 1005;
    width: 100px;
    height: auto;
  }

  .nav-wrap {
    padding: 16px;
  }

  .links {
    display: none;
  }

  .hero-title {
    width: 100%;
  }

  .hero-wrap {
    margin-top: 120px;
    flex-direction: column;
    gap: 48px;
  }

  .hero-text {
    gap: var(--padd-16);
  }

  nav::before {
    border-radius: 16px;
  }

  .hero-img {
    height: 240px;
  }

  .flex-btn {
    flex-direction: column;
    gap: var(--padd-16);
  }

  .license-card {
    grid-template-columns: 1fr;
    margin-top: 24px;
    padding: 18px;
    gap: 14px;
  }
}

.section-mar {
  margin: 96px 0;
}

.solution-desc {
  padding-top: var(--padd-24);
  font-size: 20px;
  width: 96%;
}

.about {
  padding: 96px 0;
  background-color: var(--main-gray-light);
}

.insights {
  padding: 96px 0;
  background-color: var(--main-black);
}

.investors {
  padding: 96px 0;
}

.media {
  padding: 96px 0 0 0;
}

.insights h2,
.insights p {
  color: var(--main-white);
}

.insights h2 {
  font-size: 32px;
}

@media screen and (max-width: 450px) {
  .section-mar {
    margin: 48px 0;
  }

  .solution-desc {
    padding-top: var(--padd-16);
    font-size: 16px;
  }

  .about,
  .insights,
  .investors {
    padding: 48px 0;
  }

  .media {
    padding: 48px 0 0 0;
  }

  .insights h2 {
    font-size: 24px;
  }

  .insights p {
    font-size: 16px;
  }
}

@media screen and (max-width: 380px) {
  .section-mar {
    margin: 48px 0;
  }

  .solution-desc {
    padding-top: var(--padd-16);
    font-size: 16px;
  }

  .about,
  .insights,
  .investors,
  .media {
    padding: 48px 0;
  }

  .insights h2 {
    font-size: 24px;
  }

  .insights p {
    font-size: 16px;
  }
}

.form-footer {
  width: 100%;
  position: relative;
  width: 290px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input {
  font-family: "Montserrat", sans-serif;
  background-color: var(--main-white);
  width: 100%;
  padding: 16px 24px;
  border: 1px solid var(--main-black-light);
  border-radius: 240px;
  font-size: 14px;
}

input:focus,
input:active {
  border: 1px solid var(--main-black-mid);
}

.message {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  color: green;
  display: none;
}

.loading {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
  color: #007bff;
  display: none;
}

@media screen and (max-width: 450px) {
  .form-footer {
    margin-top: unset;
    position: relative;
    width: 100%;
  }

  input {
    font-size: 12px;
    padding: 14px 20px;
  }
}

@media screen and (max-width: 380px) {
  .form-footer {
    margin-top: unset;
    position: relative;
    width: 100%;
  }

  input {
    font-size: 12px;
    padding: 14px 20px;
  }
}

.insights {
  background-color: #000;
}

.insights-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.section__insight-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section__insight-cards {
  margin: 48px 0;
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
}

.section__insight-card {
  flex: 0 0 calc(33.33% - 20px);
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.section__insight-news-c {
  display: block;
  padding: 24px 24px 32px 24px;
}

.section__insight-news-c-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__insight-news-c-item img {
  height: 24px;
}

.section__insight-news-c-item span {
  font-size: 0.875rem;
  color: #fff;
}

.section__insight-overlay-card {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  padding: 0 24px;
  border-radius: 16px;
}

.section__insight-card:hover .section__insight-overlay-card {
  opacity: 1;
  transition: all 0.3s ease;
}

.section__insight-items-overlay {
  position: absolute;
  top: 90%;
  left: 35%;
  transform: translate(-85%, -50%);
}

.section__insight-items-overlay a {
  text-decoration: none;
}

.section__insight-news-c-item span {
  font-size: 14px;
  color: #fff;
}

.insights-bottom {
  display: flex;
  gap: 24px;
  justify-content: center;
}

@media screen and (max-width: 450px) {
  .section__insight-card {
    flex: 0 0 100%;
  }

  .section__insight-card {
    height: 400px;
  }
  .insights-bottom {
    width: 100%;
  }

  .flex-btn {
    margin-top: unset;
  }

  .section__faq-items p br {
    display: none;
  }

  .insights-bottom a {
    width: 100%;
  }

  .section__insight-overlay-card {
    opacity: 1;
  }

  .section__insight-items-overlay .main-btn {
    width: 340px;
  }

  .section__insight-items-overlay {
    position: absolute;
    top: 90%;
    right: 30%;
    transform: translate(-85%, -50%);
  }
}

@media screen and (max-width: 380px) {
  .section__insight-card {
    flex: 0 0 100%;
  }
  .section__insight-card {
    height: 350px;
  }

  .insights-bottom {
    width: 100%;
  }

  .flex-btn {
    margin-top: unset;
  }

  .section__faq-items p br {
    display: none;
  }

  .insights-bottom a {
    width: 100%;
  }

  .section__insight-overlay-card {
    opacity: 1;
  }

  .section__insight-items-overlay .main-btn {
    width: 300px;
  }

  .section__insight-items-overlay {
    position: absolute;
    top: 88%;
    right: 30%;
    transform: translate(-85%, -50%);
  }
}

.about-cards {
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  overflow: hidden;
}

.about-cards .card {
  padding: 36px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--main-black);
  background-color: var(--main-white);
  align-items: flex-start;
}

.about-icon {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.divider {
  margin: 24px 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--main-black) 0,
    var(--main-black) 5px,
    transparent 5px,
    transparent 8px
  );
}

.d-color {
  background: repeating-linear-gradient(
    to right,
    var(--main-white) 0,
    var(--main-white) 5px,
    transparent 5px,
    transparent 8px
  );
}

.about-cards .card-text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.about-cards .card-text p {
  width: 205px;
  padding: unset;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-grey-hard);
}

.about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-bottom p {
  width: 968px;
  color: var(--main-black-mid);
}

.indicators {
  display: none;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: gray;
  border-radius: 120px;
  position: relative;
  overflow: hidden;
}

.dot.active {
  background-color: black;
  width: 60px;
  border-radius: 120px;
}

.dot.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  transform-origin: left;
  transform: scaleX(0);
}

@media screen and (max-width: 450px) {
  .about-cards {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: unset;
    flex-wrap: nowrap;
    overflow: hidden;
    margin: 24px 0;
  }

  .about-cards {
    gap: 36px;
  }

  .about-cards .card {
    padding: 30px;
    flex: 0 0 100%;
    box-sizing: border-box;
  }

  .about-bottom p {
    width: 100%;
    font-size: 16px;
  }

  .about-bottom {
    flex-direction: column;
    gap: 36px;
  }

  .about-bottom a {
    width: 100%;
  }

  .about-cards .card-text {
    gap: 12px;
  }

  .indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 380px) {
  .about-cards .card {
    margin-left: unset;
    padding: 24px;
  }

  .indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1002;
}

body.menu-open {
  overflow: hidden;
}

.burger-menu {
  position: relative;
}

.burger-button {
  position: relative;
  padding: 16px;
  cursor: pointer;
  z-index: 1005;
  margin: 0 auto;
}

.burger-button span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--main-white);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.burger-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.burger-button span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.burger-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.burger-button.active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.burger-button.active span:nth-child(2) {
  opacity: 0;
}

.burger-button.active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu {
  position: fixed;
  top: -150%;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--main-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: top 1s ease-in-out;
  z-index: 1000;
}

.menu.open {
  top: 0;
}

.menu .logo {
  position: relative;
  top: 35px;
  left: 145px;
  width: 120px;
}

.logo,
.links,
.menu-wrapper {
  position: relative;
  z-index: 1004;
}

.menu ul {
  list-style: none;
  padding: 20px 0;
}

.menu ul li {
  margin-bottom: 24px;
  transition: all 0.4s ease-in-out;
}

.menu ul li a {
  color: var(--main-black);
  transition: all 0.4s ease-in-out;
}

.menu ul li {
  position: relative;
  text-decoration: none;
  font-size: 40px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.menu ul {
  width: 100%;
}

.menu ul li {
  position: relative;

  width: 100%;
  margin-bottom: 24px;

  font-size: 40px;
  line-height: 1.05;
  font-weight: 600;
}

.menu ul li a {
  display: block;

  width: fit-content;
  max-width: 100%;

  color: var(--main-black);

  line-height: inherit;

  transform: translateX(0);

  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease;
}

.menu ul li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 5px;
  height: 62%;

  background: var(--main-red);

  opacity: 0;

  transform: translateY(-50%) scaleY(0.45);

  transform-origin: center;

  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .menu ul li:hover a {
    transform: translateX(24px);
  }

  .menu ul li:hover::before {
    opacity: 1;

    transform: translateY(-50%) scaleY(1);
  }
}

.wrapp-inner_menu {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapp-menu_img {
  width: 50%;
  position: relative;
  object-fit: cover;
  min-height: 100%;
  height: 100%;
}

.wrapp-menu_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.wrapp-menu_bottom {
  position: relative;
  border-top: 1px solid var(--main-black-light);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  width: 100%;
}

.copyright p {
  font-size: 12px;
}

.policy {
  display: flex;
  column-gap: 24px;
  font-size: 12px;
}

.policy a {
  color: var(--main-black);
  transition: all 0.3s ease-in-out;
}

.policy a:hover {
  color: var(--main-red);
  transition: all 0.3s ease-in-out;
}

.wrapp-menu_text {
  width: 50%;
  height: 100%;
  padding: 130px clamp(24px, 5vw, 78px) 32px clamp(24px, 4vw, 55px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.wrap-bootom {
  width: 100%;
  max-width: 645px;
}

.wrap-connection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.menu-socials {
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .wrap-bootom {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .wrapp-menu_img {
    display: none;
  }

  .wrapp-menu_text {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 150px 20px 20px 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    bottom: 48px;
  }

  .menu ul li {
    position: relative;
    text-decoration: none;
    font-size: 40px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    margin-bottom: 16px;
  }

  .wrapp-menu_bottom {
    position: relative;
    border-top: 1px solid var(--main-black-light);
    padding-top: 16px;
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    width: 100%;
  }

  .policy a {
    font-size: 14px;
  }

  .copyright p {
    margin-top: 12px;
    font-size: 14px;
  }

  .wrap-connection {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-direction: column;
    margin-bottom: 24px;
  }

  @media screen and (max-width: 450px) {
    .wrapp-menu_text {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 120px 24px 24px 24px;
      overflow: auto;

      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: space-between;

      bottom: 0;
    }

    .wrap-bootom {
      width: 100%;
      max-width: 100%;
    }

    .wrapp-menu_bottom {
      padding-top: 16px;
      display: flex;
      align-items: flex-start;
      flex-direction: column-reverse;
      gap: 12px;
      width: 100%;
    }

    .policy {
      width: 100%;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .policy a {
      font-size: 13px;
    }

    .copyright p {
      margin-top: 0;
      font-size: 12px;
      line-height: 18px;
    }
  }
}

@media screen and (max-width: 420px) {
  .menu ul li {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .wrapp-menu_text {
    padding: 140px 20px 20px 20px;
    bottom: 60px;
  }
}

@media screen and (max-width: 380px) {
  .wrapp-menu_img {
    display: none;
  }

  .wrapp-menu_text {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 80px 20px 20px 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    bottom: 24px;
  }

  .menu ul li {
    position: relative;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    margin-bottom: 16px;
  }

  .wrapp-menu_bottom {
    position: relative;
    border-top: 1px solid var(--main-black-light);
    padding-top: 16px;
    display: flex;
    align-items: flex-start;
    flex-direction: column-reverse;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    width: 100%;
  }

  .policy a {
    font-size: 12px;
  }

  .copyright p {
    margin-top: 4px;
    font-size: 11px;
  }
}

@media screen and (max-width: 350px) {
  .menu ul li {
    position: relative;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    margin-bottom: 8px;
  }

  .wrapp-menu_text {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 100px 20px 20px 20px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    bottom: 24px;
  }
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.main-btn {
  padding: 12px 24px;
  border: 1px solid var(--main-black);
  background-color: var(--main-black);
  color: var(--main-white);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 120px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.main-btn:hover {
  background-color: transparent;
  border: 1px solid var(--main-black);
  color: var(--main-black);
}

.main-btn-2 {
  padding: 12px 24px;
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
  color: var(--main-black);

  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 120px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.main-btn-2:hover {
  border: 1px solid var(--main-black);
  background-color: var(--main-black);
  color: var(--main-white);
}

.gray-btn {
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
  color: var(--main-black);
}

.gray-btn:hover {
  border: 1px solid var(--main-white);
  background-color: var(--main-black);
  color: var(--main-white);
}

.gray-btn:hover path {
  fill: var(--main-white);
  transition: all 0.3s ease-in-out;
}

.grad-btn {
  background-color: var(--main-white);
  border: 1px solid var(--line-2);
  color: var(--line-2);
}

.grad-btn:hover {
  border: 1px solid var(--main-white);
  background-color: var(--line-2);
  color: var(--main-white);
}

.grad-btn:hover path {
  fill: var(--line-2);
  transition: all 0.3s ease-in-out;
}

.main-red {
  width: 44px;
  height: 44px;
  background-color: var(--main-black);
  border-radius: 50%;
  border: none;
}

.btn-form {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 240px;
  background-color: var(--main-black);
  padding: 12px;
  transition: all 0.3s ease-in-out;
}

.btn-form:hover {
  background-color: var(--main-gray-hard);
  color: var(--main-gray-hard);
  transition: all 0.3s ease-in-out;
}

.social-btn-menu {
  width: 30px;
  height: 30px;
  border-radius: 240px;
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-black);
  transition: all 0.3s ease-in-out;
}

.social-btn-menu i {
  font-size: 1rem;
}

.social-btn-menu:hover {
  background-color: var(--main-black);
  color: var(--main-white);
  transition: all 0.3s ease-in-out;
}

.main-width {
  width: unset;
}

.overlay-btn {
  border: 1px solid var(--main-white);
  background-color: transparent;
}

.overlay-btn:hover {
  border: 1px solid var(--main-white);
  background-color: var(--main-white);
  color: var(--main-black);
  transition: all 0.3s ease-in-out;
}

.red-btn {
  background-color: var(--main-red);
  border: 1px solid var(--main-red);
}

.red-btn:hover {
  color: var(--main-red);
  border: 1px solid var(--main-red);
}

.cta-btn {
  border: 1px solid var(--main-white);
  background-color: var(--main-black);
}

.cta-btn:hover {
  border: 1px solid var(--main-white);
  background-color: var(--main-white);
}

@media screen and (max-width: 450px) {
  .btn-form {
    top: 4px;
    padding: 10px;
  }

  .main-btn,
  .main-btn-2 {
    width: 100%;
    padding: 10px 24px;
    font-size: 1rem;
    text-align: center;
  }

  .main-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .main-width {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .main-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }

  .main-padding {
    padding: 12px 24px;
  }

  .main-width {
    width: 100%;
  }

  .main-red {
    width: 38px;
    height: 38px;
  }
}

.solution-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  grid-gap: 20px;
  justify-content: center;
  border-radius: 20px;
}

.solution-cards .card {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--main-white);
  padding: 36px;
}

.solution-cards .card .img-c {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.icon-w {
  width: 96px;
  height: 96px;
}

.card-icon {
  display: flex;
  align-items: center;
  gap: 24px;
}

.card-sol {
  padding-bottom: 32px;
  font-size: 18px;
}

@media screen and (max-width: 450px) {
  .solution-cards {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    grid-gap: 20px;
    justify-content: center;
    border-radius: 20px;
  }

  .solution-cards .card .img-c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .solution-cards .card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 24px;
  }

  .solution-cards {
    border: 1px solid var(--main-black);
    height: 100%;
  }

  .card-sol br {
    display: none;
  }

  .icon-w {
    width: 80px;
    height: 80px;
  }

  .card-icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 380px) {
  .solution-cards {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    grid-gap: 20px;
    justify-content: center;
    border-radius: 20px;
  }

  .solution-cards .card .img-c {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .solution-cards .card {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: 1px solid var(--main-white);
  }

  .solution-cards .card {
    padding: 32px 24px;
    height: 100%;
  }

  .card-icon {
    margin-bottom: 20px;
  }

  .solution-cards .card:nth-child(3) {
    order: 4;
  }

  .solution-cards .card:nth-child(4) {
    order: 3;
  }

  .card-sol br {
    display: none;
  }

  .icon-w {
    width: 80px;
    height: 80px;
  }
}

.section__faq {
  padding-top: 107px;
  display: flex;
  justify-content: space-between;
}

.section__faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 0 0 27px 0;
}

.section__faq p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8rem;
  padding-bottom: 53px;
  color: #a4a4a4;
}

.faq-main,
.product-block {
  display: block;
}

.faq {
  max-width: 750px;
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
  cursor: pointer;
}

.quations {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quations h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

/* .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
} */

.answer p {
  padding-top: 24px;
  font-size: 1rem;
  line-height: 1.4rem;
  color: #a4a4a4;
}

/* .faq.active .answer {
  max-height: 300px;
  animation: fade 0.5s ease;
} */

.faq.active i {
  transform: rotate(180deg);
}

.quations i {
  font-size: 24px;
  transition: all 0.4s ease-in-out;
}

.investors-wrap {
  display: flex;
  align-self: start;
  justify-content: space-between;
}

.section__faq-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section__faq-items a {
  width: 100%;
}

@media screen and (max-width: 450px) {
  .investors-wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .section__faq-items h2 br {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .investors-wrap {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .section__faq-items h2 br {
    display: none;
  }
}

footer {
  background-color: #f9f9f9;
  padding: 200px 0 36px;
}

.contact-footer {
  padding: 96px 0 36px;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section__footer-items {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 96px;
  padding: 0 0 64px;
}

.section__footer-items .block-1 {
  max-width: 640px;
}

.footer-logo {
  width: 255px;
  height: auto;
  margin-bottom: 24px;
}

.footer__desc {
  max-width: 100%;
  font-size: 12px;
  line-height: 150%;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38);
}

.blocks-wrapp {
  display: grid;
  grid-template-columns: 260px 200px;
  align-items: start;
  gap: 24px;
}

.block-2,
.block-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.block-4 {
  display: none;
}

.section__footer-items .block-2 h3,
.section__footer-items .block-5 h3 {
  margin-bottom: 26px;
  font-size: 18px;
  line-height: 1;
  color: var(--main-black);
}

.section__footer-items .block-5 h3:nth-of-type(2) {
  margin-top: 22px;
}

.section__footer-items--padding {
  padding-bottom: 22px;
}

.section__footer-items .block-2 a,
.section__footer-items .block-5 a {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  transition: color 0.3s ease;
}

.section__footer-items .block-2 a:hover,
.section__footer-items .block-5 a:hover {
  color: var(--main-black);
}

.section__footer-items .block-5 p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
}

.section__footer-items .block-5 p b {
  color: rgba(0, 0, 0, 0.52);
  font-weight: 700;
}

footer hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: rgba(0, 0, 0, 0.18);
}

.section__footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-b-left p {
  font-size: 14px;
  line-height: 1.3;
  color: var(--main-black);
}

.footer-b-left p span {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.footer__botoom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section__footer-bottom .footer__hyper-link {
  font-size: 14px;
  line-height: 1;
  color: var(--main-black);
  transition: color 0.3s ease;
}

.section__footer-bottom .footer__hyper-link:hover {
  color: var(--main-red);
}

@media screen and (max-width: 1024px) {
  footer {
    padding: 72px 0 48px;
  }

  .section__footer-items {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .section__footer-items .block-1 {
    max-width: 100%;
  }

  .footer__desc {
    max-width: 100%;
  }

  .blocks-wrapp {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media screen and (max-width: 450px) {
  footer {
    padding: 220px 0 36px;
  }

  .section__footer-items {
    padding-bottom: 40px;
    gap: 40px;
  }

  .footer-logo {
    width: 220px;
    margin-bottom: 20px;
  }

  .footer__desc {
    font-size: 12px;
    line-height: 19px;
  }

  .blocks-wrapp {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section__footer-items .block-2 h3,
  .section__footer-items .block-5 h3 {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .section__footer-items--padding {
    padding-bottom: 16px;
  }

  .section__footer-items .block-2 a,
  .section__footer-items .block-5 a,
  .section__footer-items .block-5 p {
    font-size: 15px;
    line-height: 22px;
  }

  .section__footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
  }

  .footer__botoom-right {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-b-left p,
  .section__footer-bottom .footer__hyper-link {
    font-size: 13px;
  }
}

@media screen and (max-width: 380px) {
  .footer-logo {
    width: 200px;
  }

  .footer__desc {
    font-size: 11px;
    line-height: 18px;
  }

  .footer__botoom-right {
    gap: 16px;
  }
}

.media-scroll img {
  width: 100%;
  flex-shrink: 0;
  object-fit: contain;
}

.section__media {
  padding-top: 96px;
}

.section__media h2 {
  padding: 0 0 1.38vw 0;
}

.section__media p {
  font-size: 1.15vw;
  font-weight: 400;
  line-height: 1.85vw;
  padding-bottom: 2.77vw;
}

.section__media-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.5;
  padding-top: 48px;
}

.section__cta {
  top: 140px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__cta-items {
  background-color: #000;
  border-radius: 24px;
  padding: 60px;
  position: relative;
}

.section__cta-img img {
  position: absolute;
  top: -85px;
  width: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

.section__cta-items h1 {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  padding-bottom: 32px;
  color: #fff;
}

.section__cta-items h6 {
  font-size: 1.25rem;
  font-weight: 400;
  padding-bottom: 1.15vw;
  color: #fff;
}

@media screen and (max-width: 450px) {
  .section__cta {
    top: 180px;
  }

  .section__cta-items {
    padding: 240px 24px 36px;
  }

  .section__cta-items h1 {
    font-size: 1.75rem;
    width: unset;
    padding-bottom: 36px;
  }

  .section__cta-items h1 br {
    display: block;
  }

  .section__cta-items h6 {
    font-size: 0.85rem;
    padding-bottom: 16px;
  }

  .section__cta-img img {
    position: absolute;
    top: -100px;
    height: 80%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
  }

  .left-side {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 380px) {
  .section__cta-items h1 {
    font-size: 1.4rem;
  }
}

.scroll-wrap {
  margin-top: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.hero-scroll {
  max-width: 1200px;
  white-space: nowrap;
  font-family: SupplyLight;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--main-hard-grey);
  overflow: hidden;
}

.hero-scroll[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.hero-scroll[data-animated="true"] .scroll__inner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 50px));
  }
}

.scroll__inner {
  padding-block: 1rem;
  display: flex;
  gap: 1rem;
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list li {
  padding: calc(16 / var(--desc-width) * 100vw);
}

@media screen and (max-width: 450px) {
  .hero-scroll {
    font-size: 16px;
  }

  .hero-scroll[data-animated="true"] .scroll__inner {
    gap: 50px;
  }

  .tag-list li {
    padding: calc(8 / var(--desc-width) * 100vw);
  }

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 25px));
    }
  }
}

@media screen and (max-width: 380px) {
  .hero-scroll {
    font-size: 14px;
  }

  .hero-scroll[data-animated="true"] .scroll__inner {
    gap: 50px;
  }

  .tag-list li {
    padding: calc(8 / var(--desc-width) * 100vw);
  }

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 25px));
    }
  }
}

.bcg-solution-main-solution {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 0 120px 0;
  background: var(--main-white);
}

.bcg-solution-main {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 24px 0 200px 0;
  background: var(--main-white);
}

.wrap_main-screen.solutions {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
}
.wrap_main-screen.solutions a {
  width: 100%;
}

.text_main-screen {
  width: 50%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: var(--padd-24);
  margin-left: 0;
}

.text_main-screen h5 {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--main-black-light);
  border-radius: 120px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--main-black);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.text_main-screen h1 {
  max-width: 650px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 800;
  color: var(--main-black);
}

.text_main-screen p {
  max-width: 590px;
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.58);
}

.button_bl-main_scr {
  margin-top: var(--padd-24);
  display: flex;
  align-items: center;
  gap: var(--padd-16);
}

.btn_orange,
.btn_transparent {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 120px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn_orange {
  border: 1px solid var(--main-black);
  background-color: var(--main-black);
  color: var(--main-white);
}

.btn_orange:hover {
  background-color: var(--main-white);
  color: var(--main-black);
}

.btn_transparent {
  border: 1px solid var(--main-black);
  background-color: var(--main-white);
  color: var(--main-black);
}

.btn_transparent:hover {
  background-color: var(--main-black);
  color: var(--main-white);
}

.img-main-block {
  position: relative;
  width: 50%;
  max-width: 100%;
  height: 470px;
  margin-left: 0;
  display: block;
  isolation: isolate;
}

.img-main-block .img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  background: var(--main-black);
  isolation: isolate;
}

.img-main-block .img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.22) 100%
  );
  pointer-events: none;
}

.img-main-block .img-card img,
.img-main-block .img-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.img-main-block .img-card:hover img,
.img-main-block .img-card:hover video {
  transform: scale(1.06);
}

.img-main-block .img-card:first-of-type {
  left: 0;
  top: 0;
  width: 64%;
  height: 100%;
  margin: 0;
  z-index: 2;
}

.img-main-block .img-card:last-of-type {
  right: 0;
  top: 48px;
  width: 58%;
  height: calc(100% - 48px);
  z-index: 3;
  transform: rotate(3deg);
}

.img-main-block .img-card:last-of-type::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border-radius: 18px;
  pointer-events: none;
}

@media screen and (max-width: 1024px) {
  .wrap_main-screen.solutions {
    padding: 0 24px;
    margin-top: 140px;

    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
  }

  .text_main-screen {
    width: 100%;
    max-width: 100%;
  }

  .text_main-screen h1 {
    max-width: 720px;
  }

  .text_main-screen p {
    max-width: 680px;
  }

  .img-main-block {
    width: 100%;
    max-width: 100%;
    height: 460px;
  }

  .img-main-block .img-card:first-of-type {
    width: 62%;
  }

  .img-main-block .img-card:last-of-type {
    width: 56%;
    right: 0;
  }
}

@media screen and (max-width: 450px) {
  .bcg-solution-main {
    padding: 0 0 48px;
  }

  /* .bcg-solution-main::after {
    top: 160px;
    right: -240px;
    width: 420px;
    height: 420px;
  } */

  .wrap_main-screen.solutions {
    padding: 0 24px;
    margin-top: 150px;
    gap: 48px;
  }

  .text_main-screen {
    gap: var(--padd-16);
  }

  .text_main-screen h5 {
    font-size: 13px;
    padding: 9px 14px;
  }

  .text_main-screen h1 {
    font-size: 39px;
    line-height: 1;
  }

  .text_main-screen p {
    font-size: 1rem;
    line-height: 24px;
  }

  .text_main-screen p br {
    display: none;
  }

  .button_bl-main_scr {
    width: 100%;
    flex-direction: column;
    gap: var(--padd-16);
    margin-top: var(--padd-16);
  }

  .btn_orange,
  .btn_transparent {
    width: 100%;
    padding: 10px 24px;
    font-size: 1rem;
  }

  .img-main-block {
    height: 360px;
  }

  .img-main-block .img-card {
    border-radius: 20px;
  }

  .img-main-block .img-card:first-of-type {
    width: 72%;
    height: 330px;
  }

  .img-main-block .img-card:last-of-type {
    top: 54px;
    right: -4px;
    width: 64%;
    height: 300px;
  }
}

@media screen and (max-width: 380px) {
  .wrap_main-screen.solutions {
    padding: 0 20px;
    margin-top: 120px;
    gap: 40px;
  }

  .text_main-screen h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .img-main-block {
    height: 310px;
  }

  .img-main-block .img-card:first-of-type {
    height: 285px;
  }

  .img-main-block .img-card:last-of-type {
    top: 44px;
    height: 260px;
  }
}

.img-main-block {
  overflow: visible;
}

.solution-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.img-main-block .img-card {
  z-index: 2;
}

.img-main-block .img-card:last-of-type {
  z-index: 3;
}

body.page-loaded .solution-rings {
  animation: solutionRingsReveal 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.12s
    forwards;
}

@keyframes solutionRingsReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes solutionRingsFloat {
  from {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) scale(1.025) rotate(4deg);
  }
}

@media screen and (max-width: 1024px) {
  .solution-rings {
    width: 680px;
    height: 680px;
  }
}

@media screen and (max-width: 450px) {
  .solution-rings {
    width: 500px;
    height: 500px;
    left: 52%;
    top: 48%;
  }
}

@media screen and (max-width: 380px) {
  .solution-rings {
    width: 430px;
    height: 430px;
  }
}

body.is__transitioning {
  overflow: hidden;
}

body.is__transitioning a,
body.is__transitioning button {
  pointer-events: none;
}

html.is-page-transition-entry::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: var(--main-black, #000);
  pointer-events: auto;
}

html.is-page-transition-entry #preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.transition__morph__svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 2147483646;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.transition__morph__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.transition__morph__svg svg path {
  fill: var(--main-black, #000) !important;
  stroke: var(--main-black, #000) !important;
}

html.is-page-transition-entry::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  background: var(--main-black, #000);
  pointer-events: auto;
}

.transition__morph__svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 2147483646;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}

.what-we-do-section {
  position: relative;
  padding: 0;
  background: var(--main-gray-light);
  overflow: visible;
}

.what-we-do-section .container {
  max-width: 1200px;
}

.wwd-pin {
  min-height: 100vh;
  padding: 140px 0 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}

.wwd-head {
  margin-bottom: 96px;
}

.wwd-head h2 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  font-weight: 600;
  color: var(--main-black);
}

.wwd-cards {
  position: relative;
  display: block;
  width: 100%;
  height: 580px;
  min-height: 580px;
  margin: 0;
  border-radius: 20px;
  overflow: visible;
}

.wwd-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--main-white);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  will-change: transform, opacity;
}

.wwd-card.is-active {
  pointer-events: auto;
}

.wwd-card-top {
  min-height: 132px;
  padding: 34px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: var(--main-white);
}

.wwd-title-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.wwd-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 8px;
  background: var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd-title-wrap h3 {
  font-size: 28px;
  line-height: 125%;
  font-weight: 600;
  color: var(--main-black);
}

.wwd-arrow {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 50%;
  background: var(--main-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.wwd-arrow span {
  color: var(--main-white);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-2px);
}

.wwd-arrow:hover {
  transform: scale(1.06);
}

.wwd-card-content {
  padding: 48px 36px 40px;
  display: grid;
  grid-template-columns: minmax(0, 550px) minmax(0, 520px);
  gap: 48px;
  align-items: start;
}

.wwd-card-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wwd-image {
  width: 100%;
  height: 112px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--main-black);
}

.wwd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwd-questions {
  padding: 26px 24px 24px;
  border-radius: 12px;
  background: #f7f7f7;
}

.wwd-question-head {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wwd-question-icon {
  width: 44px;
  height: 34px;
  border-radius: 4px;
  background: var(--main-black);
  color: var(--main-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.wwd-question-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--main-black);
  border-radius: 50%;
  color: var(--main-black);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd-question-list {
  display: flex;
  flex-direction: column;
}

.wwd-question-item {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, 0.42);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 0, 0, 0.52);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

.wwd-question-item + .wwd-question-item {
  margin-top: -1px;
}

.wwd-question-item span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.wwd-card-right {
  max-width: 520px;
  padding-top: 0;
}

.wwd-card-right p {
  margin: 0;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 500;
  color: var(--main-black);
}

.wwd-card-right p + p {
  margin-top: 28px;
}

.wwd-card-right a {
  display: inline-flex;
  margin-top: 46px;
}

.wwd-btn {
  min-width: 190px;
  padding: 13px 32px;
}

@media screen and (max-width: 1024px) {
  .what-we-do-section .container {
    padding: 0 24px;
  }

  .wwd-pin {
    min-height: 100svh;
    padding: 96px 0 72px;
    gap: 36px;
  }

  .wwd-head {
    margin-bottom: 40px;
  }

  .wwd-cards {
    height: 690px;
    min-height: 690px;
  }

  .wwd-card-content {
    padding: 36px 32px 36px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wwd-card-right {
    max-width: 100%;
  }
}

.wwd-question-list {
  overflow: hidden;
  will-change: max-height, opacity;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

.wwd-questions:not(.is-open) .wwd-question-list {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  pointer-events: none;
}

.wwd-questions.is-open .wwd-question-list {
  max-height: 260px;
  opacity: 1;
  margin-top: 22px;
}

.wwd-question-toggle {
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}

.wwd-questions.is-open .wwd-question-toggle {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .what-we-do-section .container {
    padding: 0 14px;
  }

  .wwd-pin {
    min-height: 100svh;
    padding: 76px 0 42px;
    justify-content: flex-start;
    gap: 0;
  }

  .wwd-head {
    margin-bottom: 28px;
    padding-left: 2px;
  }

  .wwd-head h2 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  .wwd-cards {
    height: clamp(560px, calc(100svh - 150px), 660px);
    min-height: 560px;
    max-height: 660px;
  }

  .wwd-card {
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  }

  .wwd-card-top {
    min-height: 94px;
    padding: 18px 20px;
    gap: 16px;
  }

  .wwd-title-wrap {
    gap: 16px;
  }

  .wwd-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .wwd-icon img {
    width: 32px;
    height: 32px;
  }

  .wwd-title-wrap h3 {
    font-size: 22px;
    line-height: 1.15;
  }

  .wwd-arrow {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .wwd-arrow span {
    font-size: 28px;
  }

  .wwd-card-content {
    height: calc(100% - 94px);
    padding: 22px 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wwd-card-content::-webkit-scrollbar {
    display: none;
  }

  .wwd-card-left {
    gap: 18px;
  }

  .wwd-image {
    height: 96px;
    border-radius: 10px;
  }

  .wwd-questions {
    padding: 16px;
    border-radius: 12px;
  }

  .wwd-question-head {
    margin-bottom: 0;
  }

  .wwd-question-icon {
    width: 44px;
    height: 34px;
    font-size: 20px;
  }

  .wwd-question-toggle {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .wwd-question-item {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.25;
  }

  .wwd-card-right p {
    font-size: 16px;
    line-height: 1.38;
    font-weight: 500;
  }

  .wwd-card-right p + p {
    margin-top: 20px;
  }

  .wwd-card-right a {
    width: 100%;
    margin-top: 24px;
  }

  .wwd-btn {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .what-we-do-section .container {
    padding: 0 14px;
  }

  .wwd-pin {
    padding-top: 68px;
    padding-bottom: 36px;
  }

  .wwd-cards {
    height: clamp(520px, calc(100svh - 132px), 610px);
    min-height: 520px;
    max-height: 610px;
  }

  .wwd-card-top {
    min-height: 88px;
    padding: 16px;
  }

  .wwd-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .wwd-title-wrap h3 {
    font-size: 20px;
  }

  .wwd-card-content {
    height: calc(100% - 88px);
    padding: 18px 16px 22px;
    gap: 18px;
  }

  .wwd-image {
    height: 82px;
  }

  .wwd-card-right p {
    font-size: 14px;
    line-height: 1.36;
  }

  .wwd-question-item {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .what-we-do-section {
    position: relative;
    overflow: visible;
  }

  .what-we-do-section .container {
    padding: 0 24px;
  }

  .wwd-pin {
    min-height: 100svh;
    padding: 124px 2px 30px;
    gap: 48px;
    justify-content: flex-start;
    overflow: visible;
  }

  .wwd-head {
    margin-bottom: 54px;
  }

  .wwd-head h2 {
    font-size: 31px;
    line-height: 1.05;
    letter-spacing: -0.055em;
  }

  .what-we-do-section .solution-cards.wwd-cards,
  .wwd-cards {
    position: relative;
    display: block !important;
    grid-template-columns: none !important;
    grid-gap: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    width: 100%;
    height: 645px;
    min-height: 645px;
    max-height: 645px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
  }

  .wwd-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line) !important;
    outline: none !important;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.1);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
  }

  .wwd-card:last-child {
    border: 1px solid var(--line) !important;
    outline: none !important;
  }

  .wwd-card-top {
    min-height: 84px;
    padding: 14px 16px;
    gap: 12px;
  }

  .wwd-title-wrap {
    gap: 12px;
  }

  .wwd-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .wwd-icon img {
    width: 28px;
    height: 28px;
  }

  .wwd-title-wrap h3 {
    font-size: 19px;
    line-height: 1.14;
  }

  .wwd-arrow {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .wwd-arrow span {
    font-size: 24px;
  }

  .wwd-card-content {
    height: auto;
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: visible;
  }

  .wwd-card-left {
    gap: 12px;
  }

  .wwd-image {
    height: 72px;
    border-radius: 10px;
  }

  .wwd-questions {
    padding: 12px;
  }

  .wwd-question-head {
    margin-bottom: 0;
  }

  .wwd-question-icon {
    width: 38px;
    height: 30px;
    font-size: 18px;
  }

  .wwd-question-toggle {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .wwd-questions.is-open .wwd-question-list {
    max-height: 200px;
    margin-top: 12px;
  }

  .wwd-question-item {
    min-height: 30px;
    padding: 6px 8px;
    gap: 8px;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .wwd-question-item span {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 10px;
  }

  .wwd-card-right p {
    font-size: 13px;
    line-height: 1.32;
  }

  .wwd-card-right p + p {
    margin-top: 12px;
  }

  .wwd-card-right a {
    width: 100%;
    margin-top: 16px;
  }

  .wwd-btn {
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .what-we-do-section .container {
    padding: 0 24px;
  }

  .wwd-pin {
    padding: 112px 2px 28px;
  }

  .wwd-head {
    margin-bottom: 42px;
  }

  .wwd-cards,
  .what-we-do-section .solution-cards.wwd-cards {
    height: 620px;
    min-height: 620px;
    max-height: 620px;
  }

  .wwd-card-top {
    min-height: 78px;
    padding: 13px 14px;
  }

  .wwd-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .wwd-title-wrap h3 {
    font-size: 18px;
  }

  .wwd-arrow {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .wwd-card-content {
    padding: 14px 14px 18px;
    gap: 12px;
  }

  .wwd-image {
    height: 66px;
  }

  .wwd-card-right p {
    font-size: 12.5px;
    line-height: 1.3;
  }
}

.who-help-section {
  padding: 96px 0;
  background: var(--main-white);
  overflow: hidden;
}

.who-help-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
}

.who-help-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.who-help-tab {
  min-height: 46px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-black);
  border-radius: 120px;
  background: var(--main-white);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: var(--main-black);
  cursor: pointer;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.who-help-tab.is-active {
  background: var(--main-black);
  color: var(--main-white);
}

.who-help-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 485px) 1fr;
  border: 1px solid var(--main-black);
  border-radius: 18px;
  background: var(--main-white);
  overflow: hidden;
}

.who-help-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--main-black);
}

.who-help-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  will-change: transform, opacity;
}

.who-help-content {
  min-height: 340px;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-help-content h3 {
  margin: 0 0 42px;
  font-size: 32px;
  font-weight: 700;
  color: var(--main-black);
}

.who-help-content p {
  max-width: 620px;
  margin: 0;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.82);
}

@media screen and (max-width: 1024px) {
  .who-help-section {
    padding: 80px 0;
  }

  .who-help-section .container {
    padding: 0 24px;
  }

  .who-help-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .who-help-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .who-help-card {
    grid-template-columns: 1fr;
  }

  .who-help-image {
    min-height: 360px;
  }

  .who-help-content {
    min-height: auto;
    padding: 48px;
  }
}

@media screen and (max-width: 450px) {
  .who-help-section {
    padding: 72px 0;
  }

  .who-help-section .container {
    padding: 0 24px;
  }

  .who-help-head {
    margin-bottom: 52px;
    gap: 36px;
  }

  .who-help-title {
    font-size: 38px;
    line-height: 1;
  }

  .who-help-tabs {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .who-help-card {
    border-radius: 18px;
    grid-template-columns: 1fr;
  }

  .who-help-image {
    min-height: 290px;
    height: 290px;
    border-radius: 0;
  }

  .who-help-content {
    padding: 34px 32px 42px;
  }

  .who-help-content h3 {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .who-help-content p {
    font-size: 16px;
    line-height: 150%;
  }
}

@media screen and (max-width: 380px) {
  .who-help-section .container {
    padding: 0 22px;
  }

  .who-help-title {
    font-size: 34px;
  }

  .who-help-tab {
    min-height: 54px;
    padding: 0 24px;
    font-size: 19px;
  }

  .who-help-image {
    height: 260px;
    min-height: 260px;
  }

  .who-help-content {
    padding: 30px 28px 36px;
  }

  .who-help-content h3 {
    font-size: 34px;
  }

  .who-help-content p {
    font-size: 19px;
    line-height: 1.65;
  }
}

.how-act-section {
  position: relative;
  padding: 96px 0 0;
  min-height: 660px;
  overflow: hidden;
  background: var(--main-black);
  color: var(--main-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.how-act-section .container {
  position: relative;
  z-index: 2;
}

.how-act-wrap {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
  gap: 56px;
}

.how-act-left {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 0 0 86px;
}

.how-act-main-title {
  color: var(--main-white);
}

.how-act-copy {
  max-width: 560px;
}

.how-act-title {
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--main-red);
}

.how-act-text {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.how-act-controls {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.how-act-arrow {
  width: 56px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 120px;
  background-color: transparent;
  color: var(--main-white);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.how-act-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
  color: inherit;
  pointer-events: none;
}

.how-act-arrow svg path {
  fill: currentColor !important;
  stroke: currentColor !important;
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}

.how-act-arrow:hover,
.how-act-arrow:focus-visible,
.how-act-arrow.is-active {
  background-color: var(--main-white);
  border-color: var(--main-white);
  color: var(--main-black);
  transform: scale(1.04);
}

.how-act-arrow:active {
  transform: scale(0.96);
}

.how-act-arrow > span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  pointer-events: none;
}

.how-act-visual {
  position: absolute;
  right: -170px;
  top: 43%;
  width: 760px;
  height: 760px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.how-act-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.how-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%) scale(0.22);
  opacity: 0;
  will-change: transform, opacity;
}

.how-ring-1 {
  width: 360px;
  height: 360px;
  border-color: rgba(255, 255, 255, 0.22);
}

.how-ring-2 {
  width: 490px;
  height: 490px;
  border-color: rgba(255, 255, 255, 0.62);
}

.how-ring-3 {
  width: 610px;
  height: 610px;
  border-color: rgba(255, 255, 255, 0.3);
}

.how-ring-4 {
  width: 730px;
  height: 730px;
  border-color: rgba(255, 255, 255, 0.22);
}

.how-act-core {
  position: relative;
  z-index: 2;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border-radius: 416.667px;
  border: 1.667px solid rgba(255, 255, 255, 0.25);
  background:
    radial-gradient(
      92.72% 92.72% at 47.98% 60.74%,
      rgba(223, 223, 223, 0.2) 0%,
      rgba(120, 120, 120, 0) 100%
    ),
    #000;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.05),
    0 0 90px rgba(255, 255, 255, 0.04);

  will-change: transform, opacity;
}

.how-act-icon {
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-red);
  will-change: transform, opacity, filter;
}

.how-act-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.how-act-icon svg * {
  stroke: currentColor;
}

@media screen and (max-width: 1024px) {
  .how-act-section .container {
    padding: 0 24px;
  }

  .how-act-visual {
    right: -270px;
    width: 700px;
    height: 700px;
  }

  .how-act-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .how-act-section {
    padding: 88px 0 0;
    min-height: auto;
  }

  .how-act-section .container {
    padding: 0 26px;
  }

  .how-act-wrap {
    min-height: auto;

    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .how-act-left {
    display: contents;
  }

  .how-act-main-title {
    order: 1;

    font-size: 42px;
    line-height: 1;
  }

  .how-act-visual {
    order: 2;

    position: relative;
    right: auto;
    top: auto;
    width: 460px;
    height: 460px;
    margin: 34px 0 28px;
    align-self: center;
    transform: none;
  }

  .how-act-core {
    width: 250px;
    height: 250px;
  }

  .how-act-icon {
    width: 125px;
    height: 125px;
  }

  .how-ring-1 {
    width: 280px;
    height: 280px;
  }

  .how-ring-2 {
    width: 374px;
    height: 374px;
  }

  .how-ring-3 {
    width: 470px;
    height: 470px;
  }

  .how-ring-4 {
    width: 560px;
    height: 560px;
  }

  .how-act-copy {
    order: 3;
    max-width: 100%;
    padding-bottom: 86px;
  }

  .how-act-title {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.1;
  }

  .how-act-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 150%;
  }

  .how-act-controls {
    margin-top: 48px;
  }

  .how-act-arrow {
    width: 56px;
    height: 46px;
  }
}

@media screen and (max-width: 450px) {
  .how-act-section {
    padding-top: 92px;
  }

  .how-act-section .container {
    padding: 0 26px;
  }

  .how-act-main-title {
    font-size: 40px;
  }

  .how-act-visual {
    width: 520px;
    height: 520px;
  }
}

@media screen and (max-width: 380px) {
  .how-act-section .container {
    padding: 0 22px;
  }

  .how-act-main-title {
    font-size: 36px;
  }

  .how-act-visual {
    width: 510px;
    height: 510px;
  }

  .how-ring-1 {
    width: 250px;
    height: 250px;
  }

  .how-ring-2 {
    width: 340px;
    height: 340px;
  }

  .how-ring-3 {
    width: 430px;
    height: 430px;
  }

  .how-ring-4 {
    width: 510px;
    height: 510px;
  }

  .how-act-core {
    width: 230px;
    height: 230px;
  }

  .how-act-icon {
    width: 136px;
    height: 136px;
  }

  .how-act-title {
    font-size: 24px;
  }

  .how-act-text {
    font-size: 20px;
  }
}

.contact-bs-page {
  position: relative;
  overflow: visible;
}

.contact-bs-hero {
  position: relative;
  min-height: 100vh;
  padding: 164px 0 96px;
}

.contact-bs-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-bs-aside {
  position: relative;
}

.contact-bs-aside-inner {
  position: sticky;
  top: 128px;
  min-height: calc(100vh - 180px);
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-bs-kicker {
  margin-bottom: 30px;
}

.contact-bs-desc {
  max-width: 390px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-black);
}

.contact-bs-info-card {
  width: 100%;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--main-black);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-bs-info-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--main-red);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.contact-bs-info-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 700;
  color: var(--main-white);
}

.contact-bs-info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-bs-links {
  margin-top: 28px;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-bs-links a {
  width: fit-content;
  color: rgba(0, 0, 0, 0.48);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-bs-links a:hover {
  color: var(--main-black);
  transform: translateX(6px);
}

.contact-bs-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-bs-form,
.contact-bs-location {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line-3);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-bs-form-head {
  margin-bottom: 36px;
}

.contact-bs-form-head span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--main-red);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}

.contact-bs-form-head h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--main-black);
}

.contact-bs-form-head p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.54);
}

.contact-bs-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.contact-bs-col-6 {
  grid-column: span 6;
}

.contact-bs-col-12 {
  grid-column: span 12;
}

.contact-bs-field {
  position: relative;
  display: block;
  margin: 0;
}

.contact-bs-page input,
.contact-bs-page select,
.contact-bs-page textarea {
  width: 100%;
  border: 1px solid var(--main-black-light);
  border-radius: 18px;
  background: var(--main-white);
  color: var(--main-black);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.contact-bs-page input,
.contact-bs-page select {
  height: 58px;
  padding: 0 20px;
}

.contact-bs-page textarea {
  min-height: 190px;
  resize: vertical;
  padding: 20px 20px 44px;
}

.contact-bs-page input::placeholder,
.contact-bs-page textarea::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.contact-bs-page input:focus,
.contact-bs-page select:focus,
.contact-bs-page textarea:focus {
  border-color: rgba(0, 0, 0, 0.44);
  background: #fff;
}

.contact-bs-select::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(0, 0, 0, 0.46);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.46);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-bs-page select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  color: rgba(0, 0, 0, 0.5);
}

.contact-bs-page select.has-value {
  color: var(--main-black);
}

.contact-bs-message {
  margin-top: 8px;
}

.contact-bs-counter {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.contact-bs-counter b {
  color: inherit;
  font-weight: inherit;
}

.contact-bs-required {
  margin: 18px 0 22px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.48);
}

.contact-bs-consents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-bs-consents label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 0;
  cursor: pointer;
}

.contact-bs-consents input {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #42b96f;
}

.contact-bs-consents span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
}

.contact-bs-consents a {
  color: var(--main-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-bs-consents small {
  display: block;
  margin-top: 3px;
  color: rgba(0, 0, 0, 0.36);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
}

.contact-bs-submit {
  width: fit-content;
  margin-top: 34px;
}

.contact-bs-submit.is-sent {
  background: var(--main-black);
  border-color: var(--main-black);
  color: var(--main-white);
}

.contact-bs-location-head {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.contact-bs-location-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(241, 92, 57, 0.12);
  color: var(--main-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bs-location-icon i {
  font-size: 28px;
  color: currentColor;
}

.contact-bs-location h2 {
  margin-bottom: 8px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  color: var(--main-black);
}

.contact-bs-location p {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.56);
}

.contact-bs-map {
  width: 100%;
  height: 430px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #e8e8e8;
}

.contact-bs-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;

  filter: saturate(0.9) contrast(0.96);
}

@media screen and (max-width: 1024px) {
  .contact-bs-hero {
    padding: 140px 0 72px;
  }

  .contact-bs-hero .container {
    padding: 0 24px;
  }

  .contact-bs-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-bs-aside-inner {
    position: relative;
    top: auto;
    min-height: auto;
    padding: 0;
  }

  .contact-bs-title {
    max-width: 720px;
  }

  .contact-bs-desc {
    max-width: 620px;
  }

  .contact-bs-info-card {
    max-width: 520px;
  }
}

@media screen and (max-width: 450px) {
  .contact-bs-hero {
    padding: 126px 0 54px;
  }

  .contact-bs-hero .container {
    padding: 0 24px;
  }

  .contact-bs-layout {
    gap: 34px;
  }

  .contact-bs-kicker {
    margin-bottom: 24px;
  }

  .contact-bs-desc {
    margin-top: 8px;
    font-size: 16px;
    line-height: 26px;
  }

  .contact-bs-info-card {
    margin-top: 34px;
    padding: 24px;
    border-radius: 20px;
  }

  .contact-bs-info-card h3 {
    font-size: 22px;
  }

  .contact-bs-links {
    margin-top: 22px;
  }

  .contact-bs-links a {
    font-size: 13px;
  }

  .contact-bs-form,
  .contact-bs-location {
    padding: 24px;
  }

  .contact-bs-form-head {
    margin-bottom: 26px;
  }

  .contact-bs-form-head h2 {
    font-size: 28px;
  }

  .contact-bs-form-head p {
    font-size: 14px;
    line-height: 23px;
  }

  .contact-bs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-bs-col-6,
  .contact-bs-col-12 {
    grid-column: auto;
  }

  .contact-bs-page input,
  .contact-bs-page select {
    height: 54px;
    padding: 0 16px;
    border-radius: 16px;
  }

  .contact-bs-page textarea {
    min-height: 160px;
    padding: 16px 16px 40px;
    border-radius: 16px;
    font-size: 14px;
  }

  .contact-bs-select::after {
    right: 17px;
  }

  .contact-bs-counter {
    left: 16px;
    bottom: 15px;
  }

  .contact-bs-consents span {
    font-size: 12px;
    line-height: 18px;
  }

  .contact-bs-submit {
    width: 100%;
    margin-top: 28px;
  }

  .contact-bs-location-head {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-bs-location-icon {
    width: 46px;
    height: 46px;
  }

  .contact-bs-location h2 {
    font-size: 24px;
  }

  .contact-bs-location p {
    font-size: 13px;
    line-height: 19px;
  }

  .contact-bs-map {
    height: 340px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 380px) {
  .contact-bs-hero .container {
    padding: 0 20px;
  }

  .contact-bs-title {
    font-size: 39px;
  }

  .contact-bs-form,
  .contact-bs-location {
    padding: 20px;
  }

  .contact-bs-map {
    height: 300px;
  }
}

.contact-bs-layout {
  align-items: stretch;
}

.contact-bs-aside {
  align-self: stretch;
  min-height: 100%;
}

.contact-bs-aside-inner {
  position: sticky;
  top: 128px;
  margin: 24px 0 28px 0;
  min-height: unset;
  height: fit-content;
  max-height: calc(100svh - 150px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-bs-aside,
.contact-bs-aside-inner {
  transform: none !important;
  filter: none !important;
}

@media screen and (max-width: 1024px) {
  .contact-bs-layout {
    align-items: start;
  }

  .contact-bs-aside {
    align-self: auto;
  }

  .contact-bs-aside-inner {
    position: relative;
    top: auto;
    max-height: none;
  }
}

.contact-bs-location {
  padding: 0;
  border: none;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-bs-location-head {
  display: none;
}

.contact-bs-map {
  width: 100%;
  height: 520px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #e8e8e8;
}

.contact-bs-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media screen and (max-width: 450px) {
  .contact-bs-map {
    height: 360px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 380px) {
  .contact-bs-map {
    height: 320px;
  }
}

.contact-bs-consents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-bs-consents label {
  position: relative;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  cursor: pointer;
}

.contact-bs-consents input[type="checkbox"] {
  position: relative;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  margin: 0;
  padding: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 50% !important;
  background: var(--main-white) !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.22s ease;
}

.contact-bs-consents input[type="checkbox"]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--main-white);
  border-bottom: 2px solid var(--main-white);
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  transform-origin: center;
  opacity: 0;
  transition:
    opacity 0.18s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-bs-consents input[type="checkbox"]:checked {
  border-color: #f15c39 !important;
  background: #f15c39 !important;
  animation: contactCheckboxPop 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-bs-consents input[type="checkbox"]:checked::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}

.contact-bs-consents input[type="checkbox"]:hover {
  border-color: #f15c39 !important;
  transform: scale(1.08);
}

.contact-bs-consents input[type="checkbox"]:active {
  transform: scale(0.88);
}

.contact-bs-consents input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 5px rgba(241, 92, 57, 0.16),
    0 8px 18px rgba(241, 92, 57, 0.18);
}

@keyframes contactCheckboxPop {
  0% {
    transform: scale(0.82);
  }

  55% {
    transform: scale(1.16);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 450px) {
  .contact-bs-consents label {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
  }

  .contact-bs-consents input[type="checkbox"] {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px;
  }

  .contact-bs-consents input[type="checkbox"]::before {
    width: 8px;
    height: 5px;
  }
}

.privacy-contact-page {
  background: var(--main-white);
  overflow: visible;
}

.privacy-contact-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 96px;
  overflow: visible;
}

.privacy-contact-hero .container {
  max-width: 1200px;
}

.privacy-contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 110px;
  align-items: stretch;
  overflow: visible;
}

.privacy-contact-aside {
  position: relative;
  align-self: stretch;
  padding-left: 24px;
  width: 100%;
  min-width: 0;
  height: auto;
  overflow: visible;
}

.privacy-contact-aside-inner {
  position: sticky;
  top: 132px;
  width: 100%;
  height: fit-content;
  max-height: calc(100svh - 160px);
  padding: 0;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.privacy-contact-title,
.privacy-contact-desc,
.privacy-contact-info-card {
  display: none !important;
}

.privacy-contact-nav {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.privacy-contact-nav::before {
  display: block;
  margin: 0 0 14px;
  color: var(--main-black);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.privacy-contact-nav a {
  position: relative;
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.48);
  background: transparent;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.privacy-contact-nav a::before {
  display: none !important;
  content: none !important;
}

.privacy-contact-nav a:hover,
.privacy-contact-nav a.is-active {
  color: var(--main-white);
  background: var(--main-red);
  transform: translateX(2px);
}

.privacy-contact-content {
  position: relative;
  display: block;
  width: 100%;
  max-width: 760px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transform: none !important;
  filter: none !important;
}

.privacy-contact-head {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 0 96px;
  border: 0;
  transform: none !important;
  filter: none !important;
  scroll-margin-top: 145px;
}

.privacy-contact-head > span:not(.privacy-contact-eyebrow) {
  display: none;
}

.privacy-contact-eyebrow {
  display: block;
  margin: 0 0 10px;
  color: var(--main-red);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.privacy-contact-head h2 {
  margin: 0 0 22px;
}

.privacy-contact-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.privacy-contact-head p + p {
  margin-top: 14px;
}

.privacy-contact-block {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 0 86px;
  border: 0;
  transform: none !important;
  filter: none !important;
  scroll-margin-top: 145px;
}

.privacy-contact-block:last-child {
  margin-bottom: 0;
}

.privacy-contact-num {
  display: none;
}

.privacy-contact-block h3 {
  margin: 0 0 28px;
}

.privacy-contact-block h4 {
  margin: 34px 0 14px;
  color: var(--main-black);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.privacy-contact-block p,
.privacy-contact-block li {
  max-width: 760px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
}

.privacy-contact-block p {
  margin: 0;
}

.privacy-contact-block p + p {
  margin-top: 16px;
}

.privacy-contact-block a,
.privacy-contact-content a {
  color: var(--main-black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.privacy-contact-block a:hover,
.privacy-contact-content a:hover {
  color: var(--main-red);
}

.privacy-contact-info-list,
.privacy-contact-user-grid,
.privacy-contact-cards,
.privacy-contact-rights {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-contact-info-list div,
.privacy-contact-user-grid div,
.privacy-contact-cards div,
.privacy-contact-rights div {
  position: relative;
  padding: 0 0 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.privacy-contact-info-list div::before,
.privacy-contact-user-grid div::before,
.privacy-contact-cards div::before,
.privacy-contact-rights div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--main-red);
}

.privacy-contact-info-list span,
.privacy-contact-user-grid h4,
.privacy-contact-cards h4,
.privacy-contact-rights h4 {
  display: block;
  margin: 0 0 6px;
  color: var(--main-black);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.privacy-contact-info-list p,
.privacy-contact-user-grid p,
.privacy-contact-cards p,
.privacy-contact-rights p {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 14px;
  line-height: 24px;
}

.privacy-contact-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-contact-list li {
  position: relative;
  padding-left: 22px;
}

.privacy-contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--main-red);
}

.privacy-contact-list li b {
  color: var(--main-black);
  font-weight: 800;
}

.privacy-contact-list ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-contact-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: var(--main-gray-light);
}

.privacy-contact-note b {
  display: block;
  margin-bottom: 8px;
  color: var(--main-black);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.privacy-contact-note p {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 14px;
  line-height: 24px;
}

.privacy-contact-details {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--main-gray-light);
  overflow: hidden;
}

.privacy-contact-details summary {
  padding: 17px 20px;
  cursor: pointer;
  list-style: none;
  color: var(--main-black);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.privacy-contact-details summary::-webkit-details-marker {
  display: none;
}

.privacy-contact-details summary::after {
  content: "+";
  float: right;
  color: var(--main-red);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.privacy-contact-details[open] summary::after {
  content: "−";
}

.privacy-contact-details p {
  padding: 0 20px 20px;
  margin: 0;
}

.privacy-contact-cookie-links {
  margin-top: 24px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-contact-cookie-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 120px;
  background: var(--main-white);
  color: rgba(0, 0, 0, 0.62);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.privacy-contact-cookie-links a:hover {
  background: var(--main-black);
  border-color: var(--main-black);
  color: var(--main-white);
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .privacy-contact-hero {
    padding: 140px 0 72px;
  }

  .privacy-contact-hero .container {
    padding: 0 24px;
  }

  .privacy-contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .privacy-contact-aside {
    display: none;
  }

  .privacy-contact-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .privacy-contact-hero {
    padding: 126px 0 54px;
  }

  .privacy-contact-head {
    margin-bottom: 64px;
  }

  .privacy-contact-eyebrow {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .privacy-contact-head h2 {
    font-size: 36px;
    line-height: 0.98;
  }

  .privacy-contact-head p,
  .privacy-contact-block p,
  .privacy-contact-block li {
    font-size: 14px;
    line-height: 24px;
  }

  .privacy-contact-block {
    margin-bottom: 64px;
  }

  .privacy-contact-block h3 {
    font-size: 28px;
  }

  .privacy-contact-block h4 {
    font-size: 15px;
  }

  .privacy-contact-cookie-links {
    gap: 8px;
  }

  .privacy-contact-cookie-links a {
    font-size: 11px;
    padding: 9px 12px;
  }
}

@media screen and (max-width: 380px) {
  .privacy-contact-hero .container {
    padding: 0 20px;
  }

  .privacy-contact-head h2 {
    font-size: 32px;
  }

  .privacy-contact-block h3 {
    font-size: 25px;
  }
}

.privacy-accordion {
  padding-bottom: 0;
}

.privacy-accordion-head {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-accordion-head h3 {
  margin: 0 !important;
}

.privacy-accordion-toggle {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid var(--main-black);
  border-radius: 50%;
  background: var(--main-white);
  color: var(--main-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.privacy-accordion-toggle:hover {
  background: var(--main-black);
  color: var(--main-white);
  transform: scale(1.06);
}

.privacy-accordion-toggle:active {
  transform: scale(0.94);
}

.privacy-accordion.is-open .privacy-accordion-toggle {
  background: var(--main-black);
  color: var(--main-white);
}

.privacy-accordion-body {
  overflow: hidden;
}

@media screen and (max-width: 450px) {
  .privacy-accordion-head {
    gap: 18px;
  }

  .privacy-accordion-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 28px;
  }
}

.cookie-policy-page .privacy-contact-head h2 {
  max-width: 760px;
}

.cookie-items-list div span:not(:first-child) {
  margin-top: 14px;
}

.cookie-items-list div p + span {
  display: block;
}

.privacy-accordion-head {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-accordion-head h3 {
  margin: 0 !important;
}

.privacy-accordion-toggle {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--main-black);
  border-radius: 50%;
  background: var(--main-white);
  color: var(--main-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.privacy-accordion-toggle:hover {
  background: var(--main-black);
  color: var(--main-white);
  transform: scale(1.06);
}

.privacy-accordion-toggle:active {
  transform: scale(0.94);
}

.privacy-accordion.is-open .privacy-accordion-toggle {
  background: var(--main-black);
  color: var(--main-white);
}

.privacy-accordion-body {
  overflow: hidden;
}

@media screen and (max-width: 450px) {
  .privacy-accordion-head {
    gap: 18px;
  }

  .privacy-accordion-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 26px;
  }
}

#privacy-intro {
  z-index: 103 !important;
}

.indicators {
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dot {
  position: relative;
  width: 30px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition:
    width 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease;
}

.dot.active {
  width: 46px;
  background: rgba(241, 92, 57, 0.16);
  transform: scaleY(1.08);
}

.dot-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--main-red);
  transform: translateZ(0);
  will-change: width;
}

@media screen and (max-width: 450px) {
  .indicators {
    margin-top: 24px;
    gap: 7px;
  }

  .dot {
    width: 26px;
    height: 5px;
  }

  .dot.active {
    width: 42px;
  }
}

.what-we-do-section,
.wwd-pin,
.wwd-cards {
  overflow: visible !important;
}

.wwd-card {
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.links a.is-active {
  position: relative;
  color: var(--main-black);
  font-weight: 600;
}

.links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--main-black);
}

.about-page {
  overflow: hidden;
  background: var(--main-white);
}

.about-hero {
  padding: 168px 0 92px;
  background: var(--main-white);
}

.about-hero__heading {
  display: flex;
  justify-content: center;
}

.about-hero__title {
  margin: 0 auto 54px;
  text-align: center;
}

.about-gallery {
  --about-gallery-gap: 20px;

  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.about-gallery__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.about-gallery__group {
  display: flex;
  gap: var(--about-gallery-gap);
  padding-right: var(--about-gallery-gap);
}

.about-gallery__slide {
  flex: 0 0 clamp(245px, 20.2vw, 310px);
  width: clamp(245px, 20.2vw, 310px);
  height: clamp(250px, 19.8vw, 306px);
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #ecebe8, #d5d4d0);
}

.about-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) and (pointer: fine) {
  .about-gallery__slide:hover img {
    transform: scale(1.045);
  }
}

.about-intro {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.about-intro__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-intro p {
  font-size: 18px;
  line-height: 130%;
  color: var(--main-black);
}

.about-intro__action {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.about-intro__action .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-team {
  padding: 104px 0 94px;
  background: var(--main-black);
  color: var(--main-white);
}

.about-team__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.about-team__header-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about-team__test-wrap {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
  width: 90%;
}

.about-team__header h2 {
  margin-bottom: 24px;
  font-size: 36px;
  line-height: 1;
  color: var(--main-white);
}

.about-team__header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.about-team__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.about-team__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.team-member {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  height: 430px;
  overflow: hidden;
  border-radius: 16px;
  background: #202020;
  isolation: isolate;
}

.team-member > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
  transform: scale(1.002);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.5s ease;
}

.team-member__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 36%,
    rgba(0, 0, 0, 0.16) 55%,
    rgba(0, 0, 0, 0.94) 100%
  );
  opacity: 1;
  transition: opacity 0.45s ease;
}

.team-member__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  opacity: 1;
  transform: translateY(18px);
  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-member__content h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.12;
  color: var(--main-white);
}

.team-member__content p {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.team-member__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-member__links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: var(--main-white);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.team-member__links a i {
  font-size: 17px;
}

.team-member__links a:hover {
  color: var(--main-black);
  background: var(--main-white);
}

@media (hover: hover) and (pointer: fine) {
  .team-member:hover > img {
    transform: scale(1.04);
  }

  .team-member:hover .team-member__shade,
  .team-member:hover .team-member__content {
    opacity: 1;
  }

  .team-member:hover .team-member__content {
    transform: translateY(0);
  }
}

.about-team__controls {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-team__arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: var(--main-white);
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.about-team__arrow i {
  font-size: 20px;
}

.about-team__arrow:hover {
  color: var(--main-black);
  background: var(--main-white);
}

.about-principles {
  padding: 96px 0 100px;
  background: var(--main-white);
}

.about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.principle-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 17px;
  background: var(--main-gray-mid);
}

.principle-card__header {
  min-height: 126px;
  padding: 26px 26px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.32);
}

.principle-card__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--main-white);
  background: var(--main-red);
}

.principle-card__icon i {
  font-size: 34px;
  font-weight: 400;
}

.principle-card__header h2 {
  font-size: 30px;
}

.principle-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.principle-card__body p {
  font-size: 16px;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.88);
}

.principle-card__body strong {
  font-weight: 800;
}

.principle-card__body--values {
  gap: 18px;
}

.about-logo-story {
  padding: 96px 0 48px 0;
  background: var(--main-white);
}

.about-logo-story__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 20px;
  align-items: stretch;
}

.about-logo-story__image {
  min-height: 570px;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e8e6;
}

.about-logo-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-logo-story__content {
  min-height: 570px;
  padding: 46px 54px;
  border-radius: 18px;
  background: #f9f9f9;
}

.about-logo-story__content h2 {
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 125%;
  color: var(--main-red);
}

.about-logo-story__content h3 {
  margin-top: 20px;
  margin-bottom: 2px;
  font-size: 18px;
  line-height: 125%;
  font-weight: 700;
  color: var(--main-black);
}

.about-logo-story__content p {
  font-size: 18px;
  line-height: 125%;
  color: rgba(0, 0, 0, 0.86);
}

.about-final-cta {
  padding: 0 0 80px;
  background: var(--main-white);
}

.about-final-cta__card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--main-black);
  isolation: isolate;
}

.about-final-cta__card > img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
  width: 56%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-final-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #000 0%,
    #000 43%,
    rgba(0, 0, 0, 0.9) 53%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.about-final-cta__content {
  min-height: 335px;
  padding: 58px 62px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.about-final-cta__content > p {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.about-final-cta__content h2 {
  margin-bottom: 30px;
  max-width: 670px;
  font-size: 34px;
  line-height: 1.12;
  color: var(--main-white);
}

.about-final-cta__content .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 135px;
  padding: 12px 22px;
  font-size: 13px;
}

@media screen and (max-width: 1024px) {
  .about-hero {
    padding-top: 150px;
  }

  .about-intro {
    gap: 36px;
  }

  .team-member {
    flex-basis: calc((100% - 20px) / 2);
  }

  .about-principles__grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
  }

  .about-logo-story__grid {
    grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  }

  .about-logo-story__content {
    padding: 38px;
  }

  .about-final-cta__card > img {
    width: 62%;
  }
}

@media screen and (max-width: 768px) {
  .about-hero {
    padding: 126px 0 64px;
  }

  .about-hero__title {
    margin-bottom: 34px;
    font-size: 34px;
    line-height: 1.08;
  }

  .about-gallery {
    --about-gallery-gap: 12px;
  }

  .about-gallery__slide {
    flex-basis: min(78vw, 320px);
    width: min(78vw, 320px);
    height: 250px;
    border-radius: 14px;
  }

  .about-intro {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-intro__column {
    gap: 20px;
  }

  .about-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  .about-intro__action {
    margin-top: 32px;
    width: 100%;
  }

  .about-intro__action .main-btn,
  .about-intro__action a {
    width: 100%;
  }

  .about-team {
    padding: 64px 0 58px;
  }

  .about-team__header {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-team__header h2 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .about-team__header p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .team-member {
    flex-basis: 100%;
    height: 470px;
  }

  .team-member__shade,
  .team-member__content {
    opacity: 1;
  }

  .team-member__content {
    transform: none;
  }

  .about-team__controls {
    margin-top: 28px;
  }

  .about-principles {
    padding: 64px 0 70px;
  }

  .about-principles__grid {
    gap: 16px;
  }

  .principle-card__header {
    min-height: 108px;
    padding: 20px;
  }

  .principle-card__icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .principle-card__icon i {
    font-size: 30px;
  }

  .principle-card__header h2 {
    font-size: 26px;
  }

  .principle-card__body {
    padding: 24px;
  }

  .principle-card__body p {
    font-size: 16px;
  }

  .about-logo-story {
    padding: 0 0 70px;
  }

  .about-logo-story__content p {
    font-size: 16px;
  }

  .about-logo-story__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-logo-story__image {
    min-height: 340px;
  }

  .about-logo-story__content {
    min-height: 0;
    padding: 28px 24px 32px;
  }

  .about-logo-story__content h3 {
    margin-top: 18px;
  }

  .about-final-cta {
    padding-bottom: 56px;
  }

  .about-final-cta__card {
    min-height: 460px;
  }

  .about-final-cta__card > img {
    width: 100%;
    height: 100%;
    opacity: 0.72;
  }

  .about-final-cta__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.36) 34%,
      rgba(0, 0, 0, 0.97) 100%
    );
  }

  .about-final-cta__content {
    min-height: 460px;
    padding: 32px 24px;
    justify-content: flex-end;
  }

  .about-final-cta__content h2 {
    font-size: 28px;
  }

  .about-final-cta__content h2 br {
    display: none;
  }

  .about-final-cta__content .main-btn {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .about-hero__title {
    font-size: 30px;
  }

  .team-member {
    height: 420px;
  }

  .team-member__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .about-final-cta__content h2 {
    font-size: 25px;
  }
}

.img-main-block.solution-network-wrap {
  position: relative;
  width: 50%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

.solution-network {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.solution-network::before,
.solution-network::after,
.solution-network__glow,
.solution-network__background,
.solution-network__orange-glow,
.solution-network__outline {
  display: none !important;
}

.solution-network__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;

  transform: none !important;
  filter: none !important;
  pointer-events: none;
}

.solution-network__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.solution-network__line--gray {
  stroke: rgba(0, 0, 0, 0.32);
  stroke-width: 1;
}

.solution-network__line--orange {
  stroke: var(--main-red);
  stroke-width: 1.25;
}

.solution-network__node {
  transform: none !important;
  vector-effect: non-scaling-stroke;
}

.solution-network__node--gray {
  fill: rgba(70, 70, 70, 0.72);
}

.solution-network__node--orange {
  fill: var(--main-red);
}

@media screen and (max-width: 1024px) {
  .img-main-block.solution-network-wrap {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .img-main-block.solution-network-wrap {
    width: 100%;
    max-width: 420px;
  }

  .solution-network__line--gray {
    stroke-width: 0.9;
  }

  .solution-network__line--orange {
    stroke-width: 1.05;
  }
}

@media screen and (max-width: 380px) {
  .img-main-block.solution-network-wrap {
    max-width: 350px;
  }
}

.solution-network__outline {
  fill: none;
  stroke: rgba(0, 0, 0, 0.32);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.text-width {
  width: 100%;
}

.strategy-advantages {
  position: relative;
  min-height: 720px;
  padding: 96px 0;
  overflow: hidden;
  background: var(--main-black);
  color: var(--main-white);
}

.strategy-advantages > .container {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.strategy-advantages__main-title {
  margin: 0;
  color: var(--main-white);
  white-space: nowrap;
}

.adventages-sec {
  width: 100%;
  display: grid;
  grid-template-columns:
    minmax(390px, 0.92fr)
    minmax(0, 1.08fr);
  align-items: start;
  gap: 72px;
}

.adventages-sec__slider {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 425px;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.adventages-slider__inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 420px;
  perspective: 1400px;
  overflow: visible;
}

.slide_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 0%;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.adventages-card {
  position: absolute;
  padding: 22px 28px 26px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background: var(--main-black);
}

.adventages-card__dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  border-radius: inherit;
  background: #000;
  opacity: 0;
  pointer-events: none;
}

.adventages-card__head,
.adventages-card__bottom {
  position: relative;
  z-index: 2;
}

.adventages-card__head {
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px dashed rgba(241, 92, 57, 0.9);
}

.adventages-card__icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 11px;
  background: var(--main-red);
}

.adventages-card__icon img {
  width: 38px;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.adventages-acrd__title {
  width: auto;
  margin: 0;
  color: var(--main-white);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 700;
}

.adventages-card__bottom {
  padding-top: 18px;
}

.adventages-card__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.adventages-sec__text {
  width: 100%;
  min-width: 0;
  max-width: 520px;
  padding-top: 2px;
  will-change: opacity, transform;
}

.adventages-title {
  margin: 0 0 36px;
  color: var(--main-white);
  font-size: 32px;
}

.adventages-wrapper {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--main-red);
}

.adventages-row {
  position: relative;
  margin: 0 0 26px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.adventages-row:last-child {
  margin-bottom: 0;
}

.adventages-row__title {
  margin: 0 0 8px;
  color: var(--main-white);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.adventages-row__descr {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.32;
  font-weight: 400;
}

.adventages-sec__text-bottom {
  margin-top: 24px;
}

.adventages-sec__text-bottom p {
  max-width: 610px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.adventages-sec__text-bottom.mobile {
  display: none !important;
}

.pagination_arrow {
  position: relative;
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
}

.slider-nav_custom_card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.adv-arrow {
  width: 46px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 120px;
  background: transparent;
  color: var(--main-white);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.adv-arrow svg {
  display: block;
  pointer-events: none;
}

.adv-arrow.prev_card {
  border-color: var(--main-white);
  background: var(--main-white);
  color: var(--main-black);
}

.adv-arrow:hover,
.adv-arrow:focus-visible {
  border-color: var(--main-white);
  background: var(--main-white);
  color: var(--main-black);
  transform: scale(1.04);
}

.adv-arrow.prev_card:hover {
  background: transparent;
  color: var(--main-white);
}

.adv-arrow:active {
  transform: scale(0.95);
}

.slider-pagination {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  transform: translateX(-50%);
}

.pagination-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.pagination-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.pagination-dot.is-active {
  background: var(--main-white);
  transform: scale(1.08);
}

@media screen and (max-width: 1100px) {
  .strategy-advantages__main-title {
    white-space: normal;
  }

  .adventages-sec {
    grid-template-columns:
      minmax(340px, 0.9fr)
      minmax(0, 1.1fr);

    gap: 48px;
  }

  .adventages-acrd__title {
    font-size: 22px;
  }

  .adventages-card__bottom p {
    font-size: 14px;
  }
}

@media screen and (max-width: 850px) {
  .strategy-advantages {
    min-height: auto;
    padding: 72px 0 54px;
  }

  .strategy-advantages > .container {
    min-height: 0;
  }

  .adventages-sec {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .adventages-sec__slider {
    min-height: 405px;
  }

  .adventages-slider__inner {
    max-width: 520px;
  }

  .adventages-sec__text {
    max-width: 100%;
  }

  .pagination_arrow {
    margin-top: 44px;
  }
}

@media screen and (max-width: 600px) {
  .strategy-advantages {
    padding: 64px 0 44px;
  }

  .strategy-advantages .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .strategy-advantages__main-title {
    font-size: 30px;
    line-height: 1.1;
  }

  .adventages-sec {
    margin-top: 36px;
    gap: 32px;
  }

  .adventages-sec__slider {
    min-height: 355px;
    overflow: visible;
  }

  .adventages-slider__inner {
    height: 350px;
  }

  .slide_card {
    height: 278px;
  }

  .adventages-card {
    padding: 20px;
    border-radius: 16px;
  }

  .adventages-card__head {
    gap: 16px;
    padding-bottom: 16px;
  }

  .adventages-card__icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .adventages-card__icon img {
    width: 32px;
  }

  .adventages-acrd__title {
    font-size: 21px;
  }

  .adventages-card__bottom {
    padding-top: 16px;
  }

  .adventages-card__bottom p {
    font-size: 14px;
    line-height: 1.4;
  }

  .adventages-title {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .adventages-row {
    margin-bottom: 24px;
  }

  .adventages-row__title {
    font-size: 16px;
  }

  .adventages-row__descr,
  .adventages-sec__text-bottom p {
    font-size: 14px;
    line-height: 1.45;
  }

  .adventages-sec__text-bottom .main-btn {
    width: 100%;
  }

  .pagination_arrow {
    margin-top: 36px;
    justify-content: space-between;
  }

  .slider-pagination {
    position: static;
    transform: none;
  }
}

@media screen and (max-width: 380px) {
  .strategy-advantages .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .strategy-advantages__main-title {
    font-size: 27px;
  }

  .slide_card {
    height: 292px;
  }

  .adventages-sec__slider {
    min-height: 365px;
  }

  .adventages-acrd__title {
    font-size: 19px;
  }
}

.strategy-advantages .adventages-sec__slider {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 430px;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.strategy-advantages .adventages-slider__inner {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 520px;
  perspective: 1400px;
  overflow: visible;
}

.strategy-advantages .slide_card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 340px;
  opacity: 0;
  visibility: hidden;
  transform-origin: 50% 0%;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.strategy-advantages .adventages-card {
  position: absolute;
  padding: 36px;
  overflow: hidden;
  isolation: isolate;
  border: 2px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(#151515, #151515) padding-box,
    linear-gradient(-174deg, rgba(141, 141, 141, 0.45), rgba(141, 141, 141, 0))
      border-box;
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.strategy-advantages .adventages-card__dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  border-radius: inherit;
  background: var(--main-black);
  opacity: 0;
  pointer-events: none;
}

.strategy-advantages .adventages-card__head,
.strategy-advantages .adventages-card__bottom {
  position: relative;
  z-index: 2;
}

.strategy-advantages .adventages-card__head {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed var(--main-red);
}

.strategy-advantages .adventages-card__icon {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--main-red);
}

.strategy-advantages .adventages-card__icon img {
  width: 55px;
  height: 55px;
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}

.strategy-advantages .adventages-acrd__title {
  width: calc(100% - 145px);
  margin: 0;
  color: var(--main-white);
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
}

.strategy-advantages .adventages-card__bottom {
  padding-top: 24px;
}

.strategy-advantages .adventages-card__bottom p {
  margin: 0;
  color: var(--main-white);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.strategy-advantages .adventages-card.is-current {
  box-shadow:
    0 34px 78px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media screen and (max-width: 1100px) {
  .strategy-advantages .adventages-sec__slider {
    min-height: 480px;
  }

  .strategy-advantages .adventages-slider__inner {
    max-width: 460px;
    height: 470px;
  }

  .strategy-advantages .slide_card {
    height: 350px;
  }

  .strategy-advantages .adventages-card {
    padding: 30px 34px 34px;
  }

  .strategy-advantages .adventages-card__head {
    padding-bottom: 20px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 92px;
    height: 92px;
    flex-basis: 92px;
    margin-right: 26px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 46px;
    height: 46px;
  }

  .strategy-advantages .adventages-acrd__title {
    width: calc(100% - 118px);
    font-size: 29px;
    line-height: 35px;
  }

  .strategy-advantages .adventages-card__bottom {
    padding-top: 20px;
  }

  .strategy-advantages .adventages-card__bottom p {
    font-size: 17px;
    line-height: 25px;
  }
}

@media screen and (max-width: 850px) {
  .strategy-advantages .adventages-sec__slider {
    min-height: 525px;
  }

  .strategy-advantages .adventages-slider__inner {
    max-width: 520px;
    height: 515px;
    margin: 0 auto;
  }

  .strategy-advantages .slide_card {
    height: 280px;
  }

  .strategy-advantages .adventages-card {
    padding: 36px 40px 40px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
    margin-right: 30px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 52px;
    height: 52px;
  }

  .strategy-advantages .adventages-acrd__title {
    width: calc(100% - 134px);
    font-size: 32px;
    line-height: 39px;
  }

  .strategy-advantages .adventages-card__bottom p {
    font-size: 18px;
    line-height: 27px;
  }
}

@media screen and (max-width: 600px) {
  .strategy-advantages .adventages-sec__slider {
    min-height: 405px;
    overflow: visible;
  }

  .strategy-advantages .adventages-slider__inner {
    width: 100%;
    max-width: 100%;
    height: 395px;
  }

  .strategy-advantages .slide_card {
    width: 100%;
    min-height: 300px;
  }

  .strategy-advantages .adventages-card {
    min-height: 300px;
    padding: 22px 24px 26px;
    border-width: 1.5px;
    border-radius: 20px;
    box-shadow:
      0 24px 54px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.025);
  }

  .strategy-advantages .adventages-card__head {
    padding-bottom: 18px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
    margin-right: 18px;
    border-radius: 9px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 36px;
    height: 36px;
  }

  .strategy-advantages .adventages-acrd__title {
    width: calc(100% - 90px);
    font-size: 22px;
    line-height: 28px;
  }

  .strategy-advantages .adventages-card__bottom {
    padding-top: 18px;
  }

  .strategy-advantages .adventages-card__bottom p {
    font-size: 14px;
    line-height: 21px;
  }
}

@media screen and (max-width: 450px) {
  .strategy-advantages .adventages-sec__slider {
    min-height: 290px;
  }

  .strategy-advantages .adventages-slider__inner {
    height: 280px;
  }

  .strategy-advantages .slide_card {
    min-height: 320px;
  }

  .strategy-advantages .adventages-card {
    min-height: 28px;
    padding: 22px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
    margin-right: 16px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 34px;
    height: 34px;
  }

  .strategy-advantages .adventages-acrd__title {
    width: calc(100% - 84px);
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 380px) {
  .strategy-advantages .adventages-sec__slider {
    min-height: 435px;
  }

  .strategy-advantages .adventages-slider__inner {
    height: 425px;
  }

  .strategy-advantages .slide_card {
    min-height: 335px;
  }

  .strategy-advantages .adventages-card {
    min-height: 335px;
    padding: 20px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 31px;
    height: 31px;
  }

  .strategy-advantages .adventages-acrd__title {
    width: calc(100% - 78px);
    font-size: 18px;
    line-height: 24px;
  }

  .strategy-advantages .adventages-card__bottom p {
    font-size: 13px;
    line-height: 20px;
  }
}

.create-product-section {
  position: relative;
  padding: 112px 0 74px;
  overflow: hidden;
  background: #f5f5f5;
}

.create-product-container {
  max-width: 1440px;
}

.create-product-head {
  max-width: 1220px;
}

.create-product-title {
  margin: 0;
  color: var(--main-black);
}

.create-product-description {
  max-width: 1180px;
  margin: 30px 0 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: 23px;
  line-height: 1.5;
  font-weight: 400;
}

.create-product-grid {
  width: 100%;
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.create-product-card {
  position: relative;
  min-height: 192px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  overflow: hidden;
  border: 1.4px solid var(--main-black);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  transition:
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.create-product-card__meta {
  min-width: 0;
  padding: 28px 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-right: 1px dashed rgba(0, 0, 0, 0.78);
}

.create-product-check {
  width: 48px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 120px;
  background: var(--main-red);
  color: var(--main-white);
}

.create-product-check svg {
  display: block;
  color: inherit;
}

.create-product-number {
  color: var(--main-black);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.create-product-card__content {
  min-width: 0;
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.create-product-card__content h3 {
  margin: 0 0 14px;
  color: var(--main-black);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.create-product-card__content p {
  max-width: 570px;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.018em;
  font-weight: 400;
}

.create-product-card__content strong {
  color: var(--main-black);
  font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
  .create-product-card:hover {
    background: var(--main-white);
    transform: translateY(-4px);
  }

  .create-product-card:hover .create-product-check {
    transform: scale(1.06);
  }
}

.create-product-check {
  transition: transform 0.35s ease;
}

.create-product-action {
  margin-top: 56px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.create-product-button {
  min-width: 290px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-color: var(--main-black);
  color: var(--main-black);
  font-size: 17px;
  line-height: 1;
}

.create-product-button:hover {
  background: var(--main-black);
  border-color: var(--main-black);
  color: var(--main-white);
}

@media screen and (max-width: 1200px) {
  .create-product-container {
    max-width: 1200px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .create-product-title {
    font-size: 48px;
  }

  .create-product-description {
    max-width: 1000px;
    font-size: 20px;
  }

  .create-product-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .create-product-card__content {
    padding: 28px 24px;
  }

  .create-product-card__content h3 {
    font-size: 22px;
  }

  .create-product-card__content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .create-product-section {
    padding: 88px 0 64px;
  }

  .create-product-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .create-product-card {
    min-height: 182px;
  }

  .create-product-card__content p {
    max-width: 720px;
  }
}

@media screen and (max-width: 600px) {
  .create-product-section {
    padding: 64px 0 48px;
  }

  .create-product-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .create-product-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .create-product-description {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .create-product-grid {
    margin-top: 44px;
  }

  .create-product-card {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    border-radius: 17px;
  }

  .create-product-card__meta {
    padding: 22px 12px;
  }

  .create-product-check {
    width: 42px;
    height: 26px;
  }

  .create-product-check svg {
    width: 14px;
    height: auto;
  }

  .create-product-number {
    font-size: 20px;
  }

  .create-product-card__content {
    padding: 24px 18px;
  }

  .create-product-card__content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.25;
  }

  .create-product-card__content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .create-product-action {
    margin-top: 38px;
  }

  .create-product-button {
    width: 100%;
    min-width: 0;
    padding: 13px 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 380px) {
  .create-product-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .create-product-title {
    font-size: 30px;
  }

  .create-product-card {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .create-product-card__meta {
    padding: 20px 10px;
  }

  .create-product-check {
    width: 38px;
    height: 24px;
  }

  .create-product-card__content {
    padding: 21px 16px;
  }

  .create-product-card__content h3 {
    font-size: 18px;
  }

  .create-product-card__content p {
    font-size: 13px;
  }
}

html:has(.error-page) {
  background: var(--main-black);
}

body.error-page {
  min-width: 320px;
  min-height: 100svh;
  overflow: hidden;
  background: var(--main-black);
  color: var(--main-white);
}

.error-404 {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: clamp(38px, 5vh, 62px) 24px clamp(42px, 6vh, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--main-black);
}

.error-404__background {
  position: absolute;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.error-404::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.error-404::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.06;
  pointer-events: none;
}

.error-404__brand {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--main-white);
  transform-origin: center;
}

.error-404__shield {
  width: 34px;
  height: auto;
  flex: 0 0 auto;
}

.error-404__wordmark {
  color: var(--main-white);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 600;
}

.error-404__main {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.error-404__visual {
  position: relative;
  width: min(100%, 1080px);
  margin-top: clamp(42px, 6vh, 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
}

.error-404__visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: rgba(241, 92, 57, 0.16);
  filter: blur(110px);
  opacity: 0.78;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-404__code {
  position: relative;
  display: inline-grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(280px, 31vw, 520px);
  line-height: 0.74;
  font-weight: 800;
  white-space: nowrap;
  padding-right: 0.12em;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.error-404__code-layer {
  grid-column: 1;
  grid-row: 1;
  display: block;
  color: transparent;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  pointer-events: none;
}

.error-404__code-glow {
  z-index: 1;
}

.error-404__code-rim {
  z-index: 2;
}

.error-404__code-main {
  position: relative;
  z-index: 3;
}

.error-404__floor {
  position: absolute;
  left: 50%;
  bottom: -45px;
  width: 48%;
  height: 30px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.48;
  transform: translateX(-50%) scaleX(1.15);
  pointer-events: none;
}

.error-404__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 820px;
  margin-top: clamp(68px, 7vh, 96px);
  text-align: center;
}

.error-404__content h1 {
  margin: 0;
  color: var(--main-white);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.35;
  font-weight: 700;
}

.error-404__content p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.45;
}

.error-404__actions {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.error-404__button {
  min-width: 158px;
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--main-white);
  border-radius: 120px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.error-404__button span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.error-404__button svg {
  flex: 0 0 auto;
  pointer-events: none;
}

.error-404__button--back {
  background: var(--main-white);
  border-color: var(--main-white);
  color: var(--main-black);
}

.error-404__button--back:hover {
  background: transparent;
  color: var(--main-white);
  transform: translateY(-3px);
}

.error-404__button--contact {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--main-white);
}

.error-404__button--contact:hover {
  background: var(--main-white);
  border-color: var(--main-white);
  color: var(--main-black);
  transform: translateY(-3px);
}

.error-404__button:active {
  transform: scale(0.96);
}

@media screen and (min-width: 769px) and (max-height: 850px) {
  .error-404 {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .error-404__shield {
    width: 29px;
  }

  .error-404__wordmark {
    font-size: 15px;
  }

  .error-404__visual {
    margin-top: 24px;
  }

  .error-404__code {
    font-size: clamp(230px, 28vw, 400px);
  }

  .error-404__content {
    margin-top: 50px;
  }

  .error-404__actions {
    margin-top: 30px;
  }

  .error-404__button {
    min-height: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .error-404__code {
    font-size: clamp(230px, 43vw, 430px);
  }

  .error-404__visual::before {
    width: 82%;
  }

  .error-404__content {
    max-width: 720px;
  }
}

@media screen and (max-width: 600px) {
  body.error-page {
    overflow-y: auto;
  }

  .error-404 {
    min-height: 100svh;
    padding: 30px 20px 38px;
  }

  .error-404__brand {
    gap: 10px;
  }

  .error-404__shield {
    width: 28px;
  }

  .error-404__wordmark {
    font-size: 15px;
  }

  .error-404__main {
    justify-content: flex-start;
  }

  .error-404__visual {
    width: calc(100% + 24px);
    margin-top: clamp(90px, 4vh, 135px);
  }

  .error-404__visual::before {
    width: 94%;
    height: 100%;

    filter: blur(70px);
  }

  .error-404__code {
    font-size: clamp(145px, 42vw, 205px);
  }

  .error-404__code-glow {
    -webkit-text-stroke-width: 8px;
    filter: blur(12px);
  }

  .error-404__code-rim {
    -webkit-text-stroke-width: 4px;
  }

  .error-404__code-main {
    -webkit-text-stroke-width: 1.2px;
  }

  .error-404__floor {
    bottom: -28px;
    width: 58%;
    height: 22px;
    filter: blur(18px);
  }

  .error-404__content {
    margin-top: 24px;
  }

  .error-404__content h1 {
    font-size: 19px;
    line-height: 1.4;
  }

  .error-404__content p {
    max-width: 290px;
    margin: 8px auto 0;
    font-size: 15px;
    line-height: 1.5;
  }

  .error-404__actions {
    width: 100%;
    margin-top: 38px;
    flex-direction: column;
    gap: 14px;
  }

  .error-404__button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }
}

@media screen and (max-width: 380px) {
  .error-404 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .error-404__visual {
    margin-top: 82px;
  }

  .error-404__code {
    font-size: 145px;
  }

  .error-404__content {
    margin-top: 70px;
  }

  .error-404__content h1 {
    font-size: 17px;
  }

  .error-404__content p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-404 *,
  .error-404 *::before,
  .error-404 *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

html {
  min-height: 100%;
}

body.error-page {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--main-black);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

.error-404 {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: max(clamp(30px, 5vh, 62px), env(safe-area-inset-top));
  padding-right: max(20px, env(safe-area-inset-right));
  padding-bottom: max(clamp(38px, 6vh, 72px), env(safe-area-inset-bottom));
  padding-left: max(20px, env(safe-area-inset-left));
}

.error-404__visual,
.error-404__code,
.error-404__code-layer,
.error-404__floor {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: flat;
  -webkit-transform-style: flat;
}

.error-404__code {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.error-page {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.error-404__button,
.error-404__brand {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.error-404__button {
  min-height: 48px;
}

@media screen and (max-width: 768px) {
  body.error-page {
    overflow-y: auto;
  }

  .error-404 {
    overflow-x: hidden;
  }

  .error-404__visual::before {
    width: 90%;
    height: 82%;
    filter: blur(48px);
    -webkit-filter: blur(48px);
    opacity: 0.55;
  }

  .error-404__code-glow {
    filter: blur(7px);
    -webkit-filter: blur(7px);
    opacity: 0.58;
  }

  .error-404__code-main {
    filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.78));
    -webkit-filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.78));
  }

  .error-404__floor {
    filter: blur(14px);
    -webkit-filter: blur(14px);
  }

  .error-404::after {
    display: none;
  }
}

@media screen and (max-height: 700px) {
  body.error-page {
    overflow-y: auto;
  }

  .error-404 {
    min-height: 100svh;
    padding-top: max(20px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .error-404__visual {
    margin-top: 20px;
  }

  .error-404__content {
    margin-top: 45px;
  }

  .error-404__actions {
    margin-top: 26px;
  }
}

@supports not (height: 100svh) {
  body.error-page,
  .error-404 {
    min-height: -webkit-fill-available;
  }
}

.solution-rings,
.wwd-pin,
.wwd-cards,
.wwd-card {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.wwd-card {
  -webkit-transform-style: flat;
  transform-style: flat;
}

.wwd-cards {
  filter: none !important;
  -webkit-filter: none !important;
}

.animate-this.is-visible {
  will-change: auto;
}

@media screen and (max-width: 768px) {
  .what-we-do-section .animate-this {
    filter: none !important;
    -webkit-filter: none !important;
  }

  .solution-rings {
    will-change: transform, opacity;
  }

  .wwd-card {
    will-change: transform;
  }
}

.what-carousel-section {
  --what-card-closed: 370px;
  --what-card-open: 810px;
  --what-carousel-gap: 20px;
  position: relative;
  width: 100%;
  padding: 116px 0 128px;
  overflow: hidden;
  background: var(--main-gray-light, #f4f4f2);
}

.what-carousel-head {
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.what-carousel-head .solution-title {
  margin: 0;
}

.what-carousel-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
}

.what-carousel-arrow {
  width: 58px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-black);
  border-radius: 120px;
  background: transparent;
  color: var(--main-black);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.what-carousel-arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.what-carousel-arrow svg {
  display: block;
}

.what-carousel-arrow:active {
  transform: scale(0.96);
}

.what-carousel-arrow:disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .what-carousel-arrow:not(:disabled):hover {
    background: var(--main-black);
    border-color: var(--main-black);
    color: var(--main-white);
    transform: translateY(-2px);
  }
}

.what-carousel-viewport {
  width: 100%;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: 0;
  overflow: hidden;
  outline: none;
  touch-action: pan-y pinch-zoom;
  -webkit-tap-highlight-color: transparent;
}

.what-carousel-track {
  width: max-content;
  display: flex;
  align-items: flex-start;
  gap: var(--what-carousel-gap);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.what-carousel-section.is-carousel-moving .what-carousel-track {
  will-change: transform;
}

.what-carousel-section.is-carousel-moving .what-carousel-card {
  will-change: width;
}

.what-carousel-section.is-carousel-moving .what-carousel-card__toggle {
  pointer-events: none;
}

.what-carousel-card {
  position: relative;
  width: var(--what-card-closed);
  height: 560px;
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--main-black);
  border-radius: 22px;
  background: var(--main-white);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: box-shadow 0.5s ease;
}

.what-carousel-card.is-open {
  width: var(--what-card-open);
}

.what-carousel-card__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex: 0 0 100%;
  overflow: hidden;
  background: var(--main-black);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    flex-basis 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-carousel-card.is-open .what-carousel-card__media {
  flex-basis: 38%;
}

.what-carousel-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.06) 36%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.what-carousel-card__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-carousel-card.is-open .what-carousel-card__media > img {
  transform: scale(1.055);
}

.what-carousel-card__toggle {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.what-carousel-card__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 32px 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--main-white);
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-carousel-card.is-open .what-carousel-card__cover {
  opacity: 0;
  transform: translate3d(-115%, 0, 0);
}

.what-carousel-card__cover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.what-carousel-card__number {
  display: none;
}

.what-carousel-card__cover-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 0;
}

.what-carousel-card__cover-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.what-carousel-card__cover-bottom h3 {
  color: var(--main-white);
  line-height: 1.04;
  font-weight: 700;
}

.what-carousel-card__summary {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.what-carousel-card__summary p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.45;
}

.what-carousel-card__open-icon,
.what-carousel-card__close-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: var(--main-white);
}

.what-carousel-card__open-icon svg,
.what-carousel-card__close-icon svg {
  display: block;
  transition: transform 0.35s ease;
}

.what-carousel-card__close-icon {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  opacity: 0;
  color: var(--main-black);
  background: var(--main-white);
  transform: translate3d(-14px, 0, 0);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    background-color 0.3s ease;
}

.what-carousel-card__close-icon svg {
  transform: rotate(180deg);
}

.what-carousel-card.is-open .what-carousel-card__close-icon {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.38s;
}

.what-carousel-card__details {
  position: relative;
  width: 62%;
  height: 100%;
  min-width: 0;
  flex: 0 0 62%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(46px, 0, 0);
  transition:
    opacity 0.38s ease,
    visibility 0s linear 0.4s,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-carousel-card.is-open .what-carousel-card__details {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.48s ease 0.25s,
    visibility 0s linear 0s,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.18s;
}

.what-carousel-card__details-inner {
  width: 100%;
  height: 100%;
  padding: 34px 36px 32px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.what-carousel-card__details-head {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.what-carousel-card__details-icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--main-black);
}

.what-carousel-card__details-icon img {
  width: 31px;
  height: 31px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.what-carousel-card__details-head h3 {
  margin: 0;
  color: var(--main-black);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
}

.what-carousel-card__description p {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 14px;
  line-height: 140%;
}

.what-carousel-card__description p + p {
  margin-top: 13px;
}

.what-carousel-card__questions {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.what-carousel-card__questions-title {
  display: block;
  margin-bottom: 16px;
  color: var(--main-black);
  font-size: 16px;
  font-weight: 700;
}

.what-carousel-card__questions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.what-carousel-card__questions li {
  position: relative;
  padding-left: 24px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 13px;
}

.what-carousel-card__questions li + li {
  margin-top: 7px;
}

.what-carousel-card__questions li::before {
  content: "?";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--main-red);
  color: var(--main-white);
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
}

.what-carousel-card__cta {
  width: fit-content;
  margin-top: auto;
  padding: 12px 26px;
  background: transparent;
  border-color: var(--main-black);
  color: var(--main-black);
}

.what-carousel-card__cta:hover {
  background: var(--main-black);
  color: var(--main-white);
}

@media (hover: hover) and (pointer: fine) {
  .what-carousel-card:not(.is-open):hover .what-carousel-card__media > img {
    transform: scale(1.055);
  }

  .what-carousel-card:not(.is-open):hover .what-carousel-card__open-icon svg {
    transform: translateX(4px);
  }
}

@media screen and (max-width: 991px) {
  .what-carousel-section {
    --what-card-closed: min(76vw, 520px);
    --what-card-open: min(76vw, 520px);
    --what-carousel-gap: 24px;
    padding: 88px 0 80px;
  }

  .what-carousel-head {
    margin-bottom: 46px;
    align-items: center;
  }

  .what-carousel-navigation {
    gap: 8px;
  }

  .what-carousel-arrow {
    width: 52px;
    height: 44px;
  }

  .what-carousel-viewport {
    padding-left: 24px;
    padding-right: 0;
  }

  .what-carousel-card,
  .what-carousel-card.is-open {
    width: var(--what-card-open);
    height: auto;
    min-height: 470px;
    flex-direction: column;
  }

  .what-carousel-section.is-carousel-moving .what-carousel-card {
    will-change: auto;
  }

  .what-carousel-card__media,
  .what-carousel-card.is-open .what-carousel-card__media {
    width: 100%;
    height: 470px;
    flex: 0 0 470px;
    transition:
      height 0.78s cubic-bezier(0.16, 1, 0.3, 1),
      flex-basis 0.78s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .what-carousel-card.is-open .what-carousel-card__media {
    height: 290px;
    flex-basis: 290px;
  }

  .what-carousel-card__cover {
    padding: 26px;
  }

  .what-carousel-card__cover-bottom h3 {
    font-size: 32px;
  }

  .what-carousel-card.is-open .what-carousel-card__cover {
    opacity: 0;
    transform: translate3d(0, 25px, 0);
  }

  .what-carousel-card__close-icon {
    top: 22px;
    right: 22px;
    bottom: auto;
    left: auto;
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .what-carousel-card__details {
    width: 100%;
    height: auto;
    max-height: 0;
    flex: 0 0 auto;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      max-height 0.85s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease,
      visibility 0s linear 0.85s,
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .what-carousel-card.is-open .what-carousel-card__details {
    max-height: 980px;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    transition:
      max-height 0.9s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.45s ease 0.2s,
      visibility 0s linear 0s,
      transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  }

  .what-carousel-card__details-inner {
    height: auto;
    padding: 26px;
    overflow: visible;
  }

  .what-carousel-card__details-head {
    margin-bottom: 22px;
  }

  .what-carousel-card__details-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .what-carousel-card__details-head h3 {
    font-size: 28px;
  }

  .what-carousel-card__description p {
    font-size: 15px;
  }

  .what-carousel-card__cta {
    width: 100%;
    margin-top: 26px;
  }
}

@media screen and (max-width: 560px) {
  .what-carousel-section {
    --what-card-closed: calc(100vw - 48px);
    --what-card-open: calc(100vw - 48px);
    padding: 72px 0 64px;
  }

  .what-carousel-head {
    margin-bottom: 38px;
  }

  .what-carousel-head .solution-title {
    font-size: 34px;
  }

  .what-carousel-arrow {
    width: 46px;
    height: 42px;
  }

  .what-carousel-card,
  .what-carousel-card.is-open {
    min-height: 420px;
    border-radius: 18px;
  }

  .what-carousel-card__media,
  .what-carousel-card.is-open .what-carousel-card__media {
    height: 420px;
    flex-basis: 420px;
  }

  .what-carousel-card.is-open .what-carousel-card__media {
    height: 140px;
    flex-basis: 140px;
  }

  .what-carousel-card__cover {
    padding: 22px;
  }

  .what-carousel-card__cover-icon {
    width: 48px;
    height: 48px;
  }

  .what-carousel-card__cover-bottom h3 {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .what-carousel-card__summary p {
    font-size: 14px;
    line-height: 1.4;
  }

  .what-carousel-card__open-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .what-carousel-card__details-inner {
    padding: 22px 20px 24px;
  }

  .what-carousel-card__details-head {
    gap: 14px;
  }

  .what-carousel-card__details-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .what-carousel-card__details-head h3 {
    font-size: 24px;
  }

  .what-carousel-card__description p {
    font-size: 14px;
    line-height: 1.45;
  }

  .what-carousel-card__questions li {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .what-carousel-card__cover-icon {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(0, 0, 0, 0.48);
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-carousel-card,
  .what-carousel-card *,
  .what-carousel-track {
    transition-duration: 0.01ms !important;
  }
}

.what-carousel-viewport {
  --what-carousel-offset: max(24px, calc((100vw - 1200px) / 2));
  position: relative;
  width: calc(100% - var(--what-carousel-offset) - var(--what-carousel-offset));
  margin-inline: var(--what-carousel-offset);
  padding: 0;
  overflow: hidden;
  outline: none;
  touch-action: pan-y pinch-zoom;
  -webkit-tap-highlight-color: transparent;
}

.what-carousel-head .how-act-controls {
  margin-top: 0;
}

.what-carousel-section .how-act-arrow {
  width: 56px;
  height: 46px;
  border-color: var(--main-black);
  background-color: transparent;
  color: var(--main-black);
}

.what-carousel-section .how-act-arrow:hover,
.what-carousel-section .how-act-arrow:focus-visible,
.what-carousel-section .how-act-arrow.is-active {
  border-color: var(--main-black);
  background-color: var(--main-black);
  color: var(--main-white);
  transform: scale(1.04);
}

.what-carousel-section .how-act-arrow:active {
  transform: scale(0.96);
}

.what-carousel-section .how-act-arrow:disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.what-carousel-section .how-act-arrow svg,
.what-carousel-section .how-act-arrow svg path {
  color: inherit;
  fill: currentColor !important;
  stroke: currentColor !important;
}

@media screen and (max-width: 560px) {
  .what-carousel-head .how-act-controls {
    gap: 8px;
  }

  .what-carousel-section .how-act-arrow {
    width: 46px;
    height: 42px;
  }
}

.contact-bs-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-bs-consents label.is-invalid {
  padding: 12px;
  border: 1px solid var(--main-red);
  border-radius: 14px;
  background: rgba(190, 33, 33, 0.045);
  color: var(--main-red);
}

.contact-bs-consents label.is-invalid input[type="checkbox"] {
  border-color: var(--main-red) !important;
}

.contact-bs-consents label.is-invalid > span {
  color: var(--main-red);
}

.contact-bs-form-status {
  width: 100%;
  margin: 18px 0 0;
  padding: 15px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  text-align: left;
}

.contact-bs-form-status.is-success {
  border-color: rgba(42, 132, 80, 0.22);
  background: rgba(42, 132, 80, 0.08);
  color: var(--main-green);
}

.contact-bs-form-status.is-error {
  border-color: rgba(190, 33, 33, 0.22);
  background: rgba(190, 33, 33, 0.07);
  color: var(--main-red);
}

.contact-bs-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  pointer-events: none;
}

.contact-bs-submit.is-sent {
  border-color: #2a8450;
  background: #2a8450;
  color: var(--main-white);
}

@media screen and (max-width: 450px) {
  .contact-bs-form-status {
    padding: 14px 15px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 18px;
  }
}

.section__cta {
  position: relative;
  top: 140px;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(
      ellipse 75% 120% at 82% 46%,
      rgba(116, 37, 22, 0.7) 0%,
      rgba(75, 24, 15, 0.56) 27%,
      rgba(30, 11, 8, 0.35) 52%,
      transparent 72%
    ),
    radial-gradient(
      circle at 100% 0%,
      rgba(241, 92, 57, 0.18),
      transparent 38%
    ),
    linear-gradient(108deg, #020202 0%, #040303 34%, #110805 61%, #32120c 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.82) 28%,
    rgba(0, 0, 0, 0.28) 64%,
    rgba(0, 0, 0, 0.04) 100%
  );
  pointer-events: none;
}

.section__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset -80px 0 130px rgba(241, 92, 57, 0.035);

  pointer-events: none;
}

.section__cta-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.section__cta-img::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(241, 92, 57, 0.15);
  filter: blur(90px);
  transform: translateY(-50%);
}

.section__cta-img::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -58%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(126, 36, 20, 0.22);
  filter: blur(100px);
}

.section__cta-items {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 60px;
  background: transparent;
}

.section__cta .left-side {
  width: 100%;
  max-width: 950px;
}

.section__cta-items h6 {
  margin: 0 0 18px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
}

.section__cta-items h1 {
  width: 100%;
  max-width: 930px;
  margin: 0;
  padding: 0;
  color: var(--main-white);
}

.section__cta .button__main {
  margin-top: 40px;
}

.section__cta .button__main a {
  width: fit-content;
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid var(--main-white);
  border-radius: 120px;
  background: var(--main-white);
  color: var(--main-black);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.section__cta .button__main a:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--main-white);
}

@media screen and (max-width: 1024px) {
  .section__cta {
    top: 120px;
    min-height: 360px;
  }

  .section__cta-items {
    min-height: 360px;
    padding: 52px 48px;
  }

  .section__cta-items h1 {
    max-width: 800px;
  }
}

@media screen and (max-width: 600px) {
  .section__cta {
    top: 150px;
    min-height: 430px;
    border-radius: 22px;
    background:
      radial-gradient(
        ellipse 110% 72% at 88% 20%,
        rgba(129, 42, 24, 0.72) 0%,
        rgba(66, 22, 14, 0.46) 42%,
        transparent 72%
      ),
      linear-gradient(160deg, #020202 0%, #070403 52%, #29100b 100%);
  }

  .section__cta::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.62) 46%,
      rgba(0, 0, 0, 0.94) 100%
    );
  }

  .section__cta-img::before {
    top: -8%;
    right: -34%;
    width: 110%;
    filter: blur(72px);
    transform: none;
  }

  .section__cta-img::after {
    right: -25%;
    bottom: -32%;
    width: 90%;
    filter: blur(80px);
  }

  .section__cta-items {
    min-height: 430px;
    align-items: flex-end;
    padding: 42px 28px;
  }

  .section__cta-items h1 br {
    display: none;
  }

  .section__cta .button__main {
    margin-top: 30px;
  }

  .section__cta .button__main a {
    width: 100%;
    min-height: 50px;
    padding: 14px 24px;
  }
}

@media screen and (max-width: 380px) {
  .section__cta {
    top: 140px;
    min-height: 410px;
  }

  .section__cta-items {
    min-height: 410px;
    padding: 36px 22px;
  }
}

@media screen and (max-width: 450px) {
  .how-act-section {
    padding-top: 92px;
  }

  .how-act-section .container {
    padding: 0 24px;
  }

  .how-act-main-title {
    font-size: 40px;
  }

  .how-act-visual {
    width: 370px;
    height: 370px;
    margin: 28px 0 24px;
    align-self: center;
  }

  .how-ring-1 {
    width: 190px;
    height: 190px;
  }

  .how-ring-2 {
    width: 245px;
    height: 245px;
  }

  .how-ring-3 {
    width: 305px;
    height: 305px;
  }

  .how-ring-4 {
    width: 365px;
    height: 365px;
  }

  .how-act-core {
    width: 180px;
    height: 180px;

    box-shadow:
      inset 0 0 50px rgba(255, 255, 255, 0.05),
      0 0 55px rgba(255, 255, 255, 0.04);
  }

  .how-act-icon {
    width: 86px;
    height: 86px;
  }
}

@media screen and (max-width: 380px) {
  .how-act-section .container {
    padding: 0 20px;
  }

  .how-act-main-title {
    font-size: 36px;
  }

  .how-act-visual {
    width: 330px;
    height: 330px;

    margin: 24px 0 20px;
  }

  .how-ring-1 {
    width: 170px;
    height: 170px;
  }

  .how-ring-2 {
    width: 220px;
    height: 220px;
  }

  .how-ring-3 {
    width: 274px;
    height: 274px;
  }

  .how-ring-4 {
    width: 326px;
    height: 326px;
  }

  .how-act-core {
    width: 160px;
    height: 160px;
  }

  .how-act-icon {
    width: 76px;
    height: 76px;
  }

  .how-act-title {
    font-size: 24px;
  }

  .how-act-text {
    font-size: 16px;
    line-height: 150%;
  }
}

body.contact-popup-open {
  overflow: hidden;
}

.contact-success-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-success-popup[hidden] {
  display: none !important;
}

.contact-success-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.contact-success-popup__card {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  padding: 48px 42px 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(241, 92, 57, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.97);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.25),
    0 12px 35px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.contact-success-popup__card::before,
.contact-success-popup__card::after,
.contact-success-popup__icon::before {
  content: none;
  display: none;
}

.contact-success-popup__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--main-black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.contact-success-popup__close:hover {
  color: var(--main-white);
  background: var(--main-red);
  border-color: var(--main-red);
  transform: rotate(90deg);
}

.contact-success-popup__close:focus-visible {
  outline: 2px solid var(--main-red);
  outline-offset: 3px;
}

.contact-success-popup__icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--main-red);
  box-shadow: none;
}

.contact-success-popup__icon svg {
  display: block;
  width: 48px;
  height: 48px;
  overflow: visible;
}

.contact-success-popup__icon-circle {
  display: none;
}

.contact-success-popup__mark,
.contact-success-popup__check {
  fill: none;
  stroke: var(--main-white);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success-popup__eyebrow {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--main-red);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-success-popup h2 {
  position: relative;
  z-index: 3;
  max-width: 390px;
  margin: 0 auto 16px;
  color: var(--main-black);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 700;
}

.contact-success-popup p {
  position: relative;
  z-index: 3;
  max-width: 390px;
  margin: 0 auto 30px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.contact-success-popup__button {
  position: relative;
  z-index: 3;
  min-width: 170px;
}

.contact-success-popup.is-success .contact-success-popup__icon {
  background: #07b14b !important;
}

.contact-success-popup.is-error .contact-success-popup__card {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.97);
}

.contact-success-popup.is-error .contact-success-popup__icon {
  background: var(--main-red) !important;
}

.contact-success-popup.is-error .contact-success-popup__button {
  color: var(--main-white);
  background: var(--main-black);
  border-color: var(--main-black);
}

.contact-success-popup.is-error .contact-success-popup__button:hover {
  color: var(--main-white);
  background: var(--main-red);
  border-color: var(--main-red);
}

.contact-success-popup:not(.is-visible) .contact-success-popup__backdrop {
  opacity: 0;
}

.contact-success-popup:not(.is-visible) .contact-success-popup__card {
  opacity: 0;
  transform: translateY(35px) scale(0.92);
}

.contact-success-popup.is-visible .contact-success-popup__backdrop {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.contact-success-popup.is-visible .contact-success-popup__card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

@media screen and (max-width: 600px) {
  .contact-success-popup {
    align-items: end;
    padding: 14px max(14px, env(safe-area-inset-right))
      max(14px, env(safe-area-inset-bottom))
      max(14px, env(safe-area-inset-left));
  }

  .contact-success-popup__card {
    width: 100%;
    padding: 44px 24px 32px;
    border-radius: 28px;
  }

  .contact-success-popup__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .contact-success-popup__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .contact-success-popup__icon svg {
    width: 42px;
    height: 42px;
  }

  .contact-success-popup h2 {
    font-size: 29px;
  }

  .contact-success-popup p {
    margin-bottom: 26px;
    font-size: 14px;
  }

  .contact-success-popup__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-success-popup *,
  .contact-success-popup *::before,
  .contact-success-popup *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

.contact-phone-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  overflow: hidden;
  border: 1px solid var(--main-black-light);
  border-radius: 18px;
  background: var(--main-white);
}

.contact-phone-field:focus-within {
  border-color: rgba(0, 0, 0, 0.44);
  background: var(--main-white);
}

.contact-phone-field__prefix {
  flex: 0 0 auto;
  padding-left: 20px;
  color: var(--main-black);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
  pointer-events: none;
  user-select: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-phone-field:focus-within .contact-phone-field__prefix {
  color: var(--main-red);
  transform: translateX(2px);
}

.contact-bs-page .contact-phone-field input[name="phone"] {
  min-width: 0;
  height: 56px;
  padding: 0 20px 0 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-bs-page .contact-phone-field input[name="phone"]:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-bs-page .contact-phone-field input[name="phone"]::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.contact-bs-select {
  position: relative;
}

.contact-bs-select.is-enhanced::after {
  display: none;
}

.contact-bs-select.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-custom-select {
  position: relative;
  width: 100%;
}

.contact-custom-select__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 58px;
  padding: 0 18px 0 20px;
  border: 1px solid var(--main-black-light);
  border-radius: 18px;
  background: var(--main-white);
  color: rgba(0, 0, 0, 0.48);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.contact-custom-select__button:hover {
  border-color: rgba(0, 0, 0, 0.26);
  background: var(--main-white);
}

.contact-custom-select__button:focus-visible,
.contact-bs-select.is-open .contact-custom-select__button {
  border-color: rgba(0, 0, 0, 0.44);
  background: var(--main-white);
}

.contact-custom-select__button.has-value {
  color: var(--main-black);
}

.contact-custom-select__value {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.contact-custom-select__arrow {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-custom-select__arrow::before,
.contact-custom-select__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 1.5px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.58);
  transition:
    background-color 0.3s ease,
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-custom-select__arrow::before {
  left: 10px;
  transform: translateY(-50%) rotate(42deg);
}

.contact-custom-select__arrow::after {
  right: 10px;
  transform: translateY(-50%) rotate(-42deg);
}

.contact-bs-select.is-open .contact-custom-select__arrow {
  transform: rotate(180deg);
}

.contact-bs-select.is-open .contact-custom-select__arrow::before,
.contact-bs-select.is-open .contact-custom-select__arrow::after {
  background: var(--main-red);
}

.contact-custom-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 80;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-9px) scale(0.98);
  transform-origin: 50% 0%;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-bs-select.is-open {
  z-index: 50;
}

.contact-bs-select.is-open .contact-custom-select__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-custom-select__options {
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.16) transparent;
}

.contact-custom-select__options::-webkit-scrollbar {
  width: 5px;
}

.contact-custom-select__options::-webkit-scrollbar-track {
  background: transparent;
}

.contact-custom-select__options::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.contact-custom-select__option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 42px 11px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(0, 0, 0, 0.66);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
}

.contact-custom-select__option:hover,
.contact-custom-select__option:focus-visible {
  color: var(--main-black);
  background: rgba(0, 0, 0, 0.045);
  transform: translateX(3px);
}

.contact-custom-select__option::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--main-red);
  border-bottom: 2px solid var(--main-red);
  opacity: 0;
  transform: translateY(-70%) rotate(-45deg) scale(0.6);
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-custom-select__option.is-selected {
  color: var(--main-black);
  background: rgba(241, 92, 57, 0.09);
}

.contact-custom-select__option.is-selected::after {
  opacity: 1;
  transform: translateY(-70%) rotate(-45deg) scale(1);
}

@media screen and (max-width: 600px) {
  .contact-custom-select__menu {
    top: calc(100% + 8px);
    border-radius: 16px;
    box-shadow:
      0 20px 55px rgba(0, 0, 0, 0.16),
      0 7px 20px rgba(0, 0, 0, 0.08);
  }

  .contact-custom-select__options {
    max-height: min(240px, 42vh);
  }

  .contact-custom-select__option {
    min-height: 48px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-custom-select__menu,
  .contact-custom-select__button,
  .contact-custom-select__arrow,
  .contact-custom-select__option,
  .contact-phone-field,
  .contact-phone-field__prefix {
    transition-duration: 0.01ms !important;
  }
}

body.bs-cookie-modal-open {
  overflow: hidden;
}

.bs-cookie-consent,
.bs-cookie-consent * {
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.bs-cookie-consent [hidden] {
  display: none !important;
}

.bs-cookie-banner {
  position: fixed;
  width: min(calc(100% - 48px), 1200px);
  bottom: 0px;
  z-index: 99990;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 126px;
  padding: 28px 34px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(
    90deg,
    rgba(55, 38, 38, 0.96) 0%,
    rgba(25, 20, 20, 0.97) 52%,
    rgba(28, 20, 20, 0.98) 100%
  );
  color: var(--bs-cookie-text);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  isolation: isolate;
}

.bs-cookie-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: none;
}

.bs-cookie-banner__content {
  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.bs-cookie-banner__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--main-white);
}

.bs-cookie-banner__icon svg {
  display: block;
  width: 40px;
  height: 40px;
}

.bs-cookie-banner__divider {
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.27);
}

.bs-cookie-banner__copy {
  max-width: 760px;
}

.bs-cookie-banner__copy p {
  margin: 0;
  color: var(--bs-cookie-text);
  font-size: 1rem;
}

.bs-cookie-banner__copy a {
  color: var(--main-white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.bs-cookie-banner__copy a:hover {
  color: var(--bs-cookie-red);
}

.bs-cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.bs-cookie-button {
  min-width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-white);
  border-radius: 120px;
  min-height: 46px;
  background: transparent;
  color: var(--main-white);
  font-weight: 600;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.bs-cookie-button:hover {
  color: var(--main-black);
  background: var(--main-white);
  border-color: var(--main-white);
}

.bs-cookie-button:focus-visible {
  outline: 2px solid var(--bs-cookie-red);
  outline-offset: 4px;
}

.bs-cookie-button--primary {
  min-width: 174px;
  border-color: var(--main-red);
  background: var(--main-red);
  color: var(--main-white);
}

.bs-cookie-button--primary:hover {
  color: var(--main-red);
  background: transparent;
  border-color: var(--main-red);
}

.bs-cookie-settings-trigger {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 99970;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--main-black);
  color: var(--main-white);
  cursor: pointer;
  outline: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.bs-cookie-settings-trigger:hover {
  background: var(--bs-cookie-red);
  border-color: var(--bs-cookie-red);
  transform: translateY(-3px) rotate(-6deg);
}

.bs-cookie-settings-trigger:focus-visible {
  outline: 2px solid var(--bs-cookie-red);
  outline-offset: 4px;
}

.bs-cookie-settings-trigger svg {
  width: 25px;
  height: 25px;
}

.bs-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.bs-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bs-cookie-modal__panel {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  max-height: min(820px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 30px;
  background: var(--bs-cookie-panel);
}

.bs-cookie-modal__scroll {
  max-height: min(820px, calc(100dvh - 48px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.16) transparent;
}

.bs-cookie-modal__scroll::-webkit-scrollbar {
  width: 6px;
}

.bs-cookie-modal__scroll::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
}

.bs-cookie-modal__header {
  position: relative;
  padding: 36px;
}

.bs-cookie-modal__eyebrow {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--bs-cookie-red);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.bs-cookie-modal__header h2 {
  margin: 0 0 12px;
}

.bs-cookie-modal__header p {
  max-width: 540px;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 125%;
  font-weight: 500;
}

.bs-cookie-modal__header a {
  color: var(--main-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bs-cookie-modal__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--main-black);
  cursor: pointer;
  outline: none;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.bs-cookie-modal__close:hover {
  color: var(--main-white);
  background: var(--bs-cookie-red);
  border-color: var(--bs-cookie-red);
  transform: rotate(90deg);
}

.bs-cookie-modal__close:focus-visible {
  outline: 2px solid var(--bs-cookie-red);
  outline-offset: 3px;
}

.bs-cookie-modal__close svg {
  width: 21px;
  height: 21px;
}

.bs-cookie-categories {
  display: grid;
  gap: 12px;
  padding: 24px 34px;
}

.bs-cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.085);
  border-radius: 18px;
  background: #fafafa;
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

.bs-cookie-category__copy h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  color: var(--main-black);
  font-size: 1rem;
}

.bs-cookie-category__copy p {
  margin: 0;
  color: rgba(0, 0, 0, 0.53);
  font-size: 12px;
  font-weight: 500;
}

.bs-cookie-category__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(241, 92, 57, 0.09);
  color: var(--bs-cookie-red);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.bs-cookie-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 54px;
  height: 30px;
  cursor: pointer;
}

.bs-cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.bs-cookie-switch__track {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #e7e7e7;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.bs-cookie-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--main-white);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.bs-cookie-switch input:checked + .bs-cookie-switch__track {
  border-color: var(--bs-cookie-red);
  background: var(--bs-cookie-red);
}

.bs-cookie-switch input:checked + .bs-cookie-switch__track::after {
  transform: translateX(24px);
}

.bs-cookie-switch input:focus-visible + .bs-cookie-switch__track {
  outline: 2px solid var(--bs-cookie-red);
  outline-offset: 3px;
}

.bs-cookie-switch input:disabled + .bs-cookie-switch__track {
  border-color: rgba(0, 0, 0, 0.12);
  background: var(--main-black);
  cursor: not-allowed;
}

.bs-cookie-switch input:disabled + .bs-cookie-switch__track::after {
  transform: translateX(24px);
}

.bs-cookie-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 12px;
  padding: 24px;
  background: var(--main-white);
}

.bs-cookie-modal__actions button {
  width: 100%;
}

.bs-cookie-modal__actions .what-carousel-card__cta {
  margin-top: 0;
  font-size: 0.8rem;
}

.bs-cookie-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: var(--main-white);
  color: var(--main-black);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.bs-cookie-modal__button:hover {
  color: var(--main-white);
  background: var(--main-black);
  border-color: var(--main-black);
  transform: translateY(-2px);
}

.bs-cookie-modal__button:focus-visible {
  outline: 2px solid var(--bs-cookie-red);
  outline-offset: 3px;
}

.bs-cookie-modal__button--primary {
  border-color: var(--bs-cookie-red);
  background: var(--bs-cookie-red);
  color: var(--main-white);
  box-shadow: 0 12px 28px rgba(241, 92, 57, 0.18);
}

.bs-cookie-modal__button--primary:hover {
  background: #e7502f;
  border-color: #e7502f;

  box-shadow: 0 16px 34px rgba(241, 92, 57, 0.28);
}

@keyframes bsCookieBannerIn {
  from {
    opacity: 0;
    transform: translateY(calc(100% + 24px));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bsCookieFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bsCookiePanelIn {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.94);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@media screen and (max-width: 1180px) {
  .bs-cookie-banner {
    grid-template-columns: 1fr;
    gap: 36px;

    padding: 26px 28px;
  }

  .bs-cookie-banner__copy {
    max-width: none;
  }

  .bs-cookie-banner__actions {
    justify-content: flex-start;
    padding-left: 85px;
  }
}

@media screen and (max-width: 760px) {
  .bs-cookie-banner {
    bottom: 10px;
    min-height: 0;
    padding: 24px max(20px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    border-radius: 24px;
  }

  .bs-cookie-banner__content {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .bs-cookie-banner__divider {
    display: none;
  }

  .bs-cookie-banner__icon {
    align-self: start;

    width: 42px;
    height: 42px;
  }

  .bs-cookie-banner__icon svg {
    width: 32px;
    height: 32px;
  }

  .bs-cookie-banner__copy p {
    font-size: 13px;
  }

  .bs-cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-left: 0;
  }

  .bs-cookie-button {
    min-height: 0px;
    white-space: nowrap;
    padding: 12px 26px;
  }

  .bs-cookie-button--primary {
    grid-column: 1 / -1;
  }

  .bs-cookie-modal {
    align-items: end;
    padding: 20px;
  }

  .bs-cookie-modal__panel {
    max-height: calc(100dvh - 20px);
    border-radius: 28px;
  }

  .bs-cookie-modal__scroll {
    max-height: calc(100dvh - 20px);
  }

  .bs-cookie-modal__header {
    padding: 24px;
  }

  .bs-cookie-modal__header h2 {
    font-size: 29px;
  }

  .bs-cookie-modal__close {
    top: 16px;
    right: 16px;
  }

  .bs-cookie-categories {
    padding: 18px 16px;
  }

  .bs-cookie-category {
    gap: 14px;
    padding: 17px 14px 17px 16px;
  }

  .bs-cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bs-cookie-modal__actions main .bs-cookie-modal__button--primary {
    order: -1;
  }

  .bs-cookie-settings-trigger {
    left: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }
}

@media screen and (max-width: 420px) {
  .bs-cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .bs-cookie-button--primary {
    grid-column: auto;
  }

  .bs-cookie-category__copy h3 {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bs-cookie-consent *,
  .bs-cookie-consent *::before,
  .bs-cookie-consent *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.bs-cookie-modal__close {
  z-index: 10;
  pointer-events: auto;
}

.bs-cookie-modal__close svg,
.bs-cookie-modal__close svg * {
  pointer-events: none;
}

@media screen and (min-width: 460px) and (max-width: 900px) {
  .links {
    display: none;
  }
}

@media screen and (min-width: 460px) and (max-width: 1180px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  footer .container,
  .hero-premium .container,
  .what-we-do-section .container,
  .who-help-section .container,
  .how-act-section .container,
  .contact-bs-hero .container,
  .privacy-contact-hero .container,
  .about-hero .container,
  .about-team .container,
  .about-principles .container,
  .about-logo-story .container,
  .about-final-cta .container,
  .strategy-advantages > .container {
    width: 100%;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  p {
    font-size: 1rem;
  }

  .icon-w {
    width: 60px;
    height: 60px;
  }

  .section-mar {
    margin: 72px 0;
  }

  .about,
  .insights,
  .investors {
    padding: 72px 0;
  }

  .media {
    padding: 72px 0 0;
  }

  .solution-desc {
    width: min(100%, 780px);
    font-size: 18px;
  }

  .main-btn,
  .main-btn-2,
  .btn_orange,
  .btn_transparent {
    min-height: 46px;
    padding: 12px 22px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card .main-btn {
    width: 100%;
  }

  header {
    top: 18px;
  }

  nav {
    width: calc(100% - 48px);
    max-width: 1120px;
  }

  nav::before {
    border-radius: 20px;
  }

  .nav-wrap {
    min-height: 64px;
    padding: 18px 20px;
  }

  .logo img {
    width: 108px;
  }

  .menu-wrapper {
    gap: 10px;
  }

  .menu-wrapper .main-btn {
    width: auto;
    min-height: 42px;
    padding: 10px 18px;
    white-space: nowrap;
    font-size: 13px;
  }

  .burger-button {
    padding: 15px;
  }

  .menu .logo {
    top: 28px;
    left: 32px;
    width: 110px;
  }

  .wrapp-menu_img {
    width: 50%;
  }

  .wrapp-menu_text {
    width: 50%;
    padding: 132px clamp(28px, 4vw, 52px) 28px;
  }

  .menu ul {
    padding: 10px 0;
  }

  .menu ul li {
    margin-bottom: 18px;
  }

  .menu ul li::before {
    top: 5px;
  }

  .wrap-connection {
    gap: 20px;
  }

  .wrapp-menu_bottom {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
  }

  .policy {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-premium {
    padding-bottom: 48px;
  }

  .hero-premium::before {
    top: 140px;
    right: -220px;
    width: 460px;
    height: 460px;
  }

  .hero-premium .hero-wrap {
    min-height: auto;
    padding: 146px 0 56px;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(360px, 0.88fr);
    gap: 42px;
  }

  .hero-premium .hero-text {
    max-width: 100%;
    gap: 22px;
  }

  .hero-premium .hero-title {
    max-width: 680px;
    font-size: clamp(47px, 5.6vw, 66px);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .hero-premium .hero-title-p {
    max-width: 620px;
    font-size: 16px;
    line-height: 27px;
  }

  .hero-premium .flex-btn {
    flex-wrap: wrap;
  }

  .hero-stats {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stat {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-stat strong {
    font-size: 15px;
  }

  .hero-stat span {
    font-size: 11px;
    line-height: 15px;
  }

  .hero-photo {
    max-width: none;
    height: 540px;
    border-radius: 32px;
  }

  .hero-photo::before {
    inset: 11px;
    border-radius: 23px;
  }

  .hero-photo-label {
    top: 24px;
    left: 24px;
  }

  .hero-photo-content {
    left: 28px;
    right: 28px;
    bottom: 30px;
  }

  .hero-photo-content h3 {
    font-size: 25px;
  }

  .hero-wrap:not(.hero-premium .hero-wrap) {
    margin-top: 140px;
    gap: 42px;
  }

  .hero-img {
    max-width: 330px;
    height: 300px;
  }

  .license-card {
    margin-top: 36px;
    margin-bottom: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    padding: 18px 20px;
  }

  .license-card .btn,
  .license-card .main-btn,
  .license-card > a {
    grid-column: 2;
    justify-self: start;
  }

  .about-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
    margin: 36px 0;
    overflow: visible;
  }

  .about-cards .card {
    min-width: 0;
    padding: 28px;
  }

  .about-cards .card-text {
    gap: 18px;
  }

  .about-cards .card-text p {
    width: auto;
    max-width: 230px;
  }

  .about-bottom {
    align-items: flex-start;
    gap: 28px;
  }

  .about-bottom p {
    width: auto;
    max-width: 760px;
    font-size: 16px;
  }

  .section__insight-cards {
    gap: 20px;
    margin: 36px 0;
  }

  .section__insight-card {
    flex: 0 0 calc(50% - 10px);
    height: 420px;
  }

  .section__insight-overlay-card {
    opacity: 1;
  }

  .section__insight-items-overlay {
    left: 32px;
    right: 32px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .section__insight-items-overlay .main-btn {
    width: 100%;
  }

  .investors-wrap {
    display: grid;
    grid-template-columns:
      minmax(240px, 0.72fr)
      minmax(0, 1.28fr);
    align-items: start;
    gap: 48px;
  }

  .section__faq {
    padding-top: 80px;
    gap: 40px;
  }

  .faq {
    width: 100%;
    max-width: none;
  }

  .section__media {
    padding-top: 72px;
  }

  .section__media p {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 32px;
  }

  .section__media-news {
    gap: 34px;
    padding-top: 36px;
    overflow: hidden;
  }

  .section__cta {
    top: 110px;
    min-height: 100%;
  }

  .section__cta-items {
    min-height: 100%;
    padding: 48px 42px;
  }

  .section__cta-items h1 {
    max-width: 760px;
    font-size: 30px;
  }

  .section__cta-img img {
    top: -60px;
  }

  footer {
    padding: 170px 0 42px;
  }

  .contact-footer {
    padding-top: 80px;
  }

  .section__footer-items {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-bottom: 48px;
  }

  .section__footer-items .block-1 {
    max-width: 100%;
  }

  .footer__desc {
    max-width: 900px;
  }

  .blocks-wrapp {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
  }

  .section__footer-bottom {
    align-items: flex-start;
    gap: 26px;
  }

  .footer__botoom-right {
    flex-wrap: wrap;
  }

  .bcg-solution-main,
  .bcg-solution-main-solution {
    padding-bottom: 100px;
  }

  .wrap_main-screen.solutions {
    width: 100%;
    max-width: none;
    margin-top: 138px;
    padding: 0 32px;
    display: grid;
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(380px, 1.1fr);
    align-items: center;
    gap: 44px;
  }

  .wrap_main-screen .solutions .hero-text {
    width: 100%;
  }

  .text_main-screen {
    width: 100%;
    max-width: 100%;
  }

  .text_main-screen h1 {
    max-width: 680px;
    font-size: clamp(44px, 5.1vw, 58px);
  }

  .text_main-screen p {
    max-width: 650px;
    font-size: 16px;
    line-height: 27px;
  }

  .button_bl-main_scr {
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .img-main-block {
    width: 100%;
    height: 420px;
  }

  .img-main-block .img-card:first-of-type {
    width: 62%;
  }

  .img-main-block .img-card:last-of-type {
    width: 56%;
    top: 42px;
  }

  .img-main-block.solution-network-wrap {
    width: 100%;
    max-width: 500px;
    min-height: 430px;
    margin: 0 auto;
  }

  .solution-rings {
    width: 510px;
    height: 510px;
  }

  .wwd-pin {
    min-height: 100svh;
    padding: 96px 0 74px;
    gap: 34px;
  }

  .wwd-head {
    margin-bottom: 34px;
  }

  .wwd-head h2 {
    font-size: clamp(38px, 5vw, 50px);
  }

  .wwd-cards {
    height: 650px;
    min-height: 650px;
  }

  .wwd-card-top {
    min-height: 112px;
    padding: 27px 28px;
  }

  .wwd-title-wrap {
    gap: 20px;
  }

  .wwd-icon,
  .wwd-arrow {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .wwd-title-wrap h3 {
    font-size: 24px;
  }

  .wwd-card-content {
    padding: 32px 28px;
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 0.9fr);
    align-items: start;
    gap: 28px;
  }

  .wwd-card-right {
    max-width: 100%;
  }

  .wwd-card-right p {
    font-size: 16px;
    line-height: 1.55;
  }

  .wwd-questions {
    padding: 22px;
  }

  .who-help-section {
    padding: 76px 0;
  }

  .who-help-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .who-help-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .who-help-tab {
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
  }

  .who-help-card {
    grid-template-columns:
      minmax(300px, 0.9fr)
      minmax(0, 1.1fr);
    min-height: 320px;
  }

  .who-help-image {
    min-height: 320px;
  }

  .who-help-content {
    min-height: 320px;
    padding: 42px;
  }

  .who-help-content h3 {
    margin-bottom: 26px;
    font-size: 28px;
  }

  .who-help-content p {
    font-size: 17px;
  }

  .how-act-section {
    min-height: 600px;
    padding: 72px 0;
  }

  .how-act-wrap {
    min-height: 600px;
    grid-template-columns:
      minmax(0, 0.88fr)
      minmax(360px, 1.12fr);
    gap: 34px;
  }

  .how-act-left {
    padding-bottom: 72px;
  }

  .how-act-main-title {
    font-size: clamp(34px, 4.6vw, 46px);
    padding-bottom: 48px;
  }

  .how-act-copy {
    max-width: 500px;
  }

  .how-act-title {
    font-size: 22px;
  }

  .how-act-text {
    font-size: 16px;
  }

  .how-act-visual {
    right: -175px;
    top: 46%;
    width: 580px;
    height: 580px;
  }

  .how-ring-1 {
    width: 290px;
    height: 290px;
  }

  .how-ring-2 {
    width: 390px;
    height: 390px;
  }

  .how-ring-3 {
    width: 490px;
    height: 490px;
  }

  .how-ring-4 {
    width: 570px;
    height: 570px;
  }

  .how-act-core {
    width: 310px;
    height: 310px;
  }

  .how-act-icon {
    width: 150px;
    height: 150px;
  }

  .contact-bs-hero {
    min-height: auto;
    padding: 138px 0 72px;
  }

  .contact-bs-layout {
    grid-template-columns:
      minmax(280px, 0.72fr)
      minmax(0, 1.28fr);
    align-items: start;
    gap: 36px;
  }

  .contact-bs-aside-inner {
    position: sticky;
    top: 110px;
    min-height: auto;
    max-height: calc(100svh - 130px);
    gap: 20px;
  }

  .contact-bs-title {
    font-size: clamp(38px, 4.8vw, 50px);
  }

  .contact-bs-desc {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-bs-info-card {
    max-width: none;
    padding: 20px;
  }

  .contact-bs-content {
    gap: 22px;
  }

  .contact-bs-form,
  .contact-bs-location {
    padding: 30px;
    border-radius: 22px;
  }

  .contact-bs-form-head h2 {
    font-size: 26px;
  }

  .contact-bs-form-head p {
    font-size: 14px;
  }

  .contact-bs-grid {
    gap: 14px;
  }

  .contact-bs-map {
    height: 390px;
  }

  .privacy-contact-hero {
    min-height: auto;
    padding: 138px 0 72px;
  }

  .privacy-contact-layout {
    grid-template-columns:
      minmax(170px, 0.24fr)
      minmax(0, 0.76fr);
    gap: 44px;
  }

  .privacy-contact-aside {
    display: block;
  }

  .privacy-contact-aside-inner {
    top: 112px;
  }

  .privacy-contact-content {
    width: 100%;
    max-width: none;
  }

  .privacy-contact-head {
    margin-bottom: 70px;
  }

  .privacy-contact-head h2 {
    font-size: clamp(36px, 4.8vw, 48px);
  }

  .privacy-contact-head p,
  .privacy-contact-block p,
  .privacy-contact-block li {
    max-width: 100%;
  }

  .privacy-contact-block {
    margin-bottom: 68px;
  }

  .about-hero {
    padding: 146px 0 74px;
  }

  .about-hero__title {
    margin-bottom: 42px;
  }

  .about-gallery__slide {
    flex-basis: clamp(230px, 29vw, 300px);
    width: clamp(230px, 29vw, 300px);
    height: clamp(240px, 29vw, 300px);
  }

  .about-intro {
    margin-top: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .about-intro p {
    font-size: 16px;
  }

  .about-team {
    padding: 80px 0 74px;
  }

  .about-team__header h2 {
    font-size: 32px;
  }

  .about-team__track {
    gap: 18px;
  }

  .team-member {
    flex-basis: calc((100% - 18px) / 2);
    height: 410px;
  }

  .about-principles {
    padding: 76px 0 80px;
  }

  .about-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .principle-card {
    min-height: 0;
  }

  .principle-card__header {
    min-height: 110px;
    padding: 22px;
  }

  .principle-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .principle-card__header h2 {
    font-size: 25px;
  }

  .principle-card__body {
    padding: 22px;
  }

  .principle-card__body p {
    font-size: 15px;
  }

  .about-logo-story {
    padding: 76px 0 42px;
  }

  .about-logo-story__grid {
    grid-template-columns:
      minmax(250px, 0.38fr)
      minmax(0, 0.62fr);
    gap: 18px;
  }

  .about-logo-story__image,
  .about-logo-story__content {
    min-height: 500px;
  }

  .about-logo-story__content {
    padding: 36px;
  }

  .about-logo-story__content p {
    font-size: 16px;
  }

  .about-final-cta {
    padding-bottom: 68px;
  }

  .about-final-cta__card,
  .about-final-cta__content {
    min-height: 310px;
  }

  .about-final-cta__card > img {
    width: 54%;
  }

  .about-final-cta__content {
    padding: 44px;
  }

  .about-final-cta__content h2 {
    font-size: 30px;
  }

  .strategy-advantages {
    min-height: auto;
    padding: 78px 0;
  }

  .strategy-advantages > .container {
    min-height: 0;
  }

  .adventages-sec {
    grid-template-columns:
      minmax(320px, 0.88fr)
      minmax(0, 1.12fr);
    gap: 38px;
  }

  .adventages-sec__slider,
  .strategy-advantages .adventages-sec__slider {
    min-height: 460px;
  }

  .adventages-slider__inner,
  .strategy-advantages .adventages-slider__inner {
    max-width: 440px;
    height: 450px;
  }

  .slide_card,
  .strategy-advantages .slide_card {
    height: 320px;
  }

  .strategy-advantages .adventages-card {
    padding: 28px;
  }

  .strategy-advantages .adventages-card__icon {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
    margin-right: 10px;
  }

  .strategy-advantages .adventages-card__icon img {
    width: 42px;
    height: 42px;
  }

  .adventages-title {
    font-size: 28px;
  }

  .adventages-row {
    margin-bottom: 20px;
  }

  .create-product-section {
    padding: 86px 0 66px;
  }

  .create-product-container {
    width: 100%;
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  .create-product-title {
    font-size: clamp(38px, 5vw, 52px);
  }

  .create-product-description {
    max-width: 900px;
    margin-top: 24px;
    font-size: 19px;
  }

  .create-product-grid {
    margin-top: 54px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .create-product-card {
    min-height: 180px;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .create-product-card__meta {
    padding: 24px 12px;
  }

  .create-product-card__content {
    padding: 26px 24px;
  }

  .create-product-card__content h3 {
    font-size: 21px;
  }

  .create-product-card__content p {
    font-size: 15px;
  }

  .error-404 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .error-404__visual {
    width: min(100%, 860px);
  }

  .error-404__code {
    font-size: clamp(220px, 40vw, 410px);
  }

  .error-404__content {
    max-width: 700px;
  }

  .what-carousel-section {
    --what-card-closed: min(38vw, 340px);
    --what-card-open: min(72vw, 480px);
    --what-carousel-gap: 18px;
    padding: 84px 0 90px;
  }

  .what-carousel-head {
    margin-bottom: 48px;
  }
  .what-carousel-card__cover {
    padding: 26px;
  }

  .what-carousel-card__cover-icon {
    width: 82px;
    height: 82px;
  }

  .what-carousel-card__details-inner {
    padding: 28px;
  }

  .what-carousel-card__details-head h3 {
    font-size: 27px;
  }

  .contact-success-popup {
    padding: 28px;
  }

  .contact-success-popup__card {
    width: min(100%, 500px);
  }

  .contact-custom-select__menu {
    max-height: min(320px, 42vh);
  }

  .bs-cookie-banner {
    left: 28px;
    right: 28px;
    bottom: 0;
    width: auto;
    max-width: 1200px;
    min-height: 0;
    margin: 0 auto;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 24px 24px 0 0;
  }

  .bs-cookie-banner__content {
    grid-template-columns: 48px 1px minmax(0, 1fr);
    gap: 20px;
  }

  .bs-cookie-banner__icon {
    width: 48px;
    height: 48px;
  }

  .bs-cookie-banner__icon svg {
    width: 35px;
    height: 35px;
  }

  .bs-cookie-banner__divider {
    height: 48px;
  }

  .bs-cookie-banner__copy {
    max-width: none;
  }

  .bs-cookie-banner__copy p {
    font-size: 14px;
  }

  .bs-cookie-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
    padding-left: 68px;
  }

  .bs-cookie-button,
  .bs-cookie-button--primary {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
  }

  .bs-cookie-modal {
    place-items: center;
    padding: max(24px, env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
  }

  .bs-cookie-modal__panel {
    width: min(100%, 700px);
    max-height: calc(100dvh - 48px);
    margin: auto;
    border-radius: 26px;
  }

  .bs-cookie-modal__scroll {
    max-height: calc(100dvh - 48px);
  }

  .bs-cookie-modal__header {
    padding: 30px 72px 25px 30px;
  }

  .bs-cookie-modal__header h2 {
    font-size: 34px;
  }

  .bs-cookie-categories {
    padding: 22px 26px;
  }

  .bs-cookie-category {
    padding: 18px;
  }

  .bs-cookie-modal__actions {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr)
      minmax(0, 1.15fr);
    gap: 10px;
    padding: 20px 26px 24px;
  }

  .bs-cookie-modal__button {
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .bs-cookie-settings-trigger {
    left: 20px;
    bottom: 20px;
  }
}

@media screen and (min-width: 460px) and (max-width: 960px) {
  .container,
  footer .container,
  .hero-premium .container,
  .what-we-do-section .container,
  .who-help-section .container,
  .how-act-section .container,
  .contact-bs-hero .container,
  .privacy-contact-hero .container,
  .about-hero .container,
  .about-team .container,
  .about-principles .container,
  .about-logo-story .container,
  .about-final-cta .container,
  .strategy-advantages > .container {
    padding-left: 28px;
    padding-right: 28px;
  }

  .wrapp-menu_text {
    width: 60%;
    padding: 132px 32px 28px;
  }

  .wrap-bootom {
    max-width: 100%;
  }

  .hero-premium .hero-wrap {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-premium .hero-title {
    max-width: 760px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-title {
    font-size: 30px !important;
    line-height: 125%;
  }

  .hero-title-p br {
    font-size: 1rem;
    line-height: 125%;
  }

  .hero-title-p br {
    display: none;
  }

  .hero-title br {
    display: none;
  }

  .hero-photo {
    width: 100%;
    height: 500px;
    justify-self: stretch;
  }

  .license-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-bottom {
    flex-direction: column;
  }

  .investors-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section__faq {
    padding-top: 0;
  }

  .wrap_main-screen.solutions {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 1fr, 1fr;
    gap: 24px;
  }

  .img-main-block {
    height: 320px;
  }

  .img-main-block.solution-network-wrap {
    max-width: 560px;
  }

  .wwd-cards {
    height: 760px;
    min-height: 760px;
  }

  .wwd-card-content {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-y: auto;
  }

  .wwd-image {
    height: 128px;
  }

  .who-help-image {
    min-height: 340px;
  }

  .who-help-content {
    min-height: auto;
    padding: 40px;
  }

  .how-act-section,
  .how-act-wrap {
    min-height: auto;
  }

  .how-act-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .how-act-left {
    padding-bottom: 34px;
  }

  .how-act-visual {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    width: min(100%, 570px);
    height: 570px;
    margin: -30px auto 0;
    transform: none;
  }

  .contact-bs-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-bs-aside-inner {
    position: relative;
    top: auto;
    max-height: none;
  }

  .privacy-contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .privacy-contact-aside {
    display: none;
  }

  .about-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-logo-story__image {
    min-height: 420px;
  }

  .about-logo-story__content {
    min-height: auto;
  }

  .about-final-cta__card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-final-cta__card > img {
    position: relative;
    width: 100%;
    height: 310px;
  }

  .about-final-cta__content {
    min-height: auto;
  }

  .adventages-sec {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .adventages-sec__slider,
  .strategy-advantages .adventages-sec__slider {
    min-height: 470px;
  }

  .adventages-slider__inner,
  .strategy-advantages .adventages-slider__inner {
    max-width: 520px;
    margin: 0 auto;
  }

  .adventages-sec__text {
    max-width: 100%;
  }

  .create-product-grid {
    grid-template-columns: 1fr;
  }

  .create-product-card__content p {
    max-width: 720px;
  }

  .what-carousel-viewport {
    --what-carousel-offset: max(24px, calc((100vw - 1200px) / 2));
    position: relative;
    width: calc(100% - var(--what-carousel-offset) - 0px);
    margin-inline: var(--what-carousel-offset);
    padding: 0;
    overflow: hidden;
    outline: none;
    touch-action: pan-y pinch-zoom;
    -webkit-tap-highlight-color: transparent;
  }

  .what-carousel-section {
    --what-card-closed: min(200px, 220px) !important;
    --what-card-open: min(520px, 540px) !important;
  }

  .what-carousel-head {
    align-items: center;
  }

  .what-carousel-card,
  .what-carousel-card.is-open {
    min-height: 470px;
  }

  .bs-cookie-banner__actions {
    padding-left: 0;
  }
}

@media screen and (min-width: 961px) and (max-width: 1180px) {
  .bs-cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .bs-cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
  }

  .bs-cookie-button {
    width: auto;
    min-width: 124px;
  }

  .bs-cookie-button--primary {
    width: auto;
    min-width: 138px;
  }
}

@media screen and (min-width: 460px) and (max-width: 1180px) and (max-height: 720px) {
  .menu ul li {
    margin-bottom: 11px;
    font-size: clamp(25px, 3.2vw, 31px);
  }

  .wrapp-menu_text {
    padding-top: 88px;
  }

  .hero-premium .hero-wrap {
    padding-top: 128px;
  }

  .hero-photo {
    height: 460px;
  }

  .bs-cookie-modal {
    padding: 12px 24px;
  }

  .bs-cookie-modal__panel,
  .bs-cookie-modal__scroll {
    max-height: calc(100dvh - 24px);
  }

  .bs-cookie-modal__header {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .bs-cookie-modal__header h2 {
    font-size: 29px;
  }

  .bs-cookie-categories {
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .bs-cookie-category {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .bs-cookie-modal__actions {
    padding-top: 14px;
    padding-bottom: 16px;
  }
}

.investors-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
}

.faq-main {
  width: min(100%, 750px);
  flex: 0 1 750px;

  min-height: var(--faq-reserved-height, auto);
}

.answer {
  max-height: 0;

  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.faq.active .answer {
  opacity: 1;

  animation: fade 0.5s ease;
}

.answer p {
  padding-top: 24px;
  padding-bottom: 0;

  font-size: 1rem;
  line-height: 1.4rem;
  color: #a4a4a4;
}

@media screen and (max-width: 768px) {
  .investors-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .section__faq-left,
  .faq-main {
    width: 100%;
  }

  .faq-main {
    flex: none;
  }
}

body.services-page.services-hero-visual--js .solution-rings {
  animation: none !important;
}

body.services-page .img-main-block {
  isolation: isolate;
}

body.services-page .img-main-block .img-card,
body.services-page .solution-rings {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  body.services-page .solution-rings,
  body.services-page .img-main-block .img-card {
    animation: none !important;
    transition: none !important;
  }
}
