@charset "UTF-8";
/* CSS Document */

/* Font Import */

@import url(fonts/fonts.css);

/* Animations */

@-webkit-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes Fadein {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}


@-webkit-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@-moz-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@-o-keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}
@keyframes Moveup {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 150px; }
}


@-webkit-keyframes Moveup2 {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 100px; }
}
@-moz-keyframes Moveup2 {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 100px; }
}
@-o-keyframes Moveup2 {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 100px; }
}
@keyframes Moveup2 {
  0%   { margin-bottom: 25px; }
  100% { margin-bottom: 100px; }
}



/* CSS MARKUP */

html {
	background: url(images/background2.jpg) fixed no-repeat;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	background-position: center left!important;
	height: 100%;
	min-height: 100%;
}
html,body {
	margin: 0px;;
	padding: 0px;
	min-height: 100%;
}

#wrap-all {
	overflow-x: hidden;
	position: fixed;
	height: 100%;
	display: block;
	width: 100%;
}

h1, h2 {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #242424;
	text-transform: uppercase;
	font-weight: 100;
}

p {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #242424;
	font-weight: 300;
	font-size: 1.3em;
}

h1 {
	font-size: 2.5em;
	margin-top: 200px;
}

h2 {
	font-size: 1.5em;
}

#navigation {
	position: absolute;
	right: 0;
	margin-right: 120px;
	margin-top: 9px;
}
#navigation p {
	font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	color: #fff;
	font-size: 2.2em; 
	font-weight: bold;
	letter-spacing: .25em;
	-webkit-font-smoothing: antialiased;

}

#social {
	height: 25px;
	width: 125px;
	margin-top: 25px;
	margin-right: auto;
	margin-left: auto;
}

/* Hamburger Menu Button */

#menuToggle
{
  display: block;
  position: absolute;
  top: 50px;
  right: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 200px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -105px;
  
  border: 1px solid red;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 60px;
  height: 3px;
  margin-bottom: 4px;
  position: relative;
  
  background: #fff;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  width: 28px;
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
  width: 28px;
}

#menuToggle input:hover ~ span {}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 650px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  text-align: center; 	
  font-family: "blanchcaps_light", "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
  font-size: 2.2em;
  font-weight: 600;
  letter-spacing: .15em;
  
}

#menu a {
 	color: #838383;
	text-decoration: none;
}

#menu a:hover {
	color: #000;
}

#span-inside-ul {
	display: block;
	width: 10px;
	height: 10px;
	background-color: red;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: scale(1.0, 1.0);
  opacity: .9;
}

/* END Hamburger Menu Button */

#facebook-icon {
	background-image: url(images/facebook-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#insta-icon {
	background-image: url(images/insta-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#youtube-icon {
	background-image: url(images/youtube-icon.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	height: 25px;
	width: 25px;
	float: right;
	margin-right: 15px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

#insta-icon:hover, #youtube-icon:hover, #facebook-icon:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	cursor: pointer;
}

#titles {
	background-image: url(images/titles-3.png); 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	position: absolute;
	bottom: 0;
	margin-bottom: 150px;
	left: 0;
	right: 0;
	width: 550px;
	height: 141px;
	margin-right: auto;
	margin-left: auto;
	-webkit-animation: Fadein 3s Moveup 1s; 
  	-moz-animation:    Fadein 3s Moveup 1s;
  	-o-animation:      Fadein 3s Moveup 1s;
  	animation:         Fadein 3s, Moveup 1s; 
}

#footer {
	height: 25px;
	background-color: #1A1A1A;
}

/* ----------- iPad ----------- */

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

#navigation p {
	font-weight: normal;
	-webkit-font-smoothing: atialiased;
	display: none;
}

#menu li {
	font-weight: normal;
	color: #000;
}

#titles {
	width: 450px;
	height: 115px;
}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { 

#menu {
	width: 720px;
}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) { 

#titles {
	margin-bottom: 100px;
	-webkit-animation: Moveup2 1s; 
  	-moz-animation:    Moveup2 1s;
  	-o-animation:      Moveup2 1s;
  	animation:         Moveup2 1s;
}

}

/******* OTHER MEDIA QUERIES **********/

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


#titles {
	width: 300px;
	height: 77px;
	margin-bottom: 100px;
	-webkit-animation: Moveup2 1s; 
  	-moz-animation:    Moveup2 1s;
  	-o-animation:      Moveup2 1s;
  	animation:         Moveup2 1s;
}

#navigation p {
	display: none;
}

#menu {
	width: 350px;
}

#menu li {
	font-weight: normal;
	color: #000;
}

#menuToggle input:checked ~ ul {
	opacity: 1;
}

}







































