/*
 * Shortcode: gallery.scss
 * -----------------------------------------------
*/

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  .project-thumb {
    .project-title {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      text-align: center;
      color: #fff;
      z-index: 2;
      opacity: 0;
      @include transition(all .3s ease-in-out 0s);
    }
    img {
      border-radius: 10px;
      @include transition(all .6s ease-in-out 0s);
    }
  }
  .hover-link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
  }
  &:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    @include transition(all .4s ease-in-out 0s);
  }
  &:hover {
    .project-thumb {
      img {
        transform: scale(1.1) rotate(3deg);
      }
    }
    .project-title {
      opacity: 1;
      bottom: 20px;
    }
    &:after {
      opacity: 1;
    }
  }
}