.animation_MT{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom:10px;
    overflow: hidden;
}
/* Zoom */
.animation_MT.zoom{
    background: #3b4952;
}
.animation_MT.zoom img {
    -webkit-transition: opacity .35s,-webkit-transform .35s;
    transition: opacity .35s,transform .35s;
    -webkit-transform: scale3d(1.05,1.05,1);
    transform: scale3d(1.05,1.05,1);
}
/* Hiệu ứng viền trắng */
.animation_MT.zoom > a::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    content: '';
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-100%,0);
    pointer-events: none;
}
/* Content Zoom */
.animation_MT.zoom .zoom_content{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    padding:25px;
    /* Hiệu ứng */
    opacity: 0;
    transition: 0.5s all;
    /* transform:  0.5s all; */
    color:white;
}
.animation_MT.zoom .zoom_content .zline1{
    font-size: 1.75em;
    margin-bottom:5px;
}
.animation_MT.zoom .zoom_content .zline3{
    border-top:1px solid white;
    color:white!important;
    margin-top:5px;
    padding-top:10px;
}   
.animation_MT.zoom .zoom_content .zline3 *{
    color:white!important;
}   
/* Hover */
.animation_MT.zoom:hover img {
    opacity: .6;
    -webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
/* Hiệu ứng viền trắng */
.animation_MT.zoom:hover > a::before{
       -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,100%,0);
       transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,110%,0);
}
/* Content Zoom */
.animation_MT.zoom:hover > a > .zoom_content{
    opacity: 1;
}