.hero_banner {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 80px 0;
}
.hero_banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.hero_banner .hero_content {
  max-width: 785px;
  margin: 0 auto;
  text-align: center;
}
.hero_banner .hero_content p {
  color: var(--white);
  margin-bottom: 24px;
  font-family: "Flama Trial Medium";
}
.hero_banner .hero_btn {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}
.hero_iconlist {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.hero_iconlist a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12.75px;
  text-decoration: none;
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  font-style: normal;
  color: var(--white);
  padding-bottom: 5px;
  font-family: "Flama Trial Medium";
}
@media (max-width: 767px) {
  .hero_banner {
    padding: 40px 0;
  }
  .hero_banner .hero_btn {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero_iconlist a {
    align-items: start;
  }
  .hero_iconlist a img {
    margin-top: 4px;
  }
}
