#our-people-container {
  max-width: 1500px;
}

#our-people img:not(.cardCompanyLogo) {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  padding-right: 1rem;
}
.business-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: row;
}

.business-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: calc(50% - 1rem);
}

.seporator {
  height: 100%;
  width: 0.23rem;
  background-color: var(--bg-dark);
  box-shadow: var(--shadow-indent);
  border-radius: 0.25rem;
}

.right {
  flex: 1;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cardInfo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* box-shadow: var(--shadow-indent); */
  background-color: var(--bg-dark);
  border-radius: 1rem;
  padding: 1rem;
  height: 100%;
  position: relative;
}

.cardDetails {
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

a {
  color: var(--text-muted);
}

.card-email,
.card-phone {
  transition: all 0.1s ease-in-out;
  text-decoration: none;
}

.card-email:hover,
.card-phone:hover {
  color: var(--primary);
  font-weight: bold;
}

.cardCompanyLogo {
  float: right;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

#thomas {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
