@charset "utf-8";

.lt_service{}
.lt_service h2{text-align:center;font-size:2.5em;margin-bottom:40px}
.lt_service h2 a{padding:10px 0;}
.lt_service ul{margin:0 auto; display: flex; justify-content: space-between; flex-wrap: wrap;}
.lt_service li{width:23.5%; margin-bottom: 20px;}
.lt_service li .lt_img{display:block;width:100%}
.lt_service li .lt_img img{vertical-align:top;width:100%;height:auto}  

.lt_service .card{background: white; position: relative;}
.lt_service .card .card_p{
    position: absolute; 
    background-color: rgba(0,0,0,0.7); 
    color: #fff; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    display: none;
    transition: all .3s;
}
.lt_service .card:hover .card_p{display: flex; transition: all .3s;}


 @media (max-width: 969px){
    .lt_service h2{font-size:1.8em;margin-bottom:20px}
    .lt_service li{width:48%;}
    .lt_service .card:before{opacity:1}
    .lt_service .card .info{opacity: 1;-webkit-transform: translateY(0px);transform: translateY(0px);padding:9%}
 }