.hero {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 460px;
  margin-bottom: 70px;
  background: #0E1820;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .hero {
    min-height: auto;
    border-radius: 30px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
.hero .hero__image-wrapper {
  max-width: 40%;
  width: 100%;
  padding: 25px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .hero .hero__image-wrapper {
    max-width: 100%;
    padding: 25px;
  }
}
.hero .hero__image-ratio {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--color-3);
}
.hero .hero__image-ratio picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero .hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero .hero__content {
  max-width: 60%;
  position: relative;
  z-index: 1;
  padding: 25px 50px;
}
@media screen and (max-width: 600px) {
  .hero .hero__content {
    padding: 24px 18px;
    max-width: 100%;
  }
}
.hero .hero__content .hero__pre-title {
  color: var(--color-3);
}
@media screen and (max-width: 600px) {
  .hero .hero__content .hero__pre-title {
    font-size: 14px;
  }
}
.hero .hero__content h1 {
  font-size: 55px;
  line-height: 65px;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 30px;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .hero .hero__content h1 {
    font-size: 30px;
    line-height: 42px;
    margin-top: 10px;
    margin-bottom: 12px;
  }
}
.hero .hero__content h1 > span {
  color: var(--color-3);
  font-style: italic;
}