.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 3rem;

  h2 {
    width: 75%;
    color: #3b4c6b;
    font-weight: 900;
  }

  .main_content {
    display: flex;
    flex-direction: column;
    width: 75%;

    .main_one {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 1rem;

      .main_one_img {
        width: 40%;

        img {
          width: 100%;
          height: 30rem;
        }
      }

      .main_one_text {
        margin: 0;
        width: 50%;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: justify;
      }
    }

    .main_two {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 3rem;

      .main_two_img {
        width: 40%;

        img {
          width: 100%;
          height: 30rem;
        }
      }

      .main_two_text {
        margin: 0;
        width: 50%;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: justify;
      }
    }
  }
}

@media (max-width: 1537px) {
  .about {
    h2 {
      width: 90%;
      font-size: 1.3rem;
    }

    .main_content {
      width: 90%;

      .main_one {
        .main_one_text {
          font-size: 1rem;
        }
      }

      .main_two {
        .main_two_text {
          font-size: 1rem;
        }
      }
    }
  }
}

@media (max-width: 480px) {
  .about {
    h2 {
      width: 90%;
      text-align: center;
    }

    .main_content {
      width: 90%;

      .main_one {
        flex-direction: column;

        .main_one_img,
        .main_one_text {
          width: 100%;
        }

        .main_one_text {
          margin-top: 1rem;
        }
      }

      .main_two {
        flex-direction: column-reverse;

        .main_two_img,
        .main_two_text {
          width: 100%;
        }

        .main_two_text {
          margin-top: 1rem;
        }
      }
    }
  }
}
