@import url(menu.css);
@import url(inicio.css);
@import url(nosotros.css);
@import url(servicios-banner.css);
@import url(servicios.css);
@import url(clientes-banner.css);
@import url(clientes.css);
@import url(organizacion-banner.css);
@import url(organizacion.css);
@import url(contactenos.css);
@import url(creditos.css);
@import url(contactos.css);
@import url(menu-galeria.css);
@import url(imagenes.css);






*{ 

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-image: url(/img/Fondo.jpg);
    /* Para crear un degradado en el fondo:
    background-image: linear-gradient(270deg, rgb(22, 16, 15) 0%, rgb(22, 16, 15) 100%);
    -webkit-font-smoothing: antialiased;*/
}

body {
    background: #fff;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

h1, h2 {
    color: black;
    font-weight: 600;
    line-height: 1.3;
}

h3, h4 {
    color: black;
    font-weight: 100;
    line-height: 1.2;
}

p {
    color: black;
    font-size: 16px;
    line-height: 1.2;
}


header {
    width: 100%;
    max-width: 1200px;
    min-width: 300px;
    height: 55px;
    background: #6A8AC6;
    box-shadow: 0px 10px 25px -7px rgba(0, 0, 0, 10);

    color: white;
        
    position: fixed;
    top: 0;
    left: auto;
    right: auto;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}


header .contenedor {
    display: table;
}


header .contenedor img {
    float: left;
    margin-top: 5px;
    margin-left: 15px;
    width: 280px; 
}

section {
    width: 100%;
}


@media (min-width: 1224px) {
#nosotros .contenedor {
        width: 1200px;
    }
}

@media (min-width: 1224px) {
#servicios .contenedor {
        width: 1200px;
    }
}

@media (min-width: 1224px) {
#clientes .contenedor {
        width: 1200px;
    }
}

@media (min-width: 1224px) {
#organizacion .contenedor {
        width: 1200px;
    }
}

@media (min-width: 1224px) {
#contactenos .contenedor {
        width: 1200px;
    }
}