.service {
	gap: 80px;
}
.service .gray_bg {
	position: relative;
	padding: 60px;
	border-radius: 10px;
	background: var(--gray);
	gap: 60px;
	box-sizing: border-box;
}
.service .gray_bg h3 {
	text-transform: uppercase;
}
.service h3 {
	font-size: 40px;
	text-transform: capitalize;
}
.service .txt {
	flex: 1;
	width: 100%;
	font-size: 20px;
	line-height: 1.4;
}


.service .box {
	gap: 20px;
}
.service .box .grid3 {
	gap: 40px;
}
.service .box .grid3 > div {
	flex: 1;
	text-align: center;
	gap: 16px;
	font-size: 20px;
}
.service .box .grid3 > div .thumb {
	position: relative;
	border-radius: 10px;
	border: 1px solid var(--gray2);
	box-sizing: border-box;
	overflow: hidden;
}
.service .box .grid3 > div .thumb img {
	width: 100%;
	transition: all .5s;
}
.service .box .grid3 > div .thumb:hover img {
	transform: scale(1.05);
}


.service .news {
	gap: 20px;
}
.service .news ul {
	gap: 20px;
}
.service .news ul li {
	padding: 20px 40px;
	border-radius: 10px;
	background: var(--gray);
	box-sizing: border-box;
}
.service .news ul li button {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	font-size: 24px;
	font-weight: 600;
	padding-right: 25px;
	box-sizing: border-box;
}
.service .news ul li button:after {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images/news_arrow.svg")no-repeat 50% 50%;
}
.service .news ul li .conts {
	display: none;
	margin-top: 20px;
	gap: 20px;
}
.service .news ul li .conts .item {
	background: var(--white);
	padding: 16px 20px;
	border-radius: 10px;
	gap: 10px;
	box-sizing: border-box;
}
.service .news ul li .conts .item span {
	flex: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}
.service .news ul li .conts .item a {
	padding: 8px 10px;
	border-radius: 5px;
	border: 1px solid var(--black);
	gap: 10px;
	box-sizing: border-box;
}
.service .news ul li .conts .item a:after {
	content: '';
	width: 16px;
	height: 20px;
	background: url("../images/line-arrow-right.svg")no-repeat 50% 50% / 100%;
}
.service .news ul li.open button {
	color: var(--key-color);
}
.service .news ul li.open button:after {
	transform: rotate(180deg);
}
.service .news ul li.open .conts {
	display: flex;
}




@media screen and (max-width: 1280px) {
	.service h3 {
		font-size: 28px;
	}
	.service .txt {
		font-size: 18px;
	}
	.service .box .grid3 {
		gap: 20px;
	}
	.service .box .grid3 > div {
		font-size: 18px;
	}
	.service .news ul li button {
		font-size: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.service {
		gap: 40px;
	}
	.service .gray_bg {
		padding: 30px;
		gap: 30px;
	}
	.service h3 {
		font-size: 20px;
	}
	.service .txt {
        font-size: 16px;
    }
	.service .box .grid3 > div {
		gap: 10px;
		font-size: 16px;
	}
	.service .news ul li {
		padding: 20px;
	}
	.service .news ul li button {
		font-size: 18px;
	}
	.service .news ul li button:after {
		top: 0;
	}
	.service .news ul li .conts .item span {
		font-size: 14px;
	}
	.service .news ul li .conts .item a {
		font-size: 14px;
	}
	.service .news ul li .conts .item a:after {
		width: 13px;
		height: 16px;
	}
}
@media screen and (max-width: 768px) {
	.service h3 {
		width: 100%;
	}
	.service .txt {
        flex: none;
    }
	.service .box .grid3 > div {
		flex: none;
		width: 100%;
	}
	.service .news ul li button {
        font-size: 16px;
    }
	.service .news ul li .conts .item a {
		width: 100%;
		text-align: center;
		justify-content: center;
		padding: 8px 0;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}