/* General */
@font-face {
    font-family: "Confortaa";
        src:url('../ext/Comfortaa-Regular.ttf') format('truetype');
}
@font-face {
    font-family: "Confortaa";
        src:url('../ext/Comfortaa-Bold.ttf') format('truetype');
        font-weight: bold;
}
@font-face {
    font-family: "GoldenHopes";
        src:url('../ext/GoldenHopes.otf') format('opentype');
        font-weight: bold;
}
:root {
    --IYBleu: rgb(205, 233, 233);
    --IYVertClair: rgb(197, 252, 235);
    --IYVertFonce: rgb(24, 86, 103);
}
* {
    box-sizing: border-box;
}
html {
    height: 100%;
  }
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100%;
    /* background-color: #eef2f7; */
    background-color: white;
    position: relative;
}
#page-container {
    position: relative;
    min-height: 100vh;
}
#content-wrap {
    min-height: 90vh;
    padding-bottom: 270px;    /* Footer height */
  }

.hidden {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
/* ******************************* */
/*   Generic                        */
/* ******************************* */
.MainTitre {
    margin-left: auto;
    color: #185667;
    font-family: "Confortaa";
}
.SecondTitre {
    margin-left: auto;
    color: #185667;
    font-family: "GoldenHopes";
}