/* CSS Document */
*{
	margin: 0;
	padding: 0;
	font-family: gilroy-b
}
a{
	text-decoration: none
}
html{
	scroll-behavior: smooth;
}
html.active{
	overflow-y: hidden
}
html, body{
	overflow-x: hidden
}
body{
	background: #fafafa;
	position: relative
}
body::after{
   position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
   content:url("images/slider1.webp") url("images/slider2.webp") url("images/slider3.webp") url("images/slider4.webp") url("images/slider5.webp");  
}
/*===================fonts=======================*/
@font-face{
	font-family: 'gilroy-b';
	src: url("font/Gilroy-Bold.ttf");
}
@font-face{
	font-family: 'rustico';
	src: url("font/Rustico-V2-Regular.otf");
}
/*================scrtollbar==================*/
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
/*===================nav=======================*/
/*#wallpaper{
	background-image: url("images/wallpaper.webp");
	background-repeat: repeat;
	background-size: auto;
	position: absolute;
	height: 400vh;
	width: 100%;
	z-index: -1;
	top: 0;
	left: 0;
	opacity: 0.25
}*/
#navp{
	width: 100%;
	height: 110px;
	/*background: rgba(0,0,0,0.30);*/
	position: fixed;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s
}
#navp.active{
	background: rgba(0,0,0,0.50);
	height: 70px
}
#navp.active #logo img:nth-child(1){
	width: 50px;
}/*
#navp.active #logo img:nth-child(2){
	opacity: 1
}*/

#navp > div{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 80%;
	height: 100%
}
#logo{
	position: relative
}
#logo img:nth-child(1){
	width: 90px;
	text-shadow: 0 0 25px rgba(0,0,0,0.4);
	transition: width .2s
}/*
#logo img:nth-child(2){
	width: 130px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
	transition: .2s
}*/
#navp ul{
	float: right;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center
}
#navp ul li{
	list-style: none;
	display: inline-block;
	position: relative
}
#navp ul li a, #sidenav ul li a{
	color: #fff;
	padding: 8px 25px;
	position: relative;
}
#navp ul li a.active, #navp ul li:hover a, #sidenav ul li:hover a, #sidenav ul li a.active{
	color: #fff
}
#navp ul li img, #sidenav ul li img{
	width: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	opacity: 0;
	transition: .2s
}
#sidenav ul li img{
	width: 100px;
	height: 40px
}
#navp ul li:hover img, #sidenav ul li:hover img{
	opacity: 1
}
#navp ul li a.active + img, #sidenav ul li a.active + img{
	opacity: 1
}

#navs{
	position: fixed;
	display: none;
	z-index: 100;
	background: red
}
#navstop{
	width: 100vw;
	height: 50px;
	background: rgba(0,0,0,0.4);
	position: fixed;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}
#menuicon{
	width: 30px;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translate(0,-50%);
	cursor: pointer
}
#logo2 img{
	width: 40px
}
#sidenav{
	position: fixed;
	left: -51%;
	transition: .2s;
	width: 51%;
	z-index: 99;
	background-color: #8d0d19
}
#sidenav.active{
	left: 0
}
section.active{
	left: 50%;
}
html.active{
	overflow: hidden
}
#sidenav ul{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column
}
#sidenav ul li{
	list-style: none;
	margin: 20px 0;
	position: relative
}
.brochasr{
	width: 80vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2
}
.right{
	width: 100%;
	height: 100%;
	background-image: url("images/brochar.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right;
	opacity: .9
}
/*===================popup=======================*/
#popup{
	width: 101%;
	height: 101%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 200;
	background-color: rgba(0,0,0,0.8);
	position: fixed;
	visibility: hidden;
	transition: .5s;
	opacity: 0
}
#popup.active{
	visibility: visible;
	opacity: 1
}

#popbox{
	width: 600px;
	height: 400px;
	border-radius: 10px;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap
}
#popbg {
	background-image: url("images/popbg3.jpg");
	background-size: cover;
	background-position: center;
	width: 40%;
	height: 100%;
	border-radius: 10px 0 0 10px
}
#popinfo{
	background: white;
	width: 60%;
	height: 100%;
	z-index:-1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 30px;
	border-radius: 0 10px 10px 0;
	color: #222
}
.closepop{
	position: absolute;
	width: 50px;
	height: 50px;
	bottom: -80px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	cursor: pointer;
	background: #ddd;
	border-radius: 40px;
	transition: .2s;
	z-index: 300
}
.closepop div{
	width: 30px;
	height: 4px;
	border-radius: 20px;
	background: #777;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%)
}
.closepop div:nth-child(2){
	transform: translate(-50%,-50%) rotate(90deg)
}
#popinfo h1{
	text-align: center;
}
#popinfo h2{
	text-align: center;
}
.boton{
	border-radius: 15px;
	padding: 10px 20px;
	margin: 20px;
	color: white;
	font-size: 18px;
	text-transform: uppercase;
	cursor: pointer;
	background: #8d0d19;
	transition: .3s;
	border: 2px solid #8d0d19;;
	text-align: center
}
.boton:hover{
	background: transparent;
	color: #BF3643;
}
.boton.wpp{
	background: #25d366;
	transition: .3s;
	border: 2px solid #25d366;
	color: #fff
}
.boton.wpp:hover{
	background: transparent;
	color: #25d366;
}
.boton img{
	height: 18px;
	margin-left: 15px
}
/*===================inicio=======================*/
.wrapper{
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center
}
.titlesub{
	color: #eee;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 
}
/*.titlesub h1{
	text-transform: uppercase
}*/
.titlesub img{
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 300px;
	height: 100px
}
.titlesub p{
	font-size: 50px;
	top: 0;
	left: 0;
	margin: 0 24px
}
.bgbrush{
	position: absolute;
	width: 140%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -2
}
.bgbrush img{
	width: 900px;
	opacity: 0.1
}

section{
	width: 100%;
	position: relative;
	z-index: 0;
	background: #fafafa;
	overflow: hidden;
	left: 0;
	transition: .2s
}
#inicio{
	position: relative;
	height: 100vh;
	max-height: 100vh;
}
#titulo{
	position: absolute;
	bottom: 100px;
	left: 100px;
	font-size: 80px;
	color:  #eee;
	line-height: 80px;
	text-align: right;
	text-shadow: 0 0 25px rgba(0,0,0,0.5);
}
#hambcenter{
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
}
#hambcenter img{
	width: 100%
}
#scrollanim{
	position: absolute;
	bottom: 3%;
	left: 50%;
	transform: translateX(-50%)
}
#scrollanim div:nth-child(1){
	width: 18px;
	height: 35px;
	border: 2px solid #111;
	border-radius: 50px
}
#scrollanim div:nth-child(2){
	width: 8px;
	height: 8px;
	background: #111;
	border-radius: 5px;
	position: absolute;
	top: 20%;
	left: 50%;
	transform: translate(-50%,0);
	animation: scroll 1.5s infinite ease-in-out
}
@keyframes scroll{
	0%{top: 20%}
	90%{top: 70%}
	95%{top: 20%;
	opacity: 0}
	100%{top: 20%;
	opacity: 1}
}
#fondo img{
	width: 800px;
	opacity: .05;
	position: absolute;
	top: -150px;
	left: -150px;
	z-index: -2
}
#wallpaper{
	width: 101%;
	height: 100%;
	background-image: url("images/kinas-1080.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	flex-direction: 50%;
	transform: translate(-50%,-50%);
	z-index: -3
}
#socialm{
	width: 40px;
	height: 100%;
	position: absolute;
	right: 11%;
	bottom: -80%;
	transform: translate(0%,-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2
}
#socialm a{
	width: 25px;
	cursor: pointer;
	z-index: 900;
	margin: 15px 0
}
#wapp img{
	width: 25px
}
/*===============carta==================*/
#carta{
	display: flex;
	justify-content: center;
	overflow: hidden;
	min-height: 122vh;
}
.wrapper.carta{
	width: 80%;
	padding: 50px 0;
	min-height: 50vh;
	justify-content: flex-start
}

.titlesub{
	color: #eee;
	text-align: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px 0 
}
.titlesub img{
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 300px;
	height: 100px
}
#pyme .titlesub img{
	width: 400px
}
.titlesub p{
	font-size: 50px;
	top: 0;
	left: 0;
	margin: 0 24px
}

#menutitle div{
	position: absolute;
	top: 50px;
	left: -10%;
	font-size: 150px;
	font-family: rustico;
	line-height: 110px;
	color: #BE3542;
	opacity: 0;
	transition: .5s;
	z-index: -2
}
#menutitle div.active{
	opacity: 0.3;
	left: 0
}
#menu{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%
}
#menucategoria .lowline{
	background-image: url("images/linen.svg");
	position: relative;
	width: 100%
}
#menucategoria{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	margin: 30px 0;
	width: 100%
}
.menut, .menud{
	position: relative
}
.menut h1, .menud h3{
	color: #222;
	position: relative;
	cursor: pointer;
	padding: 13px 16px;
	text-align: center;
}
.menud h3{
	font-size: 20px;
}
.menut img, .menud img{
	height: 60px;
	width: 110%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%,-50%);
	opacity: 0;
	transition: opacity .5s
}
.menut.active h1, .menut:hover h1{
	color: #EEEEEE;
}
.menud.active h3, .menud:hover h3{
	color: #333;
}
.menut img.active, .menud img.active{
	opacity: 1
}
.menut:hover img, .menud:hover img{
	opacity: 1
}
.menucontainer{
	position: relative;
	width: 100%;
	height: auto;
}
.menuc{
	padding: 30px 0 50px;
	position: relative;
}
.menuc, .menudrinkcont {
	padding: 0;
	position: relative;
	top: 0;
	left: 0;
	display: none;
	opacity: 0;
	transition: .5s
}
.menuc.active{
	display: block;
	opacity: 1;
}
.menuc ul, .menudrinkcont ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
}
.menuc ul li, .menudrinkcont ul li{
	list-style: none;
	padding: 15px 12px;
	width: 28%;
	text-align: center
}

.menuc ul li h6{
	font-size: 22px;
	position: relative;
	margin: 10px 0
}
.menuc ul li h6:nth-child(1){
	color: #8d0d19;
}
.menuc ul li h6:nth-child(2){
	color: #000;
}
.menuc ul li{
	position: relative
}
.menuc ul li:before{
	content:'';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 90%;
	height: 90%;
	border-bottom: 1px solid #aaa;
}
.menuc ul li p{
	color: #111;
	font-size: 18px;
}
#menudrink{
	width: 100%;
	justify-content: center;
	flex-direction: column;
	align-items: center
}
#menudrink.active{
	display: flex
}
#drinkcategoria{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	text-align: center;
	margin: 30px 0;
	width: 100%;
	flex-wrap: wrap
}

/*
element.style {
    color: red;
}*/
.drinkcontainer{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	position: relative;
}
.menudrinkcont{
	width: 100%
}
.menudrinkcont.active{
	display: block;
	opacity: 1
}
/*#cerveza ul, #sangria ul{
	justify-content: space-around
}*/


/*advertencias*/
.aviso{
	font-size: 22px;
    text-align: center;
    padding: 3%;
	color: #111
}
/*=============pyme======================*/
#pyme{
	position: relative;
	min-height: 100vh;
	height: auto;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
}
#premios{
	height: 80%;
	width: 100%;
	margin: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s
}

#premios img{
	transition: .5s;
	height: 400px;
	margin: 15px;
	border-radius: 10px;
	box-shadow: 0px 15px 15px 0px rgba(0,0,0,.2)
}

/*=============galeria======================*/
#galeria{
	height: 60vh;
	z-index: -1
}
#galeriaslide{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0
}
#galeriaslide div{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity .5s ease-in-out;
	filter: contrast(.8) brightness(.8)
}
#galeriaslide div.active{
	opacity: 1
}
#galeriaslide div:nth-child(1){
	background-image: url("images/slider1.webp");
}
#galeriaslide div:nth-child(2){
	background-image: url("images/slider2.webp")
}
#galeriaslide div:nth-child(3){
	background-image: url("images/slider3.webp")
}
#galeriaslide div:nth-child(4){
	background-image: url("images/slider4.webp")
}
#galeriaslide div:nth-child(5){
	background-image: url("images/slider5.webp")
}

.brochas{
	width: 110%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.brochas div{
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 45%;
	width: 100%;
	height: 75px;
	transform: translateX(-50%)
}
.brochas .up{
	top: 0;
	background-image: url("images/brochau.svg");
	background-size: cover;
	background-repeat: no-repeat;
	
}
.brochas .down{
	bottom: 0;
	background-image: url("images/brochad2.svg");
	background-size: cover;
	background-repeat: no-repeat;
}

/*=============locales======================*/
#locales{
	display: flex;
	justify-content: center;
	height: 100%;
	min-height: 100vh
}
#mapas{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%
}
.maplocal{
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	height: auto;
	padding: 30px;
	box-sizing: border-box
}

.localdirecc{
	z-index: 1;
	position: relative;
	width: 50%;
	text-align: left;
	color: #19191C
}
.localdirecc h1{
	font-size: 40px;
	color: #8d0d19;
	line-height: 70px;
}
.localdirecc h6{
	font-size: 24px;
	color: #8d0d19;
}
.localdirecc p{
	font-size: 18px;
	/*olor: #fff;*/
	line-height: 24px
}
.localdirecc p span{
	font-size: 22px
}

.mapa{
	width: 40%;
	height: 300px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 15px 15px 0px rgba(0,0,0,.2)
}
.mapa iframe{
	width: 100%;
	height: 100%; 
}
.fotolocal{
	width: 100%;
    height: 125%;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	z-index: -1;
	filter: brightness(.4)
}
/*.sm.fotolocal{
	background-image: url("images/IMG_8624.webp");
}
#lc .fotolocal{
	justify-content: flex-end;
	background-image: url("images/_MG_5204.webp");
	background-position: 50% 10%
}


/*==================footer===================*/
footer{
	width: 100%;
	height: 80px;
	/*position: absolute;*/
	bottom: 0;
	overflow: hidden;
	z-index: 100;
	background-color: #fff
}
footer img{
	width: 50px;
	margin: 10px
}
#footerbrush{
	background-image: url("images/brushf.svg");
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 110%;
    width: 100%;
	bottom: 10px
}

















/*============================================responsive===================*/
@media screen and (max-width : 1200px ){
	#inicio{
		max-height: 100vh;
		min-height: 100vh
	}
	#titulo{
		line-height: 60px;
		left: 25%;
		transform: translate(-50%, 0)
	}
	#titulo span{
		font-size: 60px;
		line-height: 10px
	}
	#scrollspy{
		display: none
	}
	#foto{
		right: -10%
	}
	#foto1{
	background-image: url("images/hamb9.png");
}
	#foto2{
		background-image: url("images/salchi9.png");
	}
	#foto3{
		background-image: url("images/soba9.png");
	}
	#slide{
		display: flex;
		left: 0;
		bottom: 40px;
		width: 100%
	}
	#slide div{
		height: 90px;
		width:30%
	}
	#ing div h2{
	max-width: 250px
	}
	.localdirecc{
		padding: 25px
	}
	.localdirecc h1{
		font-size: 50px;
		line-height: 50px
	}
	#cartabtn {
    margin-bottom: 0
}
}
@media screen and (max-width : 1100px ){
	.menut{
		width: 32%
	}
	#premios{
		flex-direction: column;
	}
	.maplocal{
		padding: 20px
	}
}
@media screen and (max-width : 1000px ){
	
	.closepop{
		bottom: -60px
	}
}

@media screen and (max-width : 830px ){
	.menut{
		width: 45%
	}
	.menuc ul li{
    width: 45%;
		}
	#premios img{
		height: auto;
		width: 80%
	}
	
@media screen and (max-width : 700px ){
#popbox{
	width: 80%;
	height: 70%;
}
#popbg {
	width: 100%;
	height: 30%;
	border-radius: 10px 10px 0 0;
	
}
#popinfo{
	width: 100%;
	height: 70%;
	z-index:-1;
	border-radius: 0 0px 10px 10px;
	padding: 15px
}

	#inicio{
		max-height: 500px
	}
	#socialm{
	top: 50%;
}
	#wapp img{
		top: 55%;
		right: 0
}
	#navp{
		display: none
	}
	#navs{
		display: block
	}
	#slide div{
		padding: 0;
		margin: 8px
	}
	#foto{
		right: 0;
		width: 100%
	}
	#foto div{
		background-position: center
	}
	#foto1{
	background-image: url("images/hambmob.png");
}
#foto2{
	background-image: url("images/salchimob.png");
}
#foto3{
	background-image: url("images/sobamob.png");
}
	
	#titulo{
		line-height: 50px;
		left: 50%;
		transform: translate(-50%, 0);
		text-align: center
	}
	#titulo span{
		font-size: 50px;
		line-height: 10px;
	}
	.titlesub h1{
		font-size: 18px
	}
	#foto3{
		background-position: right
	}
	#ing img{
		width: 150px
	}
	.ingselec h2{
		font-size: 14px
	}
	#ing div h2{
	max-width: 100px
}
	.wrapper.ingredientes{
		padding: 100px 0 50px
	}
	.wrapper.carta{
		width: 99%
	}
	table tbody{
		font-size: 18px
	}
	#cartabox h1{
	font-size: 20px;
		margin: 10px
	}

	#precios ul li::after{
		width: 200px
	}
	#tel{
		font-size: 20px;
		padding: 15px
	}
	
	/*=============pyme======================*/


	.maplocal{
		flex-direction: column;
	}
	.fotolocal{
		height: 110%
	}
	.localdirecc{
		text-align: center;
		width: 100%
	}
	.mapa{
		width: 90%;
		min-width: 200px;
		padding: 0;
		height: 300px;
		margin-bottom: 50px
	}
	.mapa iframe{
		width: 100%
	}
	

}
@media screen and (max-width : 570px ){
	#popinfo h1{
		font-size: 28px
	}
.boton, #popinfo h2{
	font-size: 20px;
}
	.menut, .menud{
		width: 90%
	}
	.menuc ul li{
    width: 90%;
}
	.menut, .menud {
    width: auto;
}
	#menucategoria, #drinkcategoria {
    flex-direction: column;
}
	.menuc ul, .menudrinkcont ul {
    justify-content: center;
}
	.wrapper.carta {
    width: 80%;
}
	.menuc ul li {
    width: 100%;
}
}



@media screen and (max-width : 400px ){
	#titulo{
		line-height: 30px;
		left: 50%;
		transform: translate(-50%, 0);
		text-align: center
	}
	#titulo span{
		font-size: 40px;
		line-height: 10px;
	}
	.menuc ul{
		justify-content: center
	}
	.menuc ul li {
    width: 60%;
		
}}

