.section-1 .list-item{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section-1 .list-item .item{
	width: 30%;
	margin-bottom: 40px;
	position: relative;
}
.section-1 .list-item .item .title{
	margin-top: 15px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
}
.section-1{
	padding: 40px 0px;
}
.section-1 .main-title{
	font-size: 30px;
	font-family: chakrapetch_medium;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.section-1 .list-item .item .title{
	position: relative;
	margin-bottom: 10px;
	color: #000;
	font-size: 16px;
	width: 100%;
	display: block;
	margin-bottom: 20px;
}
.section-1 .list-item .item .box-img{
	position: relative;
	margin-bottom: 15px;
}
.section-1 .list-item .item .box-img > img{
	
}
.section-1 .list-item .item .title:after{
	content: "";
    position: absolute;
    background-image: url(../assets/images/service_topic_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 10px;
    height: 10px;
    width: 100%;
    left: 0;
    bottom: -15px;
    display: none;
}
.section-1 .list-item .item .box-img .overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}
.section-1 .list-item .item .box-img .overlay img{
	width: 50px;
	height: auto;
}
@media(max-width: 767px) {
	.section-1 .list-item .item{
		width: 48%;
	}
}