.hero {
  display: flex;
  gap: 3rem;
  margin: 3rem 0rem 5rem 0rem;
}

.hero-sub-text-wrapper {
  background-color: var(--background-blue);
  width: fit-content;
  border: 1px solid var(--dark-blue);
  border-radius: 2rem;
  padding: 0.1rem 2rem;
}

.hero-content-container {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-image-container {
  width: 35%;
	background: var(--background-orange);
    border-radius: 100%;
}

.hero-image {
  width: 100%;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-support-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-image {
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 639px) {
  .hero {
    flex-direction: column;
  }

  .hero-content-container {
    width: 100%;
  }

  .hero-image-container {
    width: 100%;
  }
}
