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

body{
    margin: 0;
    min-height: 100vh;
    background-image: url(../imagenes/fondo-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

header{
    width: 100%;
    height: 120px;
    background: #fff;
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

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

h1 {
    float: left;
}

.logo{
    width: 350px;
    padding: 25px 20px;
}

header .contenedor {
    display: table;
}

header label {
    float: right;
    font-size: 30px;
    margin: 30px 10px;
    cursor: pointer;
    color: black;
}

#menu-bar {
    display: none;
}

.menu{
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #5E5E5E;
    transition: all 0.5s;
    transform: translateX(-100%);
}

.menu a {
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.9);
}

.menu a:hover{
    background: rgba(255,255,255,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;
        margin-top: 40px
        
    }
    
    .menu a{
        border: none;
        background: #fff;
        color: black;
        font-weight:bold;
    }
    
    .menu a:hover{
        color: #fff;
        background:#FF0086;
    }
    
    header label{
        display: none;
    }
}

.barra-color{
    position: relative;
    top: 120px;
    background: #FF0086;
    padding: 15px 0px;
}

#nuestrosclientes{
    margin-top: 120px;
    text-align: center; 
    padding: 40px 0px;
    background: #fff;
    opacity: 0.9;
}

h9{
    font-family: 'Fira Sans', sans-serif;
    font-size: 30px; 
    font-weight:bold;
}

.contenedor2{
    width:100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    opacity: 0.9;
}

.contenido{
   color:black;
    margin: 5px;
    width:240px;
    height: 10%;
    text-align: center; 
}

.contenido img {
    width: 20%;
    border-radius: 2%;
}

h7{
    font-family: 'Fira Sans', sans-serif;
    color:black;
    font-size: 19px; 
}

p{
    text-align:left;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px; 
    padding: 5px 0px;
}


footer .contenedorpie{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 41px;
    background:#FF0086;   
}

.copy{
    color: #fff;
    margin-top: 15px;
}

a{
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
}

@media (min-width:1024px){
    .contenido{
        width: 210px;
    }
    
    h9{
      font-size: 40px;   
    }
    
    .contenido img {
    width: 30%;
    border-radius: 2%;
}
}

