@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz');
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Yanone+Kaffeesatz');
*{
    box-sizing: border-box;
}
.banner__img{
    display: block;
    width: 30%;
    max-width: 100%;
    margin: auto;
    
    
}

body{
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Yanone Kaffeesatz', sans-serif;
    letter-spacing: 1.5px;
}

/*estilos del header*/

.header{
    height: 60px;
}

.header.contenedor{
    display: flex;
    justify-content: space-between;
}

.logo{
    margin: 5px;
    color: rgba(0,0,0,0);
}

.icon-menu{
    margin: 5px;
    color: #fff;
}

.icon-menu{
    display: block;
    width: 40px;
    height: 40px;
    font-size: 30px;
    background: #D80707;
    text-align: center;
    line-height: 45px;
    border-radius: 5px;
    margin-left: auto;
    cursor: pointer;
}

/*-------------Estilos menu------------*/

.nav{
    position: absolute;
    top: 10%;
    left: -100%;
    width: 100%;
    transition: all 0.4s;
}

.menu{
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu__link{
    display: block;
    padding: 15px;
    background: #D80707;
    text-decoration: none;
    color: #fff;
}

.menu__link:hover{
    background: white;
    color: #D80707;
}

.mostrar{
    left: 0;
}

.select{
    background: white;
    color: #D80707;
}

/*------------Estilos de banner------------*/

.banner{
    margin-top: -60px;
    position: relative;
    z-index: -1000;
   
}

.banner .contenedor{
    position: absolute;
    top: 420px;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: x-large;
        
}

.banner__txt{
    display: none;
}

/*_____________Estilos de info______________*/

.info__columna{
    background: #D80707;
    color: #fff;
    padding: 15px;
    margin-bottom: 30px;
}

/*___________estilos footer__________*/
.footer{
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

.footer .social [class^="icon-"]{
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

/*_____________Estilos de servicios______*/

.section__titulo{
    text-align: center;
    font-size: 40px;
    color: #D80707;
}

.cursos__columna{
    position: relative;
    margin-bottom: 30px;
    
}

.cursos__descripcion{
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 550px; 
    height: 100%;
    padding: 5px;
    margin-left: 325px;
   
}

.cursos__titulo{
    font-size: 25px;
    margin: 5px 0;
}

.cursos__img{
    display: block;
    margin: auto;
}

.brochure{
  background-color: rgba(0,0,0,0.3);
  margin: 1rem;
  padding: 1rem;
  border: 2px solid #ccc;
  /* IMPORTANTE */
  text-align: center;
}



