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

body{
    background-color: #f0eeeb;
    font-family: Calibri, Arial, sans-serif
}

.wrap{
    width: 90%;
    font-family: Calibri, Arial, sans-serif;
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
    color: black;
}
.wrap > h1{
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.wrap > h2{
    font-size: 14px;
    text-align: justify;
    font-weight: lighter;
    margin-top: 5px;
    margin-bottom: 5px;

}

.wrap > h3{
    font-size: 16px;
    text-align: justify;
    font-weight: lighter;
    margin-bottom: 5px;
}

.wrap > h4{
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.line{
    background: #010101;
    border: none;
    width: 100%;
    height: 1px;
	margin-bottom: 5px;
	margin-top: 5px;
	
}


.head{
    background-position: top;
	
}

/* MENU */

    .menu{
        background-color: rgba(240, 238, 235, 0.8);
        width: 100%;
        height: 60px;
        display: flex;
        margin-top: 0px;
        margin-bottom: 0px;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        box-shadow: 0 3px 5px 0 rgba(0,0,0,.1);

    }
    .logo{
        width: 20%;
		padding-left: 10px;
	}

    .menu_items{
        display: flex;
        list-style: none;
        margin-right: 15px;
        align-items: center;
    }
   
    .menu_items li{
        border-radius: 3px;
        margin: 0, 5px;
        
    }

    .menu_items li a{
        color: #004ebc;
        font-size: 18px;
        font-weight: bold;
        padding: 5px 13px;
        display: block;
        align-content: center;
        text-decoration: none;
    } 

    .menu_items li:hover, li:active{
        background-color: rgba(0, 0, 0, 0.4);
        transition: 0.7s;
        border-radius: 2px;
    }
    .active{
        background-color: rgba(0, 0, 0, 0.3);
    }
	
	.active:link{
        background-color: rgba(0, 0, 0, 0.3);
		color: white;
    }
   
    .btn_menu {
        margin-right: 15px;
        font-size: 25px;
        color: white;
        cursor: pointer;
        display: none;

    }

    ul.show{
        top: 60px;

    }

    @media screen and (max-width: 952px){
        .menu_items li a{
            font-size: 16px;
        }
	}

    @media screen and (max-width: 1057px){
        .menu{
            height: 60px;
        }
        .btn_menu{
            display: inline-flex;
			color: black;
        }
        .menu_items{
            position: fixed;
            width: 100vw;
            height: calc(100% - 60px);
            background-color: rgba(0, 0, 0, 0.7);
            top: -100vh;
            text-align: center;
            transition: all .4s;
            flex-direction: column;
        }
        .menu_items li{
            margin: 15px 0 0 0;
            line-height: 15px;
        }
        .menu_items li:hover{
            background: rgba(0,0,0,0.7);
            width: 100%;
            line-height: 15px;
        }
        .menu_items li a{
            font-size: 20px;
            color: #f0eeeb;
            font-weight: bold;
        }
        .menu_items li a:hover{
            color:#f0eeeb;
        }
        .logo{
            font-size: 20px;
            padding-left: 10px;
			width: 30%;
        }
    }

    @media screen and (max-width: 858px) and (orientation: landscape){
        .menu_items li{
            margin: 5px 0 0 0;
        }
        .menu_items{
            overflow: scroll;
            height: calc(100% - 60px);
        }
    }
	@media screen and (max-width: 501px){
		.imagen-producto{
			width: 100%;
			
		}
		.logo{
			width: 50%;
		}
	}
	
	
/* PIE */	
	
.pie{
	width: 100%;
	background-color: #474747;
	color: #f0eeeb;
	font-family: Calibri, Arial, sans-serif;
	height: auto;
	
}

.derechos h6{
	font-size: 12px;
    font-weight: lighter;
    text-align: center;
    margin-top: 70px;
	padding-bottom: 5px;
}

.links{
	display: flex;
	align-items: center;
	justify-content: center;
	
}

.siguenos > h4{
	font-size: 21px;
    font-weight: normal;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 5px;
	padding-top: 15px;
	
}

.links ul li{
	display: inline-block;
	margin: 30px 10px;
	width: 50px;
	height: 50px;
	text-align: center;
}

.links ul li a{
	display: block;
	padding: 0 10px;
	background: #f0eeeb;
	color: #010101;
	line-height: 50px;
	font-size: 20px;
	transition: 0.2s;
	box-shadow: 0 3px 5px 0 rgba(255,255,255,.3);
}

.line2{
    background: #f0eeeb;
    border: none;
    width: 90%;
    height: 1px;
	margin-bottom: 5px;
	margin-top: 5px;
	margin-left: 5%;
}

/* LINKS REDES SOCIALES */

.links ul li a:hover{
	transform: translateY(-3px) scale(1.05);
}

.links ul li .linkedin:hover{
	background: #0087b5;
}

.links ul li .facebook:hover{
	background: #3b5999;
}

.links ul li .instagram:hover{
	background: #e4405f;
}

.links ul li .youtube:hover{
	background: #cf1312;
}


/* ENLACES */
.enlaces:link{
	color: #004ebc;
}

.enlaces:visited{
	color: #004ebc;
}

.enlaces:hover{
	color: #FF4422;
	transition: 0.2s;
}