/* about */

.about_body {
  padding: 1.88rem 2rem 1.5rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about_container {
  margin-top: 2.75rem;
  /* margin-top: 5.75vh; */
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.44rem;
  /* margin-bottom: 3vh; */
}

.about_l {
  display: flex;
  width: 29.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-right: 2rem;
}

.about_l p {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.3125rem */
}

.about_l span {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.125rem */
  letter-spacing: 0.075rem;
  text-transform: uppercase;
}

.about_r img {
  width: auto;
  height: 69.64vh;
  flex-shrink: 0;
  aspect-ratio: 241/301;
}

@media (max-width: 660px) {
  .about_body {
    padding: 1.875rem 1rem 1rem 1rem;
    height: auto;
  }
  .about_container {
    margin-top: 5.06rem;
    flex-direction: column;
    gap: 3rem;
  }

  .about_l {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-right: 2rem;
  }

  .about_r img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    aspect-ratio: 241/301;
  }
}