#about-us {
  padding-bottom: 4rem;
}

#about-us > .eg-container > .eg-wrapper > .right {
  padding: 2rem;
  border-radius: 10px;
  background: var(--elsel-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#about-us .right > .group {
  display: grid;
  grid-template-columns: var(--col-3);
  gap: 1rem;
}

#about-us .right > .group > .box {
  background: var(--elsel-white);
  border-radius: 15px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#about-us .right > .group > .box > .description {
  color: var(--elsel-black);
  font-size: var(--font-16);
  line-height: var(--line-26);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.25rem;
}

#about-us .right > .content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#about-us .right > .content > b {
  color: var(--elsel-black);
  font-size: var(--font-20);
  font-weight: 700;
}

#about-us .right > .content > figure > img {
  border-radius: 10px;
  aspect-ratio: 1085/412;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

#about-us .right > .content > .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  color: var(--elsel-grey-7);
  font-size: var(--font-16);
  font-weight: 400;
  line-height: var(--line-26);
}

#about-us[data-page="our-founders"] .right > .content > .description {
  font-style: italic;
  text-align: center;
}

#about-us .right > .content > .description > ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.5rem;
}

#about-us .right > .content > .description a {
  color: var(--elsel-blue);
}

#about-us .right > .content > .description > .line {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#about-us .right > .content > .description > .line > p {
  white-space: nowrap;
}

#about-us .right > .content > .description > .line::after,
#about-us .right > .content > .description > .line::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--elsel-grey-7);
}

#about-us[data-page="career"] > .eg-container > .eg-wrapper > .right > .box {
  display: flex;
  gap: 1rem;
}

#about-us[data-page="career"] .right > .box:nth-child(even) {
  flex-direction: row-reverse;
}

#about-us[data-page="career"] .right > .box:nth-child(odd) {
  flex-direction: row;
}

#about-us[data-page="career"] .box > .left {
  width: 33.3%;
}

#about-us[data-page="career"] .box > .right {
  width: 66.6%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1rem;
}

#about-us[data-page="career"] .box > .left > img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
}

#about-us[data-page="career"] .box > .right > b {
  color: var(--elsel-black);
  font-size: var(--font-24);
  font-weight: 700;
}

#about-us[data-page="career"] .box > .right > p {
  color: var(--elsel-black);
  font-size: var(--font-16);
  font-weight: 400;
  line-height: var(--line-26);
}

@media (max-width: 1600px) {
  #about-us .right > .group {
    grid-template-columns: var(--col-6);
  }
}

@media (max-width: 1400px) {
  #about-us {
    padding: var(--content-spacing);
  }
}

@media (max-width: 1200px) {
  #about-us[data-page="career"] .box > .left {
    width: 40%;
  }
  #about-us[data-page="career"] .box > .right {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #about-us[data-page="career"] .box > .left,
  #about-us[data-page="career"] .box > .right {
    width: 100%;
  }
  #about-us[data-page="career"] .right > .box:nth-child(odd),
  #about-us[data-page="career"] .right > .box:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  #about-us > .eg-container > .eg-wrapper > .right {
    padding: 1rem;
  }
  #about-us .right > .group {
    grid-template-columns: var(--col-12);
  }
  #about-us .right > .content {
    gap: 1.5rem;
  }
  #about-us .right > .content > .description > .line > p {
    white-space: unset;
  }
  #about-us[data-page="career"] .box > .left > img {
    border-radius: 20px;
  }
}
