@media screen and (max-width: 1230px) {
  .hero__content h2 {
    text-align: center;
  }

  .hero__intro h3 {
    font-size: 30px;
  }

  .hero__intro p {
    font-size: 15px;
  }
}
@media screen and (max-width: 992px) {
  .hero {
    padding: 100px 30px 40px;
  }

  .hero__intro {
    /* border: 1px solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero__intro h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .hero__intro p {
    font-size: 13px;
  }

  .hero__socials {
    top: 6%;
  }

  .hero__socials a {
    background: white;
    border: 0;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .hero__socials a i {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    padding: 40px 30px 0px;
    gap: 30px;
  }

  .hero__image {
    border-radius: 10px;
  }

  .hero__content,
  .hero__intro {
    width: 100%;
  }

  .hero__intro {
    text-align: center;
  }

  .hero__content h2 {
    width: 100%;
    font-size: 30px;
  }

  .hero__socials {
    position: relative;
    flex-direction: row;
    right: auto;
    margin-top: 10px;
  }
}
