@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(social-bar.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    
}
html, body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    
}

header{
    width: 100%;
    height: 80px;
    background-color: white;
    color: black;
    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;
}

.contenedor .menu-icon {
    width: 160px;
    height: 68px;
    margin-left: 40%;
}

.container{
    width: 100%;
    margin: auto;
}
.container--flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.column{
    width: 100%;
}
.column--50{
    width: 49%;

}
.icon-facebook{
    font-size: 35px;
}
.icon-linkedin{
    font-size: 35px;
}

/*------------------------Buttons------------------------*/

.btn{
    display: block;
    text-align: center;
    text-decoration: none;
    width: 120px;
    background: white;
    color: black;
    padding: 10px;
    margin: 10px auto;
}

.icon-bar{
    display: none;
}
/*------------------------ RESPONSIVE ------------------------*/
@media only screen and (min-width:768px){
    .icon-bar{
        display: block;
    }
}
@media (min-width:1023px) {


    .contenedor{
        width: 1000px;
    }




@media only screen and (min-width: 1440px) {
}
