.about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;

  .img-box {
    width: fit-content;
    height: 250px;

    img {
      object-fit: contain;
      width: 100%;
      height: 100%;
      border-radius: 10px;
      border: 2px solid var(--dp);
    }
  }

  .about-txt {
    h3 {
      color: var(--dp);
      font-size: 150%;
    }
  }

  .facts {
    .card {
      display: flex;
      gap: 10px;
      align-items: center;
      padding-bottom: 1rem;

      .img-box {
        flex-shrink: 0;
        width: 50px;
        height: 50px;

        img {
          object-fit: contain;
          width: 100%;
          height: 100%;
          border-radius: 10px;
          border: 0px;
        }
      }

      .txt {
        h4 {
          color: var(--dp);
        }
      }
    }
  }
}

@media (min-width: 768px) {
  .about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    .img-box {
      order: 2;
      width: 40%;
      height: 300px;
    }

    .about-txt {
      width: 30%;
      order: 1;
      h3 {
        color: var(--dp);
        font-size: 150%;
      }
    }

    .facts {
      width: 30%;
      order: 3;
      .card {
        display: flex;
        flex-direction: row-reverse;
        gap: 10px;
        align-items: center;
        padding-bottom: 1rem;

        .img-box {
          flex-shrink: 0;
          width: 50px;
          height: 50px;
        }

        .txt {
          h4 {
            color: var(--dp);
          }
        }
      }
    }
  }
}
