/*======================== News lettre ===============*/
.section-newslettre{
    height: auto;
    width: 100%;
    max-width: 1200px;
    border-top: 2px solid black;
}
.section-newslettre > h2{
    font-family: 'Bebas Neue';
    font-size: 40px;
    margin: 40px 0px;
    text-align: center;
}
.section-newslettre > p{
    font-size: 20px;
    margin: 40px 0px;
    text-align: center;
}
.section-newslettre > .form-newslettre{
    width: 350px;
    margin: 0 auto 30px auto;
    display: flex;
    flex-direction: column;
    
}
.form-newslettre > input[type=email]{
    background-color: white;
    height: 30px;
    font-size: 16px;
    text-align: center;
    border: solid 1px silver;
}
.form-newslettre > button{
    background-color: #DD412B;
    color: white;
    height: 50px;
    font-size: 25px;
    font-family: 'Bebas Neue';
    letter-spacing: 3px;
    text-align: center;
    border: solid 1px silver;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {

    .section-newslettre{
        border-top: none;
        background-color: white;
        box-shadow: 0px 5px 10px silver;
        margin-bottom: 30px;
    }


}