.center-con-box {
  padding: 25px 0 20px;
  border-bottom: 1px solid #ccc;
}
.center-con-box:last-of-type {
  padding: 25px 0 0 0;
}
.center-con-box:first-of-type {
  border-top: 1px solid #000;
}

/* 서비스 카드 전체 리스트 */
.service-list {
  padding: 0 0 40px 0;
}
.service-list ul {
  font-size: 0;
}
.service-list ul li {
  display: inline-block;
  margin: 0 40px 0 0;
  padding: 25px 30px;
  width: calc(33% - 30px);
  border: 1px solid #ccc;
  box-sizing: border-box;
  vertical-align: top;
}
.service-list ul li:last-of-type {
  margin-right: 0;
}

/* 각 서비스 박스 스타일 */
.service .service-top {
  padding: 0 0 10px 0;
  border-bottom: 2px solid #030f89;
}
.service .service-top .service-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  word-break: break-word;
}
.service .service-bottom {
  padding: 25px 0 0 0;
}
.service .service-bottom .service-txt {
  padding: 0 0 20px 0;
  min-height: 140px;
  font-size: 20px;
  font-weight: 200;
  color: #111;
  line-height: 30px;
  box-sizing: border-box;
}

/* 불친절사례 텍스트와 버튼 */
.flex-sb-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mark-p02 {
  font-size: 18px;
  color: #111;
}
.link-box ul li a.link {
  display: inline-block;
  padding: 8px 16px;
  background: #030f89;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}

@media screen and (max-width:768px){
	.service-list{padding:0 0 20px 0;}
	.service-list ul li{
		margin:10px 0 0 0;
		padding:15px;
		width:100%;
	}
	.service-list ul li:first-of-type{margin-top:0;}
	.service-list ul li:nth-of-type(2){margin-top:10px;}

	.service .service-top{padding:0 0 5px 0;}
	.service .service-top .service-title{font-size:18px;line-height:28px;}
	.service .service-bottom{padding:10px 0 0 0;}
	.service .service-bottom .service-txt{
		padding:0 0 10px 0;
		min-height:auto;
		font-size:16px;
		line-height:26px;
	}
}