/* 
    CSS Reset, thanks to Eric Meyer.
    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, 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: Poppins;
	vertical-align: baseline;
}

/* 
    HTML5 display-role reset for older browsers
*/

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	background-color: #f0f5f5;	
}

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

/* 
    CSS Animations
*/

@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes moveright {
    from {right: 2000px;}
    to {right: 30px;}
}

@keyframes moveleft {
    from {right: -100px;}
    to {right: 30px;}
}

@keyframes colorchange {
    from {background-color: #f0f5f5;}
    to {background-color: #293d3d;}
}

/* 
    Layout
*/

div.top {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #f0f5f5;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.first {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #d1e0e0;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.second {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #b3cccc;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.third {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #94b8b8;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 7s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.fourth {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #75a3a3;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 9s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.fifth {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 0;
    background-color: #5c8a8a;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 9s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.sixth {
    width: 100%;
    margin: 0px;
    opacity: 0;
    background-color: #293d3d;
    position: relative;
    animation-name: fadein;
    animation-duration: 1.5s;
    animation-delay: 12s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.page_header {
    width: 100%;
    height: 250px;
    margin: 0px;
    opacity: 1;
    background-color: #f0f5f5;
    position: relative;
}
div.page_body {
    width: 100%;
    min-height: 300px;
    margin: 0px;
    padding-bottom: 20px;
    opacity: 1;
    background-color: #f0f5f5;
    position: relative;
}
div.page_footer {
    width: 100%;
    height: 100px;
    margin: 0px;
    opacity: 1;
    background-color: #f0f5f5;
    position: relative;
    animation-name: colorchange;
    animation-duration: 3s;
    animation-delay: 3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

/* 
    Typography
*/

h1 {
    font-family: 'Poppins', cursive;
    font-weight: bold;
    font-size: 50px;
    color: #334d4d;
    margin: 0px;
    text-align: left;
    padding: 25px 50px;
}

h2 {
    font-family: 'Poppins', cursive;
    font-size: 50px;
    font-weight: bold;
    color: #334d4d;
    margin: 0px;
    text-align: left;
    padding: 25px 50px;
}

div.page_body h2 {
    font-size: 30px;
    font-weight: bold;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.sixth h2 {
    color: #ffffff;
}

div.page_footer h2 {
    color: #ffffff;
}

hr {
    width: 20%;
    text-align:left;
    margin-left:50px;
    border-top: 3px solid #334d4d;
    border-radius: 5px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

p, ul {
    font-family: 'Poppins', cursive;
    font-size: 22px;
    line-height: 1.4em;
    color: #334d4d;
    margin: 0px;
    text-align: left;
    padding: 25px 25px 25px 50px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

ul {
    margin-left: 25px;
}

li {
    list-style-type: disc;
    list-style-position: outside;
}

ul ul {
	padding-top: 5px;
	padding-left: 0px;
	margin-left: 20px;
}

ul ul li {
	list-style-type: circle;
}

/* 
    Links
*/

a:link {
    color: #75a3a3;
    text-decoration: none;
}
a:visited {
    color: #75a3a3;
    text-decoration: none;
}
a:hover {
    color: #ff8800;
    text-decoration: none;
}

/* 
    Iconography
*/

span {
    position: absolute;
    right: 30px;
    bottom: 10px;
    color: #f0f5f5;
}
span.top {
    color: #334d4d;
    right: 30px;
    animation-name: moveleft;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.one {
    right: 2000px;
    animation-name: moveright;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.two {
    color: #d1e0e0;
    right: 2000px;
    animation-name: moveright;
    animation-duration: 3s;
    animation-delay: 4s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.three {
    color: #b3cccc;
    right: 2000px;
    animation-name: moveright;
    animation-duration: 3s;
    animation-delay: 6s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.four {
    color: #94b8b8;
    right: 2000px;
    animation-name: moveright;
    animation-duration: 3s;
    animation-delay: 8s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.five {
    color: #75a3a3;
    right: 2000px;
    animation-name: moveright;
    animation-duration: 3s;
    animation-delay: 11s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

span.top:hover {
    color: #ffffff;
}
span.one:hover {
    color: #ffffff;
}
span.two:hover {
    color: #ffffff;
}
span.three:hover {
    color: #ff8800;
}
span.four:hover {
    color: #ffffff;
}
span.five:hover {
    color: #ffffff;
}

div.page_footer span.prev {
    position: relative;
    left: 30px;
    top: 10px;
}

div.page_footer span.prev:hover {
    color: #ffffff;
}

div.page_footer span.next {
    position: absolute;
    right: 30px;
}

div.page_footer span.next:hover {
    color: #ffffff;
}

/*
    Contact Form
*/

div.page_body form {
    font-family: 'Poppins', cursive;
    font-size: 22px;
    line-height: 1.4em;
    color: #334d4d;
    margin: 0px;
    text-align: left;
    padding: 25px 25px 25px 50px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

div.page_body input {
    font-family: 'Poppins', cursive;
    font-size: 22px;
    line-height: 1.4em;
    color: #000000;
    height: 50px;
    width: 90%;
    padding: 0px 10px 0px 10px;
    margin: 0px 0px 20px 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #334d4d;
    border-radius: 10px;
}

div.page_body textarea {
    font-family: 'Poppins', cursive;
    font-size: 22px;
    line-height: 1.4em;
    color: #000000;
    height: 200px;
    width: 90%;
    margin: 0px 0px 20px 0px;
    padding: 0px 10px 0px 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #334d4d;
    border-radius: 10px;
}

div.page_body input.button {
    color: #ffffff;
    background-color: #334d4d;
    width: 50%;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff;
    border-radius: 10px;
    margin: 0px 0px 0px 40%;
}

div.page_body input.button:hover {
    color: #ffffff;
    background-color: #ff8800;
    width: 50%;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff;
    border-radius: 10px;
    margin: 0px 0px 0px 40%;
}
