/*

	-------------------	
	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(http://fonts.googleapis.com/css?family=Montserrat);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,300);

/* 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 {
	background: #fff;
	font: 300 16px 'Open Sans', sans-serif;
	text-align: center;
	color: #777;
}

p {
	line-height: 1.5;
	margin-bottom:12px;
}

a {
	color: #75cad4;
	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;
	outline:none;
}

a:hover { color: #13394f; outline:none; }

img {
	max-width: 100%;
	height: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

h2 {
	font-size:1.5rem;
	margin-bottom:12px;	
}

h3 {
	margin-bottom:12px;	
}

.hidegallery { display: block; }

.hidden { display: block; }
.unhidden { display: none; text-align:center; }

.hidden2 { display: none; }
.unhidden2 { display: block; }

/* Section Titles */

.section_title {
	margin: 0 0 15px 0;
	color: #75cad4;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 6px;
}

.section_subtitle {
	margin: 0 0 40px 0;
	font: italic 18px 'Open Sans', sans-serif;
	text-transform: none;
}

/* 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
--------------------------------------------------------------- */

.contentContainerHome {
	background: url('../images/rotate/background-ii.jpg') no-repeat center bottom;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	width: 100%;
	min-height: 100%;
	position: relative;
}

#welcome {
	/*background: url('../images/rotate/background-ii.jpg') no-repeat center bottom;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;*/
	min-height: 740px;
	width: 100%;
	position: relative;
}

.fade {
	background: rgba(25,25,25, 0);
	width: 100%;
	height: 100%;
}

.topheader {
	background-color: #fff;	
}

/* Header Titles */
.header_title {
	color: #fff;
	font-size: 24px;
	letter-spacing: 5px;
	margin: 5px 0 10px 0;
}

.header_subtitle {
	margin-top:20px;
	color: #75cad4;
	font-size: 16px;
	letter-spacing: 6px;
	line-height: 24px;
}

/* Vertical centering */
.parent {display: table;}

.child {
    display: table-cell;
    vertical-align: top;
	padding-top:40px;
}

/* Navigation */
nav a {
	display: block;
	/*height: 33.3333vh;
	line-height: 33.3333vh;*/
	height: 10vh;
	line-height: 10vh;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: 4px;
	color:#fff;
}

nav a:hover { 
	color: #191919;
	background: #fff;
}

nav ul {
	background: #75cad4; /*#191919*/
	color:#fff;
	width: 30%;
	position:absolute;
	top:20px;
	left:69px;
}

nav ul li:hover {
	background: #fff;
}

.hide { display: none }

.burger {
	background: #13394f;
	width: 50px;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: 20px;
	left: 20px;
	cursor: pointer;
	border: 2px solid #75cad4;
}

.logo {
	margin: 0 auto;
	padding: 35px 15px 20px 15px;	
	text-align:center;
}

#twitter {
	position:absolute;
	top:50px;
	right:130px;
	width:30px;
	min-width:30px;
	height: 30px;
	line-height: 26px;	
}

#pinterest {
	position:absolute;
	top:50px;
	right:90px;
	width:30px;
	min-width:30px;
	height: 30px;
	line-height: 26px;
}

#instagram {
	position:absolute;
	top:50px;
	right:50px;	
	width:30px;
	min-width:30px;
	height: 30px;
	line-height: 26px;
}

#facebook {
	position:absolute;
	top:50px;
	right:50px;	
	width:30px;
	min-width:30px;
	height: 30px;
	line-height: 26px;
}



/* 05 ETHOS SETTINGS
--------------------------------------------------------------- */

#ethos { padding: 60px 50px; 
         background: url('../images/opaque.png') no-repeat center center;
	     background-size: cover;
		 background-color:#fff;
		 text-align: center;  }
		 
#ethos p {
	color:#fff;	
	font-size:1.2rem;
}

#ethos h3 {
	color:#75cad4;
	font-size:1.3rem;	
}

.button {
	margin: 40px 0 0;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border: 2px solid #75cad4;
	font-family: 'Montserrat', sans-serif;
	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
}

.button:hover {
	background: #75cad4;
	color: #fff;
}

/* 06 AUDITS SETTINGS
--------------------------------------------------------------- */

#audits {
	background: #0c486c;
	padding: 60px 50px 75px;
	text-align:center;
}

#audits p {
	color:#fff;
	font-size:1.2rem;
}

#audits h3 {
	font-size:1.3rem;	
}

.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;
}

.border {
	border:5px solid #fff;
	overflow: hidden;
}

.works  a:hover {
	color: #75cad4;
}

.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.7);
	-moz-transform:scale(1.7);
	-ms-transform:scale(1.7);
	-o-transform:scale(1.7);
	transform:scale(1.7);
	-webkit-transition: all 3000ms linear;
	-moz-transition: all 3000ms linear;
	-o-transition: all 3000ms linear;
	-ms-transition: all 3000ms linear;
	transition: all 3000ms linear;
}


.caption {
	background: rgba(255,255,255, 0.85);
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #75cad4;
}

/* 07 TRAINING SETTINGS
--------------------------------------------------------------- */

#training {  
    padding: 60px 50px; 
    background: url('../images/training-background.jpg') no-repeat center center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background-color:#314450; }

.button {
	margin: 40px 0 0;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border: 2px solid #75cad4;
	font-family: 'Montserrat', sans-serif;
	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
}

.button:hover {
	background: #75cad4;
	color: #fff;
}

#training p {
	color:#fff;
	font-size:1.2rem;
}

#training h3 {
	color:#75cad4;
	font-size:1.3rem;	
}

/* 08 CLIENTS SETTINGS
--------------------------------------------------------------- */

#clients { background: #13394f; padding: 60px 50px; }

.button {
	margin: 40px 0 0;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border: 2px solid #75cad4;
	font-family: 'Montserrat', sans-serif;
	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
}

.button:hover {
	background: #75cad4;
	color: #fff;
}

#clients p {
	color:#fff;
	font-size:1.2rem;
}

#clients h3 {
	color:#75cad4;
	font-size:1.3rem;	
}

/* 09 CONTACT SETTINGS
--------------------------------------------------------------- */

.clear30 {
	clear:both;
	height:30px;	
}

#contact { padding: 70px 50px; 
}

#contact p {
	font-size:1.1rem;
}

.info {
	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 0 50px 0;
}

.info div {
	flex: 0 0 31.5%;
	-webkit-flex: 0 0 31.5%;
	border-left: 0px solid #e1e1e1;
	border-right: 0px solid #e1e1e1;	
}

.info div:first-child,
.info div:last-child {
	border: 0;
}

.info .fa {
	font-size: 36px;
	margin: 0 0 10px 0;
}

.info h3 {
	color: #75cad4;
	margin: 0 0 15px 0;
}

/* 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 #75cad4;
	height: 30px;
	line-height: 26px;
	font-size: 16px;
	color: #75cad4;
	-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: #75cad4;
	color: #fff;
}

/* 10 FOOTER SETTINGS
--------------------------------------------------------------- */

footer {
	background: #f5f5f5;
}

.container_footer {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	padding: 50px 70px;
	overflow: hidden;
}

footer p {
	line-height: 1;
}

.left, .right {	width: 50%;}

.left {
	float: left;
	text-align: left;
}

.left span {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}

.right {
	float: right;
	text-align: right;
	text-transform: uppercase;
}

.right a { color: #999 }

.right a:hover { color: #75cad4 }



/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }
		
	scale-with-grid {
		max-width: 100%;
		height: auto; }


/* 11 RESPONSIVE SETTINGS
--------------------------------------------------------------- */

/* Width */
@media (max-width: 640px) {
	.burger {
		top: 15px;
		left: 15px;
	}

	.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%;
	}
	
	.info div {
		flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
		padding: 20px 0;
		border-left: 0;
		border-right: 0;
		border-bottom: 1px solid #e1e1e1;
		border-top: 1px solid #e1e1e1;
	}
	
	.info div:first-child { padding-top: 0;}

	.info div:last-child { padding-bottom: 0;}

	.info { margin: 0 0 35px 0; }
		
	.social { max-width: 200px; }
}

@media (max-width: 360px) {

	.container_footer { padding: 30px 25px; }
	.left, .right {
		width: 100%;
		text-align: center;
	}
	.left { padding: 0 0 15px 0;}
}

/* Height */
@media (max-height: 568px) {
	#welcome { height: 100vh; }
}

/**********************
	12. Scroller  
**********************/

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    text-align: center;
    z-index: 99999999;
    background-color: #75cad4;
    color: #fff;
    width: 50px;
    height: 48px;
    line-height: 48px;
    right: 30px;
    bottom: 30px;
    padding-top: 2px;
    /*border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;*/
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
    background-color: #13394f;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
    opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	line-height: inherit;
}

/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {

/* Navigation */
nav a {
	display: block;
	/*height: 33.3333vh;
	line-height: 33.3333vh;*/
	height: 6vh;
	line-height: 4vh;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	color:#fff;
}

nav a:hover { 
	color: #191919;
	background: #fff;
}

nav ul {
	background: #75cad4; /*#191919*/
	color:#fff;
	width: 70%;
	position:absolute;
	top:15px;
	left:60px;
}

nav ul li:hover {
	background: #fff;
}

.hidegallery { display: none; }
.hidden { display: none; }
.unhidden { display: block; }

.section_title {
	margin: 0 0 15px 0;
	color: #75cad4;
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

#ethos { padding: 40px 20px; 
         background: url('../images/opaque.png') no-repeat center center;
	     background-size: cover;
		 background-color:#fff;
		 }

#ethos p {
	text-align: left;	
}

#audits {
	background: #0c486c;
	padding: 40px 20px;
	text-align:center;
}

#audits p {
	text-align: left;	
}

#training {  
    padding: 40px 20px; 
    background: url('../images/training-background.jpg') no-repeat center center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background-color:#314450; }

#training p {
	text-align: left;	
}

#clients { 
	background: #13394f; 
	padding: 40px 20px; }

#clients p {
	text-align: left;	
}

#contact { padding: 40px 20px; 
}

#contact p {
	font-size:1.1rem;
	text-align: left;
}
.header_subtitle {
	margin-top:35px;
	color: #75cad4;
	font-size: 16px;
	letter-spacing: 4px;
	line-height: 24px;
}

}


/* Tablet Landscape & Portrait Orientation */
	@media only screen and (min-device-width : 768px) 
	and (max-device-width : 1024px) {
	
	nav a {
	display: block;
	/*height: 33.3333vh;
	line-height: 33.3333vh;*/
	height: 6vh;
	line-height: 4vh;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 1px;
	color:#fff;
}

	nav a:hover { 
	color: #191919;
	background: #fff;
}

	nav ul {
	background: #75cad4; /*#191919*/
	color:#fff;
	width: 35%;
	position:absolute;
	top:20px;
	left:69px;
}


	
	}