
bottom@charset "UTF-8";
/* CSS Document */

/***************************
Fonts
***************************/
html{
}




@font-face {
    font-family: 'serif';
    src: url('../fonts/vollkorn-regular-webfont.eot');
    src: url('../fonts/vollkorn-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/vollkorn-regular-webfont.woff2') format('woff2'),
         url('../fonts/vollkorn-regular-webfont.woff') format('woff'),
         url('../fonts/vollkorn-regular-webfont.ttf') format('truetype'),
         url('../fonts/vollkorn-regular-webfont.svg#vollkornregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

a{
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease-in 0s;
}

a:hover{
}
.content{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}


#header{
	position: relative;
	background-image: url(../images/header.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	padding-bottom: 58%;
}


#header img{
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
}


#illustration img{
	width: 100%;
}



#about{
	background-image: url(../images/about-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

#about .content{
	display: -webkit-flex;
	display: flex;
	margin-top: 100px;
	margin-bottom: 100px;
	width: 90%;
	max-width: 740px;
}

#about .content .image{
	width: 200px;
	margin-right: 100px;
	margin-top: 10px;
}

#about .content img{
	width: 100%;
}

#about .content .text{
	-webkit-flex: 1;
	flex: 1;
}



@media screen and (max-width: 767px) {
	#about .content .image{
		width: 200px;
		margin-right: 30px;
	}
}


@media screen and (max-width: 590px) {
	#about .content{
		-webkit-flex-direction: column;
		flex-direction: column;
		margin-top: 50px;
	}
	
	#about .content .image{
		width: 200px;
		margin: 30px auto;
	}

	h2{
		text-align: center;
	}

	p{
		text-align: center;
	}
}

h2{
    font-family: 'serif';
	color: #404041;
	font-size: 23px;
	margin-bottom: 20px;
	line-height: 1.3;
	letter-spacing: 0.01em;
}

p{
    font-family: 'serif';
	color: #969696;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.5;
	letter-spacing: 0.01em;
}

p strong{
	color: #CBB299;
	text-transform: uppercase;
}



#footer{
	background-color: #3b3a3b;
}

#footer .content{
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
	text-transform: uppercase;
}

#footer h2{
    font-family: "serif";
	color: #CBB299;
	font-size: 22px;
	letter-spacing: .1em;
}

#footer p{
    font-family: "Helvetica Neue", Helvetica, Arial, Gotham, sans-serif;
	color: #e6e7e8;
	font-size: 16px;
	/*padding-bottom: 20px;*/
	letter-spacing: .1em;
}


#footer a:hover{
	color: #CBB299;
}

#footer #copyright{
    font-family: "Helvetica Neue", Helvetica, Arial, Gotham, sans-serif;
	color: #e6e7e8;
	font-size: 14px;
	letter-spacing: .1em;
}

#burly-knits{
    font-family: "Helvetica Neue", Helvetica, Arial, Gotham, sans-serif;
	color: #e6e7e8;
	font-size: 14px;
	letter-spacing: .1em;
	margin-bottom: 20px;
}

#social{
	width: 200px;
	margin: 0 auto 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#social div{
	background-image: url("../images/sprites.svg");
	background-repeat: no-repeat;
	position: relative;
	display: block;
}

#social div a{
	background-image: url("../images/sprites.svg");
	background-repeat: no-repeat;
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

#instagram{
	background-position: 0px 0px;
}

#instagram:after {
	background-repeat: no-repeat;
	background-image: url("../images/sprites.svg");
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-position: 0px -60px;
	opacity: 0;
	transition: opacity 0.25s;
}
#instagram:hover:after {
	opacity: 1;
}



#twitter{
	background-position: -60px 0px;
}

#twitter:after {
	background-repeat: no-repeat;
	background-image: url("../images/sprites.svg");
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-position: -60px -60px;
	opacity: 0;
	transition: opacity 0.25s;
}
#twitter:hover:after {
	opacity: 1;
}



#linkedin{
	background-position: -120px 0px;
}

#linkedin:after {
	background-repeat: no-repeat;
	background-image: url("../images/sprites.svg");
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-position: -120px -60px;
	opacity: 0;
	transition: opacity 0.25s;
}
#linkedin:hover:after {
	opacity: 1;
}



#facebook{
	background-position: -180px 0px;
}

#facebook:after {
	background-repeat: no-repeat;
	background-image: url("../images/sprites.svg");
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-position: -180px -60px;
	opacity: 0;
	transition: opacity 0.25s;
}
#facebook:hover:after {
	opacity: 1;
}

@media screen and (max-width: 590px) {
	#footer .content{
		padding-top: 50px;
		padding-bottom: 50px;
	}

	#footer h2{
		font-size: 14px;
	}
	
	#footer p{
		font-size: 14px;
	}
	
	#footer #copyright{
		font-size: 14px;
	}
	
	.lg{
		display: none;	
	}
	.mobile{
		display: block;	
	}
}