
.aboutPage_about {
  position: relative;
  height: 100dvh;
  backdrop-filter: blur(1px);
  margin-block: 2rem 14rem;
}

.aboutPage_about_backdrop {
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(1px);
}

.aboutPage_about_bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.aboutPage_about_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--clr-white);
  text-align: center;
}

.aboutPage_about_content h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.aboutPage_about_content p {
  width: min(80%, 87rem);
  font-size: 1.6rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .aboutPage_about_content h2 {
    font-size: 2rem;
  }
  .aboutPage_about_content p {
    font-size: 1.4rem;
  }
}


/* Mission Section */

.aboutPage_mission {
  margin-block: 10rem;
  position: relative;
  background-color: #FFD6BF;
  padding-block: 7rem;
  min-height: 37rem;
}

.aboutPage_mission_img {
  width: min(40%, 440px);
  max-height: 470px;
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
}

.aboutPage_mission_content {
  width: min(58%, 720px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aboutPage_mission_content h3 {
  font-size: 2.2rem;
  font-weight: 700;
}


@media screen and (max-width: 768px) {
  .aboutPage_mission {
    margin-block: 6rem;
    padding-block: 3rem 0;
    min-height: unset;
  }

  .aboutPage_mission_content {
    width: 100%;
    text-align: center;
  }

  .aboutPage_mission_content h3 {
    font-size: 1.8rem;
  }

  .aboutPage_mission_content p {
    width: 90%;
    margin-inline: auto;
  }

  .aboutPage_mission_img {
    bottom: unset;
    right: unset;
    width: 100%;
    height: 20rem;
    position: static;
    margin-top: 2.4rem;
  }
}