* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,body {
    width: 100%;
    height: 100%;
    position: relative;
}
body {
    overflow-x: hidden;
    background: #000;
}
a {
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.nav-menu {
    width: 100%;
    height: 80px;
}
.container {
    max-width: 1250px;
    min-width: 320px;
    position: relative;
    margin: auto;
}
.nav-menu {
    width: 100%;
    height: 90px;
    background-color: #fff;
    z-index: 999999;
    display: table;
}
.logo {
    width: 30%;
    height: 90px;
    padding: 10px;
    float: left;
}
.logo img {
    width: 120px;
}
.main {
    width: 70%;
    height: 80px;
    padding: 25px;
    float: right;
}
#btn-menu{ 
    display: none; 
}
header label{ 
    cursor: pointer; 
    float: right; 
    width: 50px; 
    height: 50px; 
    text-align: center; 
    line-height: 50px; 
    color: #000; 
    margin-top: 10px; 
    font-size: 30px; 
    display: none;
}
.menu ul {
    display: inline-flex;
    float: right;
    list-style: none;
}
.menu ul ul {
    display: none;
}
.menu a {
    display: block;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.menu a:hover {
    background-color: #98a82e;
    color: #FFF;
}
.menu-fixed { 
	position: fixed; 
	top: 0; 
	width: 100%; 
	/*max-width: 1200px;*/ 
	background: rgba(255, 255, 255,1);
	transition: all .5s ease-in-out; 
	z-index: 999999; 
}
section {
    width: 100%;
    height: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
    position: relative;
    display: table;
}
.compartir-whatsaap {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 40px;
    background: #005e50;
    position: fixed;
    left: 40px;
    bottom: 20px;
    z-index: 999;
}
.compartir-whatsaap a{
    font-size: 24px;
    color: #FFF;
    display: block;
}
.compartir-whatsaap a:hover {
    color: #FFF;
}
.padded-footer {
    padding-top: 70px;
    padding-bottom: 10px;
}
.ir-arriba { 
	display: none; 
	cursor: pointer; 
	position: fixed; 
	right: 40px; 
	bottom: 20px; 
	width: 60px; 
    height: 60px;
    border-radius: 10px;
	background: #000;
	color: #fff; 
	text-align: center; 
	line-height: 60px; 
	z-index: 9999; 
}
.footer {
    width: 100%;
    height: 350px;
    text-align: center;
    position: relative;
    bottom: 0;
    background-color: #212121;
    background-image: url(../img/pattern2.png);
    display: table;
}
.footer img {
    width: 70%;
    max-width: 250px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}
.contenedor-sociales {
    width: 100%;
    height: 60px;
    text-align: center;
    margin-bottom: 10px;
}
.contenedor-sociales ul {
    width: 100%;
    text-align: center;
    display: table;
}
.contenedor-sociales ul li {
    list-style: none;
    position: relative;
    display: inline-block;
}
.contenedor-sociales ul li a {
    color: #FFF;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    margin: 5px;
    font-weight: 600;
    overflow: hidden;
    text-decoration: none;
}
.descripcion-footer {
    width: 100%;
    height: 60px;
    text-align: center;
    display: table;
    margin: auto;
    margin-bottom: 20px;
}
.contact-footer {
    width: auto;
    height: 60px;
    padding: 20px;
    margin: 5px;
    display: inline-block;
}
.contact-footer i {
    width: 25px;
    color: #98a82e;
}
.contact-footer p {
    color: #fff;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-align: center;
}
.contact-footer a {
    color: #FFF;
}
.copyright {
    width: 100%;
    height: 50px;
    display: table;
}
.copyright p {
    color: #747474;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width: 1016px){
    header label{ 
        display: block; 
        margin-right: 0px; 
        top: 0px; 
        margin-top: -5px; 
    }
    .menu{ 
        position: absolute; 
        width: 100%; 
        top: 89px; 
        left: 0; 
        transform: translateX(-100%); 
        transition: all .3s ease; 
        z-index: 10000; 
    }
    .menu ul{ 
        float: none; 
        display: block; 
        background: #000; 
    }
    .menu a{ 
        margin-top: 0; 
        color: #FFF; 
        padding: 20px 20px; 
        border-bottom: solid 1px #FFF; 
    } 
	#btn-menu:checked ~ .menu{ 
        transform: translateX(0%); 
    }
}