﻿/*******************
	01. Global Reset
*******************/
body, html  { height: 100%}
html, body, div, span, applet, object, iframe,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, b, u, i, center, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, caption{margin: 0;padding: 0;border: 0;outline: 0;font-size: 100%;vertical-align: baseline;}
body { line-height: 1}
ol, ul { list-style: none}
blockquote, q { quotes: none}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none}
:focus { outline: 0}
del { text-decoration: line-through}
h1 {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 24px;
	margin: 0;
	color: #fff;
	letter-spacing: 1px;
}
p {
	text-align: center;
	font-size: 14px;
	font-weight:300
}
a, button {
	text-decoration: none;
	color: #fff;
	-webkit-transition: all ease 300ms;
	-moz-transition: all ease 300ms;
	transition: all ease 300ms;
}
textarea, input {outline: none;}
.clear{clear:both;}
label {
	display: block;
	text-transform: uppercase;
	font-size: 14px;
	color: #777;
	padding: 0 0 8px 0;
	font-weight: bold;
}
input[type=text], input[type=password], input[type=email], textarea {
	display: block;
	padding: 0 2%;
	margin: 10px 0;
	min-height: 48px;
	width: 96%;
	line-height: 16px;
	border: none;
	background: transparent;
	color: #fff;
	border-radius: 3px;
	font-family: 'Open Sans', sans-serif;
	-webkit-transition: all ease 300ms;
	-moz-transition: all ease 300ms;
	transition: all ease 300ms;
	box-shadow: inset 0 0 0 2px #A5A5A5;
}
textarea {
	line-height: 1.5em;
	padding: 2%;
	height: 90px;
}
input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, textarea:focus {box-shadow: inset 0 0 0 2px #FFFA91;}
input[type=submit], input[type=button] {
	font-family: 'Open Sans', sans-serif;
	border: none;
	background: transparent;
	border-radius: 3px;
	font-size: 14px;
	box-shadow: inset 0 0 0 2px #A5A5A5;
	color: #A5A5A5;
	line-height: 46px;
	display: block;
	padding: 0 2%;
	cursor: pointer;
	-webkit-transition: all ease 300ms;
	-moz-transition: all ease 300ms;
	transition: all ease 300ms;
	margin: 0 auto;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}
input[type=submit]:hover, input[type=button]:hover {
	box-shadow: inset 0 0 0 2px #FFFA91;
	background: #FFFA91;
	color: #333;
}

/**************
	02. General 
**************/
body {
	font-family: 'Open Sans', helvetica, arial, sans-serif;
	font-weight: normal;
	background: #79058f;
	color: #FFF;
	margin: 0;
}

.container {
	position: absolute;
	height: 100%;
	width: 100%;
}
#shadow {
	background-image: -webkit-radial-gradient(50% 50%, ellipse, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	background-image: radial-gradient(50% 50%, ellipse, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%);
}
#shadow2 {
	background-image: -webkit-radial-gradient(50% 50%, ellipse, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
	background-image: radial-gradient(50% 50%, ellipse, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%);
}
.shadow {
	pointer-events: none;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
#overlay {
	background: url(../images/pat2.png);
}
.overlay {
	pointer-events: none;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}
.wrapper {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	width: 652px;
	min-width: 240px;
	height: auto;
	z-index: 2000;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.hide {
	opacity: 0;
}
.header {
	display: block;
	overflow: hidden;
}
.logo {
	text-align: center;
	position: relative;
	margin: 0 0 25px 0;
}
.logo span {
	font-family: 'Yellowtail', helvetica, arial, sans-serif;
	font-size: 48px;
	font-weight: normal;
}
.desc {
	display: block;
	text-align: center;
	position: relative;
	margin: 0 0 25px 0;
}

/*****************
	03. Count Down 
*****************/
#countdown {
	display: inline-block;
	width: 100%;
	margin-bottom: 25px;
}
.count {
	width: 25%;
	float: left;
	text-align: center;
	position: relative;
}
.count span {
	border: 3px solid #fff;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: block;
	margin: 0 auto;
	line-height: 120px;
	font-size: 36px;
	font-weight: 400;
}
.count p {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 1px;
	margin: 10px 0 0 0;
}
.count.last:after {
	content: '';
	border: none;
}
.count:after {
	content: '';
	position: absolute;
	top: 44%;
	border-top: 2px solid #fff;
	width: 38px;
	left: 144px;
}

/*****************
	04. More Icons 
*****************/
.more-info {
	width: 229px;
	display: block;
	position: relative;
	margin: 0 auto;
}
.more-info:before {
	content: '';
	position: absolute;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	width: 150px;
	top: 24px;
	left: -157px;
}
.more-info:after {
	content: '';
	position: absolute;
	border-top: 2px solid rgba(255, 255, 255, 0.5);
	width: 150px;
	top: 24px;
	right: -157px;
}
button {
	background: none;
	border: 2px solid #fff;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	display: inline-block;
	margin: 0 3px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
}

/*******************
	05. Tipsy Styles
*******************/
.tipsy {
	font-size: 13px;
	position: absolute;
	padding: 7px;
	z-index: 100000;
}
.tipsy-inner {
	background-color: rgba(0, 0, 0, 0.8);
	color: #FFF;
	max-width: 200px;
	text-align: center;
	line-height: 26px;
	padding: 0 10px;
	text-transform: uppercase;
	font-weight: 600;
}
.tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 7px dashed #000; }
.tipsy-arrow-n { border-bottom-color: #000; }
.tipsy-arrow-s {border-top-color: rgba(0, 0, 0, 0.8);}
.tipsy-arrow-e { border-left-color: #000; }
.tipsy-arrow-w { border-right-color: #000; }
.tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none;  border-left-color: transparent; border-right-color: transparent;}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -7px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
.tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }

/*******************
	06. Supersized Styles
*******************/
* { margin:0; padding:0; }
img { border:none; }
#supersized-loader { position:absolute; top:50%; left:50%; z-index:0; width:60px; height:60px; margin:-30px 0 0 -30px; text-indent:-999em; background:url(../images/progress.gif) no-repeat center center;}
#supersized {  display:block; position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }
#supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none; }
#supersized.speed img { -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; }	/*Speed*/
#supersized.quality img { -ms-interpolation-mode:bicubic; image-rendering: optimizeQuality; }			/*Quality*/
#supersized li { display:block; list-style:none; z-index:-30; position:fixed; overflow:hidden; top:0; left:0; width:100%; height:100%; background:#111; }
#supersized a { width:100%; height:100%; display:block; }
#supersized li.prevslide { z-index:-20; }
#supersized li.activeslide { z-index:-10; }
#supersized li.image-loading { background:#111 url(../img/progress.gif) no-repeat center center; width:100%; height:100%; }
#supersized li.image-loading img{ visibility:hidden; }
#supersized li.prevslide img, #supersized li.activeslide img{ display:inline; }

/*******************
	07. md-modal Styles
*******************/
.md-perspective,
.md-perspective body {
	height: 100%;
	overflow: hidden;
}
.container {
	min-height: 100%;
}
.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50%;
	width: 652px;
	min-width: 300px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
.md-show {
	visibility: visible;
}
.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(63, 63, 63, 0.5);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}
.md-show ~ .wrapper {
	opacity: 0;
	visibility: hidden;
}
.wrapper {transition: all 0.3s;}
.md-content {
	color: #fff;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
}
.md-content .head {
	padding: 0 !important;
	display: block;
	position: relative;
	text-align: center;
	line-height: 33px;
}
.md-content .head:before {
	content: "";
	position: absolute;
	left: 15%;
	right: 15%;
	border-top: 1px solid #FFF;
	top: 17px;
	width: 70%;
}
.md-content .head span {
	margin: 0;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(63, 63, 63, 0.95);
	background: #fff;
	position: relative;
	padding: 6px 12px;
	border-radius: 2px;
}
.md-content > div {
	padding: 20px 0;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}
.md-content > div p {
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 16px;
	line-height: 22px;
	font-style: italic;
}
.md-content #subscribe {
	width: 100%;
	display: inline-block;
	position: relative;
}
.md-content .social-icons {
	display: block;
	position: relative;
	margin: 0 0 20px 0;
	min-height: 50px;
}
.md-content .social-icons ul li {
    float: left;
    list-style-type: none;
    padding: 0;
	margin: 0.86%;
}
.md-content .social-icons ul li a {
    display: block;  
    width: 48px;  
    height: 48px;  
    font-size: 16px;  
    line-height: 46px;  
    text-align: center;  
    background: transparent;    
	box-shadow: inset 0 0 0 2px #fff;  
    color: #FFFFFF;  
	opacity: 0.7;
    -webkit-box-sizing: border-box;  
    -moz-box-sizing: border-box;  
    -ms-box-sizing: border-box;  
    box-sizing: border-box;
}
.md-content .social-icons ul li a:hover {
	opacity: 1;
	box-shadow: inset 0 0 0 4px #F8F492;
	color: #F8F492;
}
.md-content .contact {
	width: 100%;
	margin: 0 auto;
}
.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 0.8em;
}
/* Effect 12 */
.md-effect-12 .md-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.md-show.md-effect-12 ~ .md-overlay {
	background: rgba(63, 63, 63, 0.5);
} 
.md-effect-12 .md-content h3,
.md-effect-12 .md-content {
	background: transparent;
}
.md-show.md-effect-12 .md-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/*************************
	08. Feed Back Form
*************************/
#loading {
display: none;
color: #DDF053;
border: 2px solid #DDF053;
padding: 15px;
border-radius: 5px;
font-weight: 400;
font-size: 14px;
}
#success {
display: none;
color: #9CF053;
border: 2px solid #9CF053;
padding: 15px;
border-radius: 5px;
font-weight: 400;
font-size: 14px;
}

/************************
	08. Media Queries
************************/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.wrapper {width: 652px;}
.md-modal {width: 652px !important;}
}

@media only screen and (min-width: 601px) and (max-width: 767px) {
.wrapper {width: 90%;}
.md-modal {width: 90% !important;}
.md-content .social-icons {min-height: 110px !important}
.count:after {display: none;}
.md-content .social-icons ul li {margin: 0.4%;}
.md-content > div p {line-height: 22px !important;}
}

@media only screen and (min-width: 481px) and (max-width: 600px) {
.wrapper {width: 90%;}
.md-modal {width: 90% !important;}
.count span {width: 100px;height: 100px;line-height: 100px;font-size: 28px;font-weight: 400;}
.md-content .social-icons {min-height: 110px !important}
.more-info:before {width: 105px;top: 24px;left: -106px;}
.more-info:after {width: 105px;top: 24px;right: -106px;}
.count:after {display: none;}
.md-content .social-icons ul li {margin: 0.4%;}
.md-content > div p {line-height: 23px !important;}
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
.wrapper {width: 90%;}
.md-modal {width: 90% !important;}
.count span {width: 80px;height: 30px;line-height: 30px;font-size: 28px;font-weight: 400; border: none;}
.md-content .social-icons {min-height: 177px !important; margin: 0 0 10px 0 !important;}
.count:after {display: none;}
.more-info:before {width: 36px;top: 24px;left: -36px;}
.more-info:after {width: 36px;top: 24px;right: -36px;}
.md-content > div p {font-size: 15px !important;line-height: 23px !important; margin: 0 0 11px 0 !important;}
}