﻿/* 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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend/*,
table, caption, tbody, tfoot, thead, tr, th, td*/ {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* End of Reset */

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

html {
	/*background-color: #f4f7f8;*/
}

body {
	background: #94acc1;
	/*height: 100%;*/
	text-align: center;
	font: 30px/36px sans-serif;
	font-weight: normal;
	font-family: 'Source Sans Pro', sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #fff; /* text color */
	letter-spacing: -0.035em;
	text-shadow: 0 1px 1px rgba(1,2,2,.1); /* drop shadow */
	-webkit-font-smoothing: /*subpixel-*/antialiased;
	/*-webkit-text-stroke: 0.25px;*/
}

.hidden {
	position: absolute;
	left: -99999px;
	top: -99999px;
	visibility: hidden;
}

#bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

#header {
	max-width: 960px;
	min-width: 480px;
	margin: 0 auto;
}

#header h1 {
	margin: 60px 0 30px;
}

#header p {
	font-size: 48px;
}

#content {
	max-width: 960px;
	min-width: 480px;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}

article {
	width: 360px;
	padding: 60px 60px;
	margin: 0 auto;
	float: left;
}

article:last-child {
	background: url("textpattern/images/separator-ver.png") 0px 96px no-repeat;
}

@media only screen and (max-width: 960px) {
article {
	float: none;
	border-bottom: 2px solid rgba(255,255,255,0.5);
	}
	
article:last-child {
	background: none;
	}
}

/*@media only screen and (max-device-width: 960px) {
article {
	float: none;
	border-bottom: 2px solid rgba(255,255,255,0.5);
	}
	
article:last-child {
	background: none;
	}
}*/


article h1 {
	margin: 60px 0 24px 0;
	font-size: 48px;
	font-weight: 700;
}

a.button {
	height: 56px;
	padding: 0 24px;
	margin-top: 60px;
	display: inline-block;
	border: 3px solid #fff; /* stroke */
	border-radius: 30px; /* border radius */
	background-clip: padding-box; /* prevents bg color from leaking outside the border */
	background-color: rgba(255,255,255,.15); /* layer fill content */
	text-align: center;
	color: #fff; /* text color */
	font-size: 24px;
	font-weight: 400;
	line-height: 50px;
	text-shadow: 0 1px 1px rgba(0,0,0,.1); /* drop shadow */
	text-decoration: none;
}

a.button:hover {
	border: 3px solid rgba(255,255,255,.75); /* stroke */
	background-color: rgba(255,255,255,.25); /* layer fill content */
}

a.button  img {
	margin: 0 0px 0 12px;
}

#footer {
	/*max-width: 960px;*/
	/*min-*/width: 480px;
	margin: 0 auto;
	padding: 36px 0 72px 0;
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 400;
}

/* Basic Typo */

a {
	text-decoration: underline;
	color: rgba(255,255,255,1);
	text-shadow: 0px 1px 1px rgba(0,0,0,0.25), 0px 0px 1px rgba(0,0,0,0.5);
	transition: linear;
	transition-duration: 0.15s;
}

a:hover {
	text-decoration: none;
	color: rgba(255,255,255,0.85);
	transition: linear;
	transition-duration: 0.15s;
}


a img {
	vertical-align: middle;
}

b, strong {
	font-weight: 700;
}

i, em {
	font-style: italic;
}




/* >>> Loading Animations <<< */

@keyframes load-opacity-1 {
0% {opacity: 0;}
25% {opacity: 0;}
100% {opacity: 1;}
}

@-webkit-keyframes load-opacity-1 {
0% {opacity: 0;}
25% {opacity: 0;}
100% {opacity: 1;}
}

@-moz-keyframes load-opacity-1 {
0% {opacity: 0;}
25% {opacity: 0;}
100% {opacity: 1;}
}

@-ms-keyframes load-opacity-1 {
0% {opacity: 0;}
25% {opacity: 0;}
100% {opacity: 1;}
}

@-o-keyframes load-opacity-1 {
0% {opacity: 0;}
25% {opacity: 0;}
100% {opacity: 1;}
}

body {
	animation-name: load-opacity-1;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-iteration-count: 1;
	
	-webkit-animation-name: load-opacity-1;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-iteration-count: 1;
	
	-moz-animation-name: load-opacity-1;
	-moz-animation-duration: 2s;
	-moz-animation-timing-function: ease;
	-moz-animation-iteration-count: 1;
	
	-ms-animation-name: load-opacity-1;
	-ms-animation-duration: 2s;
	-ms-animation-timing-function: ease;
	-ms-animation-iteration-count: 1;
	
	-o-animation-name: load-opacity-1;
	-o-animation-duration: 2s;
	-o-animation-timing-function: ease;
	-webkit-animation-iteration-count: 1;
	
}









