.employee-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}

.employee-listitem {
  padding-left: 20px;
  padding-right: 20px;
  width: 25%;
  display: flex;
  margin-bottom: 40px;
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .employee-listitem {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .employee-listitem {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .employee-listitem {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.employee-img {
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  margin-right: 15px;
  width: 100px;
  height: 130px;
  border-bottom: 4px solid #fce600;
}

.employee-name {
  font-size: 18px;
  line-height: 1;
  color: #1e1e1e;
}
@media screen and (max-width: 480px) {
  .employee-name {
    margin-top: 10px;
  }
}

.employee-text {
  margin-top: 20px;
  font-family: Merriweather;
}
/*# sourceMappingURL=employees.css.map */
