/**
 * @package Async Template
 */
 
/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Structure
 * 3.0 - Content
 *   3.1 - Home Logo
 *   3.2 - Headlines
 *   3.3 - Countdown
 *   3.4 - Home Navigation
 *   3.5 - Social Media
 *   3.6 - Twitter Timeline
 *   3.7 - Subscribe Form
 *   3.8 - Contact Form 
 *   3.9 - Message   
 * 4.0 - Overlay 
 * 5.0 - Image Static Background
 * 6.0 - Media Queries
 * ----------------------------------------------------------------------------
 */
 
 
/**
 * 1.0 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, 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-size: 100%;
}
body {
	background-color: #FFF;
	color: #444;
	font: 14px Arial, Helvetica, sans-serif;
	line-height: 10px;
	overflow: hidden;
	position: relative;
}
html, 
body {
    height: 100%;
}
ol, ul {
	list-style: none;
}
a img {
	border: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
a {
	color: #00b6de;
	text-decoration: none;
	-webkit-transition: color 0.2s linear;
	transition: color 0.2s linear;
}
a:visited {
	color: #00b6de;
}
a:focus,
a:active,
a:hover {
	color: #00b6de;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
p {
	margin-bottom: 18px;
}
hr {
	border: 0;
	border-top: 1px solid #ccc;
	height: 0;
	margin: 15px 0;
	padding: 0;
}
.cf:before,
.cf:after{
	content: "";
	display: table;
}
.cf:after{
	clear: both;
}


/**
 * 2.0 Structure
 * -----------------------------------------------------------------------------
 */

.section {
	display: none;
	height: 100%;
	width: 100%;
	padding: 0;
	position: absolute;
	top: 100%;
	left: 0;
	overflow: auto;
}
.container {
    display: table;
    height: 100%;
    margin: 0 auto;
    width: 740px;	
}
#home .container {
	background-image: none;
	padding: 0;
	width: 100%;
	text-align: center;
}


/**
 * 3.0 Content
 * -----------------------------------------------------------------------------
 */

.content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;	
	padding: 36px 0;
}
.content .title {
    color: #FFFFFF;
    font-family: Roboto,sans-serif;
    font-size: 60px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.content p {
    color: #FFFFFF;
    font-family: Roboto,sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}

.content a {
    color: #999;
    font-family: Roboto,sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
}
.section-close {
	color: #777;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 60px;
	font-weight: 100;
	line-height: 40px;
	cursor: pointer;
	height: 40px;
	opacity: 0.6;
    position: absolute;
	right: 60px;
	top: 60px;
	width: 40px;
	z-index: 1;
	text-align: center;
}
.section-close:hover {
    opacity: 1;
}
.overlay-close {
	position: absolute;
	right: 60px;
	top: 60px;
	z-index: 1;	
	width: 40px;
	height: 40px;
	opacity: 0.6;
	text-indent: -999em;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../images/overlay-close.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;		
}
.overlay-close:hover {
    opacity: 1;
}
#home .content {
    padding: 0;
}


/**
 * 3.1 Home Logo
 * -----------------------------------------------------------------------------
 */

#logo-home {
	text-decoration: none;
	z-index: 102;
	overflow: hidden;
	display: inline-block;
	margin-bottom: 18px;
}
#logo-home img {
	display: block;
    height: auto;
    max-width: 100%;	
}


/**
 * 3.2 Headlines
 * -----------------------------------------------------------------------------
 */

#headlines {
	display: block;
	text-align: center;
	height: 90px;
	overflow: show;
	margin-bottom: 4px;
}
#headlines li {
	color: #CCC;
	font-family: Roboto, sans-serif;
	font-size: 20px;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0);
	text-transform: uppercase;
}


/**
 * 3.3 Countdown
 * -----------------------------------------------------------------------------
 */

.countdown {
	text-align: center;
	margin-bottom: 60px;
}
.countdown .sec {
	padding: 0;
	text-align: center;
	width: 186px;
	display: inline-block;
	font-family: Roboto,sans-serif;
	margin: 0 6px;
	padding: 15px 0;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.15);
}
.countdown .number {
	display: block;
	font-size: 90px;
	line-height: 90px;
	text-align: center;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 6px;
	font-weight: 400;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
	-webkit-transition: all 0.2s linear 0s;
	transition: all 0.2s linear 0s;	
}
.countdown .desc {
	display: block;
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	color: #CCC;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}


/**
 * 3.4 Home Navigation
 * -----------------------------------------------------------------------------
 */

#nav-home {
	z-index: 101;
	width: 100%;
	text-align: center;
}
#nav-home li {
	display: inline-block;
    margin: 0 15px;
}
#nav-home a{
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 36px;
	display: block;
	font-family: Roboto, sans-serif;
	transition: all 0.2s linear 0s;
	padding: 0 24px;
	background-clip: padding-box;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 3px;
	border-radius: 3px;	
	-webkit-transition: all 0.2s linear 0s;	
	transition: all 0.2s linear 0s;
}
#nav-home a:hover{
	color: #FFFFFF;
	border-color: #FFFFFF;
}


/**
 * 3.5 Social Media
 * -----------------------------------------------------------------------------
 */

#social-media {
    margin-top: 60px;
    text-align: center;
    width: 100%;
    z-index: 101;
}
#social-media li {
	display: inline-block;
    margin: 0 6px;
}
#social-media li a {
	display: inline-block;
	font-size: 24px;
	line-height: 42px;
	width: 36px;
	height: 42px;
	-webkit-transition: all 0.2s ease 0s;	
	transition: all 0.2s ease 0s;
	color: rgba(255, 255, 255, 0.7);
	text-align: center;
}
#social-media li a:hover {
	color: #FFF;
}


/**
 * 3.6 Twitter Timeline
 * -----------------------------------------------------------------------------
 */

#timeline-wrap{
	min-height: 240px;
	vertical-align: middle;
}
#twitter .twitter-timeline.loading{
	background-color: rgba(0, 0, 0, 0.1) !important;
	cursor: default;
	-webkit-border-radius: 4px;	
	border-radius: 4px;
	color: #FFFFFF;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	margin: 60px 0 0;
	padding: 11px 24px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	width: 150px;
}
#twitter .twitter-timeline.loading span{
    background: url(../images/loading.gif) no-repeat scroll left center rgba(0, 0, 0, 0);
    padding-left: 20px;	
}


/**
 * 3.7 Subscribe Form
 * -----------------------------------------------------------------------------
 */

#subscribeform {
	text-align: center;
	padding-top: 24px;
}
#subscribeform input[type="text"] {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF;
	border-radius: 3px;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	margin: 0;
	padding: 12px 15px;
	position: relative;
	-webkit-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	width: 360px;
	z-index: 10;
}
#subscribeform input[type="text"]:focus {
	background-color: #000;
	border-color: #FFFFFF;
}
#subscribeform .submit-button {
	border: medium none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	position: relative;
	margin: 0 0 0 12px;
	background-color: rgba(0, 0, 0, 0.1);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	transition: all 0.2s linear 0s;
	padding: 9px 24px;
	background-clip: padding-box;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	width: 170px;	
	-webkit-transition: all 0.2s linear 0s;		
	transition: all 0.2s linear 0s;
}
#subscribeform .submit-button:hover {
	color: #FFFFFF;
	border-color: #FFFFFF;	
}
#subscribeform .submit-button.ajax {
	background-color: rgba(0, 0, 0, 0.3) !important;
	cursor: default;
	border-color: rgba(255, 255, 255, 0.3);
}
#subscribeform .submit-button .ajax {
	display: none;
	background: url(../images/loading.gif) no-repeat scroll left center;
	padding-left: 20px;
}
#subscribeform .submit-button.ajax .default {
	display: none;
}
#subscribeform .submit-button.ajax .ajax {
	display: inline-block;
}


/**
 * 3.8 Contact Form
 * -----------------------------------------------------------------------------
 */
 
#contactform {
	padding-top: 24px;
}
#contactform .has-text {
    display: block;
    float: left;
    margin-bottom: 24px;
    margin-left: 4%;
    position: relative;
    width: 48%;
}
#contactform .has-text.left {
    margin-left: 0;
}
#contactform .has-text.nm {
    margin-bottom: 0px;
}
#contactform .has-textarea {
    clear: both;
    margin-bottom: 24px;
    position: relative;
}
#contactform .has-submit {
	clear: both;
	margin-top: 15px;
}
#contactform input[type="text"], 
#contactform textarea {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.3);
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: normal;
	margin: 0;
	padding: 12px 15px;
	position: relative;
	-webkit-transition: all 0.3s linear 0s;
	transition: all 0.3s linear 0s;
	width: 100%;
	z-index: 10;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
#contactform input[type="text"]:focus, 
#contactform textarea:focus {
	border-color: #FFFFFF;
	background-color: #000;
}
#contactform .submit-button {
	border: medium none;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	position: relative;
	margin: 0 0 0 12px;
	background-color: rgba(0, 0, 0, 0.1);	
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: Roboto, sans-serif;
	padding: 9px 24px;
	background-clip: padding-box;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.3);
	-webkit-border-radius: 3px;
	border-radius: 3px;
	width: 170px;	
	-webkit-transition: all 0.2s linear 0s;	
	transition: all 0.2s linear 0s;
}
#contactform .submit-button:hover {
	color: #FFFFFF;
	border-color: #FFFFFF;	
}
#contactform .submit-button.ajax {
	background-color: rgba(0, 0, 0, 0.3) !important;
	cursor: default;
	border-color: rgba(255, 255, 255, 0.3);	
}
#contactform .submit-button .ajax {
	display: none;
	background: url(../images/loading.gif) no-repeat scroll left center;
	padding-left: 20px;
}
#contactform .submit-button.ajax .default {
	display: none;
}
#contactform .submit-button.ajax .ajax {
	display: inline-block;
}
#contact_subject,
#contact_company, 
#contact_website {
	display: none;
}


/**
 * 3.9 Message
 * -----------------------------------------------------------------------------
 */

.message {
	-webkit-border-radius: 3px;	
	border-radius: 3px;
	padding: 12px 20px;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 1px;
	font-weight: 600;
	display: none;
	margin-top: 24px;
	background-color: rgba(0, 0, 0, 0.3);
	position: relative;
}
.message.success {
    color: #3CB371;
}
.message.error {
    color: #FF0000;
}
.message-close {
	position: absolute;
	right: 6px;
	top: 5px;
	z-index: 1;	
	width: 30px;
	height: 30px;
	opacity: 0.6;
	text-indent: -999em;
	background-attachment: scroll;
	background-color: transparent;
	background-image: url(../images/message-close.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	-webkit-transition: all 0.2s;	
	transition: all 0.2s;	
}
.message-close:hover {
    opacity: 1;
}


/**
 * 4.0 Overlay
 * -----------------------------------------------------------------------------
 */

#main-overlay {
	background-attachment: scroll;
	background-repeat: repeat;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
	background-image: url(../images/main-overlay.pn);
	background-color: rgba(0, 0, 0, 0);
	background-position: left top;
}
.section.overlay {
	background-image: url(../images/section-overlay.pn);
	background-attachment: scroll;
	background-repeat: repeat;
	background-position: left top;
}


/**
 * 5.0 Image Static Background
 * -----------------------------------------------------------------------------
 */

#fullscreen-image {
    background-color: #FFF;
    height: 100%;
    left: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -2;
}
#fullscreen-image img {
    display: block;
    position: absolute;
}


/**
 * 6.0 Media Queries
 * -----------------------------------------------------------------------------
 */
 
@media screen and (max-width: 792px) {
	#headlines li {
        font-size: 20px;
		padding-left: 10px;
		padding-right: 10px;
    }
	.container {
		width: 670px;
	}
	.countdown .sec {
        width: 170px;
    }
}
@media screen and (max-width: 750px) {
    .container {
	    width: 400px;
    }
    #logo-home {
        width: 300px;
	    margin: 0 0 6px;
    }	
    #headlines {
        height: 48px;
	    margin-bottom: 30px;
    }
    #headlines li {
        height: 48px;
        line-height: 28px;
        font-size: 20px;
		padding-left: 10px;
		padding-right: 10px;
    }
    .countdown {
        margin-bottom: 18px;
    }
    .countdown .sec {
        width: 100px;
    }
    .countdown .number {
        font-size: 36px;
        line-height: 36px;
    }
    .countdown .desc {
	    font-size: 12px;
	    line-height: 12px;	
    }
    #nav-home li {
        margin: 0 6px;
    }
    #nav-home a {
        font-size: 11px;
        padding: 0 6px;
	    line-height: 24px;
    }
    #social-media {
        margin-top: 9px;
    }
    #social-media li {
        margin: 0 0;
    }
    #social-media li a {
        height: 36px;
        line-height: 36px;
    }
    .content .title {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 18px;
    }
    .content p {
        font-size: 12px;
        line-height: 18px;
	    margin-bottom: 9px;
    }
    .overlay-close {
        right: 12px;
        top: 9px;
    }
    #subscribeform {
        padding-top: 18px;
    }
    #subscribeform input[type="text"] {
        padding: 9px;
	    width: 100%;
	    font-size: 12px;
    }
    #subscribeform .submit-button {
        margin: 12px 0 0;
        padding: 6px 18px;
	    font-size: 12px;
    }
    #contactform {
        margin: 0;
        width: auto;
	    padding-top: 18px;
    }
    #contactform .has-textarea {
        float: none;
        width: auto;
        margin-left: 0;
	    margin-bottom: 15px;
    }
    #contactform .has-text {
        float: none;
        margin-left: 0;
        width: auto;
	    margin-bottom: 15px;	
    }
    #contactform input[type="text"], 
    #contactform textarea {
        padding: 9px;
        font-size: 12px;
    }
    #contactform .submit-button {
        margin: 0;
        padding: 6px 18px;
	    font-size: 12px;
    }
    .message {
        margin-top: 18px;
	    padding: 9px 30px;
    }
    .message-close {
        top: 3px;
    }
}
@media screen and (max-width:479px) {
    #logo-home {
        width: 240px;
    }	
    .container {
	    width: 260px;
    }
    #headlines li {
        font-size: 14px;
		
		padding-left: 16px;
		padding-right: 16px;
    }
    .countdown {
        margin-bottom: 36px;
    }
    .countdown .sec {
        width: 70px;
	    margin: 0 3px;
	    border-radius: 3px;
    }
    #nav-home li {
        margin: 0 3px;
    }
    #social-media {
        margin-top: 36px;
    }
    .message {
        letter-spacing: 0px;
    }
}