html,
html * {
	padding: 0;
	margin: 0; 
	box-sizing: border-box;
}
html, body{
	margin-top: 0;
	padding: 0;
	height: 100vh;
}
html{
	font-size: 100%;
}
body{
	font-family: 'Roboto', sans-serif;
}
/******************************************/	
.principal{
	height: 100vh;
}
/******************************************/
/*------------------------------*/
header{
	width: 100%;
	background: #b0ba75;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 999;
}
/*------------------------------*/
.logo{
	width: 15%;
    height: 100%;
    position: relative;
}
.logo img{
	width: 100%;
	max-width:100%;
    max-height:100%;
    vertical-align: middle;
    object-fit: contain;
}
/*-------------------------*/
#btn-menu{
	display: none;
}
.botonmenu{
	display: block;
	width: 7%;
	height: 7%;
	position: relative;
	top: 5%;
}
.botonmenu img{
	max-width:100%;
    max-height:100%;
    vertical-align: middle;	
    object-fit: contain;
}	
.botonmenu:hover {
	cursor: pointer;
}
/*-------------------------*/
.menu{
	background: #b0ba75;
	position: absolute;
	width: 100%;
	top: 105%;
	margin-left: -100%;
	transition: 0.5s;
}	
.menu > ul{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	line-height: 3rem;
	text-align: center;
	margin: 0;
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
}
.menu ul li a{
	text-decoration: none;
	color: white;  
	display: block;
	padding-right: .5rem;
	font-size: 1.5rem;
}
.menu ul li ul{
	width: 100%;
	display: none;
	position: absolute;
	text-align: center;
	background: #b0ba75;
}
.menu ul li a:hover{
	background: tomato;
}
.menu ul li:hover ul{
	display: block;
}
#btn-menu:checked ~ .menu{
	margin: 0;
}
/*********************************************/
.contactos{
	width: 10%;
    height: 100%;
}
.contactos img{
	max-width:100%;
    max-height:100%;
    vertical-align: middle;
    object-fit: contain;
}
#btn-mailphone{
	display: none;
}
.botonmailphone:hover {
	cursor: pointer;
}
.contactos-texto{
	display: none;
}
#btn-mailphone:checked ~ .contactos-texto{
	background: #b0ba75;
	color: white;
	line-height: 3rem;
	font-size: 1.5rem;
	text-align: center;
	display: block;
	position: absolute;
	width: 100%;
	top: 105%;
	margin-left: -93%;
}
/**********************************************/	
.cookies{
	background: rgb(0,0,0,0.5);
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	z-index: 80;
}
.modal{
	width: 100%;
	background: rgb(0,0,0,0.5);
	margin: 0;
	display: flex;
	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
	z-index: 40;
}
.contenido{
	margin: 0;
	padding: 0;
	width: 100%;
	border-radius: 10px;
	display: flex;
	justify-content: flex-start;
	align-self: flex-start;
}
.contenido p{
	font-size: .7rem;
	text-align: left;
	color: white;
}	
#cerrar{
	display: none;
}	
#cerrar + label{
	background: rgb(0,0,0,0.5);
	color: white;
	font-size: .8rem;
	padding: .3rem;
	z-index: 50;
	cursor: pointer;
	animation: modal 2s 1s forwards;
	visibility: hidden;
	opacity: 0;
}
#cerrar:checked + label,
#cerrar:checked ~ .modal{
	display: none;
}
@keyframes modal{
	100%{
		visibility: visible;
		opacity: 1;
	}
}
/**********************************************/	
.galeria{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	width: 100%;
	max-width: 100%;
	margin: auto;
	padding: 0;
	grid-gap: 2px;
	overflow: hidden;
	position: relative;
}
.galeria .figuras{
	background: #8d8882;/*#939597*/
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.5);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.galeria img{
	width: 100%;
	max-width:100%;
    max-height: 100%;
	vertical-align: top;
	object-fit: contain;
	margin: 0;
	padding: 0;
	transition: transform 0.5s;
}
h1{
	width: 100%;
	font-family: 'Bebas Neue', cursive;	
	font-size: 2rem;
	text-align: center;
	color: #b0ba75;
}
.galeria .img-text-izq{
	display: flex;
	justify-content: center;
	align-items: center;
}
.galeria .img-text-izq img{
	width: 30%;
}
.galeria figcaption{
	background: #e79c2a;/*#F5DF4D;*/
	margin: 0;
	padding: 0;
}
h2{
	width: 100%;
	height: 5vh;
	font-size: 2vmin;
	line-height: 2.5vh;
	color: #fafafa;
}
/******************************************/
.galeria .btnproductos{
	margin-: 0px;
	padding: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	text-align: center;
	background-color: transparent;
	border: 1px solid white;
	font-family: arial;
	font-size: .9rem;
	color: white;
}	
.footer-container{
	width: 100%;
	background: #202020;
	font-family: 'Roboto', sans-serif;
	color: white;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}
.footer-container p{
	font-size: .8rem;
	line-height: 1.8rem;
}
.footer-container .razonsocial{
	line-height: .9rem;
}	
.footer-main{
	width: 98%;
	max-width: 1000px;
	margin: auto;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	text-align: center;
}
.footer-main .footer-column{
	width: 33.33%;
	justify-content: center;
	text-align: center;
}	
.footer-main .footer-column:nt-child(2){
	padding: 0 20px;
}
.footer-main .footer-column .subtitulo{
	font-size: 1.5rem;
	color: #b0ba75;
	margin-bottom: 20px;
}
.footer-main .footer-column .logo-footer{
	width: 35%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}	
.footer-main .footer-column .logo-footer img{
	width: 100%;
}
.footer-main .footer-column .telef1{
	display: flex;
	justify-content: center;
}
.footer-main .footer-column .telef1 .imagen{
	width: 10%;
	max-width: 100%;
}	
.footer-main .footer-column .telef1 .imagen img{
	width: 100%;
}
.footer-main .footer-column .email{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-main .footer-column .email .imagen{
	width: 10%;
	max-width: 100%;
}	
.footer-main .footer-column .email .imagen img{
	width: 100%;
}
.footer-main .footer-column .web{
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-main .footer-column .web .imagen{
	width: 10%;
	max-width: 100%;
}	
.footer-main .footer-column .web .imagen img{
	width: 100%;
}
.footer-container .copyright{
	background: #051714;
	width: 98%;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
}
.footer-container .copyright .derechos{
	width: 80%;
	text-align: center;
}
/******************************************/
@media all and (min-width: 500px){
	.footer-main .footer-column .logo-footer{
		font-size: 25%;
	}	
}

@media all and (max-width: 768px){
	h1{
		font-size: 2rem;
	}
	h2{
		font-size: 1rem;
	}
	#fb-root{
		display: none;
	}
}
@media all and (max-width: 310px){
	h2{
		font-size: .8rem;
	}
}
@media all and (min-width: 600px){
	.footer .informacion .ruc .logo-footer{
		max-width: 5%;
		max-height: 5%;
	}	
}	
@media all and (min-width: 768px){
	.header {
  		height: 15vh;
	}
	.botonmenu{
		width: 10%;
		height: 40%;
	}
	/**************************************************/
	.navbar-link{
		display: block;
	}
	.botonmenu{
		display: none;
	}
	.menu{
		display: flex;
		flex-direction: row;
		justify-content: center;	
		align-items: center;
		width: 50%;
		top: 35%;
		left: 25%;
		margin-left: 0;
	}
	.menu > ul{
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		list-style: none;
		line-height: 3rem;
		text-align: center;
		margin: 0;
	}
	.menu ul li ul{
		width: 60%;
		display: none;
		position: absolute;
		text-align: center;
		background: #b0ba75;
	}
	/***************************************/
	.cookies{
		background: rgb(0,0,0,0);
		width: 60%;
		align-self: center;
	}
	.modal{
		width: 50%;
		background: rgb(0,0,0,0.5);
	}
	.contenido{
		width: 100%;
		align-self: center;
	}
	.contenido p{
		font-size: 1rem;
	}
	/***************************************/
	.galeria{
		max-width: 60%;
	}
	.footer-main{
		flex-direction: row;
	}
	.footer-main .footer-column .logo-footer{
		font-size: 10%;
	}		
}