@import url('https://fonts.googleapis.com/css?family=Istok+Web:400,700&display=swap');


* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;	
	
}


body {	
	margin: 0;
	padding: 0;
	padding-top: 100px;	
	flex-wrap: wrap;
	font-family: 'Istok Web', sans-serif;
}

/* menu */

a {
	text-decoration: none;
}

ul {
	list-style-type: none;
	margin:0;
	padding:0;
}

nav {
	position: fixed;
	width: 100%;	
	top:0;
	background-color: rgba(255, 255, 255, 0.3);
	padding: 16px 0;
	
}

nav .container{
	display: flex;
	justify-content: space-between;
	align-content: center;
}

#logo {
	height: 30px;
}

.container {
	width: 95%;
	margin: 0 auto;
	text-align: center;
}

.container img {
	cursor: pointer;
}

#menu-icon {
	height: 30px;		
}


#menu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 30%;
	z-index: 10;
	background-color: #2c2f32;
	text-align: center;
}


#menu li a {
	display: block;
	color: white;
	background-color: #444543;
	padding: 16px 15px;
	margin-bottom: 16px;
	font-weight: 700;
}

#menu.active {
	display: block;

}

#exit {
	padding: 16px 0;
}

#exit img {
	height: 30px;
	cursor: pointer;
}

/* final del menu */ 


.retail {
	text-align: center;
}

.retail img {    
    padding: 10px 5px;
	margin: 10px;
	width: 150px;  
}



.food {
	flex-wrap: wrap;
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-around;
	align-content: center;
	text-align: center;
	background-color: #2c2f32;

}

.contacto {
	font-size: 15px;
}

.food a {
	color:white;
}

.contacto h3 {
	font-size: 20px;
	text-transform: uppercase;
	padding: 10px;
}

.redes {
	text-align: center;
	padding: 20px;
	
}

.redes .logo-2 {
	width: 40%;
	padding: 20px 0;
}

.rrss a {
	padding: 0 10px;
}


.derechos {
	color:white;
	background-color: #2c2f32;
	text-align: center;
	padding: 20px;
	font-size: 12px;
	text-transform: uppercase;
}


@media only screen and (min-width:780px) {	

	.hide-desktop {
		display: none;
	}

	#logo {
		height: 45px;
	}
	
	#menu {
		position: inherit;
		display: flex;
		justify-content: flex-end;
		background-color: inherit;
	}

	#menu.active {
		display: flex;
	}

	#menu li a {
		padding: 0;
		margin: 16px 8px;
		background-color: inherit;
		color: black;	
	}
	.retail img {
		padding: 20px 10px;
		margin: 20px;
		width: 350px;
	}
}