#who-i-work-with{
  padding: 100px 0;
  background-color: #f1f1f1;
}

.who-work-section-title{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  color: #444;
}

.who-work-section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #444;
  bottom: 0;
  left: calc(50% - 40px);
}

.who-work-section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #f1f1f1;
  left: calc(50% - 12px);
  bottom: -7px;
}

.who-work-subtitle{
  text-align: center;
  color: #666;
  font-size: 16px;
  max-width: 650px;
  margin: 40px auto 60px;
}

.who-work-grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.who-work-card{
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  min-width: 190px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(17, 17, 17, .08);
  transition: .3s linear;
}

.who-work-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, .14);
}

.who-work-card i{
  display: block;
  font-size: 26px;
  color: #48dbfb;
  margin-bottom: 12px;
}

.who-work-card span{
  font-size: 15px;
  font-weight: 600;
  color: #444;
}

.who-work-highlight{
  background-color: var(--warm);
}

.who-work-highlight i,
.who-work-highlight span{
  color: #fff;
}

@media screen and (max-width: 900px){
  #who-i-work-with{
    padding: 60px 0;
  }

  .who-work-section-title{
    font-size: 26px;
  }

  .who-work-subtitle{
    font-size: 15px;
    margin: 24px auto 40px;
  }

  .who-work-grid{
    gap: 14px;
  }

  .who-work-card{
    min-width: 130px;
    flex: 1 1 calc(50% - 14px);
    padding: 22px 14px;
  }
}

@media screen and (max-width: 480px){
  .who-work-card{
    flex: 1 1 100%;
  }
}