@charset "UTF-8";

/* Micro reset */
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}

html, body {
	height: 100%;
	width: 100%;
    margin: 0px;
    padding: 0px;
}

.site-wrap {
	overflow: hidden;
	width: 100%;
	
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}


body {
	overflow-x: hidden;
	color: #FFF;
font-family: 'Roboto', sans-serif; 
	}

/* Navigation Menu - Background */
.menu {
	/* critical sizing and position styles */
  width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	/* non-critical appearance styles */
  list-style: none;
	background: #111;
	padding-top: 40px;
}

/* Navigation Menu - List items */
.nav-item {
  /* non-critical appearance styles */
  width: 200px;
  font-family: 'Roboto-Condensed', sans-serif;
  border-top: 1px solid #111;
  border-bottom: 1px solid #000;
}

.nav-item a {
	/* non-critical appearance styles */
  display: block;
	padding: 0.9em;
	background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	color: white;
	font-size: 1.4em;
	text-decoration: none;
	transition: color 0.2s, background 0.5s;
}

.nav-item a:hover {
  color: #CF0A2C;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(75,20,20,0.65) 100%);
}

/* Site Wrapper - Everything that isn't navigation */

.content {
	font-family: 'Roboto', sans-serif;
	padding-top: 125px;
	margin: 0px;
		position: relative;
	background: #000;
	
	
}

.content::before{
	
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	}

/* Menu Button */
.menu-button {
	position: fixed;
	z-index: 3000;
	margin: .5em;
	padding: 0;
	width: 2.5em;
	height: 2em;
	border: none;
	text-indent: 2em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
}

.menu-button:focus { outline: thin dotted; }

.menu-button::before {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	bottom: 0.5em;
	left: 0.5em;
	background: linear-gradient(#FFF 20%, transparent 20%, transparent 40%, #FFF 40%, #FFF 60%, transparent 60%, transparent 80%, #FFF 80%);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 1em;
	height: 1em;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 1em;
	font-size: 0.75em;
	border: none;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #fff;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position: fixed;
	z-index: 3001;
	width: 210px;
	height: 100%;
	background: #000;
	padding: 2.5em 1.5em 0;
	
	-webkit-transform: translate3d(-320px,0,0);
	transform: translate3d(-320px,0,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}


/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-webkit-transition: -webkit-transform 0.8s;
	transition: transform 0.8s;
	
}



.show-menu .site-wrap::before {
	opacity: 1;
	-webkit-transition: opacity 0.8s;
	transition: opacity 0.8s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


/* Additional non-critical styles */



code {
	padding: 2px;
	background: #ddd;
}



header {
	background-color: #171616;
	height: 125px;
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 2000;
}


.clear {
	clear: both;
}
#logo {
	padding-left: 60px;
	width: 100%;
	text-align: center;
}
#eventos {
	width: 135px;
	float: right;
	margin-top: -110px;
	text-align: right;
	padding-right: 5px;
}
#eventos #bwa {
	background-image: url(img/bwa.png);
	background-repeat: no-repeat;
	display: block;
	background-position: right top;
	height: 50px;
	width: 140px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}
#eventos #bres {
	background-image: url(img/bres.png);
	background-repeat: no-repeat;
	display: block;
	background-position: 20px top;
	height: 50px;
	width: 150px;
	color: #FFF;
	text-decoration: none;
	text-align: center;
}

#eventos #bwa:hover {
	background-position: right bottom;
	}
	
#eventos #bres:hover {
	background-position: 0px top;
	}	
	
#social {
	height: 200px;
	width: 60px;
	float: right;
	position: fixed;
	right: 0px;
	top: 60%;
	z-index: 1000;
	opacity: .9;
}

h1 {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 100%;
	display: block;
	letter-spacing: 1px;
	clear: both;
	margin-top: 15px;
	margin-bottom: 15px;
	height: 70px;
	}
h1 span {
	display: none;
}
h2 {
	color: #DE0022;
	font-size: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	letter-spacing: 1px;
}
#cal {
	background-image: url(img/h1_calendario.png);
	height: 100px;
	width: 350px;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
}
#conc {
	background-image: url(img/h1_conceptos.png);
	height: 100px;
	width: 350px;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
}
#prom {
	background-image: url(img/h1_promos.png);
	height: 100px;
	width: 350px;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: auto;
	margin-left: auto;
}
#res {
	background-image: url(img/h1_restaurantes.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 100px;
	width: 350px;
	margin-right: auto;
	margin-left: auto;
}
#bol {
	background-image: url(img/h1_boliche.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 100px;
	width: 350px;
	margin-right: auto;
	margin-left: auto;
}
#loc {
	background-image: url(img/h1_ubic.png);
	background-repeat: no-repeat;
	text-align: center;
	width: 216px;
	margin-right: auto;
	margin-left: auto;
	height: 100px;
}
a {
	color: #FFF;
	text-decoration: none;
}
.button_container {
	width: 340px;
	margin-right: auto;
	margin-left: auto;
}
.button_container a:hover {
	/* [disabled]opacity: .8; */
}
.bmenu {
	color: #FFF;
	text-decoration: none;
	background-image: url(img/bmenu.png);
	background-repeat: no-repeat;
	height: 50px;
	width: 130px;
	display: block;
	float: left;
	background-position: center top;
	margin-right: 20px;
	margin-left: 20px;
}
.bmenu:hover {
	background-position: center bottom;
	}
.breserva {
	color: #FFF;
	text-decoration: none;
	background-image: url(img/breserva.png);
	background-repeat: no-repeat;
	height: 50px;
	width: 130px;
	display: block;
	background-position: center top;
	margin-right: 20px;
	margin-left: 190px;
}
.breserva:hover {
	background-position: center bottom;
	}

#home {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
	  -webkit-flex-wrap: wrap; /* Safari 6.1+ */
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	position: relative;
	text-align: center;
	min-width: 980px;
	}
.homegrid {
	
	flex-grow: 9999;
	flex-basis: 490px;
	width: 490px;
	text-align: center;
	

}
.homegrid img {
	width: 100%;
	max-width: 700px;
	min-width: 490px;
}
.scroll_horizontal2 {
	
	
	
	white-space:nowrap;
	overflow-y: hidden;
	overflow-x: scroll;
		-webkit-overflow-scrolling: touch;


	
}
.scroll_horizontal {
	width:100%;
	white-space: nowrap;
	float: left;
	height: 624px;
	overflow: scroll;
		-webkit-overflow-scrolling: touch;
}
.scroll_horizontal img {
	margin-right: 30px;
	width: 350px;
	height: 624px;
}
.flexwrap {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
	width: 100%;	
	flex-flow: row wrap;
	justify-content: center;
	  -webkit-flex-wrap: wrap; /* Safari 6.1+ */

	
	
}

.flexpair {
	display: flex;
	flex-wrap: nowrap;
	display: -webkit-flex; /* Safari */
	  -webkit-flex-wrap: nowrap; /* Safari 6.1+ */
	max-width: 980px;
	flex-grow: 9999;
	text-align: center;
}


.flex_nowrap {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;      /* TWEENER - IE 10 */
  display: -webkit-flex;     /* NEW - Chrome */
  display: flex;
	width: 100%;
	min-width: 980px;
	flex-wrap: nowrap;
	justify-content: center;
	position: relative;
	text-align: center;
	align-items: center;
	
	  -webkit-flex-wrap: nowrap; /* Safari 6.1+ */
}

.flextwo {
	width: 50%;
	flex-grow: 9999;
	text-align: center;
}
#container_privados {
	/* [disabled]height: 500px; */
	max-width: 500px;
}


.flexthree {
	flex-grow: 9999;
	min-width: 33%;
	text-align: center;	
	flex-shrink: 0;
	

}
#tour {
	width: 100%;
	padding-top: 30px;
	text-align: center;
	
}
.flexwrap img {
	width: 100%;
	
}
.rest_pic {
	flex-grow:9999;
	flex-basis: 400px;
	min-width: 300px;
	

}
.rest_box {
	background-color: #000;
	
	
	flex-grow:9999;
	flex-basis: 400px;
	text-align: center;
}
.rest_box p {
	/* [disabled]margin-top: 5px; */
	line-height: 1.2em;
	font-size: 17px;
	padding-top: 3%;
}
#link_plano:hover {
	border-top-color: #F00;
	border-right-color: #F00;
	border-bottom-color: #F00;
	border-left-color: #F00;
}
#restaurantes {
	margin-top: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	clear: both;
}
#calendario {
	/* [disabled]background-color: #000; */
	margin-top: 40px;
	padding-top: 15px;
}
#conceptos {
	background-color: #000;
	/* [disabled]margin-top: 40px; */
	padding-top: 30px;
}

#info {
	width: 90%;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	text-align: center;
	clear: both;
	margin-top: 10px;
	margin-bottom: 50px;
	padding-top: 50px;
	display: block;
	margin-right: auto;
	margin-left: auto;
	/* [disabled]background-color: #000; */
	}
#promos {
	background-color: #000;
	width: 100%;
	padding-top: 50px;
	padding-bottom: 5px;
	clear: both;
}
#eventospriv {
	clear: both;
	/* [disabled]margin-top: 20px; */
	/* [disabled]padding-top: 30px; */
	background-color: #000;
}
#eventospriv p {
	font-size: 18px;
	line-height: 1.5em;
}

#tour iframe{
	width: 100%;
	display: block;
	pointer-events: none;
	position: relative; /* IE needs a position other than static */
}
#tour iframe.clicked{
	pointer-events: auto;
}

#recorrido {
	
	background-image: url(img/recorrido.jpg);
}


#recob {
	float: left;
	z-index: 1000;
	margin-right: auto;
	margin-left: auto;
	background-position: bottom;
	color: #FFF;
	text-decoration: none;
	font-family: Steelfish;
	background-image: url(img/buttonl.png);
	background-repeat: no-repeat;
	height: 50px;
	width: 200px;
	font-size: 24px;
	line-height: 44px;
	
}
#info img {
	width: 100%;
	/* [disabled]margin-top: -200px; */
}
#info p {
	font-size: 1.2em;
	line-height: 1.5em;
}
#info p span {
	font-size: 1.8em;
	color: #de0022;
}


footer {
	background-color: #FFF;
	width: 100%;
	height: 240px;
	padding-top: 40px;
	text-align: center;
	padding-bottom: 10px;
	clear: both;
}
footer a {
	color: #000;
	text-decoration: none;
}
footer img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	margin-bottom: 5px;
	padding-top: 20px;
}
footer p {
	color: #999;
	text-align: center;
	line-height: 1.3em;
	clear: both;
}
	
	.evento {
	height: 400px;
	width: 350px;
	text-align: center;
	/* [disabled]float: left; */
	margin-right: 30px;
	display: inline-block;
	position: relative;
}
h3 {
	font-size: 22px;
	display: block;
	height: 50px;
	line-height: 50px;
}








.first {
	-webkit-animation: bannermove 30s linear infinite;
	   -moz-animation: bannermove 30s linear infinite;
	    -ms-animation: bannermove 30s linear infinite;
	     -o-animation: bannermove 30s linear infinite;
	        animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
	0% {
    margin-left: 0px;
	}
 100% {
    margin-left: -3125px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -3125px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -3125px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -3125px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -3125px;
 }
 
}
.evento h4 {
	font-size: 30px;
	font-family: 'Roboto Condensed', sans-serif;
	display: block;
	padding-bottom: 20px;
	padding-top: 10px;
}
#wa {
	background-image: url(img/wa.png);
	background-repeat: no-repeat;
	background-position: left center;
	display: block;
	width: 150px;
	margin-right: auto;
	margin-left: auto;
	padding-left: 40px;
	height: 35px;
	line-height: 35px;
}
#wa_red {
	background-image: url(img/wared.png);
	background-repeat: no-repeat;
	background-position: left center;
	display: block;
	width: 260px;
	padding-left: 25px;
	line-height: 45px;
	height: 45px;
	margin-right: auto;
	margin-left: auto;
	color: #de0022;
}
#planos {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
	/* [disabled]margin-top: 50px; */
	text-align: left;
}
#planos p {
	font-size: 16px;
	line-height: 1.2em;
	text-align: left;
}
.flextwo p span {
	font-size: 22px;
	color: #DE0022;
}
#link_plano {
	font-size: 14px;
	display: block;
	width: 80px;
	margin-right: auto;
	margin-left: auto;
	padding: 2px;
	/* [disabled]line-height: 25px; */
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	text-align: center;
}
#bpaquetes {
	display: block;
	height: 50px;
	width: 130px;
	line-height: 45px;
	text-align: center;
	float: left;
	margin-bottom: 20px;
	margin-top: -60px;
	opacity: .8;
	margin-left: 40px;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	background-image: url(img/bpaquetes.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#bpaquetes:hover {
	background-position: center bottom;
}
.rest_box p span {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 20px;
}


form #datos input {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF;
	height: 25px;
	width: 350px;
	padding-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	color: #000;
	font-family: 'Roboto', sans-serif;
}
form #datos textarea {
	width: 350px;
	padding-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	height: 100px;
	font-size: 14px;
	color: #000;
	font-family: 'Roboto', sans-serif;
}
form #botones input {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	width: 120px;
	height: 40px;
	color: #FFF;
	font-size: 16px;
	margin-left: auto;
	font-family: 'Roboto', sans-serif;
	line-height: 40px;
	text-align: center;
	background-color: #de0022;
	display: block;
	margin-right: auto;
}
form #botones input:hover {
	background-color: #9F0D17;
}
form p {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-left: 10px;
	padding-right: 10px;
}#preserva {
	text-decoration: none;
	background-image: url(img/preserva.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 100px;
	width: 350px;
	margin-right: auto;
	margin-left: auto;
	display: block;
}
#preserva:hover {
	text-decoration: none;
	opacity: .9;
	background-position: center bottom;
}
