/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
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;
	box-sizing: border-box;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out; 
	-o-transition: all 0.5s ease-in-out; 
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
/* 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;
}
p + p { 
margin-top: 0.5em;
}
strong {
font-weight: bold;
}

/*================================*/
/*          Colours               */
/*                                */
/*     Dark Blue:  #0a3555        */
/*                                */
/*                                */
/*================================*/

/*===== Main Styles =====*/
body {
background-color: #ffffff;
background-image: url("../images/background-01.jpg");
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
height: 100vh;
line-height: 1;
}

/*===== Divs =====*/
#logo {
display: block;
float: left;
width: 500px;
margin: 0;
padding: 0;
}

.main-content {
height: 100%;
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
}

.main-content::before,
.main-content::after,
.main-left,
.main-right {
    content: '';
    position: absolute;
    background-color: #8acfe0;
}
.main-content::before {
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
}
.main-content::after {
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
}
.main-left {
    top: 0;
    left: 20px;
    width: 2px;
    height: 100vh;
}
.main-right {
    top: 0;
    right: 20px;
    width: 2px;
    height: 100vh;
}

.content {
width: 100%;
max-width: 1600px;
padding: 0 50px;
}


/*===== Containers =====*/
.form-wrapper {
padding: 40px 0 0;
margin: 0;
overflow: hidden;
}

/*===== General =====*/
.center {
text-align: center;
}

.left {
text-align: left;
}

.right {
text-align: right;
}

.light {
font-weight: 300;
}

.normal {
font-weight: 400;
}

.medium {
font-weight: 500;
}

.semibold {
font-weight: 600;
}

.bold {
font-weight: 700;
}

.extrabold {
font-weight: 900;
}

.italic {
font-style: italic;
}

.uppercase {
text-transform: uppercase;
}

.darkshadow {
text-shadow: 2px 2px 2px #000000;
}

.hidden {
opacity: 0;
}

.hide {
display: inline-block;
}

.noover {
overflow: visible;
}

.clear {
clear: both;
}

/*===== Spans =====*/


/*===== Headers =====*/
header.sub {
padding: 0 0 20px 0;
margin: 0;
overflow: hidden;
}

h1 {
color: #0a3555;
font-size: 3em;
margin: 0;
padding: 0;
display: block;
line-height: 1.3em;
}

h2 {
color: #0a3555;
font-size: 2.5em;
margin: 0;
padding: 0;
display: block;
line-height: 1.3em;
}

h2.white {
color: #ffffff;
}

h3 {
color: #0a3555;
font-size: 2em;
margin: 0;
padding: 0;
display: block;
line-height: 1.3em;
}

h3.white {
color: #ffffff;
}

h4 {
color: #0a3555;
font-size: 1.6em;
margin: 0;
padding: 0;
display: block;
line-height: 1.3em;
}

h4.white {
color: #ffffff;
}

/*===== Paragraphs =====*/


/*===== Form Fields =====*/
.editor-field {
background: none repeat scroll 0 0 transparent;
border: 0 none;
display: block;
margin: 0;
outline: 0 none;
padding: 0;
}

input.contact {
border: none;
border-radius: 10px;
color: #454545;
font-family: 'Montserrat', sans-serif;
font-size: 1.1em;
height: 35px;
line-height: 18px;
margin-bottom: 10px;
padding: 10px;
width: 325px;
outline: none;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out; 
-o-transition: all 0.5s ease-in-out; 
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}

input.contact:focus {
outline: none;
}

input.contact.error {
border: 1px solid red;
}

/*===== Images =====*/
img {
border: 0;
height: auto;
max-width: 100%;
}

/*===== Animations =====*/

/*=== Fade In  ===*/
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; } }
.fadeIn { animation-name: fadeIn; }

/*=== Fade In Down ===*/
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -100%, 0); }
  to { opacity: 1; transform: none; } }
.fadeInDown { animation-name: fadeInDown; }

/*=== Fade In Up ===*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: none; } }
.fadeInUp { animation-name: fadeInUp; }

/*=== Fade In Left ===*/
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate3d(-30px, 0, 0) }
  to { opacity: 1; transform: none; } }
.fadeInLeft { animation-name: fadeInLeft; }

/*=== Fade In Right ===*/
@keyframes fadeInRight {
  from { opacity: 0; transform: translate3d(100%, 0, 0); }
  to { opacity: 1; transform: none; } }
.fadeInRight { animation-name: fadeInRight; }

.animatein.in-view {  
animation: fadeIn;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: both;
backface-visibility: hidden;
}

.animateleft.in-view {  
animation: fadeInLeft;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: both;
backface-visibility: hidden;
}

.animateright.in-view {  
animation: fadeInRight;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: both;
backface-visibility: hidden;
}

.animatedown.in-view {  
animation: fadeInDown;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: both;
backface-visibility: hidden;
}

.animateup.in-view {  
animation: fadeInUp;
animation-duration: 1s;
animation-delay: 0s;
animation-fill-mode: both;
backface-visibility: hidden;
}

/*=== Optional Delays  ===*/
.one { animation-delay: 0.2s !important; }
.two { animation-delay: .6s !important; }
.three { animation-delay: 1s !important; }
.four { animation-delay: 1.4s !important; }
.five { animation-delay: 1.8s !important; }

/*********************************************************************/
/*===== Media Queries for Mobile =====*/
@media screen and (max-width: 480.99px) 
			  and (min-width: 320px) {

body {
background-color: #ffffff;
background-image: url("../images/background-02.jpg");
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
}

#logo {
float: none;
margin: 0 auto;
width: 250px;
}

.content {
height: 100%;
padding: 40px 20px 0 20px;
}

.form-wrapper {
text-align: center;	
}

h3 {
font-size: 1.3em;
}

input.contact {
font-size: 1em;
width: 225px;
height: 25px;
}

}


/*********************************************************************/
/*===== Mobile Landscape =====*/
@media screen and (max-width: 600.99px) 
			  and (min-width: 481px) {
			  
body {
background-color: #ffffff;
background-image: url("../images/background-02.jpg");
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
}

#logo {
float: none;
margin: 0 auto;
width: 300px;
}

.content {
height: 100%;
padding: 40px 20px 0 20px;
}

.form-wrapper {
text-align: center;	
}

h3 {
font-size: 1.6em;
}

input.contact {
font-size: 1em;
width: 250px;
height: 25px;
}			  
			  
}


/*********************************************************************/
/*===== Small Tablet Portrait ======*/
@media screen and (max-width: 768.99px) 
			  and (min-width: 601px) {
			  

body {
background-color: #ffffff;
background-image: url("../images/background-02.jpg");
background-repeat: no-repeat;
background-position: top center;
background-size: cover;
}

#logo {
float: none;
margin: 0 auto;
width: 400px;
}

.content {
height: 100%;
padding: 40px 20px 0 20px;
}

.form-wrapper {
text-align: center;	
}

h3 {
font-size: 1.8em;
}

input.contact {
width: 300px;
height: 30px;
}

}


/*********************************************************************/
/*===== Tablet Portrait =====*/
@media screen and (max-width: 850.99px) 
			  and (min-width: 769px) {

#logo {
width: 340px;
}	

h3 {
font-size: 1.6em;
}

input.contact {
font-size: 1em;
width: 300px; 
height: 25px;
}
			  
}


/*********************************************************************/
/*===== Tablet Portrait =====*/
@media screen and (max-width: 1250px) 
			  and (min-width: 851px) {

#logo {
width: 400px;
}	

h3 {
font-size: 1.8em;
}

input.contact {
height: 30px;	
}
			  
}