* {
    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;
}


/*------Formulario--------*/

#formulario{
    background: #fff;
    opacity: 0.9;
}

form {
	width:100%;
    margin:auto;
	padding:0px 20px;
	box-sizing:border-box;
	margin-top:0px;
}

h2 {
	color:#fff;
	text-align:left;;
	margin:0;
	font-size:0px;
	margin-bottom:0px;
}


input, textarea{
	width:100%;
	margin-bottom:20px;
	padding:7px;
	box-sizing:border-box;
	font-size:17px;
	border:none;
    border:3px solid #FF0086;
}

textarea{
	min-height:100px;
	max-height:100px;
	max-width:100%;
	min-width:100%
}

#boton{
	width: 200px;
    background:#FF0086;
	color:#fff;
	padding:10px;
    margin-top: -20px
}

#boton:hover {
	cursor:pointer;
}


.contenedor4{
    width:100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    opacity: 0.9;
}
.contenido{
    width: 70%;
    padding: 10px;
    background: #5E5E5E;
    margin-bottom: 15px;
    border-radius: 10px;
}

h3{
    text-align: center;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 30px;
    color:#fff;
}

h4{
    margin-left: 10%;
    margin-right: 10%;
    padding: 10px;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 22px;
    color:#fff;
}




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

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

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


@media (min-width:1024px){
    h9{
      font-size: 40px;   
    }
    
    h3{
        font-size: 20px;
    }
    
    form{
        width: 50%
    }
    
    .contenido{
        width: 30%;
    }
}


