@font-face {
    font-family: 'Noto Sans';
    src: url(/fonts/NotoSans-Regular.ttf) format('ttf');
}

@font-face {
    font-family: 'Noto Sans';
    font-style: italic;
    src: url(/fonts/NotoSans-Italic.ttf) format('ttf');
}

* {
	font-family: "Noto Sans", sans-serif;
}

head, body {
	padding: 0;
	margin: 0;
	color: #080C17;
}

body {
	background: url('images/active-matter.jpg');
	background-color: #657a99;
	background-position: top center;
	background-repeat: no-repeat;
}

a {
	text-decoration: underline;
	color: #335599;
	transition: all 0.3s ease 0s;
}

a:hover {
	text-decoration: none;
	color: #6688AA;
}

.wrap {
	width: 1190px;
	margin: auto;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	margin-top: 25px;
	background: #fff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.wrap header {
	display: flex;
	align-items: center;
	background: #120e2a;
	padding: 10px 20px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.wrap header div:nth-child(1) a {
	font-size: 32px;
	font-weight: bold;
	display: block;
	color: #fff;
	text-decoration: none;
}

.wrap header div:nth-child(1) a:hover {
	color: #E7F0D1;
	text-decoration: underline;
}

.wrap header div:nth-child(1) span {
	display: block;
	font-size: 12px;
	color: #eee;
}

.wrap header div:nth-child(2) {
	margin-left: auto;
}

.wrap header div:nth-child(2) a {
	font-size: 16px;
	color: #eee;
}

.wrap header div:nth-child(2) a:hover {
	color: #E7F0D1;
}

.wrap .content-area {
	padding-bottom: 120px;
}

.wrap .content-area .sidebar {
	float: left;
	width: 300px;
}

.wrap .content-area .sidebar div {
	margin: 20px;
	margin-top: 40px;
	font-size: 18px;
	font-weight: bold;
}

.wrap .content-area .sidebar nav ul {
	list-style: none;
}

.wrap .content-area .sidebar nav ul li {
	font-size: 14px;
	line-height: 24px;
}

.wrap .content-area main {
	width: 850px;
	float: right;
	margin-right: 40px;
}

.wrap .content-area main article {
	font-size: 17px;
	line-height: 24px;
}

.wrap .content-area main article h1 {
	font-size: 44px;
	line-height: 72px;
}

.wrap .content-area main article h2 {
	font-size: 24px;
	line-height: 32px;
	padding-top: 25px;
}

.wrap .content-area main article ul li{
	font-size: 17px;
	line-height: 32px;
}

.wrap footer {
	border-top: 1px #eee solid;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 11px;
	color: #333;
	text-align: center;
	padding-left: 50px;
	padding-right: 50px;
	background: #fff;
}

@media (max-width:768px) {
	.wrap {
		width: 100%;
		margin-top: 0px;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}

	.wrap header {
		margin-top: 0px;
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}

	.wrap .content-area .sidebar {
		width: 90%;
		float: none;
		margin-right: auto;
		margin-left: auto;
	}

	.wrap .content-area .sidebar div {
		margin: 0px;
		margin-top: 15px;
		font-size: 14px;
		font-weight: bold;
	}

	.wrap .content-area .sidebar nav ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.wrap .content-area main {
		width: 90%;
		float: none;
		margin-right: auto;
		margin-left: auto;
	}

	.wrap .content-area main article h1 {
		font-size: 24px;
		line-height: 28px;
	}
}

