h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-title);
    position: relative;
}

h1,
h2,
h3 {
    color: var(--secondary-1);
    font-weight: 100;
}

h2 {
    padding-bottom: 0.6rem;
    margin-bottom: 2rem;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 100;
    font-size: var(--font-size-title-2);
    line-height: 1.1;
}

h2.underlined::after,
h3.underlined::after,
h4.underlined::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    min-width: 150px;
    height: 1px;
    background: #FFF;
}

h2 strong {
    font-weight: 500;
}

h2 small {
    display: block;
    font-weight: 100;
    font-size: 2rem;
    line-height: 2.1rem;
}

h3 {
    padding-bottom: 0.6rem;
    margin-bottom: 2rem;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 100;
    font-size: var(--font-size-title-3);
    line-height: 3.1rem;
}

h3 strong {
    display: block;
    font-weight: 500;
}

h4 {
    font-weight: 500;
}

h5 {
    display: inline-block;
    text-transform: uppercase;
    font-size: var(--font-size-title-5);
    font-weight: 100;
}

.title{
    font-family: var(--font-title);
    font-weight: 500;
    color:var(--gris-7);
}

.title.underlined{
    border-bottom: 1px solid var(--gris-5);
}

.title-0 {
    font-size: var(--font-size-title-0);
}
.title-1 {
    font-size: var(--font-size-title-1);
}
.title-2 {
    font-size: var(--font-size-title-2);
}
.title-3 {
    font-size: var(--font-size-title-3);
}
.title-4 {
    font-size: var(--font-size-title-4);
}
.title-5 {
    font-size: var(--font-size-title-5);
}
.title-6 {
    font-size: var(--font-size-title-6);
}

.degrade_violet h2,
.degrade_violet h3,
.degrade_violet h4,
.degrade_rose h2,
.degrade_rose h3,
.degrade_rose h4,
.degrade_bleu_orage h2,
.degrade_bleu_orage h3,
.degrade_bleu_orage h4,
.degrade_bleu h2,
.degrade_bleu h3,
.degrade_bleu h4 {
    color: #FFF;
}

.picto {
    height: var(--picto-height-2);
    width: auto;
    display: inline-flex;
}


/* <= à sm -> Tablettes & Smartphones */
@media (max-width: 991px) {

    h2 {
        display: block;
        background: var(--secondary-1);
        color: #FFF;
        padding-bottom: 0;
    }

}