.clients_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clients_h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 168%;
  letter-spacing: 0.01em;
}

.clients_p {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-block: 8px 32px;
}

@media screen and (min-width: 1100px) {
  .clients_p {
    margin-block: 10px 40px;
    max-width: 537px;
  }
}

.clients_ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .clients_ul {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 1100px) {
  .clients_ul {
    flex-wrap: nowrap;
    gap: 65px;
  }
}

.clients_li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 28px 26px 24px 26px;
  border: 1px solid #dedede;
  border-radius: 5px;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .clients_li {
    width: calc((100% - 32px) / 2);
  }
}

@media screen and (min-width: 1100px) {
  .clients_li {
    width: calc((100% - 64px) / 2);
  }
}

.clients_li_p {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  letter-spacing: 0.01em;
}

.clients_avatar_block {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 14px;
}

.clients_avatar_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0;
}

.clients_avatar_name {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #02897a;
}

.clients_avatar_role {
  font-weight: 500;
  font-size: 14px;
  line-height: 171%;
  letter-spacing: 0.01em;
}
