.hero {
  position: relative;
  height: clamp(655px, 94.2vw, 850px);
  overflow: hidden;
  max-height: 90vh;
}
.hero__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  padding-bottom: 70px;
  bottom: 0;
  z-index: 3;
}
.hero h1 {
  color: #fff;
  font-weight: normal;
}
.hero h1 strong {
  font-weight: bold;
}
.hero__base {
  display: flex;
  flex-direction: column;
}
.hero__base p {
  font-size: 20px;
  line-height: 150%;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__img {
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.hero__img picture {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__img picture img {
  height: clamp(655px, 94.2vw, 850px);
  width: 100%;
  max-height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__img picture::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 58%);
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .hero__container {
    padding: 0 40px;
    padding-bottom: 100px;
  }
  .button-primary.button-primary--large {
    padding: 16px 20px;
    font-size: 14px;
  }
  .button-primary-outline.button-primary--large {
    padding: 16px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 792px) {
  .hero__container {
    padding: 0 14px;
    padding-bottom: 34px;
  }
  .button-primary.button-primary--large {
    padding: 14px 18px;
    font-size: 13px;
  }
  .button-primary-outline.button-primary--large {
    padding: 14px 18px;
    font-size: 13px;
  }
}