/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');*/

:root {
    --couleur1: #ff521b;/*Orange*/
    --couleur4: #FFB300;/*Orange Foncé*/
    --couleur2: #ffb300;/*Jaune*/
    --couleur3: #252525;/*Gris Foncé*/
}

body{
    margin: 0;
    padding: 0;
    font-size: 1vw;
    color: #252525;
    font-family: 'Roboto Condensed',sans-serif;
}
ul, li{
    text-decoration:none;
    list-style: none;
}
a{
    text-decoration:none;
}
a, p, li{
    font-family: system-ui;
}
p{
    font-size: 1.2em;
    line-height: 2em;
}
h1, h2, h3{
    font-family: 'Roboto Condensed',sans-serif;
}
h1{
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 700;
    color: #252525;
    font-size: 2.8em;
    letter-spacing: 0.05em;
}
h2 {
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 400;
    color: #252525;
    font-size: 2em;
    letter-spacing: 0.05em;
    word-break: break-word;
}
h3{
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 300;
    color: var(--couleur2);
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0.5em 0;
}
h4{
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: 300;
    color: var(--couleur3);
    font-size: 1.2em;
    letter-spacing: 0.05em;
    margin: 0.5em 0;
}

.L40{
    width: 40%;
}
.L50{
    width: 50%;
}
.L60{
    width: 60%;
}
.M10{
    margin-left: 15%;
    margin-right: 15%;
}
.FlexH{
    display: flex;
    flex-direction: row;
}
.FlexV{
    display: flex;
    flex-direction: column;
}
.FlexVerticalCentre{
    display: flex;
    align-content: center;
    align-items: center;
}
.DisplayTable{
    display: table;
}
.Ombre {
    box-shadow: -5px 4px 18px 0px rgb(0 0 0 / 50%);
}

.C1{
    color: var(--couleur1);
    font-weight: 800;
}
.Bouton1{
    display: inline-block;
    color: #ffffff;
    border-width: 0px;
    border-radius: 100px;
    letter-spacing: 1px;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #FFB300;
    padding: 1.2em 1.6em;
}

#FlecheBasSVG{
    fill: #FF521B;
}
.BlocDeroulant{
    position: relative;
    border-radius: 1em;
    box-shadow: 6px 6px 18px 0px rgba(0,0,0,0.21);
    padding: 1em 2em;
    background: #ff521b29;
    margin-bottom: 2em;
    transition: all 1s ease;
}
.BlocDeroulant .Titre{
    font-weight: 600;
    margin-right: 3em;
    color: var(--couleur1);
    transition: color 1s ease;
}
.BlocDeroulant .Description{
    /*height: 0;*/
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-size: 1em;
    line-height: 2em;
    /*transition: max-height 1s ease-out;*/
}
.BlocDeroulant .FlecheBas{    
    position: absolute;
    padding: 1.5em;
    cursor: pointer;
    top: 0;
    right: 0;
}
.BlocDeroulant .FlecheBas svg{    
    height: 1em;
    width: 1em;
}
.BlocDeroulant.Actif{
    background: var(--couleur4);
}
.BlocDeroulant.Actif .Titre{
    color: var(--couleur3);
}
.BlocDeroulant.Actif .Description{
}
.BlocDeroulant.Actif .FlecheBas svg{
   transform: scaleY(-1);
}

@media screen and (max-width: 1920px){
    body{
        margin: 0;
        padding: 0;
        font-size: 1em;
    }
}