.qsn-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("/assets/img/valeurs-midi-auto.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 5000px rgb(0 0 0 / 60%);
    opacity: 0;
    animation: animFade 0.5s ease-in-out forwards;
}

.qsn-header img{
    width: 80%;
    max-width: 300px;
    margin: 10px;
}

.qsn-header h1{
    color: #c1d72e;
    text-transform: uppercase;
    font-size: 40px !important;
    font-weight: 600 !important;
    padding: 10px;
    text-align: center;
}

.qsn-header p{
    color: white;
    font-size: 20px !important;
    width: 60%;
    min-width: 300px;
    text-align: center;
    margin: 0;
    padding: 10px;
}

.qsn-introduction{
    opacity: 0;
    animation: animFromBottom 0.5s 0.5s ease-in-out forwards;
}

.qsn-introduction p{
    text-align: justify;
    font-size: 18px !important;
    font-weight: 500 !important;
    padding: 25px 50px;
    margin: 0;
}

.qsn-titre-div{
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.qsn-titre-div h2{
    color: #c1d72e;
    font-size: 25px;
    margin: 0;
    font-weight: 600;
}

.qsn-titre-barre{
    height: 1px;
    width: 100%;
    background: black;
}

.qsn-barre-gauche{
    margin-right: 50px;
    margin-left: 20px;
}

.qsn-barre-droite{
    margin-right: 20px;
    margin-left: 50px;
}

.qsn-introduction a{
    color: #c1d72e !important;
}

.qsn-introduction strong{
    font-weight: 600 !important;
}

.bandeau-fin-qsn{
    background: #f6f6f6;
    padding: 40px;
}

.bandeau-fin-qsn h3{

}

.bandeau-fin-qsn strong{
    color: #c1d72e;
}

.anim-from-bottom{
    animation: animFromBottom 0.5s ease-in-out forwards;
}

.anim-fade{
    animation: animFade 0.5s ease-in-out forwards;
}

@keyframes animFromTop {
    0%{transform: translateY(-300px); opacity: 0;}
    100%{transform: translateY(0px); opacity: 1;}
}

@keyframes animFromBottom {
    0%{transform: translateY(100px); opacity: 0;}
    100%{transform: translateY(0px); opacity: 1;}
}

@keyframes animFromLeft {
    0%{transform: translateX(-30px); opacity: 0;}
    100%{transform: translateX(0px); opacity: 1;}
}

@keyframes animFade {
    0%{opacity: 0;}
    100%{opacity: 1;}
}