/*news*/

.news section {
	width: 70%;
	margin: 20px auto;
	border: solid 1px #a8a8a8;
	text-align: center;
}

.news img {
	max-width: 300px;
	margin: 30px 0 10px 0;
}

.news ul:before {
	content: '';
	display: block;
	width: 350px;
	height: 1px;
	background-color: #848484;
	position: absolute;
	margin-top: -2%;
	margin-left: 5%;
}

.news ul {
	text-align: left;
	margin: 30px 0;
	border-left: solid 4px #00A05D;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding-left: 4%;
}

.news li {
	list-style: none;
}

.news h1 {
	display: inline-block;
	font-size: 1.7rem;
	margin: 3px 0;
}

.news span {
	font-size: 1.4rem;
	color: #383838;
	font-weight: 900;
}

.news span i {
	margin: 0 5px;
	color: #646464;
}

.news span a {
	text-decoration: none;
	color: #383838;
}

.news span a:hover,
.news span a:hover i {
	color: #00A05D;
}

/* ----- */

@media screen and (max-width:701px) {
	.news ul:before {
		position: relative;
		width: 80%;
		margin: 0 auto;
		margin-bottom: 15px;
	}
	.news section {
		width: 90%;
	}
	.news h1 {
		width: 20%;
	}
}

@media screen and (max-width:481px) {
	.news section {
		width: 100%;
	}
	.news h1 {
		width: 100%;
		margin: 5px 0;
	}
	.news span {
		word-break: break-all;
	}
	.news ul {
		margin: 0;
		margin-bottom: 30px;
	}
}

@media screen and (max-width:445px) {
	.news img {
		max-width: 200px;
	}
}