/*
Name: Sirius
Version: 1.0
*/

/* =Table of Contents
--------------------------------------------------------------
	=Common Styles
	=Typography
	=Content Styles
	=Hero
	=SLider
	=Subscribe
	=Footer

*/


/* =Common Styles
-------------------------------------------------------------- */
body { 
	background: #fff;
	color: #63625a;
	font: normal 18px 'Lato', sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

img {
	vertical-align: middle;
}

a { text-decoration: none; }

a, video { outline: 0; }
button:focus { outline: 0; }

a:active, a:visited { 
    border: none;
    outline: none;
}

::selection { background: #000; color: #fff; }
::-moz-selection { background: #000; color: #fff; }


/* =Typography
-------------------------------------------------------------- */
/* Headings */
h1, h2, h3, h4, h5 {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 15px 0 15px 0;
}

h6 {
	color: #000;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	margin: 15px 0 15px 0;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5 {
	color: #fff;
}

.dark h6 {
	color: #93928a;
}

h1, h2 {
	letter-spacing: -0.05em; 
}

h3, h4, h5, h6 {
	text-transform: uppercase;
	letter-spacing: 0.075em;
}

h1 { font-size: 125px; }
h2 { font-size: 36px; }
h3 { font-size: 16px; }
h4 { font-size: 12px; }
h5 { font-size: 11px; }
h6 { font-size: 11px; }


/* Common */
p {
	font-size: 18px;
	line-height: 1.6em;
	margin: 15px 0 15px 0;
}

.dark p { color: #d1d1d1; }

p.sub-heading {
	color: #63625a; 
	font-size: 25px;
	font-family: 'Cardo', serif;
	font-weight: 400;
	font-style: italic;
}

.dark p.sub-heading { color: #fff; }


/* =Content Styles
-------------------------------------------------------------- */
.padded {
	padding-top: 100px;
	padding-bottom: 100px;
}

.padded.nb {
	padding-bottom: 50px;
}

.padded.nt {
	padding-top: 50px;
}

.center {
	text-align: center;
}

.separator {
	display: inline-block;
	width: 100px;
	height: 1px;
	background: #ffd200;
}

.separator.center {
	display: block;
	margin: 0 auto;
}

.button {
	display: inline-block;
	padding: 20px 50px;
	background: transparent;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.075em;
	z-index: 5;
	border: 2px solid #fff;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	   	-ms-border-radius: 4px;
	   	 -o-border-radius: 4px;
			border-radius: 4px;

	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	   	-ms-transition: all 0.2s ease-in-out;
	   	 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.button:hover {
	color: #000;
	background: #fff;
}

.icon.large {
	font-size: 64px;
	color: #000;
}




/* =Hero
-------------------------------------------------------------- */

.hero {
	display: block;
	overflow: hidden;
	width: 100%;
	background-position: center;
	background-size: cover;
	z-index: -1;	
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx) {
  .hero {
    background-image: url(../images/hero@2x.jpg);
    background-size: auto auto;
  }
}

.hero:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .4);
}


.hero .logo { margin-bottom: 20px; }
.hero .button { margin-top: 40px; }

.hero-content {
	clear: both;
}

/* =Slider
-------------------------------------------------------------- */

a.load-item {
	z-index: 1;
}

/* =Subscribe
-------------------------------------------------------------- */
form {
	margin-top: 40px;
	position: relative;
}

input.submit {
	/* Reset */
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;

	background: transparent;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 12px;
	color: #000;
	position: absolute;
	z-index: 1;
	right: 0;
	top: -10px;
	padding: 20px;
	letter-spacing: 0.075em;
}

input.submit:hover {
	/* Reset */
	color: #ffd200;
}

input.text {
	/* Reset */
	display: block;
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	-webkit-appearance: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;

	font-family: 'Cardo', serif;
	letter-spacing: -0.075em;
	font-style: italic;
	font-size: 25px;
	color: #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	width: 100%;
	padding: 0px 0px 15px 20px;
	line-height: 1em;
}

input.text:focus {
	color: #63625a;
}

.notification {
	display: none;
	float: left;
	width: 100%;
	padding: 10px;
	margin: 0;
	margin-top: 40px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
}

.notification.success {
	color: #5f9025;
	border: 1px solid #b3dc82; 
}

.notification.error { 
	color: #de5959;
	border: 1px solid #fbc4c4; 
}



/* =Footer
-------------------------------------------------------------- */
footer { background: #000; }

footer .logo {
	margin-bottom: 20px;
}

.social-list {
	margin-top: 30px;
}

.social-list li{
	display: inline-block;
	margin: 0px 5px;
}

.social-list a {
	color: rgba(255,255,255,.5);
	font-size: 20px;

	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	   	-ms-transition: all 0.2s ease-in-out;
	   	 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.social-list a:hover {
	color: #fff;
}

.email {
	display: inline-block;
	color: rgba(255,255,255,.6);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	margin: 15px 0 20px 0;
	font-size: 12px;
	text-transform: uppercase; 

	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	   	-ms-transition: all 0.2s ease-in-out;
	   	 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
}

.email:hover {
	color: #fff;
}

.email2:hover {
	color: #000000;
}


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) { 

		.button {
			padding: 10px 25px;
			font-size: 10px;
		}

		.padded {
			padding-top: 50px;
			padding-bottom: 50px;
		}


		.separator {
			width: 	50px;
		}

		p.sub-heading { 
			font-size: 18px;
		}

		h1 { font-size: 50px; }
		h2 { font-size: 22px; }
		h3 { font-size: 14px; }
		h4 { font-size: 12px; }
		h5 { font-size: 11px; }
		h6 { font-size: 10px; }

		p {font-size: 12px; }
						
	    input.submit {
			/* Reset */
			font-size: 9px;
			top: -16px;
		}

		input.text {
			/* Reset */
			font-size: 14px;
			padding: 0px 0px 5px 20px;
		}

		.social-list a {
			color: rgba(255,255,255,.5);
			font-size: 14px;

			-webkit-transition: all 0.2s ease-in-out;
			   -moz-transition: all 0.2s ease-in-out;
			   	-ms-transition: all 0.2s ease-in-out;
			   	 -o-transition: all 0.2s ease-in-out;
					transition: all 0.2s ease-in-out;
		}

		.email {
			font-size: 8px;
		}

		a.load-item {
			visibility:hidden!important;
		}
		}


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {

		.button {
			padding: 10px 25px;
			font-size: 10px;
		}

		.padded {
			padding-top: 50px;
			padding-bottom: 50px;
		}

		.separator {
			width: 	50px;
		}

		p.sub-heading { 
			font-size: 18px;
		}

		h1 { font-size: 50px; }
		h2 { font-size: 26px; }
		h3 { font-size: 14px; }
		h4 { font-size: 12px; }
		h5 { font-size: 11px; }
		h6 { font-size: 10px; }

		p {font-size: 14px; }

		input.submit {
			/* Reset */
			font-size: 11px;
			top: -14px;
		}

		input.text {
			/* Reset */
			font-size: 18px;
			padding: 0px 0px 15px 20px;
		}

		.email {
			font-size: 10px;
		}

		a.load-item {
			visibility:hidden!important;
		}
						
   	  	}

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) { 


		h1 { font-size: 100px; }
		h2 { font-size: 30px; }
		h3 { font-size: 14px; }
		h4 { font-size: 12px; }
		h5 { font-size: 11px; }
		h6 { font-size: 10px; }

		p {font-size: 16px; }

	    input.submit {
			/* Reset */
			font-size: 11px;
			top: -14px;
		}

		input.text {
			/* Reset */
			font-size: 18px;
			padding: 0px 0px 5px 20px;
		}

    }

/* #IPAD
================================================== */

    /* Note: Design for a width of 1024px */

    @media only screen and (min-width: 1024px) and (max-width: 1200px) {

		.countdown {
			position: absolute;
			display: block;
			top: -50px;
			left: -6%;
		}

		.counter-column {
			height: 70px;
			margin-bottom: 	20px;	
		}
		
		.count-digit {
			font-size: 200px;
			line-height: 0.8em;
		}


		.count-name {
			font-size: 50px;
		}

						
   	  	}