body { background: #f7f7f7; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 500; }

header {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
  width: 100%;
  margin-bottom: 20px;
  background: rgb(255, 255, 255);
  padding: 20px;
}

/* Projects */
.projects-wrapper {    
  margin: 30px auto;
}

.projects-list {
  margin: auto;
  left: 7px;
}

.project-item {
  width: 20%;
  margin-bottom: 15px;
  position: relative;

  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0, .1);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0, .1);
  box-shadow: 0px 0px 10px rgba(0,0,0, .1);
  padding: 10px 10px 2px 10px;
  background: #FFF;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: center;
}
.project-item:hover { background: #514876; }
.project-item:hover a { color: #FFF; }

.project-item a { color: #333; text-decoration: none; display: block; line-height: 30px; }

.project-item img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.filters-list {
  padding: 5px;
  display: inline-block;
  text-align: center;
  margin-bottom: 25px;
}

.filters-list li {  
  display: inline-block;
  background-color: rgba(255, 255, 255, 1);
  padding: 5px 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 20px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 400;

  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.filters-list li:hover {
  background-color: #4b70a9;
  border-color: #4b70a9;
  color: #FFF;
  font-weight: 500;
}

.filters-list li.active {
  background-color: #514876;
  border-color: #514876;
  color: #FFF;
  font-weight: 500;
}