.projecten-wrapper .projects-hidden {
  position: relative;
  height: 200px;
  overflow: hidden;
  width: 100%;
}
.projecten-wrapper .projects-hidden::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, whitesmoke 31%, rgba(245, 245, 245, 0));
}

@keyframes fadeDown {
  from {
    top: -20px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.project-selector ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
}
.project-selector ul li {
  padding: 0 0.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
}
.project-selector ul li.active {
  position: relative;
  background-color: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.project-item {
  display: block;
  height: 300px;
  width: 100%;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-bottom: 1.5rem;
  background-size: cover;
  background-position: center;
  transition: none !important;
  border-radius: 1rem;
}
.project-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(39, 39, 39, 0.75), rgba(39, 39, 39, 0) 75%);
  border-radius: 1rem;
}
.project-item .project-item__container {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.project-item .project-item__container span.project-label {
  color: #FFFFFF;
  font-weight: 400;
}
.project-item .project-item__container h5 {
  font-size: 1.15rem;
  width: 100%;
  color: #FFFFFF;
  margin-bottom: 0;
}
.project-item:hover {
  -webkit-filter: none;
  filter: none;
}
.project-item:hover::after {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
