.about {
  height: 550px;
  padding: 1rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  @media only screen and (max-width: 900px) {
    height: 800px;
    padding: 4rem;
    margin-top: 80px;
  }

  @media only screen and (max-width: 900px) {
    height: 850px;
  }
}

.about-text {
  text-align: center;
  width: 1300px;

  > h2 {
    margin-bottom: 20px;
    color: #e76012;
  }

  > p {
    color: #6f6e6e;
  }

  @media (max-width: 1545px) {
    width: 800px;
  }

  @media only screen and (min-width: 600px) and (max-width: 900px) {
    width: 600px;
  }

  @media only screen and (max-width: 600px) {
    width: 350px;
  }

  @media only screen and (max-width: 400px) {
    width: 300px;
  }
}

.about-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
  width: 1300px;

  @media (max-width: 1299px) {
    width: 800px;
  }

  @media only screen and (min-width: 600px) and (max-width: 900px) {
    width: 600px;
    flex-direction: column;
    gap: 0.2rem;
  }

  @media only screen and (max-width: 600px) {
    flex-direction: column;
    gap: 0.2px;
  }

  > .char {
    width: 400px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;

    > h3 {
      font-weight: 700;
      font-size: 1rem;
      color: #e76012;
    }

    > p {
      color: #6f6e6e;
    }

    > img {
      width: 50px;
      opacity: 0.7;
    }

    @media only screen and (min-width: 600px) {
      width: 250px;

      > h3 {
        font-size: 0.9rem;
      }

      > img {
        width: 30px;
      }
    }

    @media only screen and (max-width: 600px) {
      width: 350px;
      > h3 {
        font-size: 0.9rem;
      }
    }

    @media only screen and (max-width: 400px) {
      width: 300px;
    }
  }
}
