body{
    margin: 0px;
    padding: 0px;
}
.all{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.head{
    width: 100%;
    height: 50px;
    display: flex;
    vertical-align: middle;
    background: #800000;
}

#header {
    margin:0px;
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 20px;
}
ul, ol {
    list-style:none;
    padding-left: 10px;
}
			
.nav {
    width:auto; /*Le establecemos un ancho*/
    margin:0 auto; /*Centramos automaticamente*/
}
 
.nav > li {
    float:left;
}
			
.nav li a {
    background-color:#800000;
    color:#fff;
    text-decoration:none;
	padding:12px 15px;
	display:block;
}
			
.nav li a:hover {
    background-color:#A21616;
}
			
.nav li ul {
    display:block;
    position:absolute;
    min-width:150px;
}
/*
.nav li:hover > ul {
    display:block;
}*/
			
.nav li ul li {
    position:relative;
}
			
.nav li ul li ul {
    right:-150px;
    top:0px;
}
.logo{
    width: 100%;
    text-align: center;
}
.logo > img{
    width: 500px;
}
.foto{
    width: 100%;
    text-align: center;
}
.foto > img{
    width: 900px;
    height: 500px;
}
.titulos{
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    font-family: tahoma;
    color: #393434; 
    padding-bottom: 10px;
    padding-top: 10px;
}
.texto{
    width:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.informacion{
    max-width:850px;
    text-align: left;;
    padding: 10px;
}

.informacion > ul{
    list-style:disc;
    padding: 0px;
}

.informacion > ul > li {
    font-family: tahoma;
    font-size: 18px;
    padding:10px 5px;
}
.informacion > p {
    font-family: tahoma;
    font-size: 18px;
}
.foto-emp{
    width: 100%;
    text-align: center;
}
.foto-emp > img{
    width: 900px;
    height: 500px;
}

.catalogo{
    width: 100%;
    display: flex;
    justify-content: center;
}
.productos{
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    
}

.artcl{
    padding: 10px;  
    margin: 10px;
    border: 1px solid #000000;
    text-align: center;
}
.artcl > p{
    font-family: tahoma;
    font-size: 18px;        
}
.foto-art{
    width: 300px;
}
.foto-art img{
    width: 300px;
    height: 200px;
}

.formulario{
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-consulta {
    max-width: 500px; 
    background: #eee; 
    padding: 25px; 
    font-family: 'Source Sans Pro', sans-serif;
}
.campo-form {
    width:100%; 
    height:36px; 
    margin:2px 0 6px;
    padding-left:6px; 
    box-sizing: border-box; 
    border-radius:3px; 
    border:0; 
    font-family: 'Source Sans Pro', sans-serif; 
    font-size:1em;
}
label span {
    color: #f00;
}
textarea {
    min-height: 150px!important;
}
.btn-form {
    display: inline-block; 
    border:0;
    background: #000;
    height: 46px; 
    line-height: 46px; 
    padding: 0 20px; 
    border-radius: 6px; 
    color:#fff; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.btn-form:hover {
    background: #444;
}

.btn-form-men {
    display: block; 
    border:0;
    background: #800000;
    height: 50px; 
    line-height: 46px; 
    padding: 0 10px; 
    border-radius: 6px; 
    color:#fff; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 20px;
}
.btn-form-men:hover {
    background: #A21616;
}

.btn-form-men:focus{
    outline: none;
}

@media screen and (max-width:900px){
    .foto > img{
        width: 100% ;
        height: auto;
    }
    .foto-emp > img{
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width:500px){
    .logo > img{
        width: 100%;
    }
}