.breadcrumbs-section {
  background: url('../assets/img/breadcrumbs/projects.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.projects .sec-title h2 {
  position: relative;
  color: #FEDC77;
}
.projects .sec-title h2::before {
  position: absolute;
  bottom: 0px;
  content: 'أعمالنا';
  font-weight: 600;
  z-index: -1;
  color: #f2f2f2;
  font-size: 5rem;
  right: 50%;
  transform: translateX(50%);
}
.projects .sec-title h2 {
  font-weight: 600;
  padding: 20px 0;
}
.projects-filter-container .filters-button-group {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.projects-filter-container .filters-button-group button {
  border-radius: 15px;
  padding: 0.7rem 2rem;
}
.projects-filter-container .filters-button-group button.is-checked,
.projects-filter-container .filters-button-group button:hover {
  background: #293A8F;
  color: #fff;
}
.projects-filter-container .project-grid {
  margin: 50px 0;
  min-height: 75vh;
}

.projects-filter-container .project-grid .project-item {
  border-radius: 8px;
  overflow: hidden;
}
.projects-filter-container .project-grid .project-item .project-image {
  width: 100%;
  overflow: hidden;
}
.projects-filter-container .project-grid .project-item img {
  width: 100%;
  height: 100%;
}
.projects-filter-container .project-grid .project-item .project-container {
  position: relative;
}
.projects-filter-container .project-grid .project-item .overlay {
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64));
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.projects-filter-container .project-grid .project-item .overlay:hover {
  opacity: 1;
}
.projects-filter-container .project-grid .project-item .overlay a {
  padding: 15px 20px;
}
