.filters {
  margin-bottom: 40px;
  background: #f8f6ef;
}

.filters .title {
  color: #292929;
  font-family: NeuzeitGro;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 215%;
  padding-top: 4px;
  margin-bottom: 16px;
  width: fit-content;
}

.filters .title.action {
  cursor: pointer;
  display: block;
  padding-right: 24px;
  background: url("/wp-content/themes/markobrajovic/assets/images/arrow_filter_down.svg") center right no-repeat;
}

.filters .title.action:hover {
  text-decoration: underline;
}

.filters .title.action.active {
  background: url("/wp-content/themes/markobrajovic/assets/images/arrow_filter_up.svg") center right no-repeat;
}

@media (max-width: 1024px) {
  .filters .title.action {
    background: url("/wp-content/themes/markobrajovic/assets/images/arrow_filter_up.svg") center right no-repeat;
  }
  .filters .title.action.active {
    background: url("/wp-content/themes/markobrajovic/assets/images/arrow_filter_down.svg") center right no-repeat;
  }
}
.filters .filterHolder {
  background: #f8f6ef;
}

.filters .filterHolder.hidden {
  display: none;
}

.filters .filterHolder .selector {
  display: inline-flex;
  padding: 6px 32px 2px 32px;
  align-items: center;
  gap: 8px;
  border-radius: 45px;
  border: 1px solid #767268;
  color: #7c786f;
  cursor: pointer;
  text-decoration: none;
  margin-right: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
  font-family: NeuzeitGro;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  transition: 0.4s;
}

.filters .filterHolder .selector span {
  color: #7c786f;
  text-align: center;
  font-family: NeuzeitGro;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.filters .filterHolder .selector:hover, .filters .filterHolder .selector.active {
  background: #7c786f;
  color: #f8f6ef;
  font-family: NeuzeitGro;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
}

.filters .filterHolder .selector:hover span, .filters .filterHolder .selector.active span {
  color: #f8f6ef;
}

@media (max-width: 1024px) {
  .filters .filterHolder .selector {
    font-size: 24px;
  }
  .filters .filterHolder .selector:hover, .filters .filterHolder .selector.active {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .filters .filterHolder {
    display: flex;
    overflow: scroll;
    width: 100%;
  }
  .filters .filterHolder.hidden {
    display: flex;
  }
}
.projects {
  height: fit-content;
  width: 100%;
  margin-bottom: 64px;
  background: #f8f6ef;
}

.projects span {
  font-size: 40px;
  color: #292929;
  display: block;
  padding-bottom: 40px;
}

@media (max-width: 1024px) {
  .projects span {
    font-size: 24px;
    padding-bottom: 24px;
  }
}
.projects .project-item {
  width: 32%;
  margin-bottom: 24px;
  position: relative;
  display: block;
}

@media (max-width: 1024px) {
  .projects .project-item {
    width: 49%;
    margin-bottom: 8px;
  }
}
.projects .project-item img {
  width: 100%;
  position: relative;
  z-index: 0;
}

.projects .project-item .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  opacity: 0;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.5);
  background: rgba(41, 41, 41, 0.8);
  padding: 24px;
  color: #fff;
  font-family: Klavika;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
}

.projects .project-item:hover .overlay {
  opacity: 1;
}