*{
    outline: none;
    margin: 0px;
    padding: 0px;
    font-family: "Syne", sans-serif;
    box-sizing: content-box;
}

html, body{
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

h1{
    font-size: 55px;
    font-weight: bold;
    color: #fff;
    line-height: 70px;
    margin-bottom: 40px;
}

h2{
    color: #597A2B;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 13px;
    line-height: 60px;
}

h3{
    color: #597A2B;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;   
}

h4{
    color: #597A2B;
    font-size: 20px;
}

p{
    font-size: 16px;
    font-weight: 400;
    color:#545454;
}

.clear{
    clear: both;
}

.section{
    margin: 0px auto 0px auto;
    position: relative;
}

.inner{
    margin: 0px auto;
    position: relative;
}

.titre{
    margin-bottom: 50px;
}

.titre.center{
    text-align: center;
}

.btnSubmit{
    border: none;
    cursor: pointer;
    width: calc(100% - 60px);
}

.btn{
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    color:#0095B5;
    background-color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
}

.btn.bleu{
    color:#fff;
    background-color: #0095B5;
}

.btn.link{
    padding: 0px;
    border-radius: 0px;
    background:none;
}

.btn:hover{
    opacity: 0.7;
}

.btnAll{
    text-align: center;
}

.pageContent img{
    max-width: 100%;
    height: auto !important;
    border-radius: 20px;
}

.pageContent p{
    margin-bottom: 20px;
}

.pageContent.blanc p{color:#fff; opacity: 0.7;}
.pageContent.blanc h2{color:#fff}
.pageContent.blanc h3{color:#fff}
.pageContent.blanc h4{color:#fff}

.pageContent ul, .pageContent ol{
    margin-left: 20px;
    color: #545454;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 28px;
}

.pageContent.blanc ul, .pageContent.blanc ol p{color:#fff}

.pageContent a{
    text-decoration: underline;
    font-weight: bold; 
    color: #0095B5;
}

/* Form */
input, textarea{
    border-radius: 5px;
    padding: 10px 20px;
    width: calc(100% - 42px);
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #DFDFDF;
    background-color: #fff;
    transition: 0.3s all ease-in-out;
}

textarea{
    height: 120px;
}

select {
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    padding: 6px 10px;
    font-size: 16px;
}

input:focus, textarea:focus{
    background: #DFDFDF;
}

.error{
    margin-bottom: 20px;
    background-color: #ff7675;
    padding: 20px;
    color: #fff;
    border-radius: 4px;
}

.succes{
    margin-bottom: 20px;
    background-color: #00b894;
    padding: 20px;
    color: #fff;
    border-radius: 4px;
}

.error p, .succes p {
    color: #fff;
}

.message{
    z-index: 1000;
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
}

.badge{
    font-size: 13px;
    background-color: #ccc;
    padding: 3px 15px;
    color: #fff;
    border-radius: 4px;
}

.succes{
    background-color: #00b894;
}

.erreur{
    background-color: #ff7675;
}