/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.projects .heading-container {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin: 0 0 5rem;
}
.projects .heading-container .heading {
  max-width: 60rem;
}
.projects .projects-slider-controls {
  display: flex;
  gap: 2.5rem;
}
.projects .projects-slider-controls button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.projects .slick-track {
  margin: 0 !important;
}
.projects .project-item {
  padding: 0 1rem;
}
.projects .project-item .image {
  margin: 0 0 3rem;
  display: block;
}
.projects .project-item .image:hover img {
  filter: brightness(0.8);
}
.projects .project-item .image img {
  width: 100%;
  transition: filter 0.2s ease-in-out;
}
.projects .project-item p {
  font-size: 1.8rem;
}

@media (max-width: 550px) {
  .projects .project-item {
    padding: 0;
  }
  .projects .project-item .image {
    margin: 0 0 2rem;
  }
}
@media (max-width: 768px) {
  .projects .heading-container {
    flex-direction: column;
    gap: 0;
    margin: 0 0 1em;
  }
  .projects .heading-container .heading {
    max-width: 100%;
  }
  .projects .projects-slider-controls {
    margin: 3rem 0 0;
  }
  .projects .projects-slider-controls button {
    width: 3.7rem;
    height: 3.7rem;
  }
  .projects .projects-slider-controls button svg {
    width: 100%;
    height: 100%;
  }
}