@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('menu.css');
@import url('banner.css');
@import url('servicio.css');
@import url('info.css');
@import url('slider.css');

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

body {
    font-family: 'Open Sans', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background:  #333;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

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

h1 {
    float: left;
}

header .contenedor {
    display: table;
}

header .contenedor img {
    position: absolute;
    top: 0px;
    overflow: hidden;
    width: 150px;
    height: 50px;
}

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

#bienvenidos {
    background: #F18200;
    text-align: center;
    padding: 20px;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

.copy {
    font-size: 20px;
}

.sociales {
    width: auto;
    margin-top: -5px;
    text-align: center;
    font-size: 28px;
}

.sociales a {
    color: #333;
    text-decoration: none;
}

@media (min-width:768px) {    
    footer .contenedor {
        justify-content: space-between;
    }
}

@media (min-width:968px) {
    .sociales {
        width: 100%;
        margin-top: 15px;
    }
}

@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
    
    .sociales {
        width: auto;
        margin-top: -5px;
    }
    
    footer .contenedor {
        width: 85%;
    }
}

@media (min-width:1100px) {
    .sociales {
        width: 100%;
        margin-top: 15px;
    }
}

@media (min-width:1460px) {
    .sociales {
        width: auto;
        margin-top: -5px;
    }
}