.block-company-hero {
  position: relative;
  overflow: hidden;
  padding: 124px 0 0;
  background-color: var(--tg-color-black);
}

.block-company-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 908px;
  margin: 0 auto;
  text-align: center;
}

.block-company-hero__lock {
  display: block;
  width: 228px;
  height: auto;
}

.block-company-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--tg-color-text-white);
}

.block-company-hero__title {
  max-width: 632px;
  text-transform: uppercase;
}

.block-company-hero__title p {
  margin: 0;
}

.block-company-hero__title em {
  color: var(--tg-color-red);
  font-style: normal;
}

.block-company-hero__text {
  max-width: 908px;
}

.block-company-hero__buttons {
  display: flex;
  justify-content: center;
}

.block-company-hero__buttons .tg-buttons {
  justify-content: center;
  gap: 20px;
}

.block-company-hero__image-wrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: -196px;
  margin-left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.block-company-hero__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 610px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  max-width: none;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .block-company-hero__image-wrap {
    margin-top: -96px;
  }
}

@media (max-width: 767px) {
  .block-company-hero {
    padding-top: 32px;
  }

  .block-company-hero__content {
    gap: 32px;
  }

  .block-company-hero__copy {
    gap: 12px;
  }

  .block-company-hero__title {
    max-width: 328px;
  }

  .block-company-hero__buttons {
    max-width: 266px;
    width: 100%;
  }

  .block-company-hero__buttons .tg-buttons {
    width: 100%;
    gap: 16px;
  }

  .block-company-hero__buttons .tg-buttons > a {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .block-company-hero__image-wrap {
    margin-top: -60px;
  }

  .block-company-hero__image {
    min-height: 340px;
  }
}