header {
  padding: 1rem 0 2rem 0;
}

.hero {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero .text-wrap {
  flex-basis: 70%;
}

.hero figure {
  flex-basis: 30%;
}

.hero img {
  width: 100%;
  height: auto;
  border-radius: 100%;
  border: 2px solid #2e282a;
}

@media (max-width: 800px) {
  .hero {
    margin-top: 5rem;
    flex-direction: column;
  }

  .hero figure {
    width: 60%;
  }

  .hero .text-wrap {
    text-align: center;
  }
}