.hero_block {
  min-height: 85rem;
  height: 100%;
  display: flex;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
}
@media only screen and (max-width: 576px) {
  .hero_block {
    min-height: 70rem;
  }
}
.hero_block *:not(.btn) {
  color: #FFFFFF;
}
.hero_block__container {
  padding-top: 8rem;
  padding-bottom: 13rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 2;
  position: relative;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform: translateY(0);
  opacity: 1;
}
.hero_block__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero_block__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 1;
  transition: background-color 0.8s ease;
}
.hero_block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
  transform: translateZ(0);
}
.hero_block__inner {
  max-width: 90rem;
  z-index: 2;
}
.hero_block__title {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 834px) {
  .hero_block__title br {
    display: none;
  }
}
.hero_block__text {
  margin-bottom: 3.2rem;
  max-width: 50rem;
}