/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

/* TEXT LEFT */
.hero-content-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
}

.hero-content-text h1 {
  font-size: 64px;
  font-weight: 600;
  color: #000;
  text-align: start;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.hero-content-text p {
  font-size: 32px;
  font-weight: 400;
  color: #000;
  text-align: start;
  margin: 0;
  padding: 0;
}

/* IMAGE */
.hero-image img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
}

/* BUTTONS */
.hero-content-button {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-content-text h1 {
    font-size: 48px;
  }

  .text-description {
    text-align: center;
  }
}
