/*
 *
 *
 * Landing Page Styles
 *
 *
 */
 
 
 
/* =============== Global Styles ================= */

html, body {
	margin: 0;
	padding: 0;
}

#all-content {
	margin: 100px 100px 0 100px;
	max-width: 1000px;
}

#background-image-container {
	position: fixed;
	width: 100%;
	text-align: center;
	z-index: -1;
	overflow: hidden;
	top: -100px;
}

#background-image {
	position: relative;
	left: 100%;
	margin-left: -200%;
}

p {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: small;
	color: #333;
	line-height: 160%;
	letter-spacing: 0.3px;
	margin-top: 0;
}

a:hover {
	color: #aaa;
}

a {
	text-decoration: none;
	color: #333;
}

/* =============== Header Styles ================= */

header {
	margin-bottom: 100px;
}

#logo-container {
	width: 150px;
	margin-bottom: 50px;
}

/* =============== Content Styles ================ */

.content {
	margin-bottom: 50px;
}

.contact-link {
	padding-bottom: 2px;
	white-space: nowrap;
}

section {
	margin-bottom: 50px;
}

#main-content {
	column-count: 3;
	-webkit-column-count: 3;
	-moz-column-count: 3;
}

/* =============== Footer Styles ================= */


#copyright {
	font-size: x-small;
	color: #aaa;
}

/* =============== RESPONSIVE STYLSES ============ */

@media screen and (max-width:1024px) {
	#main-content {
		column-count: 2;
		-webkit-column-count: 2;
		-moz-column-count: 2;
	}
}

@media screen and (max-width:640px) {
	#all-content {
		width: initial;
		margin: 50px 50px 0 50px;
	}
	#main-content {
		column-count: 1;
		-webkit-column-count: 1;
		-moz-column-count: 1;
	}
}

@media screen and (max-width:480px) {
	#all-content {
		margin: 30px 20px 0 20px;
	}
}
