.top-text {
  background-color: var(--darkColor);
  color: #fff;
}
.top-text__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .top-text__inner {
    padding: 50px 25px;
  }
}
.top-text__inner p {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 37px;
  line-height: 2.3125rem;
  font-weight: 600;
  padding-left: 50px;
  border-left: 8px solid var(--highlightColor);
}
@media (max-width: 768px) {
  .top-text__inner p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    padding-left: 25px;
    border-left: 4px solid var(--highlightColor);
  }
}

.team-group {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 1280px) {
  .team-group {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .team-group {
    margin-bottom: 50px;
  }
}
.team-group:last-of-type {
  margin-bottom: 0;
}
.team-group .group-title {
  margin-bottom: 50px;
}
@media (max-width: 1280px) {
  .team-group .group-title {
    margin-bottom: 30px;
  }
}
.team-group .attorneys-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 50px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .team-group .attorneys-grid {
    flex-direction: column;
    gap: 30px;
  }
}
.team-group .attorneys-grid li {
  flex: 0 0 calc(33.3333% - 33.3333333333px);
}
@media (max-width: 1280px) {
  .team-group .attorneys-grid li {
    flex: 0 0 calc(50% - 25px);
  }
}
.team-group .attorneys-grid li img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.team-group .attorneys-grid li .name {
  color: var(--text);
  font-weight: 300;
  margin-bottom: 5px;
}
.team-group .attorneys-grid li .bio {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 24px;
  line-height: 1.5rem;
  display: inline-block;
  color: var(--highlightColor);
  border-bottom: 3px solid var(--highlightColor);
  padding-bottom: 5px;
}
