/* 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;
}
/* 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               */
/*                                */
/*    Black:   #191919            */
/*    Blue:    #4ea0c9            */
/*    Purple:  #3c298f            */
/*    Red:     #c3010d            */
/*                                */
/*================================*/

/*===== Main Styles =====*/
body {
background: url("../images/watermark.png") no-repeat fixed top -50px right #fafafa;
margin: 0;
padding: 0;
line-height: 1;
}

/*===== Divs =====*/
#wrapper {
position: fixed;
width: 98%;
top: 45%;
left: 50%;
margin-top: -275px;
margin-left: -275px;
}

.logo {
background: url("../images/logo.png") no-repeat center center;
width: 500px;
height: 277px;
}

#content {
margin: 30px 0 0 0;
padding: 0 10px;
max-width: 600px;
text-align: center;
}

#baseline {
position: fixed;
bottom: 20px;
left: 50%;
margin-left: -95px;
}

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


/*===== Div Separator =====*/
.clearer {
font-size: 0px;
line-height: 0px;
display: block;
margin: 0px;
padding: 0px;
clear: both;
height: 0px;
width: auto;
}

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

.left {
text-align: left;
}

.right {
text-align: right;
}

.bold {
font-weight: 700;
}

.italic {
font-style: italic;
}

/*===== Headers =====*/
h1 {
color: #191919;
font-size: 1.6em;
font-family: 'Poppins', sans-serif;
margin: 0 0 20px 0;
padding: 0;
display: block;
line-height: 1.5em;
}

/*===== Paragraphs =====*/
p.main-text {       
color: #191919; 
font-size: 1em; 
font-family: 'Poppins', sans-serif;
padding: 0;
line-height: 1.7em;
}

p.large-text {       
color: #3c298f; 
font-size: 1.5em; 
font-family: 'Poppins', sans-serif;
font-weight: 900;
padding: 0;
line-height: 1.7em;
}

p.medium-text {       
color: #c3010d; 
font-size: 1.2em; 
font-family: 'Poppins', sans-serif;
font-weight: 400;
padding: 0;
line-height: 1.7em;
}

/*===== Links =====*/
a.blank:link , a.blank:visited, a.blank:active {
text-decoration: none;
}

a.link:link, a.link:visited, a.link:active {
color: inherit;
font-size: 1em; 
font-family: 'Poppins', sans-serif;
text-decoration: none;
margin: 0;
-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;
}

a.link:hover {
color: #4ea0c9;
text-decoration: underline;
}

/*===== Telephone Numbers =====*/
.tel,.tel:visited { /*for small screens */ 
color: inherit; 
padding: 0; 
font-family: 'Open Sans', sans-serif;
text-decoration: none; 
cursor: default;
} 

.tel:hover,.tel:focus { 
color: inherit; 
}

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

img.header-social {
border: 0;
height: auto;
max-width: 100%;
margin: 0 20px 0 0;
-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;
}

img.header-social.last {
margin: 0;	
}

/*********************************************************************/
/*===== Media Queries for Mobile =====*/
@media screen and (max-width: 399px) 
			  and (min-width: 320px) {
				  
body {
background: url("../images/watermark.png") no-repeat fixed top -50px right -150px #fafafa;
}

.logo {
position: absolute;
background: url("../images/logo-260.png") no-repeat center center;
width: 260px;
height: 240px;
left: 0;
right: 0;
margin: 0 auto;
}

#wrapper {
width: 100%;
position: relative;
top: unset;
left: unset;
margin: 0;
padding: 50px 10px 0;
}

#content {
position: absolute;
width: 100%;
top: 325px;
left: 0;
right: 0;
margin: 0 auto;
}

h1 {
font-size: 1.4em;
}		  

}


/*********************************************************************/
/*===== Mobile Landscape =====*/
@media screen and (max-width: 480px) 
			  and (min-width: 400px) {
				  
body {
background: url("../images/watermark.png") no-repeat fixed top -50px right -150px #fafafa;
}

.logo {
position: absolute;
background: url("../images/logo-center.png") no-repeat center center;
width: 300px;
height: 277px;
left: 0;
right: 0;
margin: 0 auto;
}

#wrapper {
width: 100%;
position: relative;
top: unset;
left: unset;
margin: 0;
padding: 50px 10px 0;
}

#content {
position: absolute;
width: 100%;
top: 350px;
left: 0;
right: 0;
}		 
			  
}


/*********************************************************************/
/*===== Small Tablet Portrait ======*/
@media screen and (max-width: 605px) 
			  and (min-width: 481px) {
				  
body {
background: url("../images/watermark.png") no-repeat fixed top -50px right -150px #fafafa;
}

.logo {
position: absolute;
background: url("../images/logo-center.png") no-repeat center center;
width: 300px;
height: 277px;
left: 0;
right: 0;
margin: 0 auto;
}

#wrapper {
width: 100%;
position: relative;
top: unset;
left: unset;
margin: 0;
padding: 50px 10px 0;
}

#content {
position: absolute;
width: 100%;
top: 350px;
}		  

}