@import url(https://fonts.googleapis.com/css?family=Oswald);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

header {
    height: 55px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 30;
}

header label {
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.contenedor {
    width: 98%;
    margin: auto;
}

.contenedor1 {
    width: 100%;
    margin: auto;
}

.contenedor2 {
    width: 100%;
    margin: auto;
}


section {
    width: 100%;
    margin-bottom: 10px;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    
}


.copy {
    font-size: 18px;
}


footer2 .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #fff;
    width: 100%;
    bottom: 0;
    position: absolute;
    height: 29px;
   
    
}


#btn-menu {
    display: none;
}

.menu ul {
    background: #000;
    display: flex;
    list-style: none;
    
}

.menu ul ul {
    display: none;
}

.menu a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
}

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

.menu a span {
    margin-left: 10px;
}

.menu ul li:hover ul {
    display: block;
    position: absolute;
    font-size: 11px;
}


@media (max-width:768px) {
    header label {
        display: block;
    }
    
    .menu {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        transform: translateX(-100%);
        transition: all 0.4s;
        
    }
    
    .menu ul {
        display: block;
    }
    
    .menu ul li:hover ul {
        display: none;
        position: static;
    }
    
    .menu a span {
        position: absolute;
        right: 5px;
    }
    
    #btn-menu:checked ~ .menu {
        transform: translateX(0%);
    }
    
    .menu ul ul {
        background: rgba(0,0,0,0.4);
    }
    
    .menu ul ul a {
        padding: 15px 40px;
    }
}

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

}

@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
}


