#our-founders {
  padding-bottom: 4rem;
}

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

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

#our-founders .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;
}

#our-founders .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;
}

#our-founders .right > .content > .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  color: var(--elsel-grey-7);
  font-family: var(--font-16);
  font-style: italic;
  font-weight: 400;
  line-height: var(--line-26);
}

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

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

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

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

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

@media (max-width: 576px) {
  #our-founders .right > .group {
    grid-template-columns: var(--col-12);
  }
  #our-founders .right > .content > .description > .line > p {
    white-space: unset;
  }
}
