@charset "utf-8";

/*reglas generales*/

*{
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: 0;
}


body{
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Rubik', sans-serif;
}


header {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;   
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    position: relative;
}

/*barra de navegacion*/

.inicio a {
    color: #ffffff;
    background-color: #39b54a;
}

.inicio a:hover {
    color: #FFFFFF;
    background-color: #39b54a;
    transition: 0.4s;
}

#aboutus {
    color: #ffffff;
    background-color: #d4145a;
}

.nosotros a:hover {
    color: #FFFFFF;
    background-color: #d4145a;
    transition: 0.4s;
}

.agenda a {
    color: #ffffff;
    background-color: #662d91;
}

.agenda a:hover {
    color: #FFFFFF;
    background-color: #662d91;
    transition: 0.4s;
}


.eventos a {
    color: #ffffff;
    background-color: #00a99d;
}

.eventos a:hover {
    color: #FFFFFF;
    background-color: #00a99d;
    transition: 0.4s;
}

.convocatoria a {
    color: #ffffff;
    background-color: #f7931e;
}

.convocatoria a:hover {
    color: #FFFFFF;
    background-color: #f7931e;
    transition: 0.4s;
}

/* boton que llama al menu*/
#llamamenu {
    background-color: #ffffff;
    color: #000000;
    border: none;
    display: flex;
    z-index: 9999;
    padding-top: 0%;
    padding-left: 0%;
    position: fixed; /* Set the navbar to fixed position */
    top: 25px; /* Position the navbar at the top of the page */
}

.container{
    float: right;
}

header nav {
    position: fixed;
    top: 4em;
    left: 1.5em;
    width: 45%;
    z-index: 9999;
}

header nav a {
    display: flex;
    justify-content: flex-start;
    padding: 5px;
}

header nav ul {
    /* el menu sale del flujo de
    informaciones y se oculta a la derecha*/
    padding-top: 0em;
    transition: all 5s ease;
    z-index: 9998;
    font-size: 20px; 
    display: none;
}

.visible {
    /* el menu se muestra corriendose a la izquierda*/
    right: 50%;
}


/*logo guiarte*/

header h1 {
    color: #000000 ;
    font-size: 40px;
    font-weight: bolder;
    
    
    
}
header h1 span {
    color: #39b54a;
}

/*mobile first*/

/*main galeria*/

.slider {
    width: 100%;
    height: 350px;
    margin: auto;
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.slider img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    
}
.slider input[type="radio"] {
    display: none;
    
}
.slider input[type="radio"]:checked ~ img {
    opacity: 1;
    
}
.slider input[type="radio"] + label {
    position: relative;
    z-index: 50;
    margin: 10px;
    display: block;
    width: 15px;
    height: 15px;
    background: #D5D0D0;
    border-radius: 50%;
    border: 1px solid #FFFFFF ;
}

.slider input[type="radio"]:checked + label {
    
    background: #FFFFFF;
}

ul, li {
    list-style: none;
    text-decoration: none;
}



.galeria img {
    width: 100%;
    margin-bottom: 0;
    
}

.texto {
    background: #D5D0D0;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 20px 20px 20px;
}
.texto p span {
    color: #FFFFFF;
}


.nosotros h1{
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right: 5%;
    
    
}

.barranosotros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #d4145a; 
    padding: 5px;  
    
}

.barranosotros figure {
    max-width: 100%;
    height: auto;
    
}

.barranosotros figure img {
    width: 25px; 
    margin-left: 5%;
}

.nosotros h2.subtitulo{
    color: #d4145a;
    padding: 9px;
    
}

p.historia {
    color: #E0DEDE;
    text-align: center;
    padding: 8px;
    
    
}
p.historia span{
    color: #000000;
}



.mapa p{
    color: #000000;
    font-size: 13px;
}

.nosotros img{
    width: 100%;
    
}
.nosotros h2 span {
    text-transform: uppercase;
    margin-left: 0.50em;
    color:#d4145a;

    
}
.horarios span {
    text-transform: uppercase;
    margin-left: 0.50em;
    color:#d4145a;

    
}

.nosotros p {
    text-align: start;
    margin: 0.50em;
    margin-bottom: 2em;
}



.aranceles {
    display: flex;
    flex-direction:column; 
    list-style: none;
    margin-bottom: 1em;
    margin-left: 1em;
       
}
.aranceles li>span {
    padding: 8px;
    
}
.aranceles span {
    color: #D5D0D0;
    
}

h3.mm{
    font-size: 15px;
    margin-bottom: 0.50em;
    
    
}

h3.pi{
    font-size: 15px;
    margin-bottom: 0.50em;
    
}

.redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 3em;
    margin-left: 3em;
    margin-right: 3em;
    
}


.redesmuseo {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    padding: 8px;
}

.redesmuseo figure {
    max-width: 100%;
    height: auto;  
    margin-left: 2em;
}

.redesmuseo figure img {
    width: 30px; 
}
.redesisla {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    padding: 8px;
}

.redesisla figure {
    max-width: 100%;
    height: auto;
    margin-left: 0.75em;
}

.redesisla figure img {
    width: 30px;  
}



.agenda h1 {
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-right: 5%;
}
.agenda h3.pregunta {
    color: #662d91;
    text-align: center;
    padding: 5px;
}
.barraagenda {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #662d91;
    padding: 5px;   
}

.barraagenda figure {
    max-width: 100%;
    height: auto;
    
}

.barraagenda figure img {
    width: 25px;
    margin-left: 5%;    
}

/* agenda desplegable*/
.acordeon input {
    display: none;
}

.acordeon__titulo {
    display: block;
    padding: 20px;
    background: #D5D0D0;
    text-transform: uppercase;
    color:#662d91;
    cursor: pointer;
    border-bottom: 4px solid #FFFFFF;
}
.acordeon__titulo span {
    color: #FFFFFF;
}

.acordeon__titulo:hover{
    background: grey;
}
.acordeon__contenido{
    height: 0;
    margin: 0;
    overflow: hidden;
    transform: all 0.5s;
    background: #D5D0D0;
    text-align: center;
}
.acordeon input:checked ~ .acordeon__contenido {
    height:auto;
    padding: 15px;
}
.acordeon__contenido span{
    color: #FFFFFF;
}


.acordeon__contenido img{
    width: 100%;
}



/* llega hasta aca*/


.eventos h1 { 
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right: 5%; 
}

.barraeventos {
    display: flex;
    flex-direction: row;
    background:#00a99d;
    justify-content: center;
    margin-bottom: 0.50em;
    padding: 5px; 
    margin-top: 2em;
}

.barraeventos figure {
    max-width: 100%;
    height: auto;    
}

.barraeventos figure img {
    width: 25px;
    margin-left: 5%;   
}

/* eventos despegable*/

.acordeone input {
    display: none;
}

.acordeon__tituloevento {
    display: block;
    padding: 20px;
    background: #D5D0D0;
    text-transform: uppercase;
    color:#00a99d;
    cursor: pointer;
    border-bottom: 4px solid #FFFFFF;
}
.acordeon__tituloevento span {
    color: #FFFFFF;
}

.acordeon__tituloevento:hover{
    background: grey;
}
.contenidoe{
    height: 0;
    margin: 0;
    overflow: hidden;
    transform: all 0.5s;
    background: #D5D0D0;
    text-align: center;
    
    
}
.contenidoe span{
    color: #FFFFFF;
}
.acordeone input:checked ~ .contenidoe {
    height:auto;
    padding: 15px;
    
}

.contenidoe img{
    width: 100%;
}



/*llega hasta aca*/



.convocatoria h1 { 
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-right: 5%;    
}


.barraconvocatoria {
    display: flex;
    flex-direction: row;
    background: #f7931e;
    justify-content: center;
    padding: 5px; 
    margin-top: 2em;
}

.barraconvocatoria figure {
    max-width: 100%;
    height: auto;    
}

.barraconvocatoria figure img {
    width: 25px;
    margin-left: 5%;   
}

.convocatorias img{
    width: 100%;   
}

.convocatoria h2.muralear{
    text-transform: uppercase;
    color: #000000;
    text-align: center;
}

.convocatoria h2.partemuseo {
    color: #D5D0D0;
    text-transform: uppercase;
    text-align: center;
}

.convocatoria p{
    text-align: center;
}

.convocatoria h2.sumate{
    color: #f7931e;
    padding: 20px 20px 20px 20px;
    
}

h4.form{
    font-size: 25px;
    text-align: center;
    padding: 5px;
    margin-top: 1em;
}

.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    margin-top: 2em;
}

.control {
    background:#f7931e;
    margin-top: 0.50em;
    padding: 1em;
    border: #f7931e;
    margin-bottom: 0.50em;
    color: #000000;
    
    
}

.sent {
    font-size: 15px;
    padding: 8px;
    margin-bottom: 2em;
}


/*footer*/

footer ul li {
    text-align: center;
    margin-bottom: 3px;
}

footer h3 {
    padding: 10px 10px 10px 10px;
    text-transform: uppercase;
    margin-top: 7px;
}
footer h3 span {
    color:#39b54a;
}

footer {
    background:#E0DEDE;
    padding: 1rem;   
}

footer p {
    font-size: 12px;  
    
}

.informacion {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
}


/*dispositivos desde 450px tablets */

@media screen and (min-width:450px) {
    .slider {
    width: 100%;
    height: 600px;
    margin: auto;
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    
    
        
} 
 .redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 3em;
        margin-top: 1em;
    
}
    .redesmuseo{
        padding: 8px;
    }
    .redesisla{
        padding: 8px;
    }


.aranceles {
        align-items: center;
    }
    
    .contenidodias h2{
        text-align: center;
        
    }  

}

/*dispositivos desde 630px tablets */

@media screen and (min-width:630px) {
    

.redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 3em; 
    margin-top: 1em;    
}
  
}


/*dispositivos desde 900px laptops-desktops */

@media screen and (min-width:900px) {

    
    header {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;   
    justify-content: space-around;
    width: 100%;
    padding: 1rem;
    position: relative;
}
    
    header h1{
        font-size: 50px;
    }
    
    #llamamenu{
        margin-top: 0.50em;
    }
    
    header nav{
        margin-left: 16em;
        width: 16%;
    }

.slider {
    width: 80%;
    height: 800px;
    margin: auto;
    position: relative;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;    
} 
.texto {
    background: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 20px 20px 20px;
    margin-left: 20%;
    margin-right: 20%;
}
.texto p span {
    color: #D5D0D0;
}

.nosotros h1{
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right: 5%;
    margin-top: 2px;   
}

.barranosotros {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #d4145a; 
    padding: 6px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 5px;      
}

.barranosotros figure {
    max-width: 100%;
    height: auto;   
}

.barranosotros figure img {
    width: 25px; 
    margin-left: 5%;
}

.nosotros h2.subtitulo{
    color: #d4145a;
    text-align: center;
    padding: 9px;
    margin-top: 1em;
    margin-bottom: 0.50em;   
}
.contenido {
        display: flex;
        flex-direction: row;
    justify-content: center;
    }
    
    .contenido img {
        width: 50%;
        margin-left: 10%;
    }
    
    .contenido p{
        margin-right: 5%;
        margin-top: 15%;
    }

p.historia {
    color: #E0DEDE;
    text-align: center;   
}
p.historia span{
    color: #000000;
}

.nosotros h2 {
    color:#d4145a;
    padding: 20px;
    text-align: center;
    
}

.mapa p{
    color: #000000;
    font-size: 13px;
}

    
.nosotros h2 span {
    text-transform: uppercase;
    margin-left: 1em;
    
}
.nosotros p {
    text-align: center;
}
    
.mapa {
    display: flex;
    flex-direction: column;
    }
    
    .mapa img {
        width: 80%;
        margin-left: 5%;
    }
    .mapa p {
        text-align: start;
        margin-left: 0;
    }
    
    .estructurademapa {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 20px;
    }



.aranceles {
    display: flex;
    flex-direction:column; 
    list-style: none;
    margin-bottom: 50px;
    margin-left: 2em;
    align-items: center;
    
       
}
.aranceles li>span {
    padding: 8px;
}
.aranceles span {
    color: #D5D0D0;
    
}
    
  h3.mm{
    font-size: 15px;
    
    
}

h3.pi{
    font-size: 15px;
    
    
}

.redes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 3em;
    
}

.redesmuseo {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.redesmuseo figure {
    max-width: 100%;
    height: auto;  
    margin-left: 2em;
}

.redesmuseo figure img {
    width: 30px; 
}
.redesisla {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.redesisla figure {
    max-width: 100%;
    height: auto;
    margin-left: 0.75em;
}

.redesisla figure img {
    width: 30px;  
}


    
.agenda h1 {
  font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF; 
    margin-right: 0%;
}
.agenda h3.pregunta {
    color: #662d91;
    text-align: center;
    padding: 5px;
}
.barraagenda {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #662d91;
    padding: 6px;  
    margin-top: 2em;
}

.barraagenda figure {
    max-width: 100%;
    height: auto;
    
}

.barraagenda figure img {
    width: 25px;
    margin-left: 5%;    
}

/* agenda desplegable*/
    
.acordeon input {
    display: none;
}

.acordeon__titulo {
    display: block;
    background: #D5D0D0;
    text-transform: uppercase;
    color:#662d91;
    cursor: pointer;
    border-bottom: 4px solid #FFFFFF;
    text-align: center;
    font-size: 15px;
    margin: 3px;
   
}
.acordeon__titulo span {
    color: #FFFFFF;
}

.acordeon__titulo:hover{
    background: grey;
}
.acordeon__contenido{
    height: 0;
    margin: 0;
    overflow: hidden;
    transform: all 0.5s;
}
.acordeon input:checked ~ .acordeon__contenido {
    height:auto;
    margin: 0.50em;
}

/* llega hasta aca*/
.eventos h1 { 
    font-size: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right:0;   
}

.barraeventos {
    display: flex;
    flex-direction: row;
    background:#00a99d;
    justify-content: center;
    margin-bottom: 2.12em;
    padding: 6px; 
    margin-left: 14em;
    
    
}

.barraeventos figure {
    max-width: 100%;
    height: auto;    
}

.barraeventos figure img {
    width: 25px;
    margin-left: 5%;   
}


/* eventos despegable*/
    
     .acordeone {
        text-align: center;
         margin-left: 14em;
    
    }

.acordeone input {
    display: none;
}

.acordeon__tituloevento {
    display: block;
    background: #D5D0D0;
    text-transform: uppercase;
    color:#00a99d;
    cursor: pointer;
    font-size: 15px;
    margin: 3px;
}
.acordeon__tituloevento span {
    color: #FFFFFF;
}

.acordeon__tituloevento:hover{
    background: grey;
}
.contenidoe{
    height: 0;
    margin: 0;
    overflow: hidden;
    transform: all 0.5s;
    background: #D5D0D0;
    text-align: center;
    
    
}
.contenidoe span{
    color: #FFFFFF;
}
.acordeone input:checked ~ .contenidoe {
    height:auto;
    margin: 0.50em;
    
}

.contenidoe img{
    width: 100%;
}

/*llega hasta aca*/

/*seccion agenda y eventos web*/
    
    .seccionagendayeventos{
        display: flex;
        flex-direction: row;
        justify-content:space-between;
        margin-left: 6em;
        margin-right: 6em;

    }
    

    
.convocatoria h1 { 
    font-size: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-right: 5%;    
}


.barraconvocatoria {
    display: flex;
    flex-direction: row;
    background: #f7931e;
    justify-content: center;
    padding: 6px;  
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.barraconvocatoria figure {
    max-width: 100%;
    height: auto;    
}

.barraconvocatoria figure img {
    width: 25px;
    margin-left: 5%;   
}

.galeria img {
    width: 50%;
    margin:auto;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    
}

.convocatoria h2.muralear{
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin-top: 1.5em;
    font-size: 35px;
}

.convocatoria h2.partemuseo {
    color: #D5D0D0;
    text-transform: uppercase;
    text-align: center;
     font-size: 35px;
}

.convocatoria p{
    text-align: center;
}

.convocatoria h2.sumate{
    color: #f7931e;
    padding: 20px 20px 20px 20px;
    text-align: center;
   
    
    
}
    
h4.form{
    font-size: 25px;
    text-align: center;
    padding: 5px;
    margin-top: 1em;
}

.formulario {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    margin-top: 2em;
    margin-left: 3em;
    margin-right: 3em;
}

.control {
    background:#f7931e;
    margin-top: 0.50em;
    padding: 1em;
    border: #f7931e;
    margin-bottom: 0.50em;
    color: #000000;
    
    
}

.sent {
    font-size: 15px;
    padding: 8px;
    margin-bottom: 2em;
}
/*footer*/

footer ul li {
    text-align: center;
    margin-bottom: 3px;
}

footer h3 {
    padding: 10px 10px 10px 10px;
    text-transform: uppercase;
    margin-top: 7px;
}
footer h3 span {
    color:#39b54a;
}

footer {
    background:#E0DEDE;
    padding: 1rem;   
}

footer p {
    font-size: 12px;  
    
}

.informacion {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
    
}

    
}