.hero-section {
    height: 800px;
    background-size: contain;
    background-position: center;
}
.hero-text {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 800px;
  margin: 0px;
   padding: 40px 80px;

  color: white;
}
.hero-text h1 {
  color: white;
  font-size: 84px;
  width: 700px;
}
.modified {
  color: #E1066D;
}
.hero-text p {
  color: white;
  max-width: 700px;
}
.hero-button {
  display: inline-flex;
  height: 38px;
  padding: 0 40px;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 999px;
  background: #E1066D;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  }
  .hero-button:hover {
    background: black;
    color: #E1066D;
    font-weight: 600;
    cursor: pointer;
  }
.hero-icon {
  margin-left: 20px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 100%;
    padding: 0px 10px;
    background-size: cover;
    background-attachment: fixed;
    background-position: left;
  }
  .hero-text h1 {
    font-size: 48px;
    line-height: 38px;
    max-width: 200px;
  }
  .hero-text p {
    max-width: 100%
  }
  .hero-button {
    margin-left: 0px;
    font-size: 14px;
  }
}