@import url('https://fonts.googleapis.com/css?family=Fjalla+One');
@import url('https://fonts.googleapis.com/css?family=Muli');
*{
    box-sizing: border-box;
}
img{
    display: block;
    max-width: 100%;
}
body{
    margin: 0;
    font-family: 'Muli', sans-serif;
}
h1,h2,h3,h4{
    font-family: 'Fjalla One', sans-serif;
    letter-spacing: 1.0px;
    }

.section__titulo{
    text-align: center;
    font-size: 40px;
    color: brown;
}
.contenedor{
    margin: auto;
    width: 98%;
}
/*-----------------------------Estilos del header-----------------------------*/
.header{
    height: 60px;
    }
.header .contenedor {
    display: flex;
    justify-content: space-between;
}
.logo, .icon-menu {
    margin: 5px;
    color: #fff;
}
.icon-menu {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 30px;
    color: #fff;
    background: #FBA919;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
    margin-left: auto;
    cursor: pointer;
}
/*---------------------------Estilos del menu---------------------------*/
.nav {
    position: absolute;
    top: 65px;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
}
.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__link {
    display: block;
    padding: 15px;
    background: #FBA919;
    text-decoration: none;
    color: #fff;
}
.menu__link:hover{
    background: white;
    color: #FBA919;
}
.mostrar {
    left: 0;
}
.select{
    background: white;
    color: #FBA919;
}

/*---------------------------Estos del banner---------------------------*/
.banner{
    margin-top: -65px;
    position: relative;
    z-index: -1000;
}

.banner .contenedor{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    color: darkorange;
    text-align: center
}

.banner__txt{
    display: none;
    
}

/*----------------------------Estilos de info----------------------------*/
.info__columna{
    background: #FBA919;
    padding: 10px;
    margin-bottom: 30px;
}

/*----------------------------Estilos de contenido----------------------------*/

.contenido__columna{
    position: relative;
    margin-bottom: 30px;
}
.contenido__descripcion{
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 60%;
    height: 100%;
    padding: 5px;
}

.contenido__titulo{
    font-size: 25px;
    margin: 5px 0;
}
.contenido__columna{
    width: 100%;
}

/*----------------------------Estilos de footer----------------------------*/
.footer{
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}
.footer [class^="icon-"]{
    color: #333;
    text-decoration: none;
    font-size: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    width: 50%;
    height: 50px;
    line-height: 40px;
    }

/*----------------------------Estilos de responsive----------------------------*/
@media(min-width:480px){
    .logo{
        font-size: 40px;
    }
    .banner__titulo{
        font-size: 38px;
        margin: 5px 0;
}
    .banner__txt{
        display:block;
        font-size: 20px;
        margin: 7px 0;
            }
    .info, .contenido{
        display: flex;
        justify-content: space-between;
        margin-top: -80px;
        }
    .info__columna{
        width: 32%;
    }
    .info__titulo{
        font-size: 28px;
        margin: 5px 0;
    }
    .section__titulo{
        width: 100%;
    }
    
    .contenido{
        flex-wrap: wrap;
        margin-top: 0;
    }
    
    .contenido__columna{
        width: 49%;
    }
    .footer [class^="icon-"]{
        margin: 0 10px;
    }
}

@media(min-width:720px){
    
     .logo{
        font-size: 45px;
    }
    .banner__titulo{
        font-size: 50px;
        margin: 5px 0;
}
    .banner__txt{
        display:block;
        font-size: 21px;
        margin: 9px 0;
            }
    .info, .contenido{
        display: flex;
        justify-content: space-between;
        margin-top: -110px;
        }
    .info__columna{
        width: 32%;
    }
    .info__titulo{
        font-size: 28px;
        margin: 9px 0;
    }
    .section__titulo{
        width: 100%;
    }
    
    .contenido{
        flex-wrap: wrap;
        margin-top: 0;
    }
    
    .contenido__columna{
        width: 49%;
    }
    .contenido__titulo{
        font-size: 40px
    }
    .contenido__txt{
        font-size: 22px
    }
    
}

@media(min-width:1024px){
    .contenedor{
        width: 1000px;
    }
    .nav{
        position: static;
        width: auto;
    }
    .menu{
        display: flex;
    }
    .icon-menu{
        display: none;
    }
    .menu__link{
        background: none;
        font-size: 20px;
    }
    .select{
        color: #fff;
        background: #FBA919;
    }
    
    .info{
        margin-top: -400px;
        }
    .info__columna{
        width: 32%;
            }
    .contenido__descripcion{
        padding: 10%;
    }
      .banner__titulo{
        font-size: 50px;
        margin: -200px 0;
        
}
.banner__txt{
    margin: 200px 0;
}
    }
  
}