.projects-archive {
  padding: 200px 0px 100px;
}

.projects-container {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 4rem;
  padding-top: 100px;
  justify-content: center;
}

.project-item {
  width: 31%;
  flex: 30%;
  max-width: 470px;
}
.project-item:hover {
  text-decoration: unset;
}
.project-item:hover img {
  transform: scale(1.05);
  transition: 0.3s all;
}
.project-item:hover svg {
  left: 15px;
  transition: 0.3s all;
}

.project-thumbnail {
  overflow: hidden;
  height: 700px;
}
.project-thumbnail img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  will-change: transform; /* Optimizes for animations */
  transition: 0.3s all;
}

.project-title {
  margin-top: 1rem;
  font-weight: 400;
  color: black;
  font-size: 28px;
  text-align: center;
  font-family: "Satoshi", sans-serif;
}

.project-content-wrapper {
  display: flex;
  justify-content: center;
}
.project-content-wrapper svg {
  max-width: 40px;
  position: relative;
  bottom: -1px;
  transition: 0.3s all;
  left: 10px;
}

.title_projects {
  text-align: center;
  font-family: "Boska", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 55px;
  text-transform: uppercase;
}

.info_projects {
  margin-bottom: 0;
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: 26px;
  text-align: center;
  line-height: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1600px) and (min-width: 1200px) {
  .projects-grid {
    justify-content: unset !important;
    gap: 80px 5%;
  }
  .project-item {
    max-width: 30%;
  }
  .project-thumbnail img, .project-thumbnail {
    height: 500px;
  }
}
@media (max-width: 1199px) and (min-width: 800px) {
  .projects-grid {
    justify-content: unset !important;
    gap: 80px 5%;
  }
  .project-item {
    max-width: 48%;
    width: 48%;
    flex: 47%;
  }
  .project-thumbnail img, .project-thumbnail {
    height: 500px;
  }
}
@media (max-width: 799px) and (min-width: 550px) {
  .projects-grid {
    justify-content: unset !important;
    gap: 50px 5%;
  }
  .project-item {
    max-width: 100%;
    width: 100%;
    flex: 100%;
  }
  .project-thumbnail img, .project-thumbnail {
    height: 500px;
  }
}
@media (max-width: 549px) {
  .projects-grid {
    justify-content: unset !important;
    gap: 50px 5%;
  }
  .project-item {
    max-width: 100%;
    width: 100%;
    flex: 100%;
  }
  .project-thumbnail img, .project-thumbnail {
    height: 500px;
  }
  .title_projects {
    line-height: 50px;
    font-size: 42px;
    margin-bottom: 40px;
  }
  .info_projects {
    line-height: 36px;
    font-size: 20px;
  }
  .projects-grid {
    padding-top: 70px;
  }
  .projects-archive {
    padding-top: 140px;
  }
}/*# sourceMappingURL=archive-projecten.css.map */