* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: none;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #000000;
}

.no-text {
	text-indent: -9999px;
}

.container {
	width: 1350px;
	margin-left: auto;
	margin-right: auto;
}

nav {
	height: 46px;
	background-color: #3a3a3a;
}

	#nav {
		list-style: outside none none;
		float: left;

		font-weight: 400;
		font-size: 16px;
	}

	#menu {
		float: left;
		display: none !important;
	}

	#nav > li {
		float: left;
		display: block;
	}

	#nav > li:first-child {
		margin-left: -25px;
	}

	#nav > li > a, a#menu {
		display: block;
		line-height: 46px;
		height: 46px;
		padding: 0 25px;
		
		color: #999999;
		
		transition: color 200ms, background-color 200ms;
	}

	#nav > li > a:hover, a#menu:hover {
		color: #ffffff;
		background-color: #555555; /* 499324 */
	}

header {
	height: 500px;
	/*background: #499324;*/
	position: relative;
}

	header > .container {
		position: relative;
		height: 500px;
	}

		.hcm-logo {
			background-image: url('images/logo.svg');
			background-size: 600px;
			background-repeat: no-repeat;
			background-position: center;
			
			position: absolute;
			height: 100%;
			width: 100%;
			z-index: 1;
		}

		.uni-logo {
			background-image: url('images/uni-logo.png');
			background-size: contain;
			
			position: absolute;
			z-index: 2;
			top: -46px;
			right: 0;
			
			width: 170px;
			height: 157px;
		}

		.button {
			position: absolute;
			z-index: 999;
			top: 50%;
			
			display: block;
			margin-top: -33px;
			height: 66px;
			line-height: 66px;
			
			font-size: 24px;
			font-weight: 300;
			color: #ffffff;
			
			background-repeat: no-repeat;
			background-size: contain;
			
			transition: padding 100ms;
		}

		.left-arrow {
			background-image: url('images/arrow-left.svg');
			background-position: left;
			left: 0;
			padding-left: 60px;
		}

			a.left-arrow:hover {
				padding-left: 50px;
				padding-right: 10px;
			}

		.right-arrow {
			background-image: url('images/arrow-right.svg');
			background-position: right;
			right: 0;
			padding-right: 60px;
		}

			a.right-arrow:hover {
				padding-right: 50px;
				padding-left: 10px;
			}

	.backgrounds, .backgrounds > div  {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		
		background-repeat: no-repeat;
		background-position: center;
	}

		.image1 {
			background-image: url('images/banner-bg-1.png');
			background-color: #828283;
		}

		.image2 {
			background-image: url('images/banner-bg-2.png');
			background-color: #9e9d9c;
		}

		.image3 {
			background: #499324;
		}

main {
	margin: 50px auto 70px;
	overflow: hidden;
}

	h2 {
		text-align: center;
		font-size: 26px;
		font-weight: 400;
		margin-bottom: 50px;
	}

	article {
		width: 33.33%;
		float: left;
		display: block;
		padding: 0 15px;
	}

	.article-left {
		padding: 0 30px 0 0;
	}

	.article-right {
		padding: 0 0 0 30px;
	}

		.article-content {
			display: block;
			position: relative;
			height: 250px;
			
			background-image:url('images/placeholder.png');
			background-color: #bfbfbf;
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
		}

			.article-text {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				
				background-color: rgba(0, 0, 0, 0.5);
				color: #ffffff;
				padding: 15px;
			}

				h3 {
					font-weight: 400;
				}

footer {
	border-top: 1px solid #bfbfbf;
	padding: 10px 0 30px;
	
	font-size: 14px;
	color: #bfbfbf;
	overflow: hidden;
}

	.footer-right {
		float: right;
	}

	footer a {
		color: #bfbfbf;
	}

		footer a:hover {
			color: #499324;
		}

@media (max-width: 1680px) {
	.container {
		width: 80%;	
	}
}

@media (max-width: 1280px) {
	.container {
		width: 90%;	
	}
	
	.button {
		top: 80%;
	}
	
	.article-right {
		display: none;	
	}
	
	article {
		width: 50%;	
	}
}

@media (max-width: 1000px) {
	.container {
		width: 100%;	
	}
	
	#menu {
		display: block !important;
	}
	
	#nav {
		position: absolute;
		top: 46px;
		z-index: 9999;
		background-color: #3a3a3a;
		display: none;
	}
	
	#nav > li {
		float: none;
	}
	
	#nav > li:first-child {
		margin: 0;	
	}
	
	article {
		float: none;
		padding: 0 !important;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.hcm-logo {
		background-size: 90% auto;
	}
	
	.uni-logo {
		width: 80px;
		height: 74px;
		right: 15px;
	}
	
	.left-arrow {
		left: 5%;
	}
	
	.right-arrow {
		right: 5%;	
	}
	
	footer {
		padding-left: 5%;	
		padding-right: 5%;
	}
}