.students-title {
  margin-bottom: 37px;
  text-transform: none;
  font-family: "Open Sans Condensed", serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--black);
  text-align: center; }

.students-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; }
  .students-wrapper .item {
    display: flex;
    gap: 10px;
    flex-direction: column;
    max-width: 180px; }
    .students-wrapper .item img {
      width: 150px;
      height: 150px;
      border: 5px solid var(--white);
      border-radius: 50%;
      object-fit: cover;
      cursor: pointer;
      box-sizing: border-box;
      margin: 10px; }
      .students-wrapper .item img.red {
        box-shadow: 0 0 0 10px #DD0000; }
      .students-wrapper .item img.brown {
        box-shadow: 0 0 0 10px #663322; }
      .students-wrapper .item img.purple {
        box-shadow: 0 0 0 10px #7744BB; }
      .students-wrapper .item img.green {
        box-shadow: 0 0 0 10px #338811; }
      .students-wrapper .item img.blue {
        box-shadow: 0 0 0 10px #113377; }
    .students-wrapper .item p {
      font-family: 'Open Sans Condensed', serif;
      font-style: normal;
      font-weight: 400;
      font-size: 18px;
      line-height: 25px;
      text-align: center;
      text-transform: none;
      color: #000000;
      margin: 0; }
      .students-wrapper .item p > span {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        color: var(--brand-light);
        font-weight: 600;
        line-height: 150%; }
