/* Legal pages: transparent header over hero, then sticky white */

.a4-header--transparent .a4-header__bar {
    background: transparent;
}
.a4-header--transparent.is-stuck .a4-header__bar {
    background: #fff;
}

.a4-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
}

.a4-header--transparent.is-stuck {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.a4-hero-legal {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.a4-hero-legal__inner {
    position: relative;
    width: 100%;
    text-align: left;
}

.a4-hero-legal__inner h1 {
    max-width: 450px;
    margin: 0;
    font-family: var(--a4-font-heading);
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: left;
    color: var(--a4-color-heading); 
    opacity: 0;
    transform: translateX(-60px);
    animation: a4-hero-slide-in .8s ease-out .3s forwards;
}



@keyframes a4-hero-slide-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Content block below hero */

.a4-container h1 {
	padding: 40px 0;
}

.a4-legal-content h2 {
    margin: 40px 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    color: #e74922;
}
.a4-legal-content h2:first-child {
    margin-top: 0;
}

.a4-legal-content h3 {
    margin: 40px 0 20px;
    font-family: var(--a4-font-heading);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    color: #adadad;
}

.a4-legal-content h3:first-child {
    margin-top: 0;
}

.a4-legal-content p {
    color: var(--a4-color-text);
}

@media (min-width: 960px) {
    .a4-hero-legal__inner h1 {
        font-size: 56px;
    }
	
	.a4-legal-content h2 {
        font-size: 50px;
    }
}
