.recent-projects__wrapper {
  background: #000;
}

.recent-projects__wrapper form.multi-filter {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}

.recent-projects__wrapper .multi-filter {
  display: flex;
  gap: 2rem;
}

.recent-projects__wrapper .multi-filter fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-projects__wrapper form.multi-filter {
    flex-direction: row;
  }

  .recent-projects__wrapper .multi-filter fieldset {
    width: 30%;
    max-width: 28rem !important;
  }
}

.recent-projects__wrapper .multi-filter input {
  color: var(--white);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.428571428571429;
  letter-spacing: 0;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg width='29' height='30' viewBox='0 0 29 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4129_1311)'%3E%3Cmask id='mask0_4129_1311' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='29' height='30'%3E%3Cpath d='M29 0.5H0V29.5H29V0.5Z' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4129_1311)'%3E%3Cpath d='M28 28.5L20 20.5' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 23.5C18.0751 23.5 23 18.5751 23 12.5C23 6.42487 18.0751 1.5 12 1.5C5.92487 1.5 1 6.42487 1 12.5C1 18.5751 5.92487 23.5 12 23.5Z' stroke='%23FF0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4129_1311'%3E%3Crect width='29' height='29' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: calc(100% - 1rem) 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  background-color: #333;
  border: 1px solid #333;
}

.recent-projects__wrapper .multi-filter ::placeholder {
  color: var(--white);
}

.recent-projects__wrapper .multi-filter  select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 8L0.937822 0.5L13.0622 0.500001L7 8Z' fill='%23FF0000'/%3E%3C/svg%3E%0A");
  background-position: calc(100% - 1.7rem) 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
  opacity: 1;
  margin-bottom: 0;
  background-color: #333;
  border: 1px solid #333;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.428571428571429;
  letter-spacing: 0;
  text-transform: uppercase;
}

.recent-projects__wrapper .project-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: calc(100vw - 4rem);
  margin: 0 -1rem;
}

.recent-projects__wrapper .project-cards .project-card {
  flex-basis: calc(25% - 2rem);
  flex-grow: 0;
  background: #000;
  flex-shrink: 0;
  margin: 0 1rem 5rem;
  padding: 0;
  position: relative;
  color: #fff;
}

@media (max-width: 991px) {
  .recent-projects__wrapper .project-cards .project-card {
    flex-basis: calc(33.33333% - 2rem);
  }
}

@media (max-width: 767px) {
  .recent-projects__wrapper .project-cards .project-card {
    flex-basis: calc(50% - 2rem);
  }
}

@media (max-width: 420px) {
  .recent-projects__wrapper .project-cards .project-card {
    flex-basis: calc(100% - 2rem);
  }
}

.project-card a.link-wrap {
  height: 100%;
  width: 100%;
  color: #fff;
  text-decoration: none;
}

.project-card  a.link-wrap .image {
  width: 100%;
  aspect-ratio: 279/191;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.project-card  a.link-wrap .image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.project-card .content .meta {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.428571428571429;
  letter-spacing: 0px;
  margin-bottom: .5rem;
}

.project-card .content .h3 {
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
}



.load_more {
  position: relative;
  z-index: 1;
  text-align: center;
}

#noItemsFoundMessage .h3 {
  color: var(--white);
}

.project-card .teaser svg {
  display: inline-block;
  margin-left: 4px;
  top: 3px;
  position: relative;
}

.project-card .teaser svg path {
  transition: all .2s ease;
}

.project-card .link-wrap:hover .teaser svg {
  animation: bounce 2s infinite;
}
{#
.project-card .link-wrap:not(:hover) .teaser svg path {
  fill: var(--white);
}
#}
