.section-who {
  background-color: #fff;
  padding: 9.6rem 0;
}

.who-description {
  font-size: 1.8rem;
  line-height: 1.6;
}

.who-img-box {
  border-radius: 9px;
  overflow: hidden;
}

.who-img {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: 9px;

  transition: all 1s;
}

.who-img:hover {
  transform: scale(1.3);
}

.who-img-box-portrait {
  border-radius: 9px;
  overflow: hidden;
  height: 400px;
}

.who-img-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops the image to fill the container */
  object-position: center 30%;
  transition: all 1s;
  display: block;
  margin: 0 auto;
  border-radius: 9px;
}

.who-img-portrait:hover {
  transform: scale(1.3);
}

.who-img-os-box {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}

.who-os-img {
  display: block;
  margin: 0 auto;
  width: 30%;
  transition: all 1s;
}
.who-os-img:hover {
  transform: scale(1.1);
}
