/**
 * Content Types (nodes)
 *  - in Drupal a content type is a bunch of fields we use to enter and display
 *    content, such as pages, blog posts, forum posts and so on. Each of those
 *    is usually a content type you create in the Drupal admin.
 *  - an instance of a content type (e.g. a single blog post) is called a node,
 *    the root template is node.html.twig and the base selector is .node {}
 ============================================================================ */
.node {
  margin-bottom: 1.25em;
  /*padding: 1.25em;*/
  border-radius: 2px;
}

.node p:last-child {
  margin-bottom: 0;
}

.node__status {
  float: right;
}

.node--view-mode-full__title {
  margin: 0 0 1rem;
}

.node--view-mode-teaser ul:last-of-type {
  margin-bottom: 0;
}

.node__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
}

.node__meta .field-type-image {
  margin: 0 0.75rem 0 0;
}

.node__meta .field-type-image__figure {
  margin: 0;
  padding: 0;
}

.node__meta .field-type-image img {
  width: auto;
  height: 3rem;
}

.node__meta article:empty {
  display: none;
}

.node .node__author:after {
  content: "-";
  display: inline-block;
}

.node__meta--has-author-picture .node__submitted {
  margin-top: 0.25rem;
}

.node__meta--has-author-picture .node__author:after {
  display: none;
}

.node__meta--has-author-picture .node__author,
.node__meta--has-author-picture .node__pubdate {
  margin: 0;
  display: block;
}

@media screen and (max-width: 60em) {
  .node .node__author:after {
    display: none;
  }
  .node .node__author,
  .node .node__pubdate {
    margin: 0;
    display: block;
  }
}

.node__links {
  clear: both;
}

.node--sticky {
  padding: 0;
}


/**
  * COMPONENTES
  **/

/* Miniatura persona */
.miniatura-persona {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 40px 20px;
  margin: 40px 0 50px;
}
.miniatura-persona .atl__lc {
  width: auto;
}
.miniatura-persona .lc-1 {
  width: 70px;
  max-width: 70px;
    flex-wrap: nowrap;
  }
.miniatura-persona .lc-2 {
  flex: 1;
}
.miniatura-persona .fotografia {}
.miniatura-persona .fotografia img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.miniatura-persona .nombre {}
.miniatura-persona .datos {
  color: #888;
  font-size: 0.85em;
}
.miniatura-persona .cargo {}
@media screen and (min-width: 60.0625em) {
  .miniatura-persona {}
  .miniatura-persona .lc-1 {
    width: 95px;
    max-width: 100px;
  }
  .miniatura-persona .fotografia {
    margin-right: 30px;
    width: 75px;
  }
  .miniatura-persona .nombre {
    font-size: 1.2em;
    margin: 12px 0 2px;
  }
  .miniatura-persona .datos {
    font-size: 1em;
  }
}


/* ESTILO DE NODOS Y TAXONOMIA */

/* Estilo para TEMAS */
.taxonomy-term--type-temas {}
.taxonomy-term--type-temas .area-medios {
  position: relative;
}
.taxonomy-term--type-temas .area-destacada {
  /*bottom: -40px;
  position: absolute;*/
  width: 100%;
}
.taxonomy-term--type-temas .area-destacada .interior {}
.taxonomy-term--type-temas .area-contenido {
  margin: 30px auto 60px;
  max-width: 70em;
}
.taxonomy-term--type-temas .area-informacion {}
.taxonomy-term--type-temas .area-informacion h2,
.taxonomy-term--type-temas .area-informacion h3,
.taxonomy-term--type-temas .area-informacion h4,
.taxonomy-term--type-temas .area-informacion h5 {
  margin: 3rem 0 1rem;
}
.taxonomy-term--type-temas .area-lateral {}
.taxonomy-term--type-temas .area-extras {
  margin: 30px auto 90px;
  max-width: 70em;
}
@media screen and (min-width: 60.0625em) {
  .taxonomy-term--type-temas .area-medios {
    position: relative;
  }
  .taxonomy-term--type-temas .area-destacada {
    bottom: -40px;
    position: absolute;
    width: 100%;
  }
  .taxonomy-term--type-temas .area-destacada .interior {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    max-width: 440px;
    margin: auto;
    padding: 20px;
    width: 100%;
  }
  .taxonomy-term--type-temas .area-contenido {
    margin: 90px auto;
    display: flex;
  }
  .taxonomy-term--type-temas .area-lateral {
    margin-left: 50px;
    padding-left: 50px;
    min-width: 320px;
    border-left: 1px solid #eee;
  }
}

.taxonomy-term--type-temas .area-medios .imagen {
  margin: -20px -20px 20px;
}
.taxonomy-term--type-temas .area-medios .titulo {}
.taxonomy-term--type-temas .area-medios .titulo h1 {
  font-weight: bold;
  font-size: 1.5em;
}
.taxonomy-term--type-temas .bloque-temas {
  margin-bottom: -20px;
}
/* Keyframes para animación de imagen */

@keyframes mostrarImagen-pequeño {
  0% {margin-top: 0%;}
  100% {margin-top: -5%;}
}
@keyframes mostrarImagen-mediano {
  0% {margin-top: 0%;}
  100% {margin-top: -10%;}
}
@keyframes mostrarImagen-grande {
  0% {margin-top: 0%;}
  100% {margin-top: -15%;}
}
@keyframes mostrarImagen-extragrande {
  0% {margin-top: 0%;}
  100% {margin-top: -20%;}
}

@media screen and (min-width: 720px) {
  .taxonomy-term--type-temas .area-medios .imagen {
    max-height: 420px;
    overflow: hidden;
  }
  .taxonomy-term--type-temas .area-medios .imagen img {
    animation: 8s ease 0s 1 mostrarImagen-pequeño;
    margin-top: -5%;
  }
}
@media screen and (min-width: 60.0625em) {
  .taxonomy-term--type-temas .area-medios .imagen {
    max-height: 534px;
    margin: -20px -20px 0;
    overflow: hidden;
  }
  .taxonomy-term--type-temas .area-medios .imagen img {
    animation: 8s ease 0s 1 mostrarImagen-mediano;
    margin-top: -10%;
  }
  .taxonomy-term--type-temas .area-medios .titulo {
    width: 100%;
    bottom: 70px;
    color: #fff;
    position: absolute;
    text-align: center;
    z-index: 5;
  }
  .taxonomy-term--type-temas .area-medios .titulo h1 {
    font-weight: bold;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: auto;
    font-size: 2.625em;
  }
}
@media screen and (min-width: 1300px) {
  .taxonomy-term--type-temas .area-medios .imagen {
    max-height: 600px;
  }
  .taxonomy-term--type-temas .area-medios .imagen img {
    animation: 8s ease 0s 1 mostrarImagen-grande;
    margin-top: -15%;
  }
}
@media screen and (min-width: 1600px) {
  .taxonomy-term--type-temas .area-medios .imagen {
    max-height: 650px;
  }
  .taxonomy-term--type-temas .area-medios .imagen img {
    animation: 8s ease 0s 1 mostrarImagen-extragrande;
    margin-top: -20%;
  }
}


/* Tipo de contenido: PROYECTO */
.node--type-proyecto {}
.node--type-proyecto .layout__region--content {
  max-width: 73em;
  margin: 0 auto 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.node--type-proyecto .area-submenu {
  -webkit-order: 3;
  -moz-order: 3;
  -ms-order: 3;
  -o-order: 3;
  order: 3;
}
.node--type-proyecto .area-info {
  border-bottom: 1px solid #eee;
  margin: 10px 0 40px;
  padding: 30px 0;
  -webkit-order: 1;
  -moz-order: 1;
  -ms-order: 1;
  -o-order: 1;
  order: 1;
}
.node--type-proyecto .area-contenido {
  -webkit-order: 2;
  -moz-order: 2;
  -ms-order: 2;
  -o-order: 2;
  order: 2;
}

.node--type-proyecto .area-informacion {}
.node--type-proyecto .area-informacion h2,
.node--type-proyecto .area-informacion h3,
.node--type-proyecto .area-informacion h4,
.node--type-proyecto .area-informacion h5 {
  margin: 3rem 0 1rem;
}
.node--type-proyecto .area-extras {
  margin: 60px auto;
  -webkit-order: 4;
  -moz-order: 4;
  -ms-order: 4;
  -o-order: 4;
  order: 4;
}
@media screen and (min-width: 60.0625em) {
  .node--type-proyecto .layout__region--content {
    margin: 80px auto 30px;
  }
  .node--type-proyecto .area-submenu {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-order: 1;
    -o-order: 1;
    order: 1;
  }
  .node--type-proyecto .area-info {
    -webkit-order: 2;
    -moz-order: 2;
    -ms-order: 2;
    -o-order: 2;
    order: 2;
  }
  .node--type-proyecto .area-contenido {
    -webkit-order: 3;
    -moz-order: 3;
    -ms-order: 3;
    -o-order: 3;
    order: 3;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .node--type-proyecto .area-lateral {
    min-width: 320px;
    margin-left: 50px;
    padding-left: 50px;
    border-left: 1px solid #eee;
  }
}

.node--type-proyecto .imagen {
}
.caption {
  font-size: 0.8em;
}
.node--type-proyecto .descripcion {
  margin-top: 30px;
}

.node--type-proyecto .titulo h1 {
  color: #000;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 10px;
}
.node--type-proyecto .lugar,
.node--type-proyecto .fecha {
  font-size: 0.9em;
  text-transform: uppercase;
  display: inline;
}
.node--type-proyecto .fecha {
  border-left: 1px solid #eee;
  padding-left: 10px;
  margin-left: 8px;
}
@media screen and (min-width: 60.0625em) {
  .node--type-proyecto .imagen {}
  .node--type-proyecto .imagen img {}
  .node--type-proyecto .titulo h1 {
    font-size: 1.65em;
  }
  .node--type-proyecto .lugar {}
}
@media screen and (min-width: 72em) {}

.area-herramientas {
  margin: 50px 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.area-herramientas a {
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 35px;
  border: 3px solid #000;
  color: #000;
  display: block;
  margin: 15px 20px 15px 0;
  max-width: 200px;
  opacity: 0.2;
  font-weight: bold;
  padding: 20px 20px 20px 70px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.area-herramientas a:hover,
.area-herramientas a:active,
.area-herramientas a:focus {
  color: #000;
  opacity: 1;
  text-decoration: none;
}

a.print__link--pdf {
  background-image: url('/themes/pronatura/images/iconos/icono-descargar.svg');
}
body.ingles a.print__link--pdf {
  color: transparent;
}

body.ingles a.print__link--pdf::before {
  content: 'Download';
  color: #000;
}
body.ingles a.print__link--pdf:hover,
body.ingles a.print__link--pdf:active,
body.ingles a.print__link--pdf:focus {
  color: transparent;
}

.enlace-imprimir .print a.print__link {
  background-image: url('/themes/pronatura/images/iconos/icono-imprimir.svg');
}
.enlace-imprimir .pdf {
  display: none;
}


/* Tipo de contenido: NOTICIAS */
.node--type-noticia {
  max-width: 73em;
  margin: 30px auto 60px;
}
.node--type-noticia .titulo {
  font-size: 1.5rem;
  margin: 0 0 0.2em;
}
.node--type-noticia .fecha {
  color: #333;
  font-size: 0.8em;
  text-transform: uppercase;
}
.node--type-noticia .imagen,
.node--type-noticia .video {
  border-top: 1px solid #eee;
  margin: 20px auto 30px;
  padding-top: 30px;
}
.node--type-noticia .imagen img {
  width: 100%;
  height: auto;
}
.node--type-noticia .descripcion-img {
  font-size: 0.8em;
  margin-top: -20px;
  display: block;
  text-align: center;
}
.node--type-noticia .texto-principal {
  margin: 60px auto;
}
.node--type-noticia .texto-principal p,
.node--type-noticia .texto-principal h1,
.node--type-noticia .texto-principal h2,
.node--type-noticia .texto-principal h3,
.node--type-noticia .texto-principal h4,
.node--type-noticia .texto-principal h5,
.node--type-noticia .texto-principal ul,
.node--type-noticia .texto-principal ol,
.node--type-noticia .texto-principal table,
.node--type-noticia .texto-principal blockquote {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.node--type-noticia .texto-principal ul.slides,
.node--type-noticia .texto-principal ol.flex-control-nav {
  max-width: initial;
}
.node--type-noticia .texto-principal .video-embed-field-responsive-video {
  margin: 30px auto 30px;
}
.node--type-noticia .texto-principal figure {
  margin: 30px auto 30px;
  width: 100%;
  height: auto;
}
.node--type-noticia .texto-principal figure img {
  width: 100%;
  height: auto;
}
.node--type-noticia .texto-principal figcaption {
  text-align: center;
}
.node--type-noticia .texto-principal iframe {
  width: 100%;
}

.node--type-noticia .area-etiquetas {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.node--type-noticia .flexslider {
  margin-bottom: 80px;
}
.flex-caption {
  background: #fafafa;
  color: #000;
  padding: 10px 20px;
  font-size: 0.8em;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 60.0625em) {
  .node--type-noticia {
    margin: 90px auto 60px;
  }
}

/* Tipo de contenido: PÄGINA */
.node--type-pagina {}
.node--type-pagina .area-medios {
  margin: -20px -20px 20px;
  position: relative;
  min-height: 100px;
}
.node--type-pagina .titulo {
  font-weight: bold;
  font-size: 1.5em;
  margin: 20px
}
.node--type-pagina .area-contenido {
  margin: 20px auto;
  max-width: 55em;
}
.area-extras .cuadros-horizontales {
  margin-bottom: 80px;
}
@media screen and (min-width: 600px) {
  .node--type-pagina .encabezado {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .node--type-pagina .encabezado .interior {
    max-width: 72em;
    margin: 0 auto 30px;
  }
  .node--type-pagina .imagen {
    max-height: 480px;
    overflow: hidden;
  }
  .node--type-pagina .titulo {
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-size: 2em;
  }
  .node--type-pagina .area-contenido {
    margin: 80px auto;
    max-width: 55em;
  }
}
@media screen and (min-width: 1000px) {
  .node--type-pagina .titulo {
    font-size: 2.5em;
  }
}
@media screen and (min-width: 1300px) {
  .node--type-pagina .titulo {
    font-size: 3em;
  }
}


/* Tipo de contenido: Publicaciones */
.node--type-publicacion {
  margin: 30px auto 60px;
}
.node--type-publicacion .area-encabezado {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.node--type-publicacion h1.titulo {
  font-size: 1.5rem;
  margin: 0 0 0.2em;
}
.node--type-publicacion .fecha {
  color: #333;
  font-size: 0.8em;
  text-transform: uppercase;
}
.node--type-publicacion .contenedor-pdf {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 76.25%;
}
.node--type-publicacion iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.node--type-publicacion .texto-principal {
  max-width: 55em;
  margin: 60px auto;
}
.node--type-publicacion .area-etiquetas {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 60.0625em) {
  .node--type-publicacion {
    margin: 90px auto 60px;
  }
}


.bloque-titulares {
  margin: -20px -20px 0;
}
.flexslider {
  border: none;
  margin: 0 0 30px;
}
.flex-direction-nav a {
  padding: 10px;
}
/* Tipo de contenido: DIAPOSITIVA */
.diapositiva {
  position: relative;
}
.diapositiva .fondo {}
.diapositiva .fondo img {}
.diapositiva .contenido {
  padding: 0 40px 20px;
  width: 100%;
  z-index: 30;
}
.diapositiva .contenido .interior {
  margin: auto;
  max-width: 70em;
  padding: 1em;
}
@media screen and (min-width: 600px) {
  .diapositiva {
    color: #fff;
  }
  .diapositiva .contenido {
    bottom: 0;
    position: absolute;
    padding: 0 40px 40px;
  }
}
@media screen and (min-width: 70em) {
  .diapositiva .contenido {
    bottom: 40px;
    padding: 0 0 40px;
  }
}
.diapositiva .antetitulo {
  font-size: 1em;
}
.diapositiva .titulo {
  font-size: 1.75em;
  font-weight: bold;
}
.diapositiva .resumen {
  font-size: 0.8em;
  display: block;
  margin-bottom: 30px;
}
.diapositiva .boton {}
.diapositiva .boton a {
  background: #007bc0;
  color: #fff;
  font-size: 0.8em;
  padding: 10px 55px;
  transition: all 0.25s ease;
}
.diapositiva .boton a:hover,
.diapositiva .boton a:active,
.diapositiva .boton a:focus {
  color: #fff;
  background: #11303e;
  text-decoration: none;
}
@media screen and (min-width: 600px) {
  .diapositiva .antetitulo {
    font-size: 1.1em;
    margin: 0;
  }
  .diapositiva .titulo {
    font-size: 2em;
    margin: 0;
  }
  .diapositiva .resumen {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .diapositiva .boton a {
    font-size: 1em;
  }
}
@media screen and (min-width: 1000px) {
  .diapositiva .antetitulo {
    font-size: 1.5em;
    margin: 0 0 0.8em;
  }
  .diapositiva .titulo {
    font-size: 3.5em;
    margin: 0 0 0.3em;
  }
  .diapositiva .resumen {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .diapositiva .boton a {
    font-size: 1em;
  }
}

/* Miniatura dos columnas */
.miniatura-dos-columnas {
  margin: 0 0 50px;
}
.miniatura-dos-columnas .titulo {
  line-height: 1.35;
}
.miniatura-dos-columnas .titulo a {
  color: #000;
  transition: all 0.15s ease;
}
.miniatura-dos-columnas .titulo a:hover,
.miniatura-dos-columnas .titulo a:active,
.miniatura-dos-columnas .titulo a:focus {
  color: #008647;
  text-decoration: none;
}
.miniatura-dos-columnas .descripcion {}
.miniatura-dos-columnas .descripcion p {
  margin: 0;
}
.miniatura-dos-columnas .fecha {
  font-size: 0.85em;
  color: #888;
}
.miniatura-dos-columnas .imagen {
  margin: 0 0 20px;
}
.miniatura-dos-columnas .video {
  margin: 0 0 20px;
}
@media screen and (min-width: 600px) {
  .miniatura-dos-columnas {
    display: flex;
  }
  .miniatura-dos-columnas .izq {
    flex: 1 1 20%;
    padding: 0 15px 0 0;
  }
  .miniatura-dos-columnas .der {
    flex: 1 1 50%;
    padding: 0 0 0 50px;
  }
  .miniatura-dos-columnas .descripcion p {
    margin: initial;
  }
}


/*** ESTILO DE ESPECIALES Y PARAGRAPHS ***/
/*   Estilo deL Tipo de contenido Especiales   */
.page-node-type--especial .pr-main__rw {
  max-width: initial;
  padding: 0;
}
.page-node-type--especial .pr-main__content {
  padding: 0;
}
.page-node-type--especial .block-main-content {
  margin: 0;
}

/***  Bloques de párrafos (PARAGRAPHS) ***/
.historia .paragraph {
  margin-bottom: 3em;
  font-family: Georgia, Times;
}

/* Título de segemento */
.paragraph--type-titulo {
  margin: 3em auto 1em !important;
  max-width: 850px;
}
.paragraph--type-titulo .titulo {
  font-size: 1.75em;
  font-weight: bold;
  border-bottom: 2px solid #00b5dd;
  padding-bottom: 20px;
}
@media (min-width: 750px) {
  .paragraph--type-titulo .titulo {
    font-size: 2.25em;
  }
}

/* Título centrado */
.paragraph--type-titulo-centrado {
  margin: 3em auto 1em !important;
  max-width: 850px;
  text-align: center;
}
.paragraph--type-titulo-centrado .titulo-centrado {
  font-size: 1.75em;
  font-weight: bold;
}
@media (min-width: 750px) {
  .paragraph--type-titulo-centrado .titulo-centrado {
    font-size: 2.25em;
  }
}

/* Texto - 1 columna */
.paragraph--type-texto-1-columna {
  max-width: 660px;
  margin: 3em auto;
  margin: 1em 10%;
  font-size: 1em;
  line-height: 1.6;
  padding: 20px;
}
@media (min-width: 750px) {
  .paragraph--type-texto-1-columna {
    margin: 1em auto;
    font-size: 1.1em;
    padding: 40px 20px;
  }
}

/* Texto - 2 columnas */
.paragraph--type-texto-2-columnas {
  text-align: justify;
  margin: 3em 10%;
  font-size: 1em;
  line-height: 1.6;
}
.paragraph--type-texto-2-columnas p {
  margin-top: 0;
}
@media (min-width: 750px) {
  .paragraph--type-texto-2-columnas {
    margin: 2em auto 4em;
    /*font-size: 1.1em;*/
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .paragraph--type-texto-2-columnas {
    max-width: 1400px;
    column-count: 2;
    column-gap: 2em;
    padding: 0 5%;
    font-size: 1.1em;
  }
}
/* Texto - 3 columnas */
.paragraph--type-texto-3-columnas {
  text-align: justify;
  margin: 1em 10%;
  font-size: 1em;
  line-height: 1.6;
}
.paragraph--type-texto-3-columnas p {
  margin-top: 0;
}
@media (min-width: 750px) {
  .paragraph--type-texto-3-columnas {
    margin: 1em auto;
    /*font-size: 1.1em;*/
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .paragraph--type-texto-3-columnas {
    margin: 1em 10%;
    max-width: 100%;
    column-count: 3;
    column-gap: 2em;
  }
}

/* Texto destacado */
.texto-destacado {
  font-size: 1.25em;
  line-height: 1.35;
  color: #00b5dd;
  padding: 1em 10%;
  margin: 1em 20px;
  max-width: 1200px;
  border-top: 3px solid #00b5dd;
  border-bottom: 3px solid #00b5dd;
}
@media (min-width: 750px) {
  .texto-destacado {
    margin: 1em 30px;
  }
}
@media (min-width: 1250px) {
  .texto-destacado {
    margin: 1em auto;
  }
}
.texto-destacado-2 {
  background: #00b5dd;
  padding: 0.5em 0;
  margin: 1em 20px;
  max-width: 1200px;
  color: #fff;
  font-size: 1.25em;
  line-height: 1.35;
}
.texto-destacado-2 .texto {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding: 0.5em 2em;
}
@media (min-width: 750px) {
  .texto-destacado-2 {
    margin: 1em 30px;
  }
}
@media (min-width: 1250px) {
  .texto-destacado-2 {
    margin: 1em auto;
  }
  .texto-destacado-2 .texto {
    padding: 1em 0;
  }
  .texto-destacado-2 .texto p {
    max-width: 820px;
    margin: auto;
  }
}

/* Imagen / texto */
.paragraph--type-imagen-texto {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.paragraph--type-imagen-texto .izq {
  background: #fafafa;
  flex: 1 1 50%;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paragraph--type-imagen-texto .der {
  font-size: 1.1em;
  padding: 3em;
  line-height: 1.65;
  background: #fafafa;
  /*font-family: 'Myriad Pro';*/
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paragraph--type-imagen-texto .titulo {
  font-weight: bold;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}
.paragraph--type-imagen-texto .texto p {
  margin-top: 0;
  max-width: 500px;
}
@media (min-width: 944px) {
  .paragraph--type-imagen-texto {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
  .paragraph--type-imagen-texto .der {}
}
@media (min-width: 1200px) {}

.paragraph--type-imagen-texto {
  margin: 1em 0;
  display: flex;
}

/* Texto / Imagen */
.paragraph--type-texto-imagen {
  margin: 1em 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.paragraph--type-texto-imagen .izq {
  font-size: 1.1em;
  padding: 3em;
  line-height: 1.65;
  background: #fafafa;
  /*font-family: 'Myriad Pro';*/
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paragraph--type-texto-imagen .der {
  background: #fafafa;
  flex: 1 1 50%;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paragraph--type-texto-imagen .titulo {
  font-weight: bold;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}
.paragraph--type-texto-imagen .imagen img {}
.paragraph--type-texto-imagen .texto p {
  margin-top: 0;
  max-width: 500px;
}
@media (min-width: 944px) {
  .paragraph--type-texto-imagen {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
  .paragraph--type-texto-imagen .izq {
    /*font-size: 1.25em;*/
  }
}
@media (min-width: 1200px) {
  .paragraph--type-texto-imagen {}
}

/* Imagen con descripción */
.paragraph--type-imagen-con-descripcion- {
  max-width: 1600px;
  margin: 2em auto;
  background: #fafafa;
  border-radius: 10px;
}
.paragraph--type-imagen-con-descripcion- .imagen {
  line-height: 0;
}
.paragraph--type-imagen-con-descripcion- .imagen img {
  box-shadow: 0 5px 8px -2px rgba(0, 0, 0, 0.2);
}
.paragraph--type-imagen-con-descripcion- h3.titulo {
  border-left: none;
  font-size: 1.5em;
  text-align: center;
  max-width: 600px;
  margin: 2em auto 1em;
  border-bottom: 2px solid #eee;
  padding: 0 0 1em;
}
.paragraph--type-imagen-con-descripcion- .texto {
  font-size: 0.9em;
  padding: 0 0 3em;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
}
.paragraph--type-imagen-con-descripcion- .texto p {
  margin-top: 0;
}
/* Imagen con descripción Estilo 2 */
.paragraph--type-imagen-con-descripcion-estilo-2- {
  background: #11303e;
  padding: 1em;
}
.paragraph--type-imagen-con-descripcion-estilo-2- .imagen {
  background: #fff;
  line-height: 0;
  padding: 5px;
}
.paragraph--type-imagen-con-descripcion-estilo-2- .imagen img {
  width: 100%;
  height: auto;
}
.paragraph--type-imagen-con-descripcion-estilo-2- .info {
  max-width: 1600px;
  margin: auto;
  position: relative;
}
.paragraph--type-imagen-con-descripcion-estilo-2- .piedeimagen {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 1em 2em;
}
.paragraph--type-imagen-con-descripcion-estilo-2- .autor {
  color: #999;
  background: #fff;
  display: block;
  text-align: right;
  padding: 0 20px 3px;
  font-size: 0.8em;
}
@media (min-width: 720px) {
  .paragraph--type-imagen-con-descripcion-estilo-2- {
    padding: 4em 2em;
  }
  .paragraph--type-imagen-con-descripcion-estilo-2- .imagen {
    padding: 20px 20px 5px 20px;
    max-width: 1600px;
    margin: auto;
  }
  .paragraph--type-imagen-con-descripcion-estilo-2- .piedeimagen {
    position: absolute;
    bottom: 2em;
    margin-left: 1.3em;
    padding: 1.5em 2em;
  }
}

/* Imagen pantalla completa */
.paragraph--type-imagen-pantalla-completa {}
.paragraph--type-imagen-pantalla-completa .imagen img {
  width: 100%;
}
.paragraph--type-imagen-pantalla-completa .piedeimagen {
  text-align: center;
  margin: auto;
  background: #fafafa;
  color: #000;
  padding: 10px;
  font-size: 0.9em;
  max-width: 1200px;
}
/* Galería */
.paragraph--type-galeria {
  margin: 1em auto;
  max-width: 1600px;
}
.paragraph--type-galeria .texto {
  margin: 0 auto 2em;
  background: #fafafa;
  font-size: 0.9em;
  line-height: 1.75;
  padding: 20px 20px 40px;
}
.paragraph--type-galeria .texto p {
  max-width: 800px;
  margin: 1em auto;
}
/* Video de youtube */
.paragraph--type-video-de-youtube {
  margin: 1em auto;
  max-width: 1600px;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.paragraph--type-video-de-youtube .youtube-container--responsive {
  margin: 0;
}
.paragraph--type-video-de-youtube .video-yt {
  max-width: 1000px;
  margin: auto;
}
.paragraph--type-video-de-youtube h3.titulo {
  max-width: 870px;
  margin: 1em auto 0.25em;
}
.paragraph--type-video-de-youtube .texto {
  border-top: 2px solid #00b5dd;
  font-size: 0.9em;
  line-height: 1.75;
  margin: 20px 10% 2em;
  padding-top: 10px;
}
@media (min-width: 944px) {
  .paragraph--type-video-de-youtube .texto {
    margin: 20px auto 2em;
    max-width: 800px;
  }
}
/* Audio */
.paragraph--type-audio {
  margin: 1em auto;
  max-width: 1600px;
  background: #fafafa;
  padding: 0.5em 1em;
}
.paragraph--type-audio .reproductor-audio {
  max-width: 800px;
  margin: 1.5em auto;
}
.paragraph--type-audio .reproductor-audio label {
  display: none;
}
.paragraph--type-audio .mejs__container {
  width: 100% !important;
}
.paragraph--type-audio h3.titulo {
  max-width: 870px;
  margin: 1em auto 0.25em;
  text-align: center;
}
.paragraph--type-audio .texto {
  margin: 20px 10% 2em;
  border-top: 2px solid #00b5dd;
  font-size: 0.9em;
  line-height: 1.75;
  padding-top: 10px;
}
@media (min-width: 944px) {
  .paragraph--type-audio {
    padding: 2em 1em;
  }
  .paragraph--type-audio .texto {
    margin: 20px auto 2em;
    max-width: 800px;
  }
}


/* Perfile de persona */
.paragraph--type-informacion-de-persona {
  padding: 0 2em;
}
.paragraph--type-informacion-de-persona .enlaces {
  text-align: center;
  margin-top: 0.75em;
}
.paragraph--type-informacion-de-persona .enlaces .link a {
  display: inline-block;
  font-size: 0.8em;
  color: #fff;
  background: #00b5dd;
  border-radius: 5px;
  text-align: center;
  padding: 4px 10px;
  margin: 4px 0.5em;
}
.paragraph--type-informacion-de-persona .enlaces .link a:hover {
  text-decoration: none;
  background: #000;
}
.paragraph--type-informacion-de-persona .imagen {
  text-align: center;
}
.paragraph--type-informacion-de-persona .imagen img {
  border-radius: 50%;
  max-width: 250px;
}
.paragraph--type-informacion-de-persona h3.titulo {
  border: none;
    border-top: 3px solid #00b5dd;
    max-width: 300px;
    margin: 0.5em auto 0;
    padding: 0.25em;
    text-align: center;
}
.paragraph--type-informacion-de-persona .texto {
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

/* Portada estilo 1 */
.paragraph--type-portada-estilo-1 {
  position: relative;
}
.paragraph--type-portada-estilo-1 .imagen {
  line-height: 0;
}
.paragraph--type-portada-estilo-1 .imagen img {
  width: 100%;
}
.paragraph--type-portada-estilo-1 .info {
  background-color: #333;
  padding: 30px;
  width: 100%;
}
.paragraph--type-portada-estilo-1  .info .interior {}
.paragraph--type-portada-estilo-1 .titulo-portada {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0 0 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.paragraph--type-portada-estilo-1 .resumen-portada {
  color: #fff;
  font-family: Georgia, Times;
  line-height: 1.5;
}
@media (min-width: 620px) {
  .paragraph--type-portada-estilo-1 .info {
    position: absolute;
    bottom: 0px;
    padding: 0 20px 50px;
    background-color: transparent;
  }
  .paragraph--type-portada-estilo-1  .info .interior {
    max-width: 1200px;
    margin: auto;
  } 
  .paragraph--type-portada-estilo-1 .titulo-portada {
    font-size: 2em;
    margin: 0 0 20px;
  }
}
@media (min-width: 944px) {
  .paragraph--type-portada-estilo-1 .info {
    padding: 0 0 80px;
  }
  .paragraph--type-portada-estilo-1 .titulo-portada {
    font-size: 3em;
  }
  .paragraph--type-portada-estilo-1 .resumen-portada {
    font-size: 1.35em;
    line-height: 1.65;
  }
}
@media (min-width: 1200px) {
  .paragraph--type-portada-estilo-1 .info {
    padding: 0 0 150px;
  }
  .paragraph--type-portada-estilo-1 .titulo-portada {
    font-size: 3.25em;
  }
}
@media (min-width: 1600px) {
  .paragraph--type-portada-estilo-1 .titulo-portada {
    font-size: 4em;
  }
}

/* Portada estilo 2 */
.paragraph--type-portada-estilo-2 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.paragraph--type-portada-estilo-2 .izq {
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  -o-flex: 1 1 50%;
  flex: 1 1 50%;
}
.paragraph--type-portada-estilo-2 .der {
  -webkit-flex: 1 1 50%;
  -moz-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  -o-flex: 1 1 50%;
  flex: 1 1 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background: #111;
  color: #fff;
  padding: 40px;
}
.paragraph--type-portada-estilo-2 .info {
  max-width: 720px;
  padding: 20px;
}


.paragraph--type-portada-estilo-2 .imagen {
  line-height: 0;
  height: 100%;
}
.paragraph--type-portada-estilo-2 .imagen img {
  width: 100%;
}
.paragraph--type-portada-estilo-2 .titulo-portada {
  font-size: 2em;
  font-weight: bold;
  margin: 0 0 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.paragraph--type-portada-estilo-2 .resumen-portada {
  color: #fff;
  font-family: Georgia, Times;
  font-size: 1.1em;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .paragraph--type-portada-estilo-2 {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
  }
  .paragraph--type-portada-estilo-2 .titulo-portada {
    font-size: 3em;
  }
  .paragraph--type-portada-estilo-2 .resumen-portada {
    font-size: 1.25em;
  }
}


/* Portada estilo 3 */
.paragraph--type-portada-estilo-3 h1.titulo {
  text-align: center;
  background: #fff;
  position: relative;
  max-width: 1200px;
  font-size: 1.75em;
  margin: -5px auto 0;
  padding: 0.5em;
  
}
.paragraph--type-portada-estilo-3 .resumen {
  font-size: 1em;
  margin: 0px auto 20px;
  text-align: center;
  color: #999;
  font-style: italic;
  width: 80%;
  max-width: 1000px;
  line-height: 1.5;
}
.paragraph--type-portada-estilo-3 .resumen p {margin: 0;}
.paragraph--type-portada-estilo-3 h3.titulo {
  border-left: 20px solid #00b5dd;
  padding-left: 0.5em;
  margin: 1em 1em 0.25em;
  font-size: 1.75em;
}
.paragraph--type-portada-estilo-3 h3.titulo-centrado {
  border-bottom: 3px solid #00b5dd;
  padding: 0.5em;
  margin: 1em 1em 0.25em;
  font-size: 1.75em;
}

@media (min-width: 750px) {
  .paragraph--type-portada-estilo-3 h1.titulo {
    font-size: 2.5em;
    margin: -40px auto 0.75em;
    padding: 1em 2em 0.15em;
    box-shadow: 0 -6px 5px -3px rgba(0, 0, 0, 0.15);
    border-radius: 10px 10px 0 0;
  }
  .paragraph--type-portada-estilo-3 .resumen {
    font-size: 1.25em;
  }
}

/* Diapositivas */
.paragraph--type-diapositivas {
  max-width: 1600px;
  margin: 5em auto;
}

/* Contenido con fondo */
.paragraph--type-contenido-con-fondo {
  position: relative;
}
.paragraph--type-contenido-con-fondo .fondo {}
.paragraph--type-contenido-con-fondo .fondo img {}
.paragraph--type-contenido-con-fondo .info {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
.paragraph--type-contenido-con-fondo .info .interior {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 30px;
  margin: 20px;
  max-width: 1000px;
}
.paragraph--type-contenido-con-fondo .titulo {
  font-weight: bold;
  font-size: 1.75em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.paragraph--type-contenido-con-fondo .descripcion {
  color: #444;
}
.paragraph--type-contenido-con-fondo .imagen {}
.paragraph--type-contenido-con-fondo .imagen img {}
@media (min-width: 720px) {
  .paragraph--type-contenido-con-fondo .info .interior {
    padding: 40px 60px;
  }
  .paragraph--type-contenido-con-fondo .titulo {
    font-size: 2.25em;
    margin-bottom: 20px;
  }
}
@media (min-width: 1000px) {
  .paragraph--type-contenido-con-fondo .info .interior {
    padding: 60px 80px;
  }
  .paragraph--type-contenido-con-fondo .titulo {
    font-size: 3em;
    margin-bottom: 30px;
  }
}