


.case_list .box{
	font-family: 'Kanit', sans-serif;
    text-align: center;
    border: 1px solid #eaeaea;
    box-shadow: 1px 1px 2px #e6e6e6;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px;
}
.case_list .col-md-4{
    width:32%;
    margin-right:1.3%;
    margin-bottom:56px;
    float:left;
    height:250px;
}
.case_list .box:hover{ box-shadow: 13px 13px 15px rgba(0, 0, 0, 0.3); }
.case_list .box:before{
	content: "";
	background: #c30d23;
	height: 100%;
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.4s linear;
}
.case_list .box:hover:before{ opacity: 1; }
.case_list .box img{
	width: 100%;
	height: 100%;
	transition: all 0.4s linear;
	object-fit: contain;
}
.case_list .box:hover img{
	opacity: 0;
	transform: scale(3);
}
.case_list .box .box-content{
	color: #fff;
	width: 100%;
	transform: translateY(-50%) scale(0);
	position: absolute;
	top: 50%;
	left: 0;
	transition: all 0.4s linear;
}
.case_list .box:hover .box-content{ transform: translateY(-50%) scale(1); }
.case_list .box .title{
	font-size: 18px;
	font-weight:normal;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 8px;
}
.case_list .box .post{
	font-size: 16px;
	text-transform: capitalize;
}
.case_list .box .icon{
	padding: 0;
	margin: 0;
	list-style: none;
	position: absolute;
	right: 8px;
	bottom: 10px;
}
.case_list .box .icon li{
	display: inline-block;
	margin: 0 1px;
	opacity: 0;
	transform: scale(1.3);
	transition: all 0.3s ease 0.4s;
}
.case_list .box:hover .icon li{
	opacity: 1;
	transform: scale(1);
}
.case_list .box:hover .icon li:nth-child(2){ transition: all 0.3s ease 0.2s; }
.case_list .box .icon li a{
	color: #11998e;
	background: #fff;
	font-size: 16px;
	line-height: 33px;
	height: 33px;
	width: 33px;
	border-radius: 50%;
	display: block;
	transition: all 0.5s ease;
}
.case_list .box span{
    border: solid 1px rgba(255,255,255,0.6);
    font-size:12px;
    width: 100px;
    height: 32px;
    border-radius: 40px;
    display: inline-block;
    line-height: 30px;
    margin-top: 12px;
}
.case_list .box .icon li  a:hover{
	color: #fff;
	background-color: #11998e;
	box-shadow: 0 0 5px #000;
}
.case_list .description{
    font-size:16px;
    font-weight:normal;
    margin-top:10px;
    text-align:center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media only screen and (max-width:990px){
	
}
@media only screen and (max-width:768px){
	.case_list .col-md-4{
        width:50%;
    }
}
@media only screen and (max-width:768px){
	.case_list .col-md-4{
        width: 47%;
        margin-right: 3%;
    }
}
@media only screen and (max-width:560px){
	.case_list .col-md-4{
	    height:160px;
	}
}