.hero_section {
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    url(public/images/hero-section.png), lightgray 50% / cover no-repeat;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom 30%;

  padding-block: 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero_steps {
  display: flex;
  gap: 24px;
}
.step {
  border-radius: 0px 24px 24px 24px;
  border: 1px solid #fff;
  background: #008000;
  display: flex;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ////////////////// SECTION 2 */

.section_2 {
  display: flex;

  align-items: center;
  justify-content: center;

  padding-block: 160px 811px;
}
.thank_you {
  color: #122458;
  text-align: center;
  font-family: Roboto;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
  .hero_section {
    padding-block: 24px 34px;
  }
  .hero_steps {
    max-width: 90vw !important;
    gap: calc(12px + ((100vw - 430px) * 12 / 570));
  }
  .step {
    font-size: 18px;
    padding: 8px 12px;
  }

  .section_2 {
    padding-block: 86px 392px;
    align-self: stretch;
  }
  .thank_you {
    font-size: 25px;
    line-height: 150%;
  }
}

@media only screen and (max-width: 400px) {
  .step {
    font-size: 16px;
    padding: 6px 12px;
  }
}
