#nav-spacer {
  display: none !important;
}

#about-first-div {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

#text-div {
  width: 77%;
  padding-top: var(--nav-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#about-text {
  width: 100%;
  padding: calc(var(--bfs) * 2) 5%;
}

#about-text p {
  margin-bottom: var(--bfs);
  text-align: justify;
}

#about-text p span {
  font-weight: 600;
}

#about-text .p-orange {
  color: var(--orange);
  font-weight: 600;
}

#image-div {
  width: 20%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#image-div > div:first-child {
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/sh_color_column.png");
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  background-color: var(--orange);
}

/* #image-div > div:last-child {
  width: 55%;
  height: 100%;
  background: linear-gradient(
    30deg,
    rgba(33, 37, 41, 0.35),
    rgba(33, 37, 41, 0.05)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

#image-div > div:last-child > img {
  width: 100%;
  filter: grayscale(100%);
  object-fit: contain;
} */

#about-second-div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  width: 100%;
  padding: calc(var(--bfs) * 2) 0;
}

.trainee-card {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: var(--bfs);
  border-radius: 10px;
}

.trainee-card > img {
  --k: 12;
  height: calc(var(--bfs) * var(--k));
  width: calc(var(--bfs) * var(--k));
  border-radius: 50%;
}

.trainee-card > h3 {
  margin: var(--bfs) 0;
  font-weight: 600;
}

.trainee-card > .description {
  width: 100%;
  text-align: justify;
}

.trainee-card > .description > p {
  margin-bottom: var(--bfs);
}

@media (max-width: 1200px) {
  #image-div > div:last-child {
    display: none;
  }

  #image-div > div:first-child {
    width: 100%;
  }

  .trainee-card {
    width: 40%;
    margin-bottom: var(--bfs);
  }
}

@media (max-width: 1000px) {
  #about-first-div {
    min-height: auto;
  }

  #about-second-div {
    flex-direction: column;
    align-items: center;
  }

  .trainee-card {
    width: 50%;
    margin-bottom: var(--bfs);
  }
}

@media (max-width: 800px) {
  #image-div > div:first-child {
    display: none;
  }

  #image-div {
    width: 0%;
  }

  #text-div {
    width: 100%;
  }

  .trainee-card {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .trainee-card {
    width: 90%;
  }
}
