@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.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;
}

section {
    width: 100%;
    margin-bottom: 25px;
    
}

#bienvenidos {
    
    text-align: center;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    
}

.copy {
    font-size: 20px;
}


.sociales {
    width: 100%;  
    text-align: center;
    font-size: 28px;
    
}

.sociales a {
    color: #333;
    text-decoration: none;
    
}

.btn {
            border-radius: 3px;
            display: inline-block;
            padding: 20px 15px;
            text-decoration: none;
            text-shadow: 0 1px 0 rgba(255,255,255,0.3);
            box-shadow: 0 1px 1px rgba(0,0,0,0.3)
        }

        .btn-green {
            color: white;
            background-color: #3CC93F;
        }

        .btn-green:hover {
            background-color: #37B839;
        }

        .btn-green:active {
            background-color: #29962A;

        }

        .btn-red {
            color: white;
            background-color: #E34242;
        }

        .btn-red:hover {
            background-color: #C43535;
        }

        .btn-red:active {
            background-color: #A62828;

        }






@media (min-width:768px) {
    .sociales {
        width: auto;
    }
        
    footer .contenedor{
        justify-content: space-between;
    }     
        
}


@media (min-width:1024px) {
    .contenedor {
        width: 1000px;
    }
    
    
}

