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

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

h1{
    font-size: 80px;
    font-weight: 800;
    color: #FF5656;;
    line-height: 80px;
    margin-bottom: 40px;
}

h2{
    color: #FF5656;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 18px;
}

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

p{
    font-size: 16px;
    font-weight: 400;
    color: #9E0000;
    line-height: 24px;
    margin-bottom: 15px;
}

.clear{
    clear: both;
}

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

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

a{
    color: #9E0000;
    font-size: 15px;
    font-weight: 600;
}

/* Form */
input, textarea{

}

textarea{

}

.form-error ul li{

}

.btn{
    display: inline-block;
    padding: 14px 30px;
    border-radius: 25px;
    background-color: #fff;
    border: 2px solid #FF5656;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    color: #FF5656;
}

.btn.purpule{
    background-color: #450546;
    border: 2px solid #450546;
    color: #fff;
}

.btn.red{
    background-color: #FF5656;
    border: 2px solid #FF5656;
    color:#fff;
}

.btnSite{
    border: 2px solid #FF5656;
    border-bottom: 5px solid #FF5656;
}

.btnSubmit{
    cursor: pointer;
    width: calc(100% - 62px);
    background-color: #FF5656;
    color:#fff;
}

.viewMore{
    display: none;
}

.titre h1 {
    font-size: 70px;
    margin-bottom: 13px;
    line-height: 60px;
}

.titre{
    max-width: 60%;
    margin: 0px auto 50px auto;
}

.titre p{
    margin-bottom: 0px;
}

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

.titre.center.blanc{
    margin: 0px auto;
}

.titre.center.blanc h2{color: #fff;}
.titre.center.blanc p{color: #fff;}

.titre.link{
    display: flex;
    max-width: 100%;
}

.titreLeft{
    width: 50%;
}

.titreRight{
    width: 50%;
    position: relative;
}

.titreRight a{
    position: absolute;
    right: 0px;
    bottom: 0px;
}

input, select, textarea{
    background-color: #fff;
    width: calc(100% - 42px);
    border: 1px solid #FF5656;
    border-bottom: 5px solid #FF5656;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #9E0000;
}

input::placeholder, select::placeholder, textarea::placeholder{
    color: #9E0000;
}

textarea{
    height: 180px;
}

/* Menu déroulant */
.accordion {
    position: relative;
    display: inline-block;
}

.accordion-content {
    position: absolute;
    background-color: #fff;
    width: 280px;
    left: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, height 0.3s ease;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 15px;
}

.navigationMenuLeft ul li .accordion-content li{
    float: none;
}

.navigationMenuLeft ul li .accordion-content li a{
    padding: 16px 26px;
}

.accordion:hover .accordion-content {
    opacity: 1;
    height: auto;
}

.categories{
    text-align: center;
    padding-bottom: 30px;
}

.categories ul li{
    list-style: none;
    display: inline-block;
}

.categories a{
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 5px 20px;
}

.categorie-parcours{
    display: none;
}