* {
    margin: 0;
	padding: 0;
	box-sizing: border-box;
}

Body {
	font-family:'Archivo Black', sans-serif;
	letter-spacing: 1.5px;
	height: 1000px;
}

/* ENCABEZADO*/

header {
 
	width: 100%;
	height: 50px;
	background: #333;	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 0 20px;
}

.barra {
	width: 70%;
	margin: auto;
}

.barra a {

	float: right;
  	letter-spacing: 1px;
	padding: 15px;	
	color: #fff;	
}


/*MENU*/

banner {

	width: 100%;
	margin: auto;
	height: 100px;
	background: #fff;
	color: #333;
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 100;
	display: table;
}
#menu-bar {
 
	display: none;
}

banner .barra img {
 
	width: 18%;
}

banner label {
 
	float: right;
	font-size: 28px;
	margin: 20px 0;
	cursor: pointer;
}

banner label:hover {
 
	background: rgba(0,0,0,0.5);
}

.menu {
 
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	height: 40vh;
	background: rgba(255,255,255,0.7);
	transition: all 0.5s;
	transform: translateX(-100%);
}

.menu ul {
	margin: 0;
	list-style: none;
	padding: 20px;
	display: flex;
}

.menu li a {
	display: block;
	color: #333;
	height: 20px;
	text-decoration: none;
	padding: 25px;
	border-bottom: rgba(51,51,51,0.5);
}

.menu__link {
	display: block;
	padding: 20px;
	background: rgba(51,51,51,0.3);
	color: white;
}

.menu li a:hover {
	background: rgba(51,51,51,0.3);
}

#menu-bar:checked ~ .menu{
 
	transform: translateX(0%);
}

@media (min-width: 1024px) {
 
	.menu {
 
		position: static;
		width: auto;
		height: auto;
		transform: translateX(0%);
		float: right;
		display: flex;
	}
	.menu li a {
 
		border: none;
	}

	banner label {
 
		display: none;
	}
}

@media (max-width: 768px) {
 
	.menu ul {
 
		flex-direction:column;
	}
}

/*FONDO IMAGEN*/

main img {

	width: 100%;
	margin: auto;
	margin-top: 150px;
}

.fondo {

	width: 63%;

	height: 65%;
	margin: auto;

	margin-top: 130px;
	background: rgb(0,0,0,0.3);

	padding: 3% 1.5%;

	box-sizing: border-box;

	border-radius: 7px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.clearfix {
  
	background: none;
	width: 100%;
	max-width: 100%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.clearfix .footer-columna {
  
    	width: calc(100%/2);
	text-align: justify;
}


.clearfix .footer-columna:nth-child(2):nth-child(2) {
  
    	padding: 0 5%;
}

.fondo h6 {
	
	color: #fff;

	text-align: center;

	margin: 0;

	margin-bottom: 10px;

	font-family: Century gothic;
	font-size: 28pX;
}



.fondo h4 {
	
	color: #fff;

	text-align: center;

	margin: 0;

	margin-bottom: 10px;

	font-family: Century gothic;
	font-size: 28pX;
}



.fondo p {
  
	text-align: justify;
	display: inline-block;
	margin-bottom: 18%;
	color: #fff;
	font-size: 18px;
	font-family: Lucida Calligraphy;
}

@media screen and (min-width:480px) {
  .main h6 {
    width: 45%;
    margin: 0;
  }

/*FOTOS PRODUCTO*/


main .galeria {
  
    	padding: 5px;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
 	list-style: none;
	margin-top: -100px;
}

.galeria__item {
  width: 80%;
  cursor: pointer;

}

@media screen and (min-width:480px) {
  .galeria__item {
    width: 48%;
    margin: 5px;
  }
}
@media screen and (min-width:768px) {
  .galeria__item {
    width: 30%;
  }
}
@media screen and (min-width:1024px) {
  .galeria__item {
    width: 20%;
    margin: 15px;
  }
}
/*ESTILO MODAL*/

.modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  top: 0;
  left: 0;
  visibility: hidden;
  opacity:0;
  
  display: flex;
  justify-content: center;
  align-items: center;
}


.modal:target {
	visibility: visible;
	opacity:1;
	transition: all 0.5s;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.cerrar {
  margin-top: 150px;
  width: 50px;
  height:50px;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  font-family: monospace;
  line-height: 50px;
  text-align: center;
  background: red;
  border-radius: 50%;
  cursor: pointer;
  
  position: absolute;
  right: 10px;
  top: 10px;
}


.imagen {
	width: 80%;

  	max-width: 800px;

	display: flex;
	justify-content: center;
	aling-items: center;
	
}	

.imagen a {
	color: #fff;
	font-size: 50px;
	text-decoration: none;
	margin:0 10px;
	margin-top: 60%;
	display: center;
}

.imagen a:nth-child(2) {
	margin: 0;
	height: 100%;
	flex-shrink: 2;
}
.imagen img {
	width: 700px;
	height: 100%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
	
}

.blog h5 
{
  
	text-align: center;
	font-size: 28pX;

	font-family: Century gothic;
	padding: 0;
	margin-top: 100px;
	margin-bottom: 0;
}




/*INFORMES*/

* {
  
    	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


footer {
  
    	width: 100%;
	font-family: arial;
}

.footer-container {
  
    	width: 100%;
	background: #096793;
	color: #fff;
}

.footer-main {
  
    	width: 100%;
	max-width: 900px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	top: 200px;
}

.footer-main .footer-columna {
  
    	width: calc(100%/2);
	text-align: justify;
}


.footer-main .footer-columna:nth-child(2) {
  
    	padding: 0 10px;
}

.footer-main .footer-columna h5 {
  
    	font-size: 32px;
	color: #fff;
	margin-bottom: 10px;
	font-family: Century gothic; 
	margin-top: 10px;
	text-align: center;
}

.footer-main .footer-columna span p {
  
    	display: inline-block;
	margin-left: 5px;
	margin-bottom: 10px;
	font-size: 17px;
	font-family: Arial; 
	padding: 2px;
}

.footer-main .footer-columna img {
 
	margin-top: 15px;
	margin-left: 40px;
	width: 65%;
}

.footer-copy-redes {
  
    	width: 100%;
	background: #333;
	border-top: 3px solid #fff;
}


.main-copy-redes {
	padding: 0;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
}

.main-copy-redes .footer-copy {
    	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: #fff;	
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.footer-copy-redes .main-copy-redes .footer-copy p {
    	width: 100%;
	display: flex;
	flex-wrap: wrap;
	color: #fff;	
	justify-content: center;
	font-family: Arial; 
}