/*Quitar margenes*/

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

}



body {
    font-family: verdana;

    background: #f2f2f2;
    overflow-x: hidden;
}



/*Logo*/
.titulo {
    width: 100%;
    height: 400px;
    background-image: url("https://static.wixstatic.com/media/509653_732de88ba14146358db01f5c89711001~mv2_d_3692_2513_s_4_2.jpg/v1/fill/w_724,h_493,al_c,q_90,usm_0.66_1.00_0.01/509653_732de88ba14146358db01f5c89711001~mv2_d_3692_2513_s_4_2.webp");
    background-size: cover;
    text-shadow: /*El eje de la x*/ 1px /*El eje de la y*/ 1px /*Difuminado*/ 3px /*Color de la sombra*/ rgba(0, 0, 0);
  }
  
  
  .titulo h1{
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 40px;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
    font-family: verdana;
}

.boton_mostrar {
    display: flex;
    justify-content: center;
    font-size: 20px;
    color:#e51a1a;
  }

  #contenido{
    display: none;
  }

  #contenido1{
    display: none;
  }
  
  #contenido2{
    display: none;
  }
/*Contenido*/
.festivales{
    width: 100%;
    padding: 10px;
    margin-top: 100px;

}

.festivales .festival2018{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}

.festivales .festival2017{
    width: 100%;
    display: flex;
    align-items: center;
}

.festivales .info{
    width: 70%;
    padding: 0px 30px;
}

.festivales-img{
width: 40%;
height: 40%;
box-shadow: 1px 1px 10px black;

}

.festivales-img img{
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}



.festivales .info h2{
    margin: 15px;
    font-size: 30px;
    color: #e51a1a;
}


.festivales .info h4{
    text-align: center;
    margin: 15px;
    font-size: 20px;
    color: #e51a1a;
}


.festivales .info p{
    font-size: 17px;
    color: black;
    line-height: 27px;
    margin: 10px 0px;

}



@media (max-width: 860px) {
   

    /*Imagen de Bienvenida de la pagina index */
    .bienvenida {
        width: 100%;
        height: 700px;
        background-size: cover;
        background-attachment: fixed;
        background-position: top;
    }

    .titulo {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        color: #d8d2d2;
        overflow: hidden;
        font-family: verdana;
    }

    .titulo h1{
        font-size: 20px;

    }

}


/*RESPONSIVE*/

@media (max-width: 912px) {
    
.festivales .info{
    width: 100%;
}

.festivales-img{
    display: none;

}


    .festivales .info h2{
        font-size: 15px;
    }

    .festivales .info h4{
        text-align: center;
        font-size: 10px;
    }
    .festivales .info p{
        font-size: 16px;
    }
}
