/* Image Hover Effect */
.bjt_box {
    background: linear-gradient(to top right, #4a626e 0.3%, #1e2130 90.2%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}
.bjt_box:hover { filter: drop-shadow(5px 5px 10px #808080); }
.bjt_box:before {
    content: "";
    width: 50px;
    height: 50px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: top right;
    transform: scale(0);
    position: absolute;
    top: 12px;
    right: 12px;
    transition: all 0.4s ease;
}
.bjt_box:hover:before{ transform: scale(1); }
.bjt_box img {
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}
.bjt_box:hover img { opacity: 0.2; }
.bjt_box .box-content{
    color: #fff;
    opacity: 1;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transition: all 0.4s ease;
    right: 0;
    padding: 10px;
    border-left: 25px solid #00a0af;
    height: calc(100% - 20px);
}
.bjt_box:hover .box-content {
	border-left-width: 15px;
    transition-delay: 0.25s;
}
.bjt_box .title {
	font-weight: 600;
    text-transform: uppercase;
    margin-top: 25%;
    color: #FFF;
}
.bjt_box .post {
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    line-height: 14px;
}
.bjt_box .icon {
    padding: 0;
    margin: 0;
    list-style: none;
    transform: translateX(-50%) translateY(-50%) scale(0) rotate(0);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.4s ease;
}
.bjt_box:hover .icon { transform: translateX(-50%) translateY(-50%) scale(1) rotate(360deg); }
.bjt_box:hover .title {display: none;}
.bjt_box .icon li {
    margin: 0 4px;
    display: inline-block;
}
.bjt_box .icon li span {
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 33px;
    height: 35px;
    width: auto;
    border: 1px solid #fff;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .6);
    display: block;
    transition: all 0.3s;
	padding: 2px 10px;
}
.bjt_box .icon li span:hover {
    border-radius: 0 10px;
    background: #00a0af;
}
@media only screen and (max-width:990px){
    .bjt_box{ margin: 0 0 30px; }
}

.bjt_box .icon li a:hover {background: #00a0af;}