<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ASSISTANT */

@font-face {
    font-family: 'AssistantExtraBold';
    src: url('/assets/webfonts/Assistant-ExtraBold.ttf');
}

@font-face {
    font-family: 'AssistantBold';
    src: url('/assets/webfonts/Assistant-Bold.ttf');
}

@font-face {
    font-family: 'AssistantSemiBold';
    src: url('/assets/webfonts/Assistant-SemiBold.ttf');
}

@font-face {
    font-family: 'AssistantRegular';
    src: url('/assets/webfonts/Assistant-Regular.ttf');
}

@font-face {
    font-family: 'AssistantLight';
    src: url('/assets/webfonts/Assistant-Light.ttf');
}

@font-face {
    font-family: 'AssistantExtraLight';
    src: url('/assets/webfonts/Assistant-ExtraLight.ttf');
}

/* BODY  */
html {
    height: 100% !important;
    width: 100% !important;
}

body {
    overflow-x: hidden;
    background-color: #fff !important;
    font-family: 'Assistant', sans-serif;
    animation: fadeBody 1s ease-in;
    position: relative;
}

main {
    position: relative;
}

.row {
    margin: 0;
}

@keyframes fadeBody {
    0% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

body::-webkit-scrollbar {
    display: none;
}

::selection {
    background: #d93a3f;
    color: white;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

.div-arrow-back-top {
    position: fixed;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    display: none;
    background-color: #d93a3f;
    border: 2px solid white;
    padding: 10px;
    opacity: 0.7;
    transition-duration: 0.3s;
}

.img-arrow-back-top {
    width: 100%;
}

.div-arrow-back-top:hover{
    opacity: 1;
}

.div-arrow-back-top:hover .img-arrow-back-top{
    animation: animFlecheBackTop linear infinite 1s;
}

@keyframes animFlecheBackTop{
    0%{transform: translateY(0px);}
    25%{transform: translateY(-3px);}
    75%{transform: translateY(2px);}
    100%{transform: translateY(0px);}
}

.header-height {
    height: 60px;
    width: 100%;
    background-color: black;
}

.decoration-titre {
    width: 120px;
    height: 1px;
    background-color: #d93a3f;
    position: relative;
}

h1 {
    font-size: 25px !important;
    font-weight: bold !important;
    letter-spacing: 1px;
}

h2,
h3,
h4,
h5 {
    font-size: 22px !important;
    font-weight: bold !important;
    letter-spacing: 0.8px;
}

select,
textarea,
input,
p,
ol,
ul {
    font-size: 18px !important;
    letter-spacing: 0.4px;
}

a,
a:hover,
a:active {
    /*font-size: 14px !important;*/
    letter-spacing: 0.4px;
    text-decoration: none;
}

main {
    /*    background-image: linear-gradient(to bottom, #e5e5e5, #ebebeb, #f2f2f2, #f8f8f8, #ffffff);*/
    background-color: white;
    padding-top: 80px;
    /*    overflow-x: hidden;*/
}

/* Generique */

.display-none
{
  display: none;
}

.display-none-important
{
  display: none !important;
}

.cursor-pointer {
    cursor: pointer;
}

.margin-center {
    margin: 0 auto;
}

.bg-green {
    background-color: green;
}

.bg-red {
    background-color: red;
}

.bg-yellow {
    background-color: yellow;
}

.bg-blue {
    background-color: blue;
}

/*-----------------------------------------*/
/*            GESTION COULEURS             */
/*-----------------------------------------*/

.header-active p,
.header-active:hover p {
    color: #d93a3f !important;
    font-weight: bold;
    font-size: 20px !important;
}

.nav-li-header:hover {
    color: #d93a3f;
}

.couleur-principale-background,
.couleur-principale-background::after {
    background: #d93a3f;
    background-color: #d93a3f !important;
}

.couleur-principale-border {
    border-color: #d93a3f !important;
}

.couleur-principale-texte {
    color: #d93a3f !important;
}

/*-----------------------------------------*/
/*               ANIMATIONS                */
/*-----------------------------------------*/

@keyframes fadeFromRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeFromBottom {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fadeFromTop {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*-----------------------------------------*/
/*               RESPONSIVE                */
/*-----------------------------------------*/

@media screen and (max-width: 1999px) {}


@media screen and (max-width: 991px) {

    h1 {
        font-size: 20px !important;
        font-weight: bold !important;
        letter-spacing: 1px;
    }

    h2,
    h3,
    h4,
    h5 {
        font-size: 15px !important;
        font-weight: bold !important;
        letter-spacing: 0.8px;
    }

    select,
    textarea,
    input,
    p {
        font-size: 16px !important;
        letter-spacing: 0.4px;
    }
}


@media screen and (max-width: 767px) {}
</pre></body></html>