html {
	box-sizing: border-box;
}

* {
	box-sizing: inherit;
}

body, html {
	height: 100%;
}

body {
	/*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../images/bg.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;*/
	background-color: #181467;
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	position: relative;
}

.highlight {
	color: #ff303c;
}

.content-wrap {
	margin: 20px auto 40px auto;
	max-width: 700px;
	padding: 0 15px;
	text-align: center;
}

.logo-box img {
	max-width: 500px;
}

.slogan {
	margin-top: 150px;
}

.slogan h1 {
	color: #fff;
	font-size: 40px;
	font-weight: 100;
}

.slogan p {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
}

.contact-box {
	margin-top: 200px;
}

.contact-box p {
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
}

.contact-box p a { 
	text-decoration: none;
	color: #fff;
}

@media screen and (min-width:1200px) {
	.content-wrap {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 700px;
	}
}

@media screen and (max-width:767px) {
	.content-wrap {
		margin-top: 80px;
		width: 100%;
	}

	.logo-box img {
		max-width: 300px;
	}

	.slogan h1 {
		font-size: 28px;
	}

	.contact-box p {
		font-size: 17px;
	}
}