body {
  margin: 0;
}
img {
  width: 100%;
}
.header {
  position: relative;
  padding: 30px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -9;
}
.title {
  padding: 0 16px;
}
.title img {
  max-width: 510px;
}
.requirement {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #444;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin: auto;
}
.requirement__title p {
  font-size: 16px;
  font-weight: bold;
  line-height: 200%;
  margin: 0;
}
.requirement__list {
  padding: 0;
  margin: 0 0 0 20px;
  list-style-type: disc;
  font-size: 14px;
  line-height: 150%;
}
.requirement__annotation {
  font-size: 10px;
  line-height: 180%;
}
@media screen and (min-width: 694px) {
  .requirement {
    max-width: 635px;
    width: 100%;
  }
}