/*About Page*/

.about-page {
  height: 120rem;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.about-page-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding: 20rem 1rem 10rem 1rem;
}

.about-page-div h1 {
  color: black;
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 2rem;
}

.about-page-div p {
  font-size: 2rem;
  text-align: justify;
  line-height: 1.5;
}

.about-page-div img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  display: block;
  border: 2px solid rgb(97, 97, 234);
}

@media (max-width: 48rem) {
  .about-page {
    height: 100rem;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .about-page-div {
    width: 100%;
    height: 100%;
    padding: 15rem 1.5rem 2rem 1.5rem;
  }
  .about-page-div p {
    font-size: 1.4rem;
    text-align: justify;
    line-height: 1.5;
  }
  .about-page-div img {
    width: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid rgb(97, 97, 234);
  }
}

@media (min-width: 48.063rem) and (max-width: 64rem) {
  .about-page {
    height: 130rem;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  .about-page-div {
    width: 100%;
    height: 100%;
    padding: 10rem 1.5rem 10rem 1.5rem;
  }
  .about-page-div p {
    font-size: 1.8rem;
    text-align: justify;
    line-height: 1.5;
  }
  .about-page-div img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    display: block;
    border: 2px solid rgb(97, 97, 234);
  }
}

@media (max-width: 77rem) {
  .about-page-div img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border: 2px solid rgb(97, 97, 234);
  }
}
