#section_4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 208px;
  margin-bottom: 360px;
  gap: 58px;
}

#section_4_image {
  max-width: 50%;
  max-height: 50%;
  overflow: hidden;
}

#section_4_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#section_4_hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  max-width: 800px;
}

#section_4_hero-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 49px;
  font-style: italic;
  text-align: right;
}

#section_4_hero-title span {
  color: #f7b450;
}

#section_4_hero-text {
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 18px;

  color: #f7b450;
  margin-top: 30px;
}

@media (max-width: 800px) {
  #section_4 {
    flex-direction: column-reverse;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  #section_4_image {
    max-width: 100%;
    max-height: 50%;
  }
  #section_4_hero {
    padding: 32px;
  }
  #section_4_hero-title {
    text-align: left;
  }
}
