.who {
  padding: 178px 0;
  position: relative;
}

.who__container {
  position: relative;
  z-index: 1;
}

.who__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
}

.who__subtitle {
  font-family: 'Montserrat-Bold';
  font-size: 28px;
  color: #1D1C1C;
  margin-bottom: 80px;
  max-width: 974px;
}

.who__number {
  font-family: 'Bebas-Neue-bold';
  font-size: 200px;
  line-height: 200px;
  color: #CDD2D8;
}

.who__text {
  height: 185px;
  padding: 32px;
  backdrop-filter: blur(5px);
  border-radius: 16px;
  margin-left: 32px;
  font-size: 20px;
  transform: translateY(-80px);
  background-color: rgba(229, 233, 240, 0.31);
}

.who__mission {
  font-size: 20px;
}

.who__mission-text {
  font-family: 'Montserrat-Bold';
  color: #1D1C1C;
  max-width: 660px;
}

@media (max-width: 1300px) {
  .who__text {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .who {
    padding: 100px 0;
  }
  .who__number {
    font-size: 160px;
    line-height: 160px;
  }
  .who__text {
    font-size: 12px;
  }
  .who__content {
    gap: 30px;
  }
}

@media (max-width:1024px) {
  .who__text {
    padding: 20px;
  }
}

@media (max-width:768px) {
  .who__subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .who__mission {
    font-size: 18px;
  }
}

@media (max-width:720px) {
  .who {
    padding: 100px 0 64px 0;
  }
  .who__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }
  .who__text {
    transform: translateY(-40px);
  }
  .who__item {
    margin-bottom: -40px;
  }
  .who__text {
    height: auto;
  }
  .who__number {
    font-size: 120px;
    line-height: 120px;
  }
}