.block_hero {
  position: relative;
  background: var(--primary);
  color: var(--white);
  padding-top: 150px;
  z-index: 0;
}
.block_hero.hero_big {
  min-height: 70vh;
}
.block_hero:not(.hero_big) .hero-content {
    margin-top: 0;
    margin-bottom: 7rem;
}
.block_hero.hero_big .hero-container {
  padding: 64px 15px 15px 15px;
}
.block_hero .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 15px 15px;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.block_hero .hero-content {
  width: calc(50% - 10px);
}
.block_hero .hero-content h1 {
  margin-bottom: 16px;
  color: var(--white);
  margin-top: 0;
}
.block_hero .subtitle {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.5;
}
.block_hero .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.block_hero .hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  width: 50%;
  margin-bottom: -50px;
}
.block_hero .photo-area {
  position: relative;
  width: 100%;
}
.block_hero .hero-client-logo {
  width: 150px;
  height: 80px;
  border-radius: 50rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  padding: 5px;
  background: var(--white);
  z-index: 1;
  bottom: 200px;
  position: absolute;
}
.block_hero .hero-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.block_hero .hero-bubble {
  position: absolute;
  top: -36px;
  right: -18px;
  background: var(--white);
  color: var(--text-main);
  padding: 18px 22px;
  border-radius: 50rem;
  text-align: center;
  box-shadow: 0 2px 18px rgba(35,64,231,.07);
  z-index: 2;
  max-width: 220px;
  line-height: 1.2;
}
.block_hero .hero-client-image-mask {
  width: 120%;
  height: auto;
}
.block_hero .client-logo {
  position: absolute;
  left: -40px;
  top: 40px;
  background: var(--white);
  border-radius: 22px;
  padding: 8px 18px;
  box-shadow: 0 2px 12px rgba(35,64,231,.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_hero .client-logo img {
  max-height: 28px;
  display: block;
}
.block_hero .expert-card {
  display: flex;
  align-items: center;
  justify-self: end;
  bottom: 100px;
  gap: 10px;
  right: -80px;
  position: absolute;
  background: var(--white);
  color: var(--text-main);
  border-radius: 50rem;
  padding: 10px;
  box-shadow: 0 2px 18px rgba(35,64,231,.08);
  font-size: 0.97rem;
  max-width: 250px;
}
.block_hero .expert-card p {
  margin-bottom: 0;
}
.block_hero .expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2eafc;
  box-shadow: 0 1px 8px rgba(35,64,231,.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_hero .expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block_hero .expert-role {
  font-size: 0.85em;
  font-weight: 700;
  color: var(--primary);
}
.block_hero .expert-name {
  font-weight: 600;
  margin-top: -2px;
}
.block_hero .expert-title {
  color: var(--text-muted);
  font-size: 0.9em;
}
.block_hero .bg-wave {
  position: absolute;
  left: 0;
  height: 420px;
  width: 100%;
  right: 0;
  bottom: -160px;
  z-index: 1;
}
.block_hero .bg-wave:before,
.block_hero .bg-wave:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  background: url('/files/wave_line.svg') center bottom repeat-x; /*../images/wave_line.svg*/
  background-size: cover;
  pointer-events: none;
}
.block_hero .bg-wave:before  {
  bottom: 158px;
}
.block_hero .bg-wave:after  {
  bottom: 2px;
  transform: scaleY(-1);
  margin-left: -1000px;
}
.block_hero .bg-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: darken;
  overflow: hidden;
}
.block_hero .bg-video .component_video{height: 100%;}
.block_hero .bg-video video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 1050px) {
  .block_hero .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 44px;
  }
  .block_hero .hero-content {width: 100%;}
  .block_hero .hero-visual {align-items: flex-start;}
}
@media (max-width: 756px) {
  .block_hero .hero-container {
    padding-top: 0;
  }
  .block_hero .hero-visual {
    width: 100%;
    margin-bottom: 0;
  }
  .block_hero .photo-area {
    width: 100%;
    min-width: 0;
  }
  .block_hero .hero-client-image-mask {width: 100%;}
  .block_hero .hero-content {margin-top: 0;}
  .block_hero .expert-card {
    bottom: 0;
    right: 20px;
  }
  .block_hero .hero-bubble {
    right: 20px;
    top: -65px;
  }
  .block_hero .hero-client-logo {
    bottom: 100px;
  }
}