@media (min-width: 1025px) {
  .project-listings .project-block.view {
    cursor: pointer;
  }
  .project-listings .project-block.view:before {
    content: '';
    background-color: #008cd1;
    display: block;
  }
  .project-listings .project-block.view:after {
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
  }
  .project-listings .project-block.view .mask, .project-listings .project-block.view .content, .project-listings .project-block.view:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
  .project-listings .project-block.view .mask {
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
  }
  .project-listings .project-block.view .content {
    opacity: 0;
    background: transparent;
    margin: 20px 20% 0px 20%;
    font-size: 55px;
    max-height: 0;
    overflow: hidden;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-transition: all 0.4s ease-in 0s;
    -o-transition: all 0.4s ease-in 0s;
    -webkit-transition: all 0.4s ease-in;
    -webkit-transition-delay: 0s;
    transition: all 0.4s ease-in 0s;
  }
  .project-listings .project-block.view h1 {
    position: relative;
    padding: 0;
    margin: 0 0 .6em 0;
    opacity: 0;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -moz-transition: all 0.4s ease-in 0s;
    -o-transition: all 0.4s ease-in 0s;
    -webkit-transition: all 0.4s ease-in;
    -webkit-transition-delay: 0s;
    transition: all 0.4s ease-in 0s;
  }
  .project-listings .project-block.view .button.info {
    width: auto;
    padding: 7px 14px;
    background: #ff0000;
    color: #fff !important;
    opacity: 0;
    font-size: 16px;
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -moz-box-shadow: 0 0 1px #000;
    -webkit-box-shadow: 0 0 1px #000;
    box-shadow: 0 0 1px #000;
    -moz-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in;
    -webkit-transition-delay: 0s;
    transition: all 0.3s ease-in 0s;
  }
  .project-listings .project-block.view .button.info:hover {
    -moz-box-shadow: 0 0 5px #000;
    -webkit-box-shadow: 0 0 5px #000;
    box-shadow: 0 0 5px #000;
  }
  .project-listings .project-block.view:hover .mask {
    mix-blend-mode: multiply;
    opacity: 0.5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }
  .project-listings .project-block.view:hover .content {
    opacity: 1;
    max-height: 99999px;
  }
  .project-listings .project-block.view:hover h1 {
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .project-listings .project-block.view:hover .button.info {
    opacity: 1;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
