/*
*/


/* 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 15px 'Open Sans', sans-serif;
	text-align: center;
	color: #474747;
}

p {
	line-height: 2em;
}

p.text_left {
	text-align: left;
	margin-bottom: 15px;
}

.info p {
	line-height: 1.5em;
}

.payment {
	text-align: left;
	list-style-type: none;
	line-height: 1.5em;
	margin: 10px 0 0 5px;
}

.payment li {
	margin: 10px 0 20px 0;
}

a {
	color: #d66d5c;
	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 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
}


/* Section Titles */

.section_title {
	margin: 0 0 15px 0;
	color: #5C99D6;
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 3px;
}


.section_subtitle {
	margin: 0 0 40px 0;
	font: 18px 'Open Sans', sans-serif;
	text-transform: none;
	line-height: 35px;
}

.section_subtitle_1 {
	margin: 0 0 20px 0;
	font: 18px 'Open Sans', sans-serif;
	text-transform: none;
	line-height: 30px;
}

.section_subtitle_2 {
	margin: 0 0 5px 0;
	font: 18px 'Open Sans', sans-serif;
	text-transform: none;
	line-height: 30px;
}


/* 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
--------------------------------------------------------------- */

#welcome {
	/*background: url('../images/photo.jpg') no-repeat center top; */
	background-color: #fff;
	width: 100%;
	height: 420px;
	position: relative;
}

#foot_photo {
	background-image: url("../images/photo.jpg");
	margin: auto;
	background-repeat: no-repeat;
	width: 320px;
	height: 151px;
}
#nau_image {
	background: url('../images/nau_1.jpg');
	background-repeat: no-repeat;
	width: 200px;
    height: 262px;
  
}

#title_box {
	padding: 40px 5px 30px 5px;
	border-top: 10px #d66d5c solid;
	/*border-bottom: 4px #d66d5c solid;*/
	width: 100%;
}



.fade {
	background: rgba(255, 255, 255, 0.3);
	width: 100%;
	height: 100%;
  z-index: 3;
}

#mission {
	color: #4b7cad;
	margin: 0 auto 10px auto;
	text-align: left;
  width: 390px;
}

#mission p {
	text-align: left;
	margin-bottom: 15px;
	line-height: 1.7em;
	font-size: 15px;
}


/* Header Titles */

.header_title_bold {
	color: #5C99D6;
	font-size: 35px;
	letter-spacing: 4px;
	margin: 0 0 0 0;
	font-weight: bold;
	line-height: 40px;
}

.header_title {
	color: #5C99D6;
	font-size: 28px;
	letter-spacing: 4px;
	margin: 0 0 10px 0;
}

.header_subtitle {
	color: #4b7cad;
	font-size: 14px;
	letter-spacing: 3px;
	line-height: 25px;
}

.certified_subtitle {
	
	font-family: 'Montserrat', sans-serif;
	color: #4b7cad;
	font-size: 14px;
	letter-spacing: 3px;
	line-height: 25px;
	margin-top: 20px;
}

.city_subtitle {
	
	font-family: 'Montserrat', sans-serif;
	color: #4b7cad;
	font-size: 12px;
	line-height: 25px;
	padding-bottom: 5px;
}

.header_subtitle_color {
	color: #787878;
	font-size: 14px;
	letter-spacing: 3px;
}


/* Vertical centering */

.parent {
	display: table;
}

.child {
	display: table-cell;
	vertical-align: top;
}


/* Navigation */

nav a {
	/*display: block;*/
	height: 33.3333vh;
	line-height: 33.3333vh;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 3px;
}

nav a:hover {
	color: #ffffff;
	background: #fff;
}

nav ul {
	background: #fff;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	color: #ffffff;
}

nav ul li:hover {
	background: #fff;
	color: #ffffff;
}

.hide {
	display: none
}

.burger {
	background: rgba(255, 255, 255, 0.5);
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: absolute;
	top: 50px;
	left: 50px;
	cursor: pointer;
	border: 2px solid darkgray;
}




/* 05 ABOUT SETTINGS
--------------------------------------------------------------- */

#about {
	padding: 75px 50px 75px 50px;
    background: #F0F0F0;
}

.button {
	margin: 50px 0 0;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
	border: 2px solid #a67d4a;
	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: #a67d4a;
	color: #fff;
}


/* 06 PORTFOLIO SETTINGS
--------------------------------------------------------------- */

#portfolio {
	
	padding: 75px 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;
}

.border {
	border: 5px solid #fff;
	overflow: hidden;
}

.works a:hover {
	color: #a67d4a;
}

.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;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	color: #a67d4a;
}


/* 07 CONTACT SETTINGS
--------------------------------------------------------------- */

#contact {
	padding: 75px 50px 0px 50px;
    background: #F0F0F0;
}

.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 0px 0;
}

.info div {
	flex: 0 0 31.5%;
	-webkit-flex: 0 0 31.5%;
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
}

.info div:first-child, .info div:last-child {
	border: 0;
}

.info .fa fa-file-o{
	font-size: 36px;
	margin: 0 0 10px 0;
}

.info1 .fa {
	font-size: 36px;
	margin: 0 0 10px 0;
}

.info h3 {
	color: #5C99D6;
	margin: 0 0 15px 0;
}

.info1 h3 {
	color: #5C99D6;
	margin: 0 0 15px 0;
}


/* Social icons */

.social {
	max-width: 250px;
	display: inline;
	padding: 0 10 0 10px;
	margin: 0 auto;
}

.social a {
	border: 2px solid #a67d4a;
	max-width: 250px;
	height: 30px;
	line-height: 26px;
	font-size: 25px;
	color: #a67d4a;
	-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: #a67d4a;
	color: #fff;
}

.payment_div {
	padding: 0 10px;
}

.rcorners1 {
	background: #FFF;
	padding-top: 22px;
	width: 180px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
}

.rcorners1 p {
	line-height: 20px;
}

.facebook {}

.background_text p {
		line-height: 1.6em;
		margin-bottom: 10px;
}


/* 08 FOOTER SETTINGS
--------------------------------------------------------------- */

footer {
	
}

.container_footer {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 50px;
	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: #a67d4a
}


/* 09 RESPONSIVE SETTINGS
--------------------------------------------------------------- */


/* Width */

@media (max-height: 750px) and (max-width: 500px) {
	#nau_image { 
	background: url('../images/nau_sm.jpg') no-repeat center top;
	width: 130px;
    height: 178px;
	position: relative;
}
    
   #mission {
    width: 350px;
} 
    
    
	}



@media (max-width: 640px) {
	.burger {
		top: 25px;
		left: 25px;
	}
	.section_subtitle {
		margin: 0 0 30px 0;
	}
	#about, #contact {
		padding: 80px 25px;
	}
	.section_subtitle_1 {
		margin: 0 0 20px 0;
	}
	
	#contact {
		padding: 80px 25px 0px 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: 563px) {
	.header_subtitle {
		margin: 0px 30px 0 30px;
	}
}

@media (max-width: 600px) {
		.burger {
		top: 20px;
		left: 25px;
	}
    
    
    .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: 20;
	}
	.info {
		margin: 0 0 35px 0;
	}
	.social {
		max-width: 200px;
	}
	.header_title_bold {
		font-size: 30px;
		letter-spacing: 4px;
		line-height: 35px;
		margin: 30px 0 0 0;
	}
}

@media (max-width: 360px) {
	.container_footer {
		padding: 30px 25px;
	}
	.left, .right {
		width: 100%;
		text-align: center;
	}
	.left {
		padding: 0 0 15px 0;
	}
	.header_title_bold {
		font-size: 25px;
		letter-spacing: 4px;
		line-height: 25px;
		margin: 30px 0 10px 0;
	}
	.header_title {
		font-size: 20px;
		letter-spacing: 4px;
		margin: 10px 0 10px 0;
	}
	.header_subtitle {
		font-size: 12px;
		letter-spacing: 3px;
		line-height: 25px;
	}
	.header_subtitle_color {
		color: #787878;
		font-size: 12px;
		letter-spacing: 3px;
	}
	#foot_photo {
		background-image: url("../images/photo_small.jpg");
		margin: auto;
		background-repeat: no-repeat;
		width: 220px;
		height: 104px;
	}
	
	#mission {
    width: 350px;

} 
	
	
}
   



/* Height */

@media (max-height: 568px) {
	#welcome {
		height: 100vh;
	}
}

  table.center {
    margin-left:auto; 
    margin-right:auto;
		margin-bottom: 30px;
		width: 300px;
  }