.box3 {
  box-shadow: 0 0 0px rgba(0,0,0,.8);
  position: relative;
  overflow: hidden; text-align: center;
}

.box3 .box-content, .box3:after, .box3:before {
  position: absolute;
  left: 0%;
  right: 0%;
  transition: all .3s;
}

.box3:after, .box3:before {
  display: block;
  background: rgba(0,0,0,.95);
  top: 0%;
  bottom: 0%;
  z-index: 1;
  transform: scale(0,1);
}

.box3:after {
  top: 0%;
  bottom: 0%;
  transform: scale(1,0);
}

.box3:hover:after, .box3:hover:before {
  transform: scale(1);
  animation: animate 1.5s;
}

.box3:hover:before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.box3:hover img .back {
  transform: scale(1.2);
  filter: blur(5px);
  -moz-filter: blur(5px);
  -webkit-filter: blur(5px);
}

.box3 .box-content {
  padding: 0px 10px 10px 10px;
  top: 0%;
  bottom: 0%;
  opacity: 0;
  z-index: 2;
}

.box3:hover .box-content {
  box-shadow: 0 0 0 0px rgba(0,0,0,.95);
  background: rgba(115,115,115,1);
  opacity: 1;
  transition: all .3s;
}

.box3 .title {
  font-size: 24px;
  font-weight: 600;
  color: #88c425;
  margin: 0 0 5px;
}

.box3 .post {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  color: rgba(0,0,0,.8);
}

.box3 .description {
  font-size: 14px;
  color: #fff;
  margin: 0 0 20px;
}

.box3 .icon {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box3 .icon li {
  display: inline-block;
  margin: 0 10px 0 0;
}

.box3 .icon li a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  background: #88c425;
  transition: all .5s;
}

.box3 .icon a:hover {
  text-decoration: none;
  animation: animate-hover .5s;
  transition: all .3s;
}

@media only screen and (max-width:990px) {
  .box3 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width:990px) {
  .box3 .box-content {
    padding: 10px;
  }
}

@media only screen and (max-width:990px) {
  .box3 .description {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width:479px) {
  .box3 .title {
    margin: 0;
  }
}

