/* ============================================================
	RESET - http://meyerweb.com/eric/tools/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-family: "Open Sans", sans-serif;
	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;
	&.in-transition {
        transition: transform 900ms ease;
    }
}

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;
}

/* ============================================================
	BOX SIZING & CLEARFIX
============================================================ */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/* ============================================================
	HTML & BODY
============================================================ */
body {
	background-color: #3c6aae;
	color: #3c6aae;
	font-family: "Open Sans", sans-serif;
	font-size: 20px;
	line-height: 1.5;
}

h3 {
    text-transform: uppercase;
}

/* ============================================================
	STRUCTURE
============================================================ */
.wrapper {
	width: 100%;
	margin: 0 auto;
}

main {
	display: block;
	background-color: #fff;
}

.container {
	width: 100%;
	height: 100%;
	overflow: auto;
	margin: 0 auto;
	padding: 0 20px;
}


/* ============================================================
	MENU
============================================================ */

.menu-collapsed {
	transition: all .1s;
	position: absolute;
	height: 36px;
	width: 36px;
	top: 45px;
	right: 10vw;
	z-index: 1;
	cursor: pointer;
}
.menu-collapsed ul {
	transition: all .05s;
	position: fixed;
	right: -9000px;
}

.bar {
	position: absolute;
	top: 15px;
	right: 5px;
	height: 6px;
	width: 30px;
	border-radius: 15px;
	background-color: rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 750px) {
	.menu-collapsed {
		top: 0;
		right: 0;
		margin: 100px calc(50% - 18px);
	}
}
	
.bar:before {
	transition: all .25s;
	content: "";
	position: absolute;
	left: 0;
	top: -8px;
	height: 6px;
	width: 30px;
	border-radius: 15px;
	background-color: rgba(255, 255, 255, 0.75);
}
.bar:after {
	transition: all .25s;
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	height: 6px;
	width: 30px;
	border-radius: 15px;
	background-color: rgba(255, 255, 255, 0.75);
}

.menu-expanded {

	transition: all .25s;
	position: fixed;
	z-index: 1;
	text-align: center;
	line-height: 18vmin;
	width: 80vmin;
	height: 75vmin;
	top: 45px;
	right: 10vw;
	border-radius: 3px;
	background-color: rgba(60, 106, 174, 0.85);
}
.menu-expanded ul {
	transition: all .05s;
	position: relative;
	left: 0;
	z-index: 2;
}
.menu-expanded a {
	display: block;
	width: 75%;
	margin: auto;
	text-decoration: none;
	color: white;
	font-size: 2em;
}
.menu-expanded a:hover {
	transition: all .15s;
	letter-spacing: 2px;
}
.menu-expanded .bar {
	background-color: transparent;
	transition: all .25s;
}
.menu-expanded .bar:before {
	transition: all .25s;
	content: "";
	transform: rotate(45deg);
	top: -0px;
}
.menu-expanded .bar:after {
	transition: all .25s;
	content: "";
	transform: rotate(-45deg);
	top: 0px;
}


/* ============================================================
	FOOTER
============================================================ */
footer {
	padding: 20px 0;
	color: white;
	text-align: center;
}
/* ============================================================
	TEXT LEVEL SEMANTICS
============================================================ */
a {
	text-decoration: none;
}


/* ============================================================
	50% BLOCK
============================================================ */

.halfblock {
	width: 100%;		
	text-align: center;
	float: left;
	padding: 20px 5vw;
}

@media screen and (min-width: 750px) {
	.halfblock {
		width: 50%;
		padding: 20px 3.5vw 20px 7vw;
	}
	.halfblock + .halfblock {
		padding: 20px 7vw 20px 3.5vw;
	}
}

/* ============================================================
	33% BLOCK
============================================================ */

.thirdblock {
	width: 100%;		
	text-align: center;
		float: left;
		margin: 20px 0;
		padding: 0 4vw; 
}

@media screen and (min-width: 750px) {
	.thirdblock {
		width: 33%;
		padding: 0 2vw;
	}
}

/* ============================================================
	SECTIONS
============================================================ */
section.module:last-child {
	margin-bottom: 0;
}
section.module p {
	margin-bottom: 40px;
}
section.module p:last-child {
	margin-bottom: 0;
}
section.module.content {
	padding: 70px 0;
}
section.module.parallax {
	height: 600px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}


/* ============================================================
	NIFTY ARROWS
============================================================ */

.fa {
    font-size: 16px !important;
}

.divider {
		width: 128px;
		height: 30px;
		margin: 0 auto;
		margin-top: 30px;
}
span.dividerarrow {
		float: left;
		margin: 10px;
		margin-top: -10px;
		line-height: 18px;
}
span.dividerleft, span.dividerright {
		width: 45px;
		height: 1px;
}
span.dividerleft {
		float: left;
}
span.dividerright {
	float: right;
}
span.white {
		background-color: white;
}
span.blue {
		background-color: #3c6aae;
}

/* ============================================================
	WELCOME MSG
============================================================ */

section.module.mountains {
	background-image: url("../images/mountains.jpg");
	height: 100vmin;
	overflow: visible;
}
@media screen and (max-width: 750px) {
	section.module.mountains {
		text-align: center;
	}
}
#logo {
	max-height: 100px;
	max-width: 80vw;
	margin: 10vmin auto 0;
	display: block;
}

#welcomemsg {
	color: white;
	text-align: center;
	font-size: 5.5vmin;
	position: relative;
	top: 36%;
	transform: translateY(-50%);
	font-weight: 400;
}
#welcomemsg strong {
	font-weight: 900;
} 

/* ============================================================
	WHY US
============================================================ */

#whyus {
	margin: auto;
	text-align: center;
	padding: 0 30px;
}
@media screen and (min-width: 750px) {
	#whyus { 
		width: 90vmin;
		padding: 0;
	}
}
#whyus h1 {
	font-size: 3em;
	text-transform: uppercase;
}

#whyus h2 {
	font-size: 2em;
	font-style: italic;
		opacity: 0.6;
}

#whyus p {
	line-height: 2em;
}

/* ============================================================
	SMALL FIRM & PERSONAL TOUCH
============================================================ */

section.module.wood {
	background-image: url("../images/wood.jpg");
}

@media screen and (min-width:550px) {
	#oursmallfirm, #ourpersonaltouch {
		height: 50vmin;
	}
}

#smallfirm, #personaltouch {
	width: 80vmin;
	max-width: 100%;
	margin: auto;
	text-align: center;
    text-shadow: 2px 2px 15px #000;
	color: white;
	font-weight: 900;
	font-size: 1.2em;
	height: auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	overflow: visible;
}


/* ============================================================
	OUR SERVICES	
============================================================ */

.our-services h2 {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}

.our-services h3 {
	text-align: center;
	font-weight: bold;
	font-size: 1.5em;
}

/* ============================================================
	GADGET IMAGE	
============================================================ */

section.module.gadgets {
	background-image: url("../images/gadgets.jpg");
	height: 50vmin;
}

/* ============================================================
	ABOUT US
============================================================ */

#about-us {
	background-color: #3c6aae;
	color: white;
	text-align: center;
}

#about-us h2 {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}

#about-us p {
	padding: 0 30px;
	margin: auto;
}

@media screen and (min-width: 750px) {
	#about-us p { 
		width: 60%;
	}
	#ourphotos .halfblock img {
		float: right; 
	}
	#ourphotos .halfblock + .halfblock img {
		float: left; 
	}
}

#ourphotos {
	height: 100%;
}

.ourphotos {
	border: 5px solid white;
	max-width: 70vw;
	border-radius: 100%;
	transition: all 1s ease-in-out;
}

.ourphotos:hover {
	border-radius: 20%;
	transition: all 1s ease-in-out;
}

.headshot {
    text-align: center;
    padding: 30px 0;
}

/* ============================================================
	TESTIMONIALS
============================================================ */

#testimonials {
	background-color: #3c6aae;
	color: white;
	text-align: center;
}

#testimonials h2 {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}

#testimonials p {
	font-style: italic;
	margin: 0 10px 20px;
}

#testimonials a {
	font-weight: bold;
	color: white;
}


/* ============================================================
	FORM
============================================================ */

#contact-us {
	font-size: 18px;
}

#contact-us a {
	color: #3c6aae;
	font-weight: bold;
}

#contact-us h2 {
	text-align: center;
	font-weight: bold;
	font-size: 2em;
}

#contactnumber, #contactnumber > div {
	width: 200px;
	height: 108px;
	margin: auto;
}

#contactnumber > div {
	display: table-cell;
	vertical-align: middle;
}

.fa-mobile {
	font-size: 6em !important;
	float: left;	
}

input {
	padding: 10px 15px;
	margin: 5px auto;
	border: 2px solid #3c6aae;
	border-radius: 3px;
	font-size: 18px;
}

.formbutton {
	padding: 10px 15px;
	text-shadow: 0px 0px 5px #3c6aae;
	margin: 20px auto;
	color: white;
	font-size: 4vmin;
	background-color: #3c6aae;
	border: 7px solid #3c6aae;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.formbutton:hover {
	background-color: transparent;
	transition: all 0.2s ease;
}

input[name="message"] {
	width: 100%;
	margin-top: 20px;
}

input[name="email"] {
	width: calc( 100% - 138px);
	margin-right: 10px;
}

input.formbutton {
    font-size: 16px;
}

::-webkit-input-placeholder {
	 color: #3c6aae;
}

:-moz-placeholder { /* Firefox 18- */
	 color: #3c6aae;	
}

::-moz-placeholder {	/* Firefox 19+ */
	 color: #3c6aae;	
}

:-ms-input-placeholder {	
	 color: #3c6aae;	
}

/* ============================================================
	MAKE iOS SUCK LESS
============================================================ */

@supports (-webkit-overflow-scrolling: touch) {
	section.module.parallax {
		background-attachment: scroll !important;
	}
}




















