.application {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 5px #555;
  transition: all 0.55s ease;
  background: #212121;
  margin-bottom: 30px;
  width: 100%;
  height: 0;
  padding-bottom: 66.75%;
}
.application .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.application img {
  max-height: 100%;
  transition: all 0.55s ease;
}
.application:hover img {
  opacity: 0.5;
}
.application .box-content {
  padding: 5px 10px 10px;
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: -1;
}
.application:hover .box-content {z-index: 9;}
.application .box-content:before, .application .box-content:after {
  content: "";
  width: 767px;
  height: 2px;
  position: absolute;
  background: #fff;
  transition: all 0.55s ease;
}
.application .box-content:before {
  top: 0;
  left: 0;
  transform: translateX(100%);
}
.application .box-content:after {
  bottom: 0;
  right: 0;
  transform: translateX(-100%);
}
.application .box-content-inner:before, .application .box-content-inner:after {
  content: "";
  width: 2px;
  height: 767px;
  position: absolute;
  background: #fff;
  transition: all 0.55s ease;
}
.application .box-content-inner:before {
  top: 0;
  left: 0;
  transform: translateY(100%);
}
.application .box-content-inner:after {
  bottom: 0;
  right: 0;
  transform: translateY(-100%);
}
.application:hover .box-content:before,
.application:hover .box-content:after,
.application:hover .box-content-inner:before,
.application:hover .box-content-inner:after {
  transform: translate(0, 0);
}
.application:hover .box-content:before, .application:hover .box-content:after {
  transition-delay: 0.15s;
}
.application h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: #fff;
}
.application .post {
  display: block;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  color: #434343;
  background: #fff;
}

@media (max-width: 1024px) {
    .application {margin: 20px 0;}
}
