@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
    -webkit-transition: all 0.2s ease-in-out;
  	-moz-transition: all 0.2s ease-in-out;
  	-o-transition: all 0.2s ease-in-out;
  	transition: all 0.2s ease-in-out;
}
a {
	outline: none 0;
}
body::before {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: url(img-placeholder/background.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
body, html {
	height: 100%;
}
.clear {
	clear: both;
}
#content-container {
	width: 75%;
	float: right;
	height: 100%;
	padding: 10% 0 0 0;
}
#header {
	width: 90%;
	margin: 0 10% 0 -5%;	
}
#header h1 {
	font-family: Montserrat, sans serif;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	font-size: 3em;	
	background: #cb4d4a;
	border-bottom-right-radius: 25px;
	border-top-left-radius: 25px;
	padding: 25px;
}
#content {
	width: 70%;
	background: #fff;
	padding-bottom: 30px;
	margin: 0 20% 0 0;
	box-sizing:border-box;
}
#content p {
	font-family: 'open sans', sans serif;
	font-size: 1.4em;
	color: #7b7d71;
	line-height: 160%;
	font-weight: 400;	
	padding: 40px 20% 0 30px;
	max-width: 800px;
}
#content p a {
	color: #7b7d71;
}
#social-media {
	list-style-type: none;
	margin: 40px 0 0 30px;
}
#social-media li {
	float: left;
	display: inline;
	width: 75px;
	height: 75px;
	margin-right: 20px;
}
#social-media li a {
	width: 75px;
	height: 75px;
	display: block;
}
#social-media .twitter {
	background: url(img-placeholder/social-media.png) no-repeat;
	background-position: 0 0;
}
#social-media .facebook {
	background: url(img-placeholder/social-media.png) no-repeat;
	background-position: -75px 0;
}
#social-media .linkedin {
	background: url(img-placeholder/social-media.png) no-repeat;
	background-position: -150px 0;
}
@media only screen and (max-width: 1100px) {
	#content-container {
	width: 85%;
	}
	#content p {
		padding-right: 20px;
	}
}
@media only screen and (max-width: 850px) {
	#content-container {
	width: 95%;
	}
	#content {
		width: 85%;
	}
}
@media only screen and (max-width: 600px) {
	#content p {
		font-size: 1em;
	}
	#header h1 {
		font-size: 1.3em;
	}
	#social-media .twitter  {
		width: 50px;
		height: 50px;
		background-size: 150px 100px;
	}
	#social-media .facebook {
		width: 50px;
		height: 50px;
		background-size: 150px 100px;	
		background-position: -50px 0;
	}
	#social-media .linkedin {
		width: 50px;
		height: 50px;
		background-size: 150px 100px;	
		background-position: -100px 0;
	}
	
}
