.project-item {
  
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.project-item .content {
 margin-top: 24px; 
}

.project-item h4 {
  color: #232323;
font-family: "Clash Display";
font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 100%; /* 32px */
  max-width: 80%;
}

.project-item p {
  color: #414141;
font-family: Manrope;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 27px */
letter-spacing: -0.36px;
}

 .project-item .image {
    position: relative;
    overflow: hidden;
  }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .project-item:hover .overlay {
    opacity: 1;
  }

  .overlay-content {
    color: #fff;
    text-align: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    background: #1A6FB9;
    padding: 50px 30px;
    border-radius: 100px;
  }

  .overlay-content a {
    color: #fff;
    text-decoration: none;
    margin-left: 5px;
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 150%; /* 24px */
letter-spacing: -0.32px;
    margin-top: 20px;
  }
@media (max-width: 992px) {
 .project-item {
   margin-bottom: 30px;
  }
 .project-item .image {
   text-align: center;
  }
}
@media (max-width: 992px) {
 .product-item {
   margin-bottom: 30px;
  }
 .product-item .image {
   text-align
  }
  
  .project-item h4 {
    max-width: 100%;
  }
}
