html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, 
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: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* ------------------------------------------------------------------------------------
--  GENERAL 
------------------------------------------------------------------------------------ */
html, body{ 
	width:100%;
	height:100%;
	margin:0;
	padding:0;
    font-size:100%;
	overflow-x:hidden;
}
#pack-wrapper{
	float:left;
	width:100%;
    font-family:'Alegreya Sans', Helvetica, sans-serif!important;
	background:#111;
	color:#eee;
	line-height:1.5em;
}
#pack-wrapper img{
	max-width:100%;
	height:auto;
}
#pack-wrapper ::selection{
	color:#fafafa;
	background:#111111;
}
#pack-wrapper ::-moz-selection{
	color:#fafafa;
	background:#111111;
}
#pack-wrapper a{
	text-decoration:none;
	-moz-transition: 500ms ease-in;
    -o-transition: 500ms ease-in;
    -webkit-transition: 500ms ease-in;
    -ms-transition: 500ms ease-in;
    transition: 500ms ease-in;
	color:#ccc;
}
#pack-wrapper a:hover,
#pack-wrapper a:focus{
	color:#fff;	
}
/* ------------------------------------------------------------------------------------
--  BG (FIXED TOP)
------------------------------------------------------------------------------------ */
#fixed-top{
	width:100%;
	height:100%;
	position:fixed;
	z-index:0;
	background: #151515 url(images/bg.jpg) top center;
	background-size:cover;
}
@media only screen and
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
#fixed-top{	
    background: #151515 url(images/bg@2x.jpg) top center;
	background-size:cover;
  }
}
.bg{
	position:fixed;
	z-index:0;
	width:100%;
}
.landscape{
	margin:0 auto;
	width:60%;
	margin:0 20%;
	position:absolute;
	top:0;
	height:600px;
}
@media screen and (max-width:1024px){
.landscape{
	width:90%;
	margin:0 5%;		
	}
}
@media screen and (max-width:1023px){
.landscape{
	width:96%;
	margin:0 2%;		
	}
}
#notification{
    position: absolute;
    left: 0;
    top:0;
    width:100%;
    z-index:5;
    text-align:center;
    -webkit-animation: notification;
    animation: notification;	
	-webkit-animation-duration: 8s;
	animation-duration: 8s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay:3s;
	animation-delay:3s;	
}
@-webkit-keyframes notification{
    0%{
    top: 80%;
	opacity: 0.2;
    }
    20%{
    opacity:0.5;
    }
    100% {
    top: 1%;
	opacity: 1;
    }
}
@keyframes notification{
    0%{
    top: 80%;
	opacity: 0.2;
    }
    20%{
    opacity:0.5;
    }
    100% {
    top: 1%;
	opacity: 1;
    }
}
#notification h1{
    font-family: 'Condiment', cursive;
	font-size:8em;
	line-height:460px;
	color:#D6A754;
    -webkit-text-stroke: 1px rgba(234,222,185,0.5); /*#f3deb9*/
    -moz-text-stroke: 1px rgba(234,222,185,0.5); /*#f3deb9*/
    -o-text-stroke: 1px rgba(234,222,185,0.5); /*#f3deb9*/
    -ms-text-stroke: 1px rgba(234,222,185,0.5); /*#f3deb9*/
    text-stroke: 1px rgba(234,222,185,0.5); /*#f3deb9*/
    text-shadow:
               0 1px 0 #bd9042, 
               0 3px 0 #c18b2d,
               0 4px 0 #7f5813,
               0 7px 0 #d28806,
               0 10px 0 #573a08,
               0 12px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
}
@media screen and (max-width:640px){
#notification h1{
	display:none;		
	}
}
#copyright{
	position:absolute;
	bottom:40px;
	width:100%;
	z-index:6;
}
#copyright-inner{
	background:#111;
	display:table;
	margin:0 auto;
	padding:15px 30px;
	box-shadow:0 1px 20px rgba(0,0,0,0.8);	
	border:4px double rgba(255,255,255,0.1);
	border-width:4px;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    font-size:0.7em;
    text-transform:uppercase;
    letter-spacing:0.3em;
    text-align:center;
}
@media screen and (max-width:1280px) and (max-height:600px){
#copyright{
	bottom:100px;
}
}
@media screen and (max-width:640px){
#copyright{
	bottom:300px;		
	}
}
@media screen and (max-width:320px){
#copyright{
	bottom:200px;		
	}
}
/* ------------------------------------------------------------------------------------
--  MAIN GENERAL
------------------------------------------------------------------------------------ */
#main-wrap{
	position:absolute;
	top:460px;
	width:100%;
	z-index:10;
}
@media screen and (max-width:640px){
#main-wrap{
	top:260px;		
	}
}
#main{
	float:left;
	width:100%;
	background: #151515 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQIW2NgYGB4z4AAFUhsFAG4IsICMIBiLgBmEQcEyASpFQAAAABJRU5ErkJggg==);
}
.line{
	float:left;
	width:100%;
	height:40px;
	border-bottom:1px solid rgba(255,255,255,0.07);
	border-top:1px solid rgba(255,255,255,0.07);
	background:#151515;	
	box-shadow:0 20px 100px rgba(0,0,0,0.9);
}
.space{
	margin-bottom:460px;
}
@media screen and (max-width:640px){
.space{
	margin-bottom:260px;	
	}
}
.main-inner{
	float:left;
	width:60%;
	margin:50px 20%;
}
@media screen and (max-width:1600px){
.main-inner{
	width:80%;
	margin:50px 10%;		
	}
}
@media screen and (max-width:1024px){
.main-inner{
	width:90%;
	margin:50px 5%;		
	}
}
@media screen and (max-width:1023px){
.main-inner{
	width:96%;
	margin:50px 2%;		
	}
}
#logo{
	float:left;
	width:100%;
	margin:-190px 0 30px 0;
}
#logo-inner{
	background:#fff;
	display:table;
	margin:0 auto;
	padding:30px 4%;
	box-shadow:0 1px 20px rgba(0,0,0,0.8);	
	border:4px double rgba(255,255,255,0.1);
	border-width:4px;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    font-size:1.2em;
    text-transform:uppercase;
    letter-spacing:0.3em;
}
#logo-inner figure{
	float:left;
	width:100%;
}
@media screen and (max-width:640px){
#logo-inner figure{
	 width:70%;
	 margin:0 15%;
	}
}
.deco{
	float:left;
	width:100%;
	margin:0 0 30px 0;
}
.deco figure{
	float:left;
	width:20%;
	margin:0 40%;
}
.heading{
	float:left;
	width:100%;
}
.heading h2{
	text-align:center;
	font-size:3em;
	line-height:1em;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight:300;
    margin-bottom:30px;
}
@media screen and (max-width:1024px){
.heading h2{
	font-size:3.5em;	
	}
}
@media screen and (max-width:800px){
.heading h2{
	font-size:3em;	
	}
}
.heading h3{
	text-align:center;
	font-size:1.3em;
	text-transform:uppercase;
	letter-spacing:0.2em;
    font-family: 'Alegreya Sans', sans-serif;
    font-weight:300;
}
@media screen and (max-width:1024px){
.heading h3{
	font-size:1.1em;	
	}
}
/* ------------------------------------------------------------------------------------
--  MAINTENANCE
------------------------------------------------------------------------------------ */
/*--nothing to style--*/
/* ------------------------------------------------------------------------------------
-- 404
------------------------------------------------------------------------------------ */
#gsearch{
	float:left;
	width:100%;
	margin:30px 0 0 0;
}
.cse .gsc-control-cse, .gsc-control-cse{
    font-family:'Alegreya Sans', Helvetica, sans-serif!important;
    background-color: #151515!important;
    border: 1px solid rgba(255, 255, 255, 0.05)!important;
}
div.gsc-clear-button {
    margin-left: 12px!important;
    margin-right: 0!important;
    padding-left: 6px!important;
}
form.gsc-search-box{
	float:left;
    margin: 0!important;
    width: 100%;
}
.cse form.gsc-search-box, 
form.gsc-search-box {
    padding: 0!important;
    margin-bottom: 6px;
    /*---------------------------*/
   float:left;    
   background:transparent;
}
.gsc-input-box {
    border: none!important;
    background: #151515!important;
    height: auto!important;
}
.gsib_a {
    padding-right: 0!important;
    padding-left: 0!important;
}
.gsib_a {
    width: 100%;
    padding: 0!important;
}
table.gsc-search-box,
.gsc-input-box table{
    border-style: none;
    border-width: 0px;
    border-spacing: 0px;
    width: 100%;
    margin-bottom:0!important;
}
.cse input.gsc-input, 
    input.gsc-input{
    font-family: inherit;
    border: 1px solid #181818!important;
    padding: 10px 20px!important;
    width: 100%!important;
    font-size: 1.5em!important;
    background:#181818!important;
    /*---------------------------*/
    height:27px;
    color:#808080;
}
.cse input.gsc-search-button, 
input.gsc-search-button {
    font-family: inherit;
    font-size: 1.2em!important;
    font-weight: normal!important;
    color: #ddd!important;
    padding: 0px 16px!important;
    height: 50px!important;
    min-width: 54px;
	background:#75882f!important;
	background:-webkit-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -moz-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -o-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -ms-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -khtml-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    border: 1px solid #8da045!important;
    /*---------------------------*/
   text-transform:uppercase;
   letter-spacing:0.2em;
   cursor:pointer;
   border-radius:0;
   -webkit-appearance:none;
}
/*--results--*/
.gsc-above-wrapper-area {
    border-bottom: none!important;
    padding: 5px 0px;
}
.gsc-results, .gsc-results {
    width: 100%!important;
}
.gsc-results {
    padding-bottom: 0!important;
}
.cse .gsc-webResult.gsc-result, 
.gsc-webResult.gsc-result, 
.gsc-imageResult-column, 
.gsc-imageResult-classic {
    padding: 1.5%!important;
    margin-bottom: 14px!important;
    background-color: #151515!important;
    border: 1px solid rgba(255, 255, 255, 0.05)!important;
}  
.gs-title, .gs-snippet {
    font-family:'Alegreya Sans', Helvetica, sans-serif!important;
    font-weight:300;
} 
.gs-title{
	line-height:0.9em;
}
.gsc-result-info {
    text-align: left;
    color: #808080!important;
    font-size: 1.3em!important;
    padding-left: 5px!important;
    margin: 10px 0 0 0!important;
}  
.cse .gs-webResult .gs-snippet, 
.gs-webResult .gs-snippet, 
.gs-fileFormatType, 
.gs-imageResult 
.gs-snippet {
    color: #808080!important;
    font-size:1.5em!important;
    line-height:1.4em;
}
/* Hide the Google branding in search results */
.gcsc-branding {
     display: none; 
}
/* Hide the thumbnail images in search results */
.gsc-thumbnail {
    display: none;
}
/* Google Custom Search highlights matching words in bold, toggle that */
.gs-title b, .gs-snippet b {
    font-weight: normal!important;
}
.cse .gs-webResult.gs-result a.gs-title:link, 
.gs-webResult.gs-result a.gs-title:link, 
.cse .gs-webResult.gs-result a.gs-title:link b, 
.gs-webResult.gs-result a.gs-title:link b, 
.cse .gs-webResult.gs-result a.gs-title:visited, 
.gs-webResult.gs-result a.gs-title:visited, 
.cse .gs-webResult.gs-result a.gs-title:visited b, 
.gs-webResult.gs-result a.gs-title:visited b, 
.cse .gs-webResult.gs-result a.gs-title:hover, 
.gs-webResult.gs-result a.gs-title:hover, 
.cse .gs-webResult.gs-result a.gs-title:hover b, 
.gs-webResult.gs-result a.gs-title:hover b, 
.cse .gs-webResult.gs-result a.gs-title:active, 
.gs-webResult.gs-result a.gs-title:active, 
.cse .gs-webResult.gs-result a.gs-title:active b, 
.gs-webResult.gs-result a.gs-title:active b, 
.cse .gs-webResult.gs-result .gsc-cursor-page, 
.gs-webResult.gs-result .gsc-cursor-page, 
.cse .gs-webResult.gs-result a.gsc-trailing-more-results:link, 
.gs-webResult.gs-result a.gsc-trailing-more-results:link, 
.gs-imageResult a.gs-title:link, 
.gs-imageResult a.gs-title:link b, 
.gs-imageResult a.gs-title:visited, 
.gs-imageResult a.gs-title:visited b, 
.gs-imageResult a.gs-title:hover, 
.gs-imageResult a.gs-title:hover b, 
.gs-imageResult a.gs-title:active, 
.gs-imageResult a.gs-title:active b, 
.gs-imageResult .gsc-cursor-page, 
.gs-imageResult a.gsc-trailing-more-results:link, 
.cse .gs-spelling a, 
.gs-spelling a {
    color:#383838!important;
    text-transform:capitalize;
}
/* Change the font size of the title of search results */
.gs-title a { 
    font-size: 1.5em!important;
}
.gs-title{
    display:inline-block;
    margin-bottom:0.7em;	
}
.cse .gs-webResult a.gs-visibleUrl, 
.gs-webResult a.gs-visibleUrl, 
.cse .gs-webResult .gs-visibleUrl, 
.gs-webResult .gs-visibleUrl, 
.gs-imageResult a.gs-visibleUrl, 
.gs-imageResult .gs-visibleUrl {
    color: #c2c1c1!important;
    font-size: 1.2em!important;
    font-family:'Alegreya Sans', Helvetica, sans-serif!important;
    margin-top:8px!important;
}
/* Do no display the URL of web pages in search results */
.gsc-url-top, .gsc-url-bottom {
     display: none;
}
.gs-no-results-result .gs-snippet, 
.gs-error-result .gs-snippet {
    padding: 10px!important;
    margin: 0!important;
    border: none!important;
    background-color: #D11F1F!important;
    color:#fff!important;
}
.cse .gsc-cursor-box, .gsc-cursor-box {
    border-top: none!important;
    padding-top: 0.5em;
    text-align: center;
}
.cse .gsc-results .gsc-cursor-page.gsc-cursor-current-page, 
.gsc-results .gsc-cursor-page.gsc-cursor-current-page {
    color: rgb(255, 255, 255);
	background:#75882f!important;
	background:-webkit-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -moz-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -o-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -ms-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    background: -khtml-linear-gradient(top, #9cb051 0%, #75882f 100%)!important;
    border: 1px solid #8da045!important;
    text-shadow: none!important;
    padding: 0!important;
}
.gsc-results .gsc-cursor-box .gsc-cursor-current-page {
    cursor: default;
    font-weight: normal!important;
    text-decoration: none;
}
.gsc-cursor-page {
    font-size: 1.3em!important;
    padding: 0!important;
    border: 1px solid #8da045!important;
    background:#75882f;
    width:40px;
    height:40px;
}
.gsc-results .gsc-cursor-box .gsc-cursor-page {
    cursor: pointer;
    color: #fff!important;
    text-decoration: none!important;
    margin-right: 5px!important;
    display: inline-block!important;
    width:40px;
    height:40px;
    line-height:40px;
    text-align:center;
}
.gohome{
	float:left;
	width:100%;
	margin:30px 0 0 0;
	text-align:center;
}
.gohome p{
	padding:0.5em 1em;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display:inline-block;
    font-size:0.9em;
    text-transform:uppercase;
    letter-spacing:0.2em;
}
/* ------------------------------------------------------------------------------------
-- COMING SOON
------------------------------------------------------------------------------------ */
#button-wrap{
	float:left;
	width:100%;
	margin:30px 0 0 0;
}
#button-insidewrap{
    margin:0 auto;
    display:table;	
    list-style:none;
}

.title{
	display:block;
	line-height:30px;
	font-size:1.3em;
	color:#f0f0f0;
	font-weight:300;
}
.aboutbox{
	float:left;
	width:100%;
	margin:50px 0 0 0;
}
.aboutbox h3{
	display:table;
	margin:0 auto;
	padding:0.5em 1em;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size:0.9em;
    text-transform:uppercase;
    letter-spacing:0.2em;
	text-align:center;
}
.toggle-container{
	float:left;
	width:100%;
	padding:40px 0;
	background:#111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin:30px 0 0 0;
}
.toggle-container-inner{
	float:left;
	width:100%;	
    clear:both;
    position:relative;
    overflow:hidden;
}
@media screen and (max-width:639px){
.toggle-container-inner{
    overflow:inherit;	
	}
}
.toggle-left{
	float:left;
	width:16%;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    margin:0 0 -9999em 0;
    padding:0 0 9999em 0;
}
@media screen and (max-width:800px){
.toggle-left{
	width:20%;	
	}
}
@media screen and (max-width:768px){
.toggle-left{
	width:26%;	
	}
}
@media screen and (max-width:639px){
.toggle-left{
	width:100%;	
	border:none;
    margin:0;
    padding:0;
	}
}
.toggle-left-inner{
	float:left;
	width:100%;
	border-right:40px solid #111;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    position:relative;
}
.toggle-left-inner .meet{
	position:absolute;
	left:-32px;
	top:50px;
	display:inline-block;
   -webkit-transform:rotate(90deg); 
   -moz-transform:rotate(90deg);
   -ms-transform:rotate(90deg);
    transform:rotate(90deg);  
}
.meet-inner{
	background:#151515;
	display:block;
	padding:10px 20px;
	font-size:0.7em;
	text-transform:uppercase;
	letter-spacing:0.3em;
	box-shadow:0 1px 4px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}
.toggle-left-inner ul{
	float:right;
	list-style:none;
	padding:0 0 0 40px;
	width:36px;
}
.toggle-left-inner figure{
	float:left;
	width:36px;
	height:36px;
}
.toggle-left-inner figure img{
	display:block;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -khtml-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;	
}
.toggle-left-inner img:hover{
	-webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}
.toggle-right{
	float:right;
	width:84%;
    margin:0 0 -9999em 0;
    padding:0 0 9999em 0;	
}
@media screen and (max-width:800px){
.toggle-right{
	width:80%;	
	}
}
@media screen and (max-width:768px){
.toggle-right{
	width:74%;	
	}
}
@media screen and (max-width:639px){
.toggle-right{
	width:100%;	
	margin:0 0 30px 0;
	padding:0;
	}
}
.toggle-right-inner{
	float:left;
	width:100%;
	border-left:40px solid #111;
	border-right:40px solid #111;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.toggle-right-inner p{
	font-size:1.2em;
	line-height:1.5em;
}
.signature-wrap{
	float:left;
	width:100%;
}
.signature-line{
	float:left;
	width:100%;
	height:1px;
	margin-top:-32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.signature{
	float:right;
	width:200px;
	background:#111;
	padding:0 0 0 20px;
	position:relative;
	z-index:1;
}
.signature img{
	float:left;
	display:block;
}

	.btn { 
		display: inline-block; 
		padding: 20px 60px;
		border: 1px solid #eee;
		margin: 0 5px 20px 0;
		background-color: #a51e22;
		color: #fff;
		font-size: 1.5em;
		font-family: 'Oswald', sans-serif;
		line-height: 18px; 
		text-decoration: none !important;
		vertical-align: middle;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s; 	
	}
	
	a.btn { color: #fff; }
	
	.btn:focus { outline: 0; }