.li-widgets--project-gallery__project {
  display: inline-block;
  position: relative;
}
.li-widgets--project-gallery__project > img {
  width: 100%;
}
.li-widgets--project-gallery__project .project-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .li-widgets--project-gallery__project .project-overlay {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .li-widgets--project-gallery__project .project-overlay {
    font-size: 28px;
  }
}
.li-widgets--project-gallery__project:hover {
  cursor: pointer;
}
.li-widgets--project-gallery__project:hover .project-overlay {
  opacity: 1;
}
