.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(89, 89, 89, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.zoom-effect {
  position: relative;
}

.zoom-effect:hover .project-overlay {
  opacity: 1;
}

.project-overlay.top {
  top: 0;
  bottom: auto;
  height: 12%;
  // background: rgba(207, 40, 40, 0.74);
  background: transparent;

  opacity: 1;
}
.zoom-effect:hover .project-overlay.top {
  opacity: 0.5;
}
.logo-icon-img {
  width: 1.5em;
}

.delete-icon {
  color: #fff;
  // font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;

  transition: all 0.2s ease;
}

.delete-icon-img {
  width: 4em;
}

.delete-icon:hover {
  // background: rgba(255, 0, 0, 0.7);
  transform: scale(1.1);
}
