@charset "utf-8";

/*-------------------------------------------------REGLAS GENERALES-------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

img{
    max-width: 100%;
    height: auto;
}

li{
    list-style: none;    
}

ul{
    margin: 0;
    list-style: none;
}

body{
    background-color: white;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}
main{
    margin: 0;
}

a{
    text-decoration: none;
}
/*----------------------------------------------------HEADER---------------------------------------------------------*/
/*-----------GENERAL HEADER-----------*/
header .contenedor{
    display:flex;
    background-color:black;
    align-items: center;
    padding: 0 1em;
    justify-content: space-between;
    align-items: center;  
}



/*-----------IMAGEN LOGO-----------*/
#logo{
    width: 25%;
    padding: 0.3em 0.2em;
    display: block;
}
/*----------------------------------------*/

/*-----------MENU-----------*/

header nav{
    color: white;
}

header nav a{
    color: white;
    padding: .5em 1em;
    display: flex;
    font-weight: 300;   
}

header nav a:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.42);
    font-weight: 500;
}



#llamamenu{
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 0.5em;
    border-radius: 5px;
     /* caja flexible */
    display: flex;
    position: relative;
    z-index: 9999;
}


#llamamenu:hover{
    background-color: #2BBDBF;
}

#llamamenu i{
    padding: 0;
    margin: auto;
}

header nav ul{
    background-color: #2BBDBF;
    position: fixed;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 9990;
    padding-top: 5em;
    transition: all .5s ease;
}

.visible {
    /* el menú se muestra
    corriéndose a la izquierda */
    left: 50%;
    transition: all .25s ease;
}

header nav ul li a span{
    padding-right: 0.5em;
    
}
/*-------------------------------------------------MAIN-------------------------------------------------*/

/*-------------------------Mobile first--------------------*/

/*-----------Imagen_fondo home-----------*/

.banner{
    background-image: url(../imagenes/puente.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    margin: 0;
    align-items: center;
}



/*-----------Texto_banner home-----------*/
.banner h3{
    text-align: center;
    margin: 0;
    font-size: 250%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    padding-top: 40%;
    padding-bottom: 5%;
}




/*-----------Texto_intro home-----------*/
.intro{
    text-align: center;
    margin: auto;
    font-family: 'Montserrat', sans-serif;
}


/*-----------Titulo_intro home-----------*/

.titulo {
    font-weight: 700;
    color: #EC8103;
    font-size: 160%;
    margin-top: 3em;
    margin-bottom: 1em;
    text-align: center;
}

.titulo h4{
    color: black;
    font-size: 140%;
    font-weight: 700;
}

.bajada_1{
    margin-bottom: 3em;
    padding: 0 1em;
}



/*-----------Tours-----------*/



.reservahome{
    align-content: center;
    background-color: #2BBDBF;
    display: flex;
    flex-direction: column;
}

.recorridos{
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 1em 2em;
}

.recorridos h3{
    font-weight: 500;
    font-size: 150%;
    padding-bottom: 0.5em;
}

.recorridos p{
    font-weight: 300;
    font-size: 100%;
}

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

.tours{
    background-color: rgba(255, 255, 255, 0.74);
    border-radius: 30px;
    padding: 1.5em;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2em;
    padding-bottom: 3em;
    margin-left: 1em;
    margin-right: 1em;
}


.tours h3{
    font-weight: 700;
    color: #EC8103;
    font-size: 170%;
    padding: 0.5em;
    margin-left: 1em;
    margin-right: 1em;
    border-radius: 15px;
}

.tours p{
    font-weight: 400;
    margin: 1em 0;
    margin-bottom: 3em;
}

.tours a{
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-weight: 700;
    background-color: #2BBDBF;
    padding: 1em;
    border-radius: 15px;
    margin-top: 1em;
}

.tours a:hover{
    background-color: #EC8103; 
}

.noticiastodas{
    margin-bottom: 2em;
}

.noti_1{
    margin-top: 3em;
    padding: 1em;
    
}

.noti_1 h4{
    margin-top: 1em;
    font-size: 160%;
    color: #2BBDBF;
    
}

.bajadanoti{
    text-align: center;
    font-weight: 500;
    margin: 0 1em;
}

.noti_1 p{
    padding-bottom: 1em;
    padding-top: 1em;
}

.noti_1 a{
    color: #EC8103;
    font-weight:700;
}

.noti_1 a:hover{
    color: #2BBDBF;
}


/*-------------------------------------------------FOOTER-------------------------------------------------*/

.footer{
    font-family: 'Montserrat', sans-serif;
    padding: 1em 1.5em;
    background-color: black;
}
.footer h3{
    font-weight: 700;
    color: #EC8103;
    margin-top: 2em;
}

.footer p{
    margin-top: 0.5em;
    margin-bottom: 2em;
    font-weight: 300;
    color: white;
}

.menu li{
    padding: 1em 0;
    
}
.menu li a{
    color: black;
    font-weight: 400;
    margin: 2em 0;
    color: white;
}

.menu li a:hover{
    color: #2BBDBF;
}


.redes a img{
   padding: 1em;
   width: 20%;
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------NIVELES----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*Main de html inical, medio y superior*/
.titulobanner{
background-image:url("../imagenes/banner_inicial.png");
background-size:cover;
background-repeat: no-repeat;
background-position: center center; 
}
.Titulobannermedio{
background-image:url("../imagenes/banner_medio.png");
background-size:cover;
background-repeat: no-repeat;
background-position: center center;   
}
.Titulobannersuperior{
 background-image:url("../imagenes/banner_superior.png");
background-size:cover;
background-repeat: no-repeat;
background-position: center center;
    
}
/*Titulo de los tres niveles: inicio, medio y superior*/
.Titulobannersuperior h3{
 margin:0;
font-family: "montserrat", sans-serif;
font-weight: 700;
color:white;
padding-top: 40%;
padding-bottom: 5%;
margin-left:9%;     
font-size: 220%;    
}
.titulobanner h3{
margin:0;
font-family: "montserrat", sans-serif;
font-weight: 700;
color:white;
padding-top: 40%;
padding-bottom: 5%;
margin-left:9%;     
font-size: 220%; 
}
.Titulobannermedio h3{
 margin:0;
font-family: "montserrat", sans-serif;
font-weight: 700;
color:white;
padding-top: 40%;
padding-bottom: 5%;
margin-left:9%;     
font-size: 220%;   
}
/*Itinerario*/
.Titulop2c{
font-family: "Montserrat", sans-serif; 
color: #2BBDBF;
font-weight: bold;
margin:1.1em 0 1em 2em; 
}

/*numeros en circulo naranja*/
.texto h3{
background-color:#EC8103;
color: #F1F2F2;
display:inline-flex;
justify-content: center;
align-items: flex-start;
border-radius:100%;
padding: .2em .6em .2em .6em;
margin:0 1em 0 1em;    
width: 1.7em; 
}
/*titulos del itinerario, bajada de cada actividad*/
.texto h5{
font-family: "Montserrat", sans-serif;
font-style: normal;
font-weight: 500;
font-size: 120%;
margin:-1.6em 0em 0 4em;
padding-bottom: 1em;    
}

/*turno mañana y tarde*/
.texto p{
 font-family: "Montserrat", sans-serif;
 font-weight:400;
 font-size: 75%;
 margin:0 1em .3em 4.8em;
 margin-top: -.2em;  
}
/*imagenes del itinerario, tour*/
img figure{
max-width: 100%;
height: auto;

}

.paseos{
width: 80%;
display: flex;
justify-content: center;
align-items: center;    
margin:auto;
padding-bottom: 2em; 
padding-top: .8em;     
}

/*Aclaracion*/
.aclaracion h4{
    text-align: center;
    background-color: #EC8103;
    color: white;
    padding: 1em 2em;
    font-weight: 400;
}

/*Reservar la actividad, titulo*/
#TituloR{
font-family: "Montserrat", sans-serif; 
font-weight: bold;
font-size: 70%;   
margin:auto;
background: #2BBDBF;
color:white; 
padding:1em 0.5em;
justify-content: center;
display: flex;    
}

.reserva{
background: rgba(43, 189, 191, 0.22);
display: flex;
flex-direction: column;   
}

.subti h4{
  font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 110%; 
    margin-top: 2em;
    margin-bottom: 1em;
    margin-left: 3em;
    text-align: left;
}
/*Iconos de turno mañana y tarde*/
.alinea_turnos{
 display:flex;
 margin:1em 2em 1em 2em;
 justify-content:space-around;
 align-items: center;   
 margin-top: .3em;
 margin-bottom:2em;

}

/*formulario*/
.formulario{
display: flex;
flex-direction: column;
width: 85%;
padding: 4%;
margin:auto;
margin-top:1.2em;
margin-bottom:1.2em;     
background: #62CBCD;
border-radius: 10px;    
}
/* formulario por dentro*/
.controles{
 width:100%;
 padding:4.5%; 
 margin-bottom:8%;
  
 font-family: "Montserrat", sans-serif;
 font-weight: 400;
 font-size: 77%;
 background:rgba(241, 242, 242, 0.47);
 border-bottom-style:none;
 border-radius: 10px;
    
}

 /*calendario*/
.calendario{
    
}
.calendario1{
 display: flex; 
 flex-direction: column;
 justify-content: space-between;
 align-items:center;   
}
/*calendario septiembre*/
.calendario h3{
font-family: "Montserrat", sans-serif; 
font-weight: 500;
font-size: 110%;   
margin:auto;
color:#2BBDBF; 
padding:1em;
justify-content: center;
display: flex; 
    padding-bottom: 0;
}
table{
    display: table;
    padding: 2em;
    padding-top: 0.5em;
    text-align: center;
}
table th{
    padding: 1em;
    color: #2BBDBF;
    font-weight: 700;
    font-size: 100%;
}
table td{
    padding: 1em;
    border-radius: 60px;
    font-size: 100%;
    text-align: center;
}

table td:hover{
    background-color: #EC8103; 
}
.otro_mes{
    color: rgba(0, 0, 0, 0.29);
}
.otro_mes:hover{
    background-color: transparent;
}
/*circulos rojos*/
.rojo{
background-color: rgba(0, 0, 0, 0.30);    
}

.rojo:hover{
    background-color: rgba(0, 0, 0, 0.30);
}
/*bajada ocupado y disponible*/
.seleccion{
 display:flex;
 flex-direction:column;
 justify-content:flex-start;
 align-items: flex-start;  
 padding-bottom: 3em;
 margin-left: 15%; 
 margin-top: 2em;
 font-weight:450;
 font-size: 85%;

}
.seleccion img{
  width: 2em;
    margin-right: 1em;
    margin-bottom: 1em;
}
.seleccion p{
    font-weight: 300;
    margin-right: 2em;
    margin-bottom: 2em;
}
/*Boton de reservar*/
#boton{
font-family: "Montserrat", sans-serif; 
font-size: 110%;   
margin:auto;
background: #2BBDBF;
color:white; 
padding: 0.8em;
justify-content: center;
display: flex;
border-radius: 8px;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
border-bottom-style: none;
border-left-color:#2BBDBF; 
border-right-color:#2BBDBF; 
    margin-bottom: 2em;
}

#boton:hover{
    background-color: #EC8103;
}

#turnos_boton {
width: 35%;    
padding:-1em;    
background-color: #2BBDBF;
border-radius: 20%;
border-bottom-style: none;
border-left-color:#2BBDBF; 
border-right-color:#2BBDBF;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
    
}


/* Sombreado cuando el botón esté seleccionado/enfocado */
#turnos_boton:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 4px #2BBDBF;
}
/* Background y sombra más oscuro en estado activo */
#turnos_boton:active {
    background-color:  rgba(43, 189, 191, 0.22);
    box-shadow: 0 0 0 2px white, 0 0 0 4px white;
}

#turnos_boton:hover{
    background-color: #EC8103;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------RESERVADO-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.fondoreservado{
    background-color:rgba(43, 189, 191, 0.30);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3em;
}

.bajadarespuesta{
    text-align: center;
    padding: 3em;
    color: black;
}

.bajadarespuesta h2{
    margin-bottom: 1em;
    font-size: 170%;
}

.bajadarespuesta h5{
    font-weight: 400;
    font-size: 120%;
}


.detalle{
    display: flex;
    justify-content:flex-start;
    flex-direction: column;
    padding-bottom: 3em;
}

.detalle div{
    display: flex;
    padding-top: 1em;
}

.detalle span{
    padding-right: 0.3em;
}


/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MUSEO-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

.titulobanner33{
    background-image: url(../imagenes/contacto1-01.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    
 
}

.titulobanner33 h3{
margin:0;
font-family: "montserrat", sans-serif;
font-weight: 700;
color:white;
padding-top: 40%;
padding-bottom: 5%;
margin-left:9%;     
font-size: 220%; 
    
}

.titulobanner2{
    background-image: url(../imagenes/convocatoria1-01.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
 
}

.titulobanner2 h3{
    margin: 0;
    font-size: 250%;
    font-family: 'montserrat', sans-serif;
    font-weight: 700;
    color: white;
    padding-top: 40%;
    padding-bottom: 5%;
    margin-left: 5%;  
    
}


.titulobanner1{
    background-image: url(../imagenes/mural.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
        
}




.titulobanner1 h3{
    margin:0;
font-family: "montserrat", sans-serif;
font-weight: 700;
color:white;
padding-top: 40%;
padding-bottom: 5%;
margin-left:9%;     
font-size: 220%; 
    
    
}

.bajada1 h3{
    font-weight: 700;
    font-size: 130%;
    padding: 1em 2em 2em 1.5em;
    margin: 0.2em 0em 0em 0em;
}



.telefonos{
   font-family: 'montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
}

.bajada2 p{
    padding: 2em 2em 2em 2em;
    margin: 0.2em 0em 0em 0em;
    margin-top: -60px;
    font-family: 'montserrat', sans-serif;
    
    font-weight: 500;
    font-size: 13px;

  
}    

.textomuseo p{
    margin-top: 0;
    padding: 0 2em;
    padding-bottom: 1em;
    font-family: 'montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 20px;
    
}

.textomuseo h6{
    padding: 0 2em;
    margin-top: 0;
    color: #2BBDBF;
    font-weight: 700;
    font-size: 100%;
     padding-bottom: 3em;
}

.textomuseo a h6 :hover{
    color: #EC8103;
}
    
.texto2 p{
    line-height: 20px;
    margin-top: -40px;
    padding: 1em 2em 2em 2em;
    margin-bottom: -40px;
    font-family: 'montserrat', sans-serif;
    font-style: normal;
    font-weight: normal;
    color: #EC8103;
     
}




.titulop3n{
    padding: 1em 2em 2em 2em;
    margin: 0.2em 0em 0em 0em;
    color: #EC8103;
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    line-height: 27px;
    
}

#mapa1{
    margin-top: -45px;
}

.redes1{
    text-align: center; 
    margin-bottom: 50px;
    justify-content: center;
    align-content: space-around;  
}

.redes1 a img{
    padding: 1em;
}

.titulop2n{
    padding: 5em 2em 2em 2em;
    margin: 0.2em 0em 0em 0em;
    color: #EC8103;
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    line-height: 27px;
    margin-top: -55px;
    
    
    
}

.fotografias{
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    margin: auto;
    padding: 2em 2em 2em 2em;
    
    
}


.titulop1{
    color: #EC8103;
    text-align: center;
    
}



/*-------------------contenedor------------------------*/



.contenedor_regi{
    background-color: #EC8103;
    border-radius: 20px;
    padding: 1em;
    margin: 0 5%;
}

/*.consulta{
    background-color: rgba(255, 255, 255, 0.41);
    border-radius: 20px;
    padding: 0.5em 1em;
    padding-bottom: 10em;
}*/

.datos p{
    background-color: rgba(255, 255, 255, 0.41);
    border-radius: 15px;
    
    
}

.enviar{
    background-color: #EC8103;
    border-radius: 15px;
    border: none;
    margin-top: 2em;
    margin-left: 3em;
    margin-bottom: 5em;
}

.enviar:hover{
    background-color: #62CBCD;
}

.enviar p{
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 150%;
    padding: 0 1em;
}

.regi_alin{
    display: flex;
    flex-direction: column;
    
}

.boton{
    background-color: #EC8103;
    border-radius: 15px;
    border: none;
    margin-top: 2em;
    margin-left: 3em;
    margin-bottom: 5em;
    
}

.boton:hover{
    background-color: #62CBCD;
}

.boton p{
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 150%;
    padding: 0 1em;
    
}

.textomuseo{
    
}



/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------CONVOCATORIA------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


.contenedor_regi{
    background-color: #EC8103;
    border-radius: 20px;
    padding: 1em;
    margin: 0 5%;
}



.datos p{
    background-color: rgba(255, 255, 255, 0.41);
    border-radius: 15px;
    padding: 0.8em 1em;
    
}

.boton{
    background-color: #EC8103;
    border-radius: 15px;
    border: none;
    margin-top: 2em;
    margin-left: 3em;
    margin-bottom: 5em;
}

.boton:hover{
    background-color: #62CBCD;
}  

.boton p{
    color: white;
    text-align: center;
    font-weight: 700;
    font-size: 150%;
    padding: 0 1em;
}

.regi_alin{
    display: flex;
    flex-direction: column;
    
}



/*Boton de reservar*/
#boton1{
font-family: "Montserrat", sans-serif; 
font-size: 110%;   
margin:auto;
background: #EC8103;
color:white; 
padding: 0.8em;
justify-content: center;
display: flex;
border-radius: 8px;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.25);
border-bottom-style: none;
border-left-color:#2BBDBF; 
border-right-color:#2BBDBF; 
    margin-bottom: 2em;
    margin-top: 1em;
}

#boton1:hover{
    background-color: #2BBDBF;
}

titulop3n h2{
    text-align: center;
}


/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------CONTACTO------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.consulta input{
    padding-bottom: 8em;
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------@MEDIA - PANTALLA COMPU------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 946px) {
    
    /*--------Header--------*/
    
    header{
        position: fixed;
        width: 100%;
    }
    
    #logo{
        width: 35%;
        padding: 0.5em;
    }
    
    #llamamenu {
        display: none;
    }
    
     header nav ul {
         display: flex;
         flex-wrap: wrap;
         position: relative;
         top: auto;
         left: auto;
         height: auto;
         width: 100%;
         padding-top: 0;
         background-color: transparent;
    }
    
    header nav ul li a:hover{
        background-color: #2BBDBF;
        color: black;
        font-weight: 300;
    }
    
     header nav ul.visible {
        left: auto;
    }
    
    /*--------Banner--------*/
    .banner h3{
        font-size: 700%;
        padding-top: 25%;
    }
    
    /*---------------------------------------HOME @MEDIA-----------------------------------------*/
    
    /*--------Texto prin--------*/
    
    .titulo h3{
        font-size: 300%;
    }
    .bajada_1 p{
        margin: 2em 5em;
        font-size: 160%;
        font-weight: 300;
    }
    .intro{
        padding: 2em;
    }
    
    /*--------Recorridos--------*/
    
    .recorridos h3{
        font-weight: 500;
        font-size: 260%;
        padding: 0.5em;
    }
    
    .recorridos p{
        font-weight: 300;
        font-size: 150%;
        padding: 1em 6em 1em;
    }
    
    .tours_3{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    /*--------Noticias--------*/
    .titulo h4{
        font-size: 220%;
        margin-top: 3em;
        margin-bottom: 1em;
    }
    
    .bajadanoti{
        font-size: 150%;
    }
    
    .noticiastodas{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        justify-content: space-around;
    }
    
    .noti_1{
        display: block;
        width: 40%;
    }
    
    /*--------Footer--------*/
    .footer{
        display: flex;
        justify-content: space-around;
        padding: 2em;
    }
    
    /*---------------------------------------NIVELES @MEDIA-----------------------------------------*/
    
    .titulobanner h3{
        font-size: 400%;        
    }
    
    
    .Titulobannermedio h3{
        font-size: 400%;
    }
    
    .Titulobannersuperior h3{
        font-size: 400%;
    }
     /*Itinerario*/
    .Titulop2c{
     font-size: 150%;
     margin-left:1.5em; 
     margin-bottom: 2em;   
    }
    /*numeros en circulo naranja*/
    .texto h3{
      margin-left:2rem;  
    }
    
    /*titulos del itinerario, bajada de cada actividad*/
    .texto h5{
    padding: 1.7em 0 1em 2em;
    margin-left:3rem;
    margin-top: -3.4em;       

    } 
    
    .caja1 {
    display: inline-block;
    justify-content:space-between; 
    margin:auto;      
    width: 33%;
    flex-direction:column;    
    }

    /*imagenes del itinerario, tour*/   
 .paseos{
  width: 22rem;
  height: 15rem;
  margin-top:3em;
  margin-bottom: 2.2em;   
   
    }
    
    .subti h4{
        text-align: center;
        margin-left: 0;
        font-size: 170%;
    }
    
     /*turno mañana y tarde*/
   .alinea_turnos{
 display:inline-flex;
 width:30%;
 margin:auto;
 margin-bottom: 2em;      
 
}

    .formulario{
       width: 50%; 
    }
    
    .seleccion{
        margin-left: 41%;
    }
    
    /*---------------------------------------RESERVADO @MEDIA-----------------------------------------*/
    
    .fondoreservado{
        padding-top: 7em;
    }
    
    
    /*---------------------------------------CONTACTO @MEDIA-----------------------------------------*/
    titulobanner33 h3{
       font-size: 500%; 
    }
    
    #mapa1{
        width: 80%;
    }
    
    .titulop3n h2{
        text-align: center;
        font-size: 220%;
        padding-top: 3em;
    }
    
    .contenedor_regi{
        width: 50%;
    }
    
    .flexregi{
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
    
    /*---------------------------------------MUSEO @MEDIA-----------------------------------------*/
    
    .titulobanner1 h3{
        font-size: 500%;
    }
    
    .flexhistoria{
        
        max-width: 100%;
        justify-content: center;
    }
    
    .fototextomuseo{
        width: 100%;
        display: flex;
    }
    
    .fototextomuseo img{
        width: 55%;
    }
    
    .fototextomuseo p{
        padding-top: 2em;
    }
    
    .evento1flex{
        display: flex;
    }
    
    .bajada1 h3{
        font-size: 300%;
    }
    
    .bajada2 p{
        font-size: 230%;
        
        padding-top: 0;
    }
    
    .titulop2n h2{
        font-size: 220%;
        
    }
    
    /*---------------------------------------CONVOCATORIA @MEDIA-----------------------------------------*/
    .titulobanner2 h3{
       font-size: 500%; 
    }
    
    /*---------------------------------------TOURS @MEDIA-----------------------------------------*/
    .tourshtml{
    padding-top: 4em;
}
}

