.home-modules {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-self: stretch;
}
.home-modules .hello-ecofy {
  width: 100%;
  font-size: 14px;
  margin: 0 0 24px;
}
.home-modules .home-module {
  background-color: var(--color-white);
  width: 23.5%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 4%;
  text-align: center;
  transition: 0.5s;
  color: var(--color-grey);
  margin: 0 2% 24px 0;
}
.home-modules .home-module:nth-child(4n + 1) {
  margin: 0 0 24px 0;
}
.home-modules .home-module:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 20px 0px rgba(63,153,158,0.1);
}
.home-modules .home-module.disabled {
  opacity: 0.4;
}
.about-ecofy {
  background-color: var(--color-white);
  width: 23%;
  height: auto;
  padding: 32px;
  border-radius: 10px;
}
.about-ecofy img {
  width: 100%;
}

@media (max-width: 900px) {
  .home-modules,
  .home-modules .home-module {
    width: 100%;
  }
  .home-modules .home-module,
  .home-modules .home-module:nth-child(4n + 1) {
    margin: 2%;
  }
  .about-ecofy {
    width: 100%;
  }
}