@charset "UTF-8";

/*
font-family: 'Brown-Bold', 'Lato', serif;
font-family: 'Brown-BoldItalic', 'Lato', serif;
font-family: 'Brown-Regular', 'Lato', serif;
font-family: 'Brown-RegularItalic', 'Lato', serif;
font-family: 'Lato', serif;
*/
@font-face {
  font-family: 'Brown-Bold';
  src: url('../font/Brown-Bold.eot');
  src: url('../font/Brown-Bold.woff2') format('woff2'),
       url('../font/Brown-Bold.woff') format('woff'),
       url('../font/Brown-Bold.svg#Genath-LightIta') format('svg'),
       url('../font/Brown-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: 'Brown-BoldItalic';
  src: url('../font/Brown-BoldItalic.eot');
  src: url('../font/Brown-BoldItalic.woff2') format('woff2'),
       url('../font/Brown-BoldItalic.woff') format('woff'),
       url('../font/Brown-BoldItalic.svg#Genath-LightIta') format('svg'),
       url('../font/Brown-BoldItalic.eot?#iefix') format('embedded-opentype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Brown-Regular';
  src: url('../font/Brown-Regular.eot');
  src: url('../font/Brown-Regular.woff2') format('woff2'),
       url('../font/Brown-Regular.woff') format('woff'),
       url('../font/Brown-Regular.svg#Genath-LightIta') format('svg'),
       url('../font/Brown-Regular.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Brown-RegularItalic';
  src: url('../font/Brown-RegularItalic.eot');
  src: url('../font/Brown-RegularItalic.woff2') format('woff2'),
       url('../font/Brown-RegularItalic.woff') format('woff'),
       url('../font/Brown-RegularItalic.svg#Genath-LightIta') format('svg'),
       url('../font/Brown-RegularItalic.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: italic;
}





html, body{
    width: 100%;
    height:100%;
    margin:0;
    padding:0;
    font-size: 14px;
    font-family: 'Brown-Bold', 'Lato', serif;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

a{
    text-decoration: none;
    color: #000;
}

.clear{
    clear: both;
}
img{
    border:none;
    max-width: 100%;
    height: auto;
}


/*header*/
header{
    width: 53px;
    border-right: 2px solid #000;
    position: relative;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
}
.act_scroll_header header{
    position: absolute;
    top: initial;
    bottom: 0px;
}
.barra{
    height: 100vh;
    width: 53px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.barra .fila_v{
    width: 100%;
}
.barra .fila_v:last-child{
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
}
.barra .btn_menu{
    padding: 16px 0px;
    cursor: pointer;
}
.barra .btn_menu .linea{
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 4px auto;
}
.barra .logo{}
.barra .logo img{
    max-width: 26px;
    margin: auto;
    display: block;
}
.barra .btn_buscador{
    background-image: url(../img/lupa.png);
    width: 100%;
    height: 40px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.barra .idioma{
    text-align: center;
    width: 100%;
    color: #616161;
    cursor: pointer;
}
.barra .idioma span{
    margin: 10px 0px;
    display: block;
    font-size: 12px;
    font-weight: bold;
}
.barra .idioma a{
    margin: 10px 0px;
    display: block;
}

.menu{
    position: absolute;
    left: 55px;
    top: 0px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    transition: 600ms;
    transition-timing-function: cubic-bezier(0.57, 0.07, 0.99, 0.98);
    top: -100%;
}
.act_menu .menu{
    top: 0px;
}
.menu_int{
    width: 100%;
}
.menu_int nav{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 48px 0px;
    width: -o-calc(100vw - 55px);
    width: -ms-calc(100vw - 55px);
    width: -moz-calc(100vw - 55px);
    width: -webkit-calc(100vw - 55px);
    width: calc(100vw - 55px);
    border-bottom: 2px solid #000;
    background-color: #fff;
}
.menu_int nav a, .menu_int nav span{
    padding: 2px 0px 2px 15px;
    line-height: 36px;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3em;
    height: 36px;
    transition: 100ms;
    transition-timing-function: ease;
}



/*head*/
.head{
    position: fixed;
    left: 55px;
    top: 0;
    width: -o-calc(100% - 55px);
    width: -ms-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
    border-bottom: 2px solid #000;
    background-color: #fff;
    z-index: 5;
}
.head_int{
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    height: 53px;
    align-items: center;
    text-transform: uppercase;
}
.head_int .columna{
    display: flex;
    align-items: flex-start;
}
.head_int .columna h2{
    margin: 0;
    font-size: 34px;
    line-height: 1.8em;
    margin-right: 20px;
}
.head_int .columna h3{
    margin: 0;
    font-size: 34px;
    line-height: 1.8em;
}
.head_int .columna p.outline{
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 0 10px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    color: #fff;
}
.head_int .columna p.bold{
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 0 10px;
}
.head_int .columna p{
    margin: 6px 0 0 10px;
    line-height: 1.6em;
}



/*contenido*/
.wrapper{
    background-color: #fff;
    min-height: 100vh;
    width: 100%;
    z-index: 2;
    position: relative;
    border-bottom: 2px solid #000;
}
.contenido{
    width: -o-calc(100% - 55px);
    width: -ms-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
    padding-left: 55px;
    position: relative;
}
.area_derecha{    min-height: 100vh;}
.area_izquierda{}

.fijar_area_izquierda{
    position: absolute;
    width: 0px;
    height: 0px;
    left: 0px;
}

/************home*/
.seccion_inicio{
}
.seccion_inicio .contenido{}
.grid_vertical{
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.area_vertical{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    border-bottom: 2px solid #000;
    padding: 34px 15px 10px;
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 106px;
    position: relative;
}
.area_logo{
    display:block;
    width: 100%;
    border-bottom: 2px solid #000;
    padding-bottom: 8.8%;
    height: 20px;
    position: relative;
}
.area_logo_int{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.area_logo_int svg{
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    max-width: -o-calc(100% - 30px);
    max-width: -ms-calc(100% - 30px);
    max-width: -moz-calc(100% - 30px);
    max-width: -webkit-calc(100% - 30px);
    max-width: calc(100% - 30px);
    margin: 8px auto 0px;
}
.area_vertical .columna{
    display: block;
}
.area_vertical .columna:first-child{
    width: 35%;
    position: relative;
    z-index: 1;
}
.area_vertical .columna:last-child{
    width: -o-calc(65% - 40px);
    width: -ms-calc(65% - 40px);
    width: -moz-calc(65% - 40px);
    width: -webkit-calc(65% - 40px);
    width: calc(65% - 40px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.area_vertical .columna.columna_fija{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}
.area_pep{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.area_vertical .columna h2{
    margin: 0;
    font-size: 32px;
    font-style: italic;
    font-weight: bold;
    font-family: 'Brown-BoldItalic', 'Lato', serif;
    line-height: 1em;
}
.area_vertical .columna h3{
    font-size: 32px;
    margin: 0;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
}
.area_vertical .columna .dato_extra{
    margin-top: 10px;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
}
.area_vertical .columna .dato_extra .tipo{
    font-size: 10px;
    margin-right: 10px;
}
.area_vertical .columna .dato_extra .tipo::after{
    content:"↘ ";
}
.area_vertical .columna .dato_extra .fecha{
    font-size: 18px;
}
.area_vertical .columna img{
    display: block;
    /*max-width: 140px;*/
    max-height: 130px;
    width: auto;
    height: auto;
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
}

.home{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}
.home .contenido{
    display:flex;
    flex-wrap: wrap;
    padding: 0;
}
.home header{
    position: relative;
    top: 0;
    left: 0;
}
.act_fijar_header .home header{
    position: fixed;
}
.act_fijar_header.act_scroll_header .home header{
    position: absolute;
    top: initial;
    bottom: 0px;
}
.break{}
.break.break_animado{
    display: block;
    width: 100%;
    border-bottom: 2px solid #000;
}
.break.break_animado .break_int{
    padding: 25px 0px;
    overflow: hidden;
}
.break.break_animado .break_int h1, .break.break_animado .break_int h2, .break.break_animado .break_int h3{
    font-size: 72px;
    margin: 0 30px 0 0;
    text-transform: uppercase;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
        height: 100%;
    width: auto;
    display: inline-block;
    vertical-align: top;
    margin-right: 40px;
}
.break.break_animado .break_int p{
    margin: 0;
    font-size: 32px;
    font-family: 'Brown-BoldItalic', 'Lato', serif;
    font-weight: bold;
    font-style: italic;
        height: 100%;
    width: auto;
    display: inline-block;
    vertical-align: top;
}
.break.break_animado .break_int .scroll_uno{
    position: relative;
    height: 100%;
    width: auto;
    white-space: nowrap;
    display: -webkit-inline-box;

}
.break.break_animado .break_int .scroll_uno .scroll_uno_int{
    height: 100%;
    position: relative;
    left: 0;
    -webkit-animation: carrusel linear 80s infinite;
    animation: carrusel linear 80s infinite;
}
.break.break_animado .break_int .scroll_dos{
    position: relative;
    height: 100%;
    width: auto;
    white-space: nowrap;
    display: -webkit-inline-box;
}

.break.break_animado .break_int .scroll_dos .scroll_dos_int{
    height: 100%;
    position: relative;
    left: 0;
    -webkit-animation: carrusel linear 50s infinite;
    animation: carrusel linear 50s infinite;
}

@-webkit-keyframes carrusel {
    from {left: 0px;}
    to {
        left: -o-calc(-100% + 100vw);
        left: -ms-calc(-100% + 100vw);
        left: -moz-calc(-100% + 100vw);
        left: -webkit-calc(-100% + 100vw);
        left: calc(-100% + 100vw);
    }
}

@keyframes carrusel {
    from {left: 0px;}
    to {
        left: -o-calc(-100% + 100vw);
        left: -ms-calc(-100% + 100vw);
        left: -moz-calc(-100% + 100vw);
        left: -webkit-calc(-100% + 100vw);
        left: calc(-100% + 100vw);
    }
}

article{
    width: 75%;
    float: left;
    min-height: 100vh;
    height: fit-content;
}

.carrusel{
    padding-left: 10px;
    position: relative;
}
.carrusel h3{
    font-size: 12px;
    color: #757575;
    text-transform: uppercase;
}
.carrusel_int{
    width: 100%;
}
.carrusel_int .post{
    width: 290px;
    position: relative;
    display: block;
    white-space: normal;
    margin-right: 25px;
}
.carrusel_int .post .imagen{
    width: 100%;
    height: 0;
    padding-bottom: 47.6%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.carrusel_int .post .info{}
.carrusel_int .post .info h2{
    font-size: 24px;
    margin: 20px 0px 10px;
}
.carrusel_int .post .info .fecha{
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 12px;
} 
.carrusel_int .post .info .tipo{
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 12px;
} 

.carrusel_int .post .info .tipo::before{
        content: "→ ";
    font-size: 12px;
    font-weight: bold;
}
.carrusel_int .post .categoria{
    font-size: 12px;
    text-transform: uppercase;
    color: #757575;
    display: block;
    margin-bottom: 3px;
}
.carrusel_int .post .info .fecha .extra_hora::before {
    content: " | ";
    font-size: 12px;
    font-weight: bold;
}
.carrusel_int .post .info .fecha .extra_info::before {
    content: " + ";
    font-size: 12px;
    font-weight: bold;
}
.carrusel_int .post .info .fecha.f_fecha::before{
    content:"→ ";
    font-weight:bold;
    font-size:12px;;
}
.carrusel.carrusel_tipografia{
    border-bottom: 2px solid #000;
    padding-bottom: 35px;
}
.carrusel.carrusel_tipografia .carrusel_int{}
.carrusel.carrusel_tipografia .carrusel_int .post{
    width: 145px;
    text-transform: uppercase;
    margin-right: 35px;
}
.carrusel.carrusel_tipografia .carrusel_int .post .info{}
.carrusel.carrusel_tipografia .carrusel_int .post .info h2{
    font-size: 16px;
    font-family: 'Brown-BoldItalic', 'Lato', serif;
    margin: 20px 0px 0px;
    line-height: 1.2em;
}
.carrusel.carrusel_tipografia .carrusel_int .post .info h3{
    font-size: 16px;
    color: #000;
    margin: 0;
    line-height: 1.2em;
}
.veladura{
    height: 100%;
    width: 44px;
    position: absolute;
    right: 0px;
    top: 0px;
background: rgba(255,255,255,0);
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 28%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(28%, rgba(255,255,255,0.74)), color-stop(69%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,1)));
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 28%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 100%);
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 28%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 100%);
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 28%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 100%);
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.74) 28%, rgba(255,255,255,1) 69%, rgba(255,255,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}

aside{
    width: -o-calc(25% - 2px);
    width: -ms-calc(25% - 2px);
    width: -moz-calc(25% - 2px);
    width: -webkit-calc(25% - 2px);
    width: calc(25% - 2px);
    border-left: 2px solid #000;
}
aside .general{
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding: 28px 0px 22px;
}
aside .general .fila{
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.2em;
    font-size: 12px;
}
aside .general .fila .columna{
    width: -o-calc(50% - 7px);
    width: -ms-calc(50% - 7px);
    width: -moz-calc(50% - 7px);
    width: -webkit-calc(50% - 7px);
    width: calc(50% - 7px);
    margin: 0px;
}
aside .general .fila .columna:first-child{
    /*text-align: right;*/
}


aside .general .fila .columna p{}
aside .general .fila .columna p:first-child{
    margin-top:0px;
}
aside .general .fila .columna p:last-child{
    margin-bottom:0px;
}
aside .general .fila .columna p span{}
aside .general .fila .columna p a{}
aside .general .fila .columna p a::after{
    content:" →";
    font-size: 16px;
    font-weight: bold;
}

aside .actuales{
    padding: 15px 10px;
}
aside .actuales h3{
    margin: 0px 0px 3px;
    color: #757575;
    text-transform: uppercase;
    font-size: 12px;
}
aside .actuales .grid_actuales{
    margin: 30px 18px;
    width: -o-calc(100% - 36px);
    width: -ms-calc(100% - 36px);
    width: -moz-calc(100% - 36px);
    width: -webkit-calc(100% - 36px);
    width: calc(100% - 36px);
}
aside .actuales .grid_actuales .post{
    margin-bottom: 50px;
    display: block;
    max-width: 300px;
}
aside .actuales .grid_actuales .post h3{}
aside .actuales .grid_actuales .post h2{
    margin: 0px 0px 10px;
    font-size: 18px;
    line-height: 1.4em;
}
aside .actuales .grid_actuales .post p{
    margin: 0px 0px 5px;
    font-size: 12px;
}
aside .actuales .grid_actuales .post p span{}
aside .actuales .grid_actuales .post p span.extra_hora{}

aside .actuales .grid_actuales .post p span.extra_hora::before{
    content: " | ";
    font-size: 12px;
    font-weight: bold;
}
aside .actuales .grid_actuales .post p span.extra_info{}
aside .actuales .grid_actuales .post p span.extra_info::before{
    content: " + ";
    font-size: 12px;
    font-weight: bold;
}
aside .actuales .grid_actuales .post p.tipo{}
aside .actuales .grid_actuales .post p.tipo::before{
    content: "→ ";
    font-size: 12px;
    font-weight: bold;
}

.link_extra{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    text-align: right;
    margin: auto;
}
.link_extra a{
    font-size: 12px;
    font-weight: bold;
}
.link_extra a::after{
    content: " →";
    font-size: 12px;
}

/************visita*/
.contenido.contenido_visita{
    padding-top: 100px;
    font-size: 16px;
    padding-bottom: 45px;
    font-family: 'Brown-Regular', 'Lato', serif;
    font-weight: normal;
    line-height: 1.46em;
    width: 1400px;
}
.contenido.contenido_visita .contenido_int{}
.contenido_visita .fila{
    display: flex;
}
.contenido_visita .fila:first-child{
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 75px;
}
.contenido_visita .columna_1_4{
    width: -o-calc(25% - 30px);
    width: -ms-calc(25% - 30px);
    width: -moz-calc(25% - 30px);
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin: 0px 15px;
}
.contenido_visita .fila:first-child .columna_1_4{margin-top: 8px;}
.contenido_visita .fila:first-child .columna_1_4 p{
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Brown-Bold', 'Lato', serif;
}
.contenido_visita > .columna_1_4 p{
    font-size: 18px;
}
.contenido_visita .columna_2_4{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0px 15px;
}
.contenido_visita .columna_2_4 > .fila{flex-wrap: wrap;}
.contenido_visita .columna_2_4 > .fila .post{
    width: -o-calc(50% - 15px);
    width: -ms-calc(50% - 15px);
    width: -moz-calc(50% - 15px);
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
    margin-bottom: 40px;
}
.contenido_visita .columna_3_4{
    width: -o-calc(75% - 30px);
    width: -ms-calc(75% - 30px);
    width: -moz-calc(75% - 30px);
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
    margin: 0px 15px;
}
.contenido_visita .columna_3_4 h3{
    margin: 0px 0px 5px;
    text-transform: uppercase;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
}
.contenido_visita .columna_2_4 > .columna_3_4{
    margin-bottom: 20px;
}
.contenido_visita .columna_2_4 > .columna_3_4 h3{
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.contenido_visita .columna_3_4 p{
    margin:5px 0px;
}
.contenido_visita .columna_3_4 h5{
    margin: 0px 0px 8px;
    line-height: 140%;
    font-size: 12px;
}
.contenido_visita .columna_3_4 h6{
    margin: 10px 0px;
    font-size: 14px;
    line-height: 1.2em;
}
.contenido_visita .columna_3_4 h2{
    font-size: 90px;
    margin: 0px;
    font-family: 'Brown-Bold', 'Lato', serif;
    line-height: 1.2em;
}
.contenido_visita .fila .post{
}
.contenido_visita .fila .post h3{
    margin: 0px 0px 5px;
    text-transform: uppercase;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
}
.contenido_visita .fila .post p{
    margin: 8px 0px;
    line-height: 140%;
}

.contenido_visita .extra{
    width: 100%;
    border: 2px solid #000;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Brown-Bold', 'Lato', serif;
}
.contenido_visita .extra_int{
    padding-right: 10px;
}
.contenido_visita .extra_int .titulo{
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2em;
    height: 32px;
    display: block;
}
.contenido_visita .extra_int p{
    margin: 3px 0 0 0;
    line-height: 1.2em;
}
.contenido_visita .extra_int a{}

.contenido_visita .icono{
    width: 20px;
    height: 20px;
}
.contenido_visita .icono img{}
.contenido_visita ul{
    margin: 5px 0px 20px;
    padding: 0;
    list-style: none;
}
.contenido_visita li{}
.mapa{
    filter: grayscale(1);
    width: 100%;
    padding-bottom: 57.2%;
    height: 0;
    position: relative;
    margin-top: 20px;
}
.mapa iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.fila_mapa_responsive{
    display: none;
}
.mapa_responsive{
    filter: grayscale(1);
    width: 100%;
    padding-bottom: 57.2%;
    height: 0;
    position: relative;
    margin-top: 20px;
}
.mapa_responsive iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.fila_responsive{
    display: none;
}
.contenido_visita .fila.fila_reversa{
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/************page*/
.contenido.contenido_page{
    padding-top: 110px;
}
.contenido.contenido_page section{
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #000;
    padding: 55px 0px;
}
.contenido.contenido_page section:last-child{
    border-bottom:none;
    padding: 30px 0px;
}
.contenido.contenido_page section .contenido{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 0;
    margin: 0px auto;
}


.head_menu{
    white-space: nowrap;
    overflow: auto;
}
.head_menu ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: max-content;
}
.head_menu li{
    border-right: 2px solid #000;
    border-right: 0px solid #fff;
    width: 0;
    overflow: hidden;
    transition: width 900ms;
}
.head_menu li a, .head_menu li span{
    padding: 9px 14px 0px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: bold;
}
.head_menu li.act_n a, .head_menu li.act_n span{
    background-color: #000;
    color: #fff;
    background-color: #fff;
    color: #000;
}
.head_menu li.act_n, .head_menu li.act_n{
    width: auto;
}



.menu_pagina{
    margin: 0;
    padding: 0;
    position: fixed;
    top: 70px;
    background: #fff;
    left: 70px;
    z-index: 5;
}
.menu_pagina ul{margin: 0;padding: 0;list-style: none;display: flex;text-transform: uppercase;border: 2px solid #000;border-right: none;}
.menu_pagina li{
    padding: 0px;
    border-right: 2px solid #000;
}
.menu_pagina li a,.menu_pagina li span{
    padding: 7px 8px 4px;
    display: block;
}
.menu_pagina li.act_n a, .menu_pagina li.act_n span{
    background-color: #000;
    color: #fff;
}

.texto{
    max-width: 600px;
    font-size: 18px;
    line-height: 1.4em;
    font-family: 'Brown-Regular', 'Lato', serif;
    font-weight: normal;
}
.texto h1{}
.texto h2{
    font-size: 32px;
    font-weight: bold;
    margin: 60px 0px 15px;
    line-height: 1.2em;
    font-family: 'Brown-Bold', 'Lato', serif;
}
.texto h3{
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0px;
    line-height: 1.2em;
    font-family: 'Brown-Bold', 'Lato', serif;
}
.texto h4{}
.texto h5{}
.texto h6{}
.texto img{}
.texto p{
    margin: 15px 0px;
}
.texto ul, .texto ol{
    margin: 20px 0px;
    padding: 0 0px 0px 15px;
}
.texto li{}
.texto p:first-child{
    margin-top:0px;
}
.texto p:last-child{
    margin-bottom:0px;
}
.texto span{}
.texto b, .texto strong{}
.texto small{}

/***con sidebar*/
.c_sidebar{}
.c_sidebar article{
    width: -o-calc(75% - 30px);
    width: -ms-calc(75% - 30px);
    width: -moz-calc(75% - 30px);
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
    margin: 0px 15px;
    min-height: initial;
}
.c_sidebar article .texto{
    font-size: 24px;
    line-height: 1.2em;
}
.c_sidebar aside{
    width: -o-calc(25% - 30px);
    width: -ms-calc(25% - 30px);
    width: -moz-calc(25% - 30px);
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin: 0px 15px;
    border: none;
    min-height: initial;
}
.c_sidebar aside .extra{
    border: 2px solid #000;
    padding: 15px;
    font-size: 17px;
}
.c_sidebar aside .extra span{
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Brown-Bold', 'Lato', serif;
}
.c_sidebar aside .extra p{
    margin: 0;
}
.c_sidebar aside .extra .imagen{margin-top: 15px;}
.c_sidebar aside .extra .imagen img{
    max-width: 100%;
    height: auto;
    max-height: 80px;
    width: auto;
}

/***solo texto*/
.s_texto{}
.s_texto article{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: 0px 15px;
    min-height: initial;
}
.s_texto article .texto{}

/***grid de descargables*/
.contenido.contenido_page section.descargables{
    padding: 18px 0px;
}
.grid_descarga{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: auto;
}
.grid_descarga .flickity-button{
    display: none;
}
.grid_descarga .post{
    width: 160px;
    text-transform: uppercase;
    margin-right: 20px;
    position: relative;
}
.grid_descarga .fila{
    display: flex;
    flex-wrap: wrap;
}
.grid_descarga .imagen{
    width: 30px;
    height: 35px;
    margin-right: 10px;
}
.grid_descarga .imagen img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.grid_descarga .fila h3{
    margin: 0;
    width: -o-calc(100% - 45px);
    width: -ms-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
}
.grid_descarga .post .btn{
    font-size: 16px;
    border: 1px solid #000;
    padding: 7px 7px 3px;
    display: table;
    margin-top: 5px;
}

.grid_descarga .post .btn::before{
    content:"↘ ";
}
/***solo imagen*/
.c_imagen{}
.imagen_page{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    margin: 0px 15px;
    position: relative;
}
.imagen_page img{
    max-width:100%;
    max-height: -o-calc(100vh - 100px);
    max-height: -ms-calc(100vh - 100px);
    max-height: -moz-calc(100vh - 100px);
    max-height: -webkit-calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    width:auto;
    height:auto;
    display: block;
}
.c_imagen p{
    margin: 10px 0px 5px;
    font-family: 'Brown-Bold', 'Lato', serif;
    max-width: 80%;
    line-height: 1.4em;
}

/***solo video*/
.c_video{}
.video{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
}
.video_int{
    width: 100%;
    position: relative;
    padding-bottom: 56.8%;
    height: 0;
}
.video_int iframe{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
    background-color: #000;
}
.c_video .fila{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
}
.c_video .fila .titulo{
    width: -o-calc(40% - 15px);
    width: -ms-calc(40% - 15px);
    width: -moz-calc(40% - 15px);
    width: -webkit-calc(40% - 15px);
    width: calc(40% - 15px);
}
.c_video .fila .titulo h2{
    font-size: 34px;
    margin: 0 0 10px;
}
.c_video .fila .titulo p{
    margin: 0px;
}
.c_video .fila .columna_3_5{
    width: 60%;
}
.c_video .fila .columna_3_5 p{
    line-height: 1.4em;
    margin: 0 0 10px;
    font-size: 18px;
    font-family: 'Brown-Bold', 'Lato', serif;
}

/***galeria*/
.galeria{}
.galeria h2{
    margin: 0px 0px 10px;
    font-size: 34px;
}
.carrusel.carrusel_imagen{
    padding: 0;
    width: 100%;
    margin: 0px auto 25px;
}
.carrusel.carrusel_imagen .carrusel_int{
    /*padding: 0;*/
    height: 370px;
}
.carrusel.carrusel_imagen .carrusel_int .post{
    width: fit-content;
    height: 370px;
    margin-right: 10px;
        width: max-content;
}
.carrusel.carrusel_imagen .carrusel_int .post img{
    width: auto;
    max-height: 370px;
    display: block;
}
.galeria .columna_2{}
.galeria .columna_2 .texto{}

/*carrusel de categorias*/
.carrusel_categorias{}
.carrusel_categorias .carrusel{
    padding: 0px;
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: auto;
}
.carrusel_categorias .carrusel h3{
    color: #000;
    margin: 0px 0px 20px;
}
.carrusel_categorias .fecha{
    font-size: 12px;
    font-weight: bold;
}
.carrusel_categorias .link{
    margin: 0px;
    font-size: 12px;
    font-weight: bold;
}
.carrusel_categorias .link::before{
    content:"→ ";
}
.carrusel_categorias .carrusel_int .post .info{
    text-transform:uppercase;
}
.carrusel_categorias .carrusel_int{
    padding: 0;
}

/************coleccion*/
/***grid*/
.head.head_c{}

.head.head_c .head_int{
    padding: 0px 15px;
    border-bottom: 2px solid #000;
}
.head.head_c .head_int:last-child{
    border-bottom:none;
    height: auto;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}
.head.head_c .head_int .columna{}
.head.head_c .head_int .columna h2{}
.head.head_c .head_int .columna .link{
    font-size: 34px;
    font-weight: bold;
}
.head_int.head_int_coleccion{}
.head.head_c .head_int .columna .link::before{
    content:"+ ";
}
.filtro_1{
    border-right: 2px solid #000;
    padding: 17px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.filtro_1 a,.filtro_1 span{
    display: block;
    /* background-color: #000; */
    /* color: #fff; */
    padding: 2px 11px;
    height: 26px;
    line-height: 1.8em;
    text-align: center;
    font-size: 18px;
    border: 1px solid #000;
    margin-bottom: -1px;
    -webkit-transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.filtro_1 a.act_n,.filtro_1 span.act_n{
    background-color: #000;
    color: #fff;
}
.filtro_2{
    display: flex;
    flex-wrap: wrap;
    padding: 15px 15px 15px 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.filtro_2 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    border: 1px solid #000;
    border-right: 0;
}
.filtro_2 .nivel_1{
    margin-bottom: -1px;
}
.filtro_2 .nivel_2{
}
.filtro_2 ul li{
    border-right: 1px solid #000;
}
.filtro_2 ul a, .filtro_2 ul span{
    display: block;
    padding: 2px 11px;
    height: 26px;
    line-height: 1.8em;
    font-size: 18px;
    position:relative;

    -webkit-transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.filtro_2 a.act_n,.filtro_1 span.act_n{
    background-color: #000;
    color: #fff;

}


.contenido.contenido_coleccion{
    padding-top: 168px;
}
.grid_coleccion{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 15px;
    width: -o-calc(100% - 15px);
    width: -ms-calc(100% - 15px);
    width: -moz-calc(100% - 15px);
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    padding-bottom: 55px;
}
.pieza{
    margin-right: 15px;
    margin-bottom: 15px;
    display: block;
}
.pieza .imagen{}
.pieza .imagen img{
    display: block;
}
.pieza .imagen.size_100{
    width: 240px;
}
.pieza .imagen.size_200{
    width: 340px;
}
.pieza .imagen.size_300{
    width: 440px;
}
.pieza .imagen.size_400{
    width: 540px;
}
.pieza .info{
    max-width: 240px;
    font-size: 16px;
}
.pieza .info h2{
    margin: 20px 0px 5px;
    font-size: 24px;
}
.pieza .info p{
    margin: 0px 0px 5px;
    line-height: 1.4em;
}
/***obra single*/
.head_int.head_submenu{
    height: auto;
}
.head.head_c .head_int:last-child.head_submenu{
    justify-content: space-between;
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 0px 15px;
}
.head_submenu .click{}
.head_submenu .click.click_01{}
.head_submenu .click.click_02{
    text-align: center;
}
.head_submenu .click.click_03{
    text-align: right;
}
.head_submenu .click .btn{
    height: 30px;
    line-height: 30px;
    width: 40px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #9DA0A2;
}


.contenido.contenido_coleccion_top{
    padding-top: 87px;
}
.obra{
    padding-top: 90px;
    padding-bottom: 30px;
    position: relative;
}
.obra .imagen{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    margin: 0px 15px;
    float: left;
    position: -webkit-sticky;
    position: sticky;
    top: 87px;
    left: 0;
}
.obra .imagen_int{
    width: 80%;
    margin: auto;
    min-height: -o-calc(100vh - 177px);
    min-height: -ms-calc(100vh - 177px);
    min-height: -moz-calc(100vh - 177px);
    min-height: -webkit-calc(100vh - 177px);
    min-height: calc(100vh - 177px);
}
.obra .imagen_padding{
    width: 100%;
    padding-bottom: 84.1%;
    height: 0;
    position: relative;
}
.obra .imagen_centrar{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.obra .imagen_int img{}
.obra .imagen img{}
.obra .info{
    width: -o-calc(100%/8 * 3 - 30px);
    width: -ms-calc(100%/8 * 3 - 30px);
    width: -moz-calc(100%/8 * 3 - 30px);
    width: -webkit-calc(100%/8 * 3 - 30px);
    width: calc(100%/8 * 3 - 30px);
    margin: 0px 15px;
    float: right;
    min-height: -o-calc(100vh - 177px);
    min-height: -ms-calc(100vh - 177px);
    min-height: -moz-calc(100vh - 177px);
    min-height: -webkit-calc(100vh - 177px);
    min-height: calc(100vh - 177px);
    position: -webkit-sticky;
    position: sticky;
    top: 88px;
}
.obra .info_contenida{
    max-width: 300px;
}
.obra .info_contenida h2{
    margin: 0px 0px 15px;
    font-size: 24px;
    font-family: 'Brown-BoldItalic', 'Lato', serif;
}
.obra .info_contenida .artista{
    font-size: 24px;
    margin: 0px 0px 10px;
}
.obra .info_contenida .datos{
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.obra .info_contenida .datos p{
    margin: 0px 0px 5px;
}

.obra .info_contenida .extra{
    margin-top: 50px;
    font-size: 18px;
    font-family: 'Brown-Regular', 'Lato', serif;
    font-weight: normal;
    line-height: 1.4em;
}
.obra .info_contenida .extra p{
    margin: 0px 0px 20px;
}

.botones{
    margin-top: 40px;
}
.botones h4{
    font-size: 14px;
    margin: 0 0 10px;
}
.botones .exposicion{
    border: 2px solid #000;
    display: block;
    padding: 15px;
    text-transform: uppercase;
    margin-bottom: -2px;
    border-right: none;
    margin-right: -15px;
}
.botones .exposicion_contenida{}
.botones .exposicion_contenida h2{
    margin: 0;
    font-size: 26px;
    font-style: italic;
}
.botones .exposicion_contenida h3{
    margin: 0;
    font-size: 26px;
}
.carrusel.carrusel_expo .carrusel_int{
    height: 350px;
    margin-left: 0px;
    width: 100%;
}
.obra .fechas{
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.obra .fechas .link{
    font-size: 10px;
    font-weight: bold;
}
.obra .fechas .link::after{
    content:" ↘";
    
}
.obra .fechas > *{
    margin:0px;
    display:block;
    margin-right: 10px;
    font-weight: bold;
}
.mas_obras{
    border-top: 2px solid #000;
}
.mas_obras .contenido{
    padding: 0px;
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: auto;
}
.mas_obras .contenido h4{
    margin: 20px 0 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.mas_obras .contenido h3{
    margin: 0;
    font-weight: bold;
    font-size: 24px;
}
.mas_obras .contenido .carrusel{
    margin-bottom: 50px;
    padding: 0;
    margin-top: 35px;
}
.mas_obras .contenido .carrusel_int{
    width: 100%;
    padding: 0;
}
.post.p_obra{}
.post.p_obra .imagen{
    position:relative;
    margin-bottom: 20px;
}
.post.p_obra .imagen_int{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}
.post.p_obra .imagen_int img{
    max-height: 100%;
    display: block;
}
.post.p_obra .info{}
.post.p_obra .info h3{
    font-size: 24px;
    color: #000;
    text-transform: initial;
    line-height: 1.2em;
}

.mas_obras .contenido .columna_5_8{}
.mas_obras .contenido .columna_3_8{}

.blog{}
.blog h3{
    font-size: 12px;
    margin: 14px 0px 40px;
    text-transform: uppercase;
}
.grid_blog{}
.blog_post{
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    justify-content: flex-start;
}
.blog_post .imagen{
    width: 80px;
    height: 80px;
        background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.blog_post .info{
    width: -o-calc(100% - 10px);
    width: -ms-calc(100% - 10px);
    width: -moz-calc(100% - 10px);
    width: -webkit-calc(100% - 10px);
    width: calc(100% - 10px);
    max-width: 200px;
    margin-left: 10px;
}
.blog_post .fecha{
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}
.blog_post h2{
    margin: 0;
    font-size: 18px;
}

.relacionadas{
    border-top: 2px solid #000;
}
.relacionadas .contenido{
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.relacionadas h3{}
.relacionadas .carrusel{
    padding: 0;
}
.relacionadas .carrusel h3{
    color: #000;
    font-size: 12px;
    margin: 14px 0px 40px;
}
.relacionadas .carrusel_int{
    padding: 0;
}
.columna_5_8{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    padding: 0px 15px;
}
.columna_3_8{
    width: -o-calc(100%/8 * 3 - 30px);
    width: -ms-calc(100%/8 * 3 - 30px);
    width: -moz-calc(100%/8 * 3 - 30px);
    width: -webkit-calc(100%/8 * 3 - 30px);
    width: calc(100%/8 * 3 - 30px);
    padding: 0px 15px;
}
.artista_texto .columna_5_8{
    float: left;
    position: -webkit-sticky;
    position: sticky;
    top: 98px;
}
.artista_texto .columna_3_8{
    float: right;
    position: -webkit-sticky;
        position: sticky;

    top: 98px;
}
.relacionadas .columna_5_8{
    border-right: 2px solid #000;
    width: -o-calc(100%/8 * 5 - 32px);
    width: -ms-calc(100%/8 * 5 - 32px);
    width: -moz-calc(100%/8 * 5 - 32px);
    width: -webkit-calc(100%/8 * 5 - 32px);
    width: calc(100%/8 * 5 - 32px);
}
.relacionadas .columna_3_8{
    border-left: 2px solid #000;
    margin-left: -2px;
}

/***artista*/
.artista{}
.contenido_artista{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0px 15px;
}
.contenido_artista h2{
    font-size: 34px;
    margin: 40px 0px 50px;
}
.slider{
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 70px;
}
.slide{
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 65%;
    width: 100%;
    height: 150px;
    background-color: #fff;
}
.slide .imagen{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.slide .imagen_int{
    width: 100%;
    padding-bottom: 65%;
    height: 0;
    position: relative;
}
.pie_de_foto{}
.pie_de_foto p{
    margin: 25px 0 0;
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2em;
}
.slide .imagen_int img{
    max-height: 100%;
    width: auto;
    display: block;
    position: relative;
}
.slide .imagen_contenida{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.slide .flechas_slider{}
.slide .flechas_slider .f_izq{}
.slide .flechas_slider .f_der{}

.artista_texto{
    padding: 50px 0px;
    border-top: 2px solid #000;
}
.artista_texto .botones{
    margin-top:0px;
    padding-bottom: 15px;
}
.artista_texto .contenido{
    width: 100%;
    padding: 0;
}

.flechas_slider{
    display: flex;
    flex-wrap: wrap;
    bottom: 0px;
    left: 0;
    position: absolute;
}
.f_der{
    width: 30px;
    height: 30px;
    background-image: url(../img/f_d.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.f_izq{
    width: 30px;
    height: 30px;
    background-image: url(../img/f_i.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
.slider_responsive{
    display: none;
    margin-bottom: 30px;
}
.slider_responsive .imagen{
    margin-right: 30px;
}
.slider_responsive .imagen_int{

}
.slider_responsive .imagen_contenida{
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.slider_responsive .imagen_contenida img{
    max-height: 100%;
    width: auto;
    max-width: -o-calc(100vw - 40px);
    max-width: -ms-calc(100vw - 40px);
    max-width: -moz-calc(100vw - 40px);
    max-width: -webkit-calc(100vw - 40px);
    max-width: calc(100vw - 40px);
}
.slider_responsive .pie_de_foto{}
.slider_responsive .pie_de_foto p{}
.slider_responsive .flickity-button{
    display: none;
}

.hidden_h{}
.btn.btn_hidden_h{}
.btn.btn_hidden_h .btn-info{}

.act_hidden_texto .hidden_h{
    max-height: -o-calc(100vh - 180px);
    max-height: -ms-calc(100vh - 180px);
    max-height: -moz-calc(100vh - 180px);
    max-height: -webkit-calc(100vh - 180px);
    max-height: calc(100vh - 180px);
    overflow: hidden;
}
.act_hidden_texto .btn.btn_hidden_h{
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(88%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
    width: 100%;
    margin-top: -49px;
    padding-top: 50px;
    z-index: 2;
    position: relative;
}
.act_hidden_texto .btn.btn_hidden_h .btn-info{
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    left: 586px;
    position: relative;
    /* margin-top: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.act_hidden_texto .btn.btn_hidden_h .btn-info::before{
    content: '+ ';
    display: block;
}

/************exposiciones*/
/***grid*/
.head_int.head_int_menu{}
.head_int.head_int_menu nav{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.head_int.head_int_menu nav a, .head_int.head_int_menu nav span{
    margin: 0;
    font-size: 34px;
    line-height: 0.9em;
    padding: 15px 15px;
    border-right: 2px solid #fff;
    display: block;
    height: 21px;
    display: none;
}

.head_int.head_int_menu nav a.visible, .head_int.head_int_menu nav span.visible{
    display: block;
}

.head_int.head_int_menu nav span.act{
    /* background-color: #000; */
    /* color: #fff; */
}

.exposicion{}
.exposicion .area_vertical:last-child{
    /*border-bottom: none;*/
}

.contenido.contenido_exposicion_top{
    padding-top: 53px;
}
.carrusel_860:after {
        content: '';
     }


/***single*/
.exposicion_single{
    border-bottom: 2px solid #000;
}
.exposicion_single .contenido{
    padding-top: 70px;
    padding-bottom: 50px;
    padding-left: 15px;
    width: -o-calc(100% - 15px);
    width: -ms-calc(100% - 15px);
    width: -moz-calc(100% - 15px);
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
}
.exposicion_single .contenido h2{
    margin: 0px;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
}
.exposicion_single .contenido h3{
    margin: 4px 0 0;
    font-size: 60px;
    text-transform: uppercase;
}
.exposicion_single .datos{
    margin: 20px 0 0;
    text-transform: uppercase;
}
.exposicion_single .datos .expo{
    margin: 0;
    font-size: 12px;
}
.exposicion_single .datos .expo::after{
    content:" ↘";
}
.exposicion_single .datos .fecha{
    margin: 10px 0 0;
    font-size: 24px;
}
.exposicion_single .datos .fecha span{}

.carrusel_expo{
    padding: 0;
    margin-top: 30px;
}
.carrusel_expo .carrusel_int{
    margin-left: -15px;
    width: -o-calc(100% + 15px);
    width: -ms-calc(100% + 15px);
    width: -moz-calc(100% + 15px);
    width: -webkit-calc(100% + 15px);
    width: calc(100% + 15px);
}
.carrusel_expo .post{
    margin-right: 10px;
    width: auto;
}
.carrusel_expo .carrusel_int .post .imagen{
    padding: 0;
    height: auto;
    width: auto;
}
.carrusel_expo .imagen img{
    max-width: -o-calc(100vw - 100px);
    max-width: -ms-calc(100vw - 100px);
    max-width: -moz-calc(100vw - 100px);
    max-width: -webkit-calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    max-height: 350px;
    width: auto;
}

.seccion_pdf{
    border-bottom: 2px solid #000;
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.seccion_pdf .tags{
    margin: 0px 15px;
    width: -o-calc(20% - 30px);
    width: -ms-calc(20% - 30px);
    width: -moz-calc(20% - 30px);
    width: -webkit-calc(20% - 30px);
    width: calc(20% - 30px);
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: fit-content;
}
.seccion_pdf .tag{
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 10px 3px;
    border: 1px solid #000;
    display: block;
    margin-right: -1px;
    margin-bottom: -1px;
}

.carrusel_pdf{
    width: -o-calc(80% - 15px);
    width: -ms-calc(80% - 15px);
    width: -moz-calc(80% - 15px);
    width: -webkit-calc(80% - 15px);
    width: calc(80% - 15px);
    margin: 0px 0px 0px 15px;
    padding: 0;
}
.carrusel_pdf .carrusel_int{
    margin-top: 0px;
    padding: 0px;
    width: 100%;
}
.carrusel_pdf .post{
    width: auto;
    max-width: 260px;
}
.carrusel_pdf .fila{
    display: flex;
    flex-wrap: wrap;
}
.carrusel_pdf .carrusel_int .post .imagen{
    width: 30px;
    height: 35px;
    padding: 0px;
}
.carrusel_pdf .imagen img{
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 100%;
}
.carrusel_pdf .info{
    width: -o-calc(100% - 40px);
    width: -ms-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-left: 10px;
}
.carrusel_pdf .carrusel_int .post .info h2{
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2em;
}
.carrusel_pdf .btn{
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #000;
    display: inline-block;
    padding: 8px 10px 3px 8px;
}
.carrusel_pdf .btn::before{
    content:"↘";
}

.expo_texto{}
.expo_texto .contenido{
    padding-left: 0px;
    padding-top: 60px;
    width: 100%;
}
.expo_texto .columna_1_2{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    padding: 0px 15px;
    float: left;
    position: -webkit-sticky;
    position: sticky;
    top: 98px;
}
.expo_texto  .texto{
    padding-bottom: 60px;
}
.expo_texto  .texto p{}
.expo_texto .columna_1_4{
    width: 20%;
    margin-right: 15%;
    float: right;
    position: -webkit-sticky;
    position: sticky;
    top: 98px;
}
.expo_texto .columna_1_4 .sidebar{}
.expo_texto .columna_1_4 .sidebar .post{}
.expo_texto .columna_1_4 .sidebar .post.post_single{
    display: block;
    margin-bottom: 50px;
}
.expo_texto .columna_1_4 .sidebar .post.post_single h4{
    margin: 0px;
    color: #969696;
    text-transform: uppercase;
    font-size: 12px;
}
.expo_texto .columna_1_4 .sidebar .post.post_single .image{
    width: 100%;
    height: 0px;
    padding-bottom: 48.1%;
    margin: 5px 0px 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.expo_texto .columna_1_4 .sidebar .post.post_single .info{}
.expo_texto .columna_1_4 .sidebar .post.post_single .info h2{
    font-size: 24px;
    line-height: 1.2em;
    margin: 0px 0px 10px;
}
.expo_texto .columna_1_4 .sidebar .post.post_single .info p{
    margin: 0;
    text-transform: uppercase;
}
.expo_texto .columna_1_4 .sidebar .post.post_single .info .fecha{}
.expo_texto .columna_1_4 .sidebar .post.post_single .info .tipo{
    margin: 5px 0 0;
}
.expo_texto .columna_1_4 .sidebar .post.post_single .info .tipo::before{
    content:"→ ";
}

.header_titulo{
    position: fixed;
    top: 87px;
    background: rgba(255, 255, 255, 0.7);
    left: 55px;
    width: -o-calc(100% - 55px);
    width: -ms-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    top: 0px;
}
.titulo_header{
    margin: 0px 15px;
    padding: 8px 0px 2px;
}
.titulo_header h2{
    margin: 0px;
    font-size: 18px;
}
.titulo_header h3{
    margin: 0px;
    font-size: 18px;
    font-family: 'Brown-BoldItalic', 'Lato', serif;
}
.fecha_header{margin-bottom: 3px;}
.fecha_header .fecha{
    margin: 0px;
}
.fecha_header .fecha span{}


/************programa*/

.head.head_p{}
.head.head_p .head_int{}
.head.head_p .head_int h2{
    margin: 0;
    font-size: 34px;
    line-height: 1.9em;
}
.head.head_p .head_int.head_int_calendario{
    padding: 0px 15px;
    border-top: 2px solid #000;
    display: block;
}
.head_int_calendario_int{
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 53px;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
}
.head_lado_der{
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.btn.c_btn{
    border: 1px solid #000;
    padding: 7px 10px 3px;
    font-size: 18px;
}
.btn.c_btn p{
    margin: 0;
}

.h_fecha{
    margin: 0px 10px 0px 15px;
    line-height: 1.6em;
}
.h_fecha p{
    margin: 0;
    font-size: 34px;
}
.b_flecha_der{
    width: 40px;
    height: 30px;
    position: relative;
    font-size: 34px;
    top: 1px;
}
.b_flecha_der:before{
    content: "←";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.b_flecha_izq{
    width: 40px;
    height: 30px;
    position: relative;
    font-size: 34px;
    top: 1px;
}
.b_flecha_izq:before{
    content: "→";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_lado_izq{}

.btn_categorias{
    font-size: 18px;
    height: 53px;
    position: relative;
    line-height: 4.1em;
    overflow-y: hidden;
}
.btn_categorias p::after{
    content: " +";
}
.btn_categorias p{
    margin: 0;
}

.head_lado_der .btn.c_btn{}
.head_lado_der .btn.c_btn p{}
.head_lado_izq{}

.contenido.contenido_programa_top{
    padding-top: 110px;
}
.carrusel_programa{
    border-bottom: 2px solid #000;
    padding-top: 30px;
}
.carrusel_programa .carrusel{
    padding-left: 0px;
}
.contenido.contenido_programa_top .carrusel_programa:last-child{
    border-bottom: none;
}
.carrusel_programa .carrusel_int{
    margin-bottom: 50px;
    padding: 0;
    width: 100%;
}
.carrusel_programa .post{
    margin: 0px 15px;
}
.carrusel_programa .post:focus{
    outline: 0;
}

.carrusel_programa .categoria{}
.carrusel_programa .imagen{}
.carrusel_programa .info{}
.carrusel_programa .info h2{}
.carrusel_programa .info h3{}
.carrusel_programa .info .fecha{}
.carrusel_programa .info .extra_hora{}
.carrusel_programa .info .tipo{}

.c_titulo{
    margin: 30px 0px 30px 15px;
    width: -o-calc(100%/8 * 3 - 30px);
    width: -ms-calc(100%/8 * 3 - 30px);
    width: -moz-calc(100%/8 * 3 - 30px);
    width: -webkit-calc(100%/8 * 3 - 30px);
    width: calc(100%/8 * 3 - 30px);
}
.c_titulo h3{
    font-size: 34px;
    color: #000;
    margin: 0px;
}

.flickity-button{
    width: 60px;
    height: 100%;
    border-radius: 0px;
    padding: 0;
}

.flickity-button::active{
    outline: 0;
}
.flickity-button::focus{
    outline: 0;
}

.flickity-prev-next-button.next{
    right: 0px;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}
.flickity-prev-next-button.previous{
    left: 0px;
    background: rgba(255,255,255,1);
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}
.flickity-button:disabled{
    opacity: 0;
}

.head_int.head_int_responsive{
    display: none;
}





/*calendario*/
.calendario_desplegar{
    position: absolute;
    top: -o-calc(100% + 2px);
    top: -ms-calc(100% + 2px);
    top: -moz-calc(100% + 2px);
    top: -webkit-calc(100% + 2px);
    top: calc(100% + 2px);
    left: 0px;
    width: 100%;
    height: 0;
    overflow: hidden;
    /* height: calc(100vh - 110px); */
    transition: 300ms;
    overflow: auto;
}
.calendario_desplegar_int{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 2px solid #000;
    background-color: #fff;
}
.calendario_desplegar_int .seccion{}
.calendario_desplegar_int .seccion.seccion_uno{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.calendario_desplegar_int .seccion.seccion_dos{}
.menu_calendario{
    border: 1px solid #000;
    display: flex;
    font-size: 18px;
    border-right: none;
}
.mc_filtro{
    display: block;
    padding: 7px 7px 2px;
    border-right: 1px solid #000;
}
.mc_filtro.act{
    background-color: #000;
    color: #fff;
}

.calendario{
    margin-left: 30px;
}
.calendario_flecha_izq{
    font-size: 34px;
    width: 40px;
    height: 30px;
    position: relative;
    top: -3px;
    cursor: pointer;
}
.calendario_flecha_izq:before{
    content: "←";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.calendario_flecha_der{
    font-size: 34px;
    width: 40px;
    height: 30px;
    position: relative;
    top: -3px;
    cursor: pointer;
}
.calendario_flecha_der:before{
    content: "→";
    position: absolute;
    display: block;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}
.calendario_titulo{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.calendario_titulo p{
    margin:0px;
    font-size: 34px;
}
.mes{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 196px;
    font-size: 18px;
    font-family: 'Brown-Regular', 'Lato', serif;
    margin-top: 10px;
}
.mes .dia{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    margin: 0px 1px 1px 0px;
    cursor: pointer;
}
.mes .dia.espacio{
    border-color: transparent;
    cursor: default;
}
.mes .dia.act{
    background-color: #000;
    color: #fff;
}
.info_mes{
    font-size: 18px;
    margin-top: 10px;
}
.info_mes p{
    margin: 0;
}
.cajon_categorias{}
.cc_titulo{}
.cc_titulo p{
    font-size: 18px;
    margin: 0;
    padding: 7px 9px 2px;
}
.cajon_categorias_border{
    border: 1px solid #000;
    font-family: 'Brown-Regular', 'Lato', serif;
}
.cajon_categorias_border ul{
    padding: 0;
    margin: 0;
}
.cajon_categorias_border .cc_filtro{
    list-style: none;
    font-size: 18px;
    border-bottom: 1px solid #000;
}
.cajon_categorias_border .cc_filtro:last-child{
    border-bottom:none;
}
.cajon_categorias_border .cc_filtro.act{}
.cajon_categorias_border .cc_filtro a, .cajon_categorias_border .cc_filtro span{
    display: block;
    padding: 7px 9px 2px;
}
.cajon_categorias_border .cc_filtro.act a, .cajon_categorias_border .cc_filtro.act span{
    background-color: #000;
    color: #fff;
}

.act_calendario{
    overflow:initial;
}
.act_calendario .calendario_desplegar{
    height: -o-calc(100vh - 110px);
    height: -ms-calc(100vh - 110px);
    height: -moz-calc(100vh - 110px);
    height: -webkit-calc(100vh - 110px);
    height: calc(100vh - 110px);
}

/***programa single*/

.exposicion_single.programa_single{
    border: none;
}
.programa_single .contenido{
    padding: 0;
    width: 100%;
}
.programa_single .contenido .carrusel_expo{
    margin: 45px 0 45px;
    width: 100%;
}
.programa_single  .carrusel_expo .post{
    margin: 0px 0px 0px 15px;
}
.titulo_programa{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.titulo_int_programa{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0px 15px;
}
.titulo_int_programa h2{
    margin: 0 0 60px;
    font-size: 48px;
}
.titulo_int_programa .fecha{
    margin: 0px;
    font-size: 24px;
}
.titulo_int_programa .tipo{
    margin: 0px;
    font-size: 24px;
}
.titulo_int_programa .tipo::before{
    content: "→ ";
}
.titulo_int_programa .tags{
    margin-top: 15px;
}
.titulo_int_programa .tag{
    border: 1px solid #000;
    padding: 9px 10px 4px;
    text-transform: uppercase;
    margin: 0px -1px -1px 0px;
    font-size: 16px;
}
.area_botones{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.area_botones .botones{
    width: calc(75%);
    margin-top: 20px;
}
.area_botones .botones h4{}
.area_botones .botones .exposicion{}
.area_botones .botones .exposicion_contenida{}
.area_botones .botones .exposicion_contenida h2{}
.area_botones .botones .exposicion_contenida h3{}
.area_botones .botones .exposicion_contenida .fechas{}
.area_botones .botones .exposicion_contenida .fechas .link{}
.programa_texto{
    margin-top: 50px;
}
.programa_texto .contenido{
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.programa_texto .columna_1_2{
    width: -o-calc(50% - 30px);
    width: -ms-calc(50% - 30px);
    width: -moz-calc(50% - 30px);
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0px 15px;
    position: -webkit-sticky;
        position: sticky;
    top: 98px;
}
.programa_texto .columna_1_2:last-child{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: -webkit-sticky;
    position: sticky;
    top: 98px;
}
.programa_texto .columna_1_2:last-child .texto{
    margin-top: 40px;
}
.programa_texto .columna_1_2 .sidebar_programa{}
.programa_texto .columna_1_2:last-child .sidebar_programa{
    width: -o-calc(75% - 15px);
    width: -ms-calc(75% - 15px);
    width: -moz-calc(75% - 15px);
    width: -webkit-calc(75% - 15px);
    width: calc(75% - 15px);
}
.programa_texto .columna_1_2 .programa{
    margin-bottom: 40px;
}
.programa_texto .columna_1_2 .programa h3{
    font-size: 36px;
    margin: 0 0 25px;
}
.programa_texto .columna_1_2 .programa .fecha{
    margin: 0;
    font-size: 24px;
}
.programa_texto .columna_1_2 .programa .fecha span{}
.programa_texto .columna_1_2 .programa .fecha span.extra_hora{}
.programa_texto .columna_1_2 .programa .tipo{
    margin: 0;
    font-size: 24px;
}
.programa_texto .columna_1_2 .programa .tags{
    margin: 15px 0px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.programa_texto .columna_1_2 .programa .tags .tag{
    border: 1px solid #000;
    display: block;
    margin: 0px -1px -1px 0px;
    padding: 8px 6px 4px;
    font-size: 16px;
    text-transform: uppercase;
}
.programa_texto .columna_1_2 .programa .tags .tag.btn{
    background-color: #000;
    color: #fff;
}
.programa_texto .columna_1_2 .btn_pdf{}
.programa_texto .columna_1_2 .fila{
    display: flex;
    flex-wrap: wrap;
}
.programa_texto .columna_1_2 .fila .imagen{
    width: 30px;
    height: 35px;
    margin-right: 10px;
}
.programa_texto .columna_1_2 .fila .imagen img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}
.programa_texto .columna_1_2 .fila .info{
    width: -o-calc(100% - 45px);
    width: -ms-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px);
}
.programa_texto .columna_1_2 .fila .info h2{
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
    text-transform: uppercase;
}
.programa_texto .columna_1_2 .fila .btn{}
.carrusel_programa.carrusel_programa_top{
    border-top: 2px solid #000;
    border-bottom: 0px;
}
.btn_pdf .btn{
    font-size: 16px;
    border: 1px solid #000;
    padding: 7px 7px 3px;
    display: table;
    margin-top: 5px;
    text-transform: uppercase;
}
.btn_pdf .btn::before {
    content: "↘ ";
}
.programa .texto{
    height: 100px;
    overflow: hidden;
}
.programa.act_calendario .texto{
    height: auto;
}
.programa .btn_info{
    margin-top: -30px;
    padding-top: 30px;
    text-align: right;
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,0)), color-stop(59%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 59%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0 );
    z-index: 2;
    position: relative;
}
.programa .btn_info .btn_info_int{
    font-size: 16px;
    border: 1px solid #000;
    width: fit-content;
    display: inline-block;
    padding: 7px 8px 3px;
    cursor: pointer;
}
.programa .btn_info .btn_info_int::before{
    content: '+ ';
}
.programa.act_calendario .btn_info .btn_info_int::before{
    content: '- ';
}

/************footer*/
.espacio_footer{
    height: 68px;
    position: relative;
}
footer{
    height: 68px;
    width: 100%;
    font-size: 16px;
    position: fixed;
    bottom: 0;
    left: 0;
}
.footer_int{
    width: -o-calc(100% - 30px);
    width: -ms-calc(100% - 30px);
    width: -moz-calc(100% - 30px);
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}
.footer_int .columna{}
.footer_int .columna .newsletter{
    display: -webkit-flex;
    display: flex;
}
.footer_int .columna .newsletter input{
    border: none;
    border-bottom: 2px solid #000;
    display: block;
    width: 205px;
    padding: 0;
    font-size: 16px;
}
.footer_int .columna .newsletter .btn{
    border: none;
    border-bottom: 2px solid #000;
    display: block;
    width: 110px;
    padding: 0;
    text-transform: uppercase;
    font-size: 16px;
}
.footer_int .columna p{}
.footer_int .columna p a{}





/*flickity*/
.flickity-prev-next-button .flickity-button-icon{
    display: none;
}
.flickity-button::before{
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    top: 60px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    width: 30px;
    height: 30px;
    background-size: 12px;
}
.flickity-prev-next-button.next.flickity-button::before{
    right: 5px;
    background-image: url(../img/f_d.png);
}
.flickity-prev-next-button.previous.flickity-button::before{
    left: 5px;
    background-image: url(../img/f_i.png);
}

.mas_obras .flickity-button::before{
    width: 50px;
    height: 50px;
    background-size: 20px;
}
.relacionadas .flickity-button::before{
    width: 50px;
    height: 50px;
    background-size: 20px;
}
.carrusel_expo .flickity-button::before{
    top: -o-calc(50% - 26px);
    top: -ms-calc(50% - 26px);
    top: -moz-calc(50% - 26px);
    top: -webkit-calc(50% - 26px);
    top: calc(50% - 26px);
    width: 50px;
    height: 50px;
    background-size: 20px;
}
.carrusel_pdf .flickity-button{
    opacity: 0;
}
.carrusel.carrusel_imagen .flickity-button{
    display: none;
} 

.carrusel_expo .flickity-prev-next-button.next.flickity-button::before{
    right: 15px;
}

.carrusel_expo .flickity-prev-next-button.previous.flickity-button::before{
    left: 15px;
}
.logoH{
    display: none;
}
.contenido_header_responsive{
    display: none;
}

/*scroll*/
.fijar_area_left{}
.home .contenido{
    display: flex;
    justify-content: flex-end;
}
.fijar_izquierdo .home article.area_izquierda{
    position: fixed;
    bottom: 0px;
    left: 55px;
    width: calc(75% - 42px);
}
.quitar_fijar{
    margin-bottom: 0px;
    position: absolute;
    bottom: 0px;
}
.fijar_izquierdo.desplazar_izquierdo .home article.area_izquierda{
    position: absolute;
    left: 0px;
    width: 75%;
}

/*exposicion single*/
.columna_lado_izquierdo, .columna_lado_derecho{
    width: 0;
    height: 0;
    position: absolute;
    width: 100px;
    height: 0px;
}
.mover_fijar{
    clear: both;
}
.obra .mover_fijar{
    bottom: -30px;
    position: relative;
}
.act_lado_derecho .expo_texto .columna_1_4{
    position: fixed;
    bottom: 0;
    right: 0px;
    width: -o-calc(20% - 12px);
    width: -ms-calc(20% - 12px);
    width: -moz-calc(20% - 12px);
    width: -webkit-calc(20% - 12px);
    width: calc(20% - 12px);
    margin-right: -o-calc(15% - 8px);
    margin-right: -ms-calc(15% - 8px);
    margin-right: -moz-calc(15% - 8px);
    margin-right: -webkit-calc(15% - 8px);
    margin-right: calc(15% - 8px);
}

.desplazar_fixed.act_lado_derecho .expo_texto .columna_1_4{
    position: relative;
    width: 20%;
    margin-right: 0%;
}

.act_lado_izquierdo .expo_texto .columna_1_2{
    position: fixed;
    bottom: 0px;
}

.desplazar_fixed.act_lado_izquierdo .expo_texto .columna_1_2{
    position: relative;
    bottom: 0px;
}
.desplazar_fixed .expo_texto .contenido{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.desplazar_fixed .mover_fijar{}
.act_fijar_header.act_lado_izquierdo.act_lado_derecho .expo_texto .contenido{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.act_fijar_header.act_lado_izquierdo.act_lado_derecho .expo_texto .columna_1_4{
    position: relative;
    width: 20%;
    margin-right: 0%;
}
.act_fijar_header.act_lado_izquierdo.act_lado_derecho .expo_texto .columna_1_2{
    position: relative;
    bottom: 0px;
}

/*colección*/

.act_lado_izquierdo .obra .imagen{
    position: fixed;
    bottom: 30px;
    left: 55px;
    top: initial;
    width: -o-calc(100%/8 * 5 - 65px);
    width: -ms-calc(100%/8 * 5 - 65px);
    width: -moz-calc(100%/8 * 5 - 65px);
    width: -webkit-calc(100%/8 * 5 - 65px);
    width: calc(100%/8 * 5 - 65px);
}
.desplazar_fixed.act_lado_izquierdo .obra .imagen{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    margin: 0px 15px;
    position: absolute;
    bottom: 30px;
    left: 0px;
}

.expo_texto .columna_lado_izquierdo{
    margin-top: 285px;
}

.expo_texto .columna_lado_derecho{
    margin-top: 0px;
}


.act_fijar_header.act_lado_izquierdo.act_lado_derecho .obra{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.act_fijar_header.act_lado_izquierdo.act_lado_derecho .obra .info{
    position: relative;
    bottom: initial;
    left: 0;
    top: initial;
    width: -o-calc(100%/8 * 3 - 30px);
    width: -ms-calc(100%/8 * 3 - 30px);
    width: -moz-calc(100%/8 * 3 - 30px);
    width: -webkit-calc(100%/8 * 3 - 30px);
    width: calc(100%/8 * 3 - 30px);
}
.act_fijar_header.act_lado_izquierdo.act_lado_derecho .obra .imagen{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    margin: 0px 15px;
    position: relative;
    left: 0px;
    bottom: initial;
}

.act_lado_izquierdo.act_lado_derecho .obra{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
}
.act_lado_izquierdo.act_lado_derecho .obra .info{
    position: relative;
    bottom: initial;
    left: 0;
    top: initial;
    width: -o-calc(100%/8 * 3 - 30px);
    width: -ms-calc(100%/8 * 3 - 30px);
    width: -moz-calc(100%/8 * 3 - 30px);
    width: -webkit-calc(100%/8 * 3 - 30px);
    width: calc(100%/8 * 3 - 30px);
}
.act_lado_izquierdo.act_lado_derecho .obra .imagen{
    width: -o-calc(100%/8 * 5 - 30px);
    width: -ms-calc(100%/8 * 5 - 30px);
    width: -moz-calc(100%/8 * 5 - 30px);
    width: -webkit-calc(100%/8 * 5 - 30px);
    width: calc(100%/8 * 5 - 30px);
    margin: 0px 15px;
    position: relative;
    left: 0px;
    bottom: initial;
}



.slick-list{}




.slick-prev{left: 0;}



.programa_single .carrusel_expo .post:focus{
    outline: 0;
}
.slick-slide:focus{
    outline: 0;
}

.programa_texto .columna_1_2 .programa.act_calendario{}


.obra .columna_lado_izquierdo, .obra .columna_lado_derecho{
        margin-top: 120px;
}
.obra .columna_lado_derecho{
    margin-top: 120px;
}

.texto_visible .act_hidden_texto .hidden_h{
    max-height: initial;
    height: auto;
}
.texto_visible .act_hidden_texto .btn.btn_hidden_h{
    margin-top: 10px;
    padding-top: 0px;
}
.texto_visible .act_hidden_texto .btn.btn_hidden_h .btn-info::before{
    content: '- '
}

.categoria_etiqueta{
    text-transform: uppercase;
    color: #969696;
    font-size: 12px;
    margin-bottom: 5px;
}

.slick-arrow{
    display: none;
    right: 0;
    top: 0;
    height: 100%;
    transform: initial;
    width: 40px;
    opacity: 0;
    width: 0;
}
.slick-next{
    right: 0;
}
.carrusel_flechas .slick-arrow{
    display: block;
    opacity: 1;
    width: 40px;
    z-index: 2;
}

.slick-arrow::before{
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 50%;
    background-color: #fff;
    top: 70px;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    width: 30px;
    height: 30px;
    background-size: 12px;
}
.slick-next::before{
    right: 5px;
    background-image: url(../img/f_d.png);
}
.slick-prev::before{
    left: 5px;
    background-image: url(../img/f_i.png);
}

.slick-arrow.slick-disabled{
    display: none;
    opacity: 0;
}


.slick-arrow.slick-next {
    background: rgba(255,255,255,0);
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(100%, rgba(255,255,255,1)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}

.slick-arrow.slick-prev {
    left: 0px;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}

.artista_texto .columna_lado_izquierdo, .artista_texto  .columna_lado_derecho{
    display: none;
}

.general.general_responsive{
    display: none;
}


.general.general_responsive{
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    padding: 28px 0px 22px;
    width: 100%;
}
.general.general_responsive .fila{
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.2em;
}
.general.general_responsive .fila .columna{
    width: -o-calc(50% - 7px);
    width: -ms-calc(50% - 7px);
    width: -moz-calc(50% - 7px);
    width: -webkit-calc(50% - 7px);
    width: calc(50% - 7px);
    margin: 0px;
}
.general.general_responsive .fila .columna:first-child{
    text-align: right;
}
.general.general_responsive .fila .columna p:first-child{
    margin-top:0px;
}
.general.general_responsive .fila .columna p:last-child{
    margin-bottom:0px;
}

.general.general_responsive .fila .columna p a::after{
    content:" →";
    font-size: 16px;
    font-weight: bold;
}

.overflow_responsive{}


.flickity-button:focus{
        outline: 0;
    box-shadow: initial;
}


.contenido_artista .flickity-button{}
.contenido_artista .flickity-prev-next-button.previous{
    width: 30px;
    height: 30px;
    background-image: url(../img/f_i.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: absolute;
    left: 0;
    bottom: -50px;
    top: initial;
}
.contenido_artista .flickity-prev-next-button.next{
    width: 30px;
    height: 30px;
    background-image: url(../img/f_d.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: absolute;
    left: 30px;
    bottom: -50px;
    top: initial;
}

.contenido_artista  .flickity-prev-next-button.next.flickity-button::before{
    display: none;
}
.contenido_artista  .flickity-prev-next-button.previous.flickity-button::before{
    display: none;
}

.contenido_artista .flickity-slider{
    left: 0;
    margin-left: 0;
}

.quitarFlechas .flickity-button{
    display: none;
}

.contenido_artista .quitarFlechas .flickity-button{
    display: block;
}

.carrusel_programa .carrusel_int.quitarFlechas .flickity-slider{
    margin-left: 0px;
}
.carrusel_programa .carrusel_int .flickity-slider{
    margin-left: 15px;
}

.carrusel_int{
    white-space: nowrap;
    overflow: hidden;
}
.carrusel_int .post{
    display: inline-block;
    white-space: normal;
}


.flickity-enabled.carrusel_int{
    white-space: normal;
    overflow: initial;
}
.flickity-enabled.carrusel_int .post{
    display: block;
    white-space: normal;
}

.area_izquierda .carrusel_int .flickity-slider{
    margin-left: 15px;
}

/*over buscar*/
.over_buscar{
    position: fixed;
    top: 0;
    left: 55px;
    width: -o-calc(100% - 55px);
    width: -ms-calc(100% - 55px);
    width: -moz-calc(100% - 55px);
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
    height: 100%;
    z-index: 100;
    background-color: #fff;
    display: none;
}
.over_buscar_int{
    width: -o-calc(100% - 110px);
    width: -ms-calc(100% - 110px);
    width: -moz-calc(100% - 110px);
    width: -webkit-calc(100% - 110px);
    width: calc(100% - 110px);
    height: -o-calc(100vh - 110px);
    height: -ms-calc(100vh - 110px);
    height: -moz-calc(100vh - 110px);
    height: -webkit-calc(100vh - 110px);
    height: calc(100vh - 110px);
    position: absolute;
    top: 55px;
    left: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -100vh;
    transition: 1600ms;
}

.act_buscar .over_buscar{
    display: block;
}
.act_buscar .over_buscar_int{
    top: 55px;
}

.act_buscar header{
    top: 0;
    left:0;
    position: fixed;
}
.act_fijar_header.act_scroll_header.act_buscar .home header{
    top: 0;
    left:0;
    position: fixed;
}
.act_buscar html,.act_buscar body{
    overflow: hidden;
}

.over_buscar_int form{}
.over_buscar_int input{
    font-size: 72px;
    text-transform: uppercase;
    font-family: 'Brown-Bold', 'Lato', serif;
    font-weight: bold;
    border: none;
    background-color: #fff;
    width: auto;
    color: #000;
    padding: 0;
    margin: 0;
    padding: 18px 0px 9px;
    line-height: 100%;
    border-bottom: 2px solid #000;
    vertical-align: bottom;
}
.over_buscar_int .btn{
    width: 100px;
    height: 100px;
    border-bottom: none;
    font-size: 0px;
    background-image: url(../img/lupa_dos.png);
    background-size: 80px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}


.contenido_top_buscador.contenido{
    padding-top: 30px;
}
.grid_buscar{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.grid_buscar .post{
        width: 290px;
            margin: 0px 15px 30px;

}
.grid_buscar .post .categoria {
    font-size: 12px;
    text-transform: uppercase;
    color: #757575;
    display: block;
    margin-bottom: 3px;
}
.grid_buscar .post .imagen {
    width: 100%;
    height: 0;
    padding-bottom: 47.6%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.grid_buscar .post .info h2 {
    font-size: 24px;
    margin: 20px 0px 10px;
}
.grid_buscar .post .info h3 {
    font-size: 12px;
    color: #757575;
    text-transform: uppercase;
}
.grid_buscar .post .info .fecha {
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 12px;
}
.grid_buscar .post .info .fecha {
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 12px;
}
.grid_buscar .post .info .tipo {
    margin: 10px 0 5px;
    text-transform: uppercase;
    font-size: 12px;
}
.grid_buscar .post .info .tipo::before {
    content: "→ ";
    font-size: 12px;
    font-weight: bold;
}
input:active, input:focus, button:active, button:focus{
    outline: 0;
}


::-webkit-input-placeholder { 
  color: #000;
}
::-moz-placeholder { 
  color: #000;
}
:-ms-input-placeholder {
  color: #000;
}
:-moz-placeholder {
  color: #000;
}