@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Raleway");

:root {
    --bg:rgb(228, 237, 242);
    --blanc:#fff;
    --bleu: #254571;
    --bleu2:#577590;
    --bleu3:#0E3F58;
     --bleu-ciel: #55BBED;
    --gris: #49494b; 
    --gris2:#717b8e;
    --gris-clair:#cccccc;
    --jaune: #ffcd1d;/*f1c30f*/
    --jaune2:#E3B559;
    --mauve:#5e548e;
    --orange: #f39200;
    --orange2: #f3722c;
    --rose:#DE3163;
    --rouge: #e94e1b;
    --turquoise:#00BEC0;
    --vert: #94c11f;
    --vert2:#4d908e;
    --font:'Montserrat',
        'Raleway',
        Arial,
        sans-serif;
}
html {
    height: 100%;
}
body {
    margin: 0px;
    padding: 0;
    width: 100%;
    height: 100%;
    color:var(--gris);
    background-color:var(--bg) !important;
    font-size: 1rem;
    font-family: var(--font);
    font-weight: normal;
    text-decoration: none;
    cursor: default;
    max-width: 100%;
    line-height: 1.3em;
}
@media (max-width: 800px) {
   .hidden-small-screen{
    display:none !important;
   }
}