.about_us_image_container {
  height: auto;
  width: 50%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  min-height: 100px;
}

.about_us_image {
  border-radius: 20px;
  max-width: 300px;
  max-height: 300px;
  box-sizing: border-box;
  object-position: top;
  height: 100%;
  width: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
  transition: transform 0.3s ease-in-out;
}

.about_us_image:hover {
  transform: scale(1.04);
}

.about_us_desc_container {
  max-width: 600px;
  /* border: 2px solid rgb(200,200,200); */
  padding: 10px;
  border-radius: 20px;
}

.about_us_header {
  margin: 0px;
  margin-bottom: 10px;
  font-size: 1.5em;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-weight: 500;
}

.about_us_text {
  text-align: left;
  font-size: 1.1em;
  font-family: "Times New Roman", Times, serif;
  line-height: 25px;
}

@media (height<400px) {
  .about_us {
    gap: 0px;
    justify-content: space-evenly;
  }

  .about_us_desc_container {
    max-width: 100%;
  }

  .about_us_header {
    margin: 0;
  }

  .about_us_text {
    font-size: 3.2vh;
    line-height: normal;
  }
}
