/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--fixpro-black);
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Con foto de cabecera subida desde el panel. La clase la pone
   admin/lib.php:pcx_aplicar_cabeceras() y solo cuando esa pagina tiene
   foto propia: sin ella, la cabecera se queda en el negro solido.

   El 0.05 de arriba es el valor de la plantilla, pensado para una textura
   que no se mirara; con una foto de verdad detras equivale a no tenerla. */
.page-header--foto .page-header__bg {
    opacity: 1;
}

/* El velo. El hero de la Home no lo necesita porque coloca la foto en una
   caja del 52% pegada a la derecha y deja el titular sobre el negro plano;
   aqui la cabecera es a sangre completa y el titular va ENCIMA de la foto,
   asi que hay que oscurecerla.

   65%: calculado para el peor caso, una foto blanca del todo. Deja el fondo
   en rgb(89,89,89) y el blanco encima por encima de 4,5:1, el minimo para
   texto pequeno -- la miga de pan, que es la que va justa. */
.page-header--foto .page-header__bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--fixpro-black-rgb), 0.65);
}

.page-header__inner {
    position: relative;
    display: block;
    padding: 149px 0 167px;
    z-index: 15;
}

/* h1 y h3: las 13 paginas vivas llevan <h1> (el titular de la pagina
   cuelga de algo); las retiradas siguen con <h3> y no se han tocado. */
.page-header__inner h1,
.page-header__inner h3 {
    font-size: 60px;
    color: var(--fixpro-white);
    line-height: 70px;
    font-weight: 600;
    margin-bottom: 15px;
}

.thm-breadcrumb__inner {
    position: relative;
    display: block;
}

.thm-breadcrumb {
    position: relative;
    display: block;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    color: var(--fixpro-white);
    font-family: var(--fixpro-font-2);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    color: var(--fixpro-white);
    font-family: var(--fixpro-font-2);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
    color: var(--fixpro-base);
    opacity: 1;
}

.thm-breadcrumb li span {
    font-size: 12px;
    color: var(--fixpro-base);
}