/* ===================================
   LEGAL HERO
=================================== */

.legal-hero {
    position: relative;
    height: 360px;
    background: url("../images/banner_mention_dark.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.legal-hero-content h1 {
    margin: 0;

    font-family: "Roboto Condensed", sans-serif;
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;

    color: #fff;
}
/* ===== LEGAL PAGE ===== */

section.legal-content {
    background: #fff;
    padding: 90px 0;
}

section.legal-content .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

section.legal-content .legal-block {
    margin-bottom: 70px;
}

section.legal-content .legal-block:last-child {
    margin-bottom: 0;
}

section.legal-content .legal-block h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #1B181D;
    margin: 0 0 30px;
}

section.legal-content .legal-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin: 0 0 20px;
}

section.legal-content .legal-block strong {
    font-weight: 700;
    color: #000;
}

section.legal-content .legal-block a {
    color: #4178F2;
    text-decoration: none;
}

section.legal-content .legal-block a:hover {
    color: #EA0D80;
}

/* RESPONSIBILITY */
@media (max-width: 991px) {

    .legal-hero {
        height: 300px;
    }

    .legal-hero-content h1 {
        font-size: 46px;
    }

}

@media (max-width: 768px) {

    .legal-hero {
        height: 260px;
    }

    .legal-hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

}

@media (max-width: 576px) {

    .legal-hero {
        height: 220px;
    }

    .legal-hero-content h1 {
        font-size: 28px;
    }

}