.projects {
    margin-top: 40px;
  }
  
  .projects .project {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  .projects .project .project-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  }
  
  .projects .project .project-image-wrapper .image {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .projects .project .project-image-wrapper .image img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
  }
  
  .projects .project .project-image-wrapper .image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(64, 63, 63, 0);
    width: 100%;
    height: 100%;
    margin-top: -100%;
    -webkit-transition-duration: all 0.6s linear;
    transition-duration: all 0.6s linear;
  }
  
  .projects .project .project-image-wrapper .image .overlay .icons {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .projects .project .project-image-wrapper .image .overlay .icons i {
    display: inline-block;
    background-color: #6dc8be;
    color: #fff;
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 10px;
  }
  
  .projects .project .project-image-wrapper .info {
    padding: 20px;
    text-align: center;
  }
  
  .projects .project .project-image-wrapper .info h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: #3e3e3e;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .projects .project .project-image-wrapper:hover .image img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  
  .projects .project .project-image-wrapper:hover .image .overlay {
    margin-top: 0;
  }
  
  .projects .project .project-image-wrapper:hover .info h4 {
    color: #73BF43;
  }
  
  @media (max-width: 768px) {
    .projects .project .project-image-wrapper {
      height: 250px;
    }
  
    .projects .project .project-image-wrapper .image,
    .projects .project .project-image-wrapper .image img {
      height: 150px;
    }
  
    .projects .project .project-image-wrapper .info h4 {
      font-size: 15px;
    }
  
    .y-video__inner {
      padding-bottom: 86.25% !important;
    }
  }
  