.ecofy-projects {
  background-color: var(--yellow-lightest);
  width: 100%;
}
.ecofy-projects .projects {
  width: 100%;
  padding: 10%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  gap: 16px;
  overflow: hidden;
}
.ecofy-projects .projects h1,
.ecofy-projects .projects h2 {
    width: 100%;
}
.ecofy-projects .projects .project {
  width: 100%;
  background-color: var(--yellow-lightest);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 40px
}
.ecofy-projects .projects .project:hover {
  transform: scale(1.01);
  transition: 1s;
}
.ecofy-projects .projects .project h3,
.ecofy-projects .projects .project h4 {
  color: var(--grey-dark);
}
.ecofy-projects .projects .project img {
  width: 40%;
  border-radius: 8px;
}
.ecofy-projects .projects .project .project-title {
  padding: 24px;
}
.ecofy-projects .projects .project iframe {
  width: 100%;
  min-height: auto;
}

@media (max-width: 900px) {
  .ecofy-projects .projects .project {
    min-height: 100%;
  }
}