/*

	-------------------	
	SHELBY TEMPLATE 1.1
	-------------------

	CSS STRUCTURE
	-----------------
	01. Import Font Family
	02. CSS Reset
	03. General Settings
	04. Header Settings
	05. About Settings
	06. Portfolio Settings
	07. Contact Settings
	08. Footer Settings
	09. Responsive Settings
	
	-------------------	
	TEMPLATE BY BRUK.HU
	-------------------
	
*/

/* 01 IMPORT FONT FAMILY
--------------------------------------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic,300,300italic,800,800italic);

/* 02 CSS RESET
--------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 03 GENERAL SETTINGS
--------------------------------------------------------------- */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clear{
	clear: both;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 14px;
	background: #fff;
	text-align: center;
	color: #999;
}

p {
	font-size: 16px;
	line-height: 1.5;
}

a {
	color: #297d8c;
	text-decoration: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

a:hover { color: #999; }

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
}

/* Section Titles */
.section_title {
	margin: 0;
	color: #297d8c;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 0;
	line-height: 1;
}
	@media( min-width: 600px ) {
		.section_title {
			font-size: 44px;
		}
	}

.section_subtitle {
	margin: 0 0 30px 0;
	font-weight: 600;
	color: #999999;
	font-style: italic;
	text-transform: none;
	font-size: 18px;
	line-height: 1.25;
	margin: 0.5em 0 2em 0;
}

/* Containers */
.container_small, .container_big {
	width: 100%;
	margin: 0 auto;
}

.container_small {max-width: 900px;}
.container_big {max-width: 1050px;}

/* Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
 
.fade-in.cmon {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

/* 04 HEADER SETTINGS
--------------------------------------------------------------- */

header{
	position:relative;
}
.l_wl{
	width:37%;
	left:0;
	background:#fff;
	height:1px;
	position:absolute;
	top:58%;
	z-index:-10px;
}
.r_wl{
	width:37%;
	right:0;
	background:#fff;
	height:1px;
	position:absolute;
	top:58%;
	z-index:-10px;
}

#welcome {
/* 	background: url('../images/audio-acoustique.jpg') no-repeat center center; */
	background: url('../images/photo.jpg') no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 600px;
	position: relative;
}

.fade {
	background: rgba(25,25,25, 0.6);
	width: 100%;
	height: 100%;
}

/* Header Titles */
.header_title {
	color: #fff;
	font-size: 24px;
	letter-spacing: 6px;
	margin: 0 0 10px 0;
}

.header_subtitle {
	color: #297d8c;
	font-size: 14px;
	letter-spacing: 6px;
}

/* Vertical centering */
.parent {display: table;}

.child {
    display: table-cell;
    vertical-align: middle;
}

/* Navigation */
nav a {
	display: block;
	height: 20vh;
	line-height: 20vh;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	color:#fff;
	border-bottom:1px solid #7fb1ba;
}

	@media( min-width: 500px ) {
		nav a {
			font-size: 44px;
			letter-spacing: 4px;
		}
	}

nav a:hover { 
	color: #297d8c;
	background: #fff;
}

nav ul {
	background: #297d8c;
	width: 100%;
	position: absolute;
	z-index: 100;
	top: 0;
	left:0;
}

nav ul li:hover {
	background: #297d8c;
}

.hide { display: none }

.burger {
	/*background: rgba(25,25,25, 0.5);*/
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	z-index: 101;
	top: 50px;
	left: 50px;
	cursor: pointer;
	/*border: 2px solid #297d8c;*/
}
.burger.green path {
	fill: #7fb1ba;
	color: #7fb1ba;
}

section{clear:both;}


#brands{
	margin:50px 0 0 0;
}
#brands .section_subtitle{
	color:#000;
	margin: 0;
}
/* 05 MISSION SETTINGS
--------------------------------------------------------------- */
#mission{	
	padding: 40px 0;
	padding-bottom: 490px;
	background: #000000 URL(../images/hand-mic-mobi.jpg) no-repeat center bottom;
}
@media ( min-width: 720px ) {
	#mission {	
		padding: 40px 0;
		background-image: URL(../images/hand-mic.png);
		background-position: 90% top;
		text-align: left;	
		background-size: auto 100%;
	}
	#mission .mission-container {
		padding: 0;
		margin: auto;
		width: 90%;
		max-width: 1050px;
	}
	.mission-container div {
		max-width: 580px;
	}
}
#mission .container_big{
	text-align:left;
	margin:0 0 0 150px;
	max-width:650px;
}
#mission p {
	color:#fff;
	font-size: 20px; 
	line-height: 1.2;
}

/* 05 ABOUT SETTINGS
--------------------------------------------------------------- */

#about { padding: 50px; }

#about .button{margin-bottom:0px !important;}

#about p{margin-bottom:15px; color:#000;}
.button {
	font-size: 14px;
	margin: 50px;
	padding: 0 20px;
	height: 50px;
	line-height: 44px;
	border: 2px solid #297d8c;
	font-family: 'Open Sans', sans-serif;
	font-weight:400;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}
	@media( min-width: 600px ) {
		.button {
			font-size: 24px;			
		}
	}

.button:hover {
	background: #297d8c;
	color: #fff;
}

.contrastColor{color:#297d8c !important;}

/* SERVICES SECTION */

#services{
	background: #f5f5f5;
	padding: 50px;
}
#services p {
	font-weight: 600;
	margin-top: 1em;
}
ul.servicesList{
	color: #000;
	margin: 20px 0;
	font-size: 16px;

}
ul.servicesList li {
	margin: 4px 0;
}
/* 06 PORTFOLIO SETTINGS
--------------------------------------------------------------- */

#portfolio {
	background: #fff;
	padding: 50px; 
}

.works {
	display: flex;
	display: -webkit-flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: space-between;
	-webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-webkit-align-content: space-between;
}

.works article {
	position: relative;
	background: #fff;
	flex: 0 0 31.5%;
	-webkit-flex: 0 0 31.5%;
	margin: 0 0 25px;
	overflow: hidden;
	border: 1px solid #e1e1e1;
}
#brands {
	padding-bottom: 40px;	
}
.brands img {
	padding: 25px;
	opacity: 0.8;
	transition: opacity ease-in-out 200ms;
	cursor: pointer;
	display: inline-block;
}
.brands img:hover {
	opacity: 1;
}

.border {
	border:5px solid #fff;
	overflow: hidden;
}

.works  a:hover {
	color: #297d8c;
}

.works img {
	display: block;
	-webkit-transition: all 1000ms linear;
	-moz-transition: all 1000ms linear;
	-o-transition: all 1000ms linear;
	-ms-transition: all 1000ms linear;
	transition: all 1000ms linear;
	overflow: hidden;
	box-shadow: #000 0 0 0;
}

.works img:hover {
	-webkit-transform:scale(1.3);
	-moz-transform:scale(1.3);
	-ms-transform:scale(1.3);
	-o-transform:scale(1.3);
	transform:scale(1.3);
	-webkit-transition: all 5000ms linear;
	-moz-transition: all 5000ms linear;
	-o-transition: all 5000ms linear;
	-ms-transition: all 5000ms linear;
	transition: all 5000ms linear;
}


.caption {
	background: rgba(255,255,255, 0.85);
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-transform: uppercase;
	color: #297d8c;
	font-weight: 700;
}

/* 07 CONTACT SETTINGS
--------------------------------------------------------------- */

#contact { 
	padding: 50px; 
	background:#297d8c; 
	color:#fff; 
}
#contact a{color:#fff;}
#contact  h2.section_title, #contact h3.section_subtitle{color:#fff;}

.info {
	display: flex;
	flex-direction: column;
}
.info > div {
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
}
@media (min-width: 600px) {
	.info {
		flex-direction: row;
		justify-content: space-between;
		align-content: space-between;
	}	
	.info > div {
		flex: 0 0 33.33333%;
		border-bottom: 0;
		border-left: 1px solid rgba(255,255,255,0.4);
	}
	.info > div:first-child {
		border-left: none;
	}
}


.info .fa {
	font-size: 36px;
	margin: 0 0 10px 0;
}

.info h3 {
	color: #fff;
	margin: 0 0 15px 0;
	font-weight: 700;
	font-size: 16px;
}

/* Social icons */
.social {
	max-width: 250px;
	display: flex;
	display: -webkit-flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: space-between;
	-webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-webkit-align-content: space-between;
	margin: 0 auto;
}

.social a {
	flex: 0 0 30px;
	-webkit-flex: 0 0 30px;
	border: 2px solid #297d8c;
	height: 30px;
	line-height: 26px;
	font-size: 16px;
	color: #297d8c;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear
}

.social a:hover {
	background: #297d8c;
	color: #fff;
}

/* 08 FOOTER SETTINGS
--------------------------------------------------------------- */

footer {
	background: #fff;
}

footer .footer-social{
	color:#000; font-weight:bold; font-size:18px;
}

footer a{color: #297d8c !important;font-weight:bold; font-size:18px;}

.container_footer {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	flex-direction: column;    
}
@media (min-width:700px) {
	.container_footer {
		flex-direction: row;
	}	
	.container_footer div {
		flex: 0 0 33.33%;
	    vertical-align: middle;
	}
	.footer-left {
		text-align: left;
	}
	.footer-mid {
		text-align: center;
	}
	.footer-right {
		text-align: right;
	}
}

footer p {
	line-height: 64px;
	vertical-align: middle;
}

.footer-left a,
.footer-left span {
	display: inline-block;
	vertical-align: middle;
	line-height: 64px;
}
.footer-social svg {
	width: 40px;
	height: 40px;
	vertical-align: middle;
}
.footer-right a {
	line-height: 64px;
}
.footer-right svg {
	width: 30px;
	height: 30px;
}
.left, .right {	width: 50%;}

.left {
	float: left;
	text-align: left;
}

.left span {
	text-transform: uppercase;
}

.right {
	float: right;
	text-align: right;
	text-transform: uppercase;
}

.right a { color: #999 }

.right a:hover { color: #297d8c }

/* 09 RESPONSIVE SETTINGS
--------------------------------------------------------------- */

/* Width */
@media (max-width: 640px) {
	.burger {
		top: 25px;
		left: 25px;
	}

	.section_subtitle { margin: 0 0 30px 0; }
	#about, #contact { padding: 80px 25px; }
	
	#portfolio { padding: 80px 25px 65px; }
	
	.works article {
		flex: 0 0 48%;
		-webkit-flex: 0 0 48%;
		margin: 0 0 15px;
	}
	
	.container_footer { padding: 60px 25px; }
}

@media (max-width: 600px) {
	.burger {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}
}

@media (max-width: 480px) {
	.works article {
		flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
	}
}

@media (max-width: 360px) {
	.container_footer { 
		padding: 30px 10px; 
	}
}

/* Height */
@media (max-height: 568px) {
	#welcome { height: 100vh; }
}


/* Greg's Edits */
.topofpage * {
	vertical-align: middle;
}
.site-logo object,
.site-logo img {
	width: 90%;
	max-width: 100%;
	height: auto;
}
.threecol-list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
@media (min-width: 600px) {
	.threecol-list {
		flex-direction: row;
	}
	.threecol-list .servicesList {
		width: 30%;
	}
}
#mission svg {
	fill: #297D8C;
	width: 105px;
}
.mission-container {
	padding: 0 40px;
}
.site-logo {
	position: relative;
	padding: 10%;
}
.site-logo:after {
	content: " ";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 7%;
	left: 0;
}
@media (min-width: 600px) {
	.site-logo {
		padding: 0;
	}
	.site-logo object,
	.site-logo img {
		width: 56%;
	}
	.site-logo:after {
		background-image: linear-gradient(to right, white, white 20%, transparent 20%, transparent 80%, white 80%, white )
	}
}
@media (min-width: 800px) {
	.site-logo object,
	.site-logo img {
		width: 36%;
	}
	.site-logo:after {
		background-image: linear-gradient(to right, white, white 30%, transparent 30%, transparent 70%, white 70%, white )
	}
}
@media (min-width: 1100px) {
	.site-logo object,
	.site-logo img {
		width: 26%;
	}
	.site-logo:after {
		background-image: linear-gradient(to right, white, white 36%, transparent 36%, transparent 64%, white 64%, white )
	}
}
strong {
	font-weight: 700;
}
i {
	font-style: italic;
}
#worksTwo{display:none;}
