.hero {
  background-color: #540000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}
.hero__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  padding: 0 32px;
  flex: 1 44%;
}
.hero__wrapper h1, .hero__wrapper p {
  color: #ffffff;
}
.hero__wrapper h1 {
  text-transform: uppercase;
}
.hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero__img {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
  height: clamp(415px, 52.735vw, 775px);
  max-width: 920px;
  flex: 1 47%;
}
.hero__img picture {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}
.hero__img picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 9/10;
  -o-object-position: left;
     object-position: left;
}

@media screen and (max-width: 1279px) {
  .hero {
    gap: 32px;
  }
  .hero__wrapper {
    gap: 16px;
    padding: 0 16px;
  }
  .hero__buttons {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    gap: 32px;
    flex-direction: column;
    padding-top: 32px;
  }
  .hero__img {
    height: clamp(415px, 52.735vw, 775px);
  }
}