<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -----------------        Desktop        ----------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
html{overflow-x:hidden;}
body{overflow-x:hidden;}
a{text-decoration:none!important;}
/* ------   HEADER  ------ */
.header {
    width: 100%;
    height: 122px;
    position: fixed;
    top: 0;
    background: #000000;
    color: #FFFFFF;
    font-family: "Poppins", Helvetica;
    font-size: 16px;
    z-index: 60;
}
.header .blockheader {
    display: flex;
    max-width: 1190px;
    min-width: 978px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
}
.header img {
    object-fit: cover;
    cursor: pointer;
}
.header .burgerMenu {
    display: none;
}
.header .logo {
}
.header .navigation {  
}
.header .navigation ul {
    display: flex;
}
.header .navigation ul li {
    margin-right: 22px;
    cursor: pointer;
}
.header .navigation ul li a {
    text-decoration: none;
    color: #FFFFFF;
}
.header .navigation ul li:last-child {
    margin-right: 0px;
}
.header ul li:last-child {
    font-weight: bold;
}
.header ul li:last-child img {
    margin-left: 4px;
}
/* ANIMATION CSS */
.header .navigation ul li {
    position: relative;
}
.header .navigation ul li::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.header .navigation ul li:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}
/* ------   FOOTER  ------ */
.footer {
    width: 100%;
    height: 344px;
    position: relative;
    bottom: 0px;
    background: #000000;
    color: #FFFFFF;
    font-family: "Poppins", Helvetica;
    font-size: 16px;
}
.footer .block1 {
    display: flex;
    width: 88%;
    max-width: 1190px;
    margin: auto;
    justify-content: space-between;
    padding-top: 60px;
    align-items: center;
    margin-bottom: 88px;
}
.footer .block1 .logo {
    
}
.footer .block1 .adresse {
    display: flex;
    width: 240px;
}
.footer .block1 .adresse img {
    width: 17px;
    height: 20px;
    margin-right: 18px;
}
.footer .block1 .adresse p {
    line-height: 22px;
}
.footer .block1 .telephone {
    display: flex;
}
.footer .block1 .telephone img {
    width: 20px;
    height: 20px;
    margin-right: 18px;
}
.footer .block1 .telephone p {
    line-height: 22px;
}
.footer .block1 .reseaux {
    display: flex;
}
.footer .block1 .reseaux img {
    position: relative;
    margin-left: 32px;
    object-fit: cover;
    height: 28px;
    cursor: pointer;
}
.footer .block1 .reseaux p {
    line-height: 42px;
}
.footer .block2 {
    width: 78%;
    margin: auto;
    color: #FBC300;
    display: flex;
    justify-content: space-between;
}
.footer .block2 p {
    cursor: pointer;
}
.footer .block1 .line {
    display: none;
    height: 1px;
    width: calc(100% - 31px)!important;
    background-color: #FFFFFF;
}
/* -----------------        TABLETTE        ----------------- */
@media screen and (min-width:640px) and (max-width:1024px) {
    .header {
        height: 80px;
        align-items: center;
    }
    .header .blockheader {
        max-width: 1023px;
        min-width: 640px;
        padding-top: 20px;
    }
    .header .logo {
        margin-left: 0px;
    }
    .header ul li {
        display: none;
    }
    .header ul li:last-child {
        display: block;
    }
    .header .burgerMenu {
        display: block;
        width: 100px;
    }
    .header .navigation {    
        margin-right: 0px;
        padding-top: 0px;
        width: 100px;
    }
    .header .navigation ul {
        display: flex;
        justify-content: end;
    }
    .footer .block1 {
        width: 94%;
    }
    .footer .block2 {
        width: 86%;
    }
    .footer .block1 .adresse img {
        margin-right: 8px;
    }
    .footer .block1 .telephone img {
        margin-right: 8px;
    }
    .footer .block1 .reseaux img {
        margin-left: 14px;
    }
    .footer .block1 .reseaux {
        justify-content: end;
    }
}

/* -----------------   Mobile "exception footer"  -------------- */
@media screen and (max-width:880px) {
    .footer {
        height: auto;
    }
    .footer .block1 {
        flex-direction: column;
        align-items: baseline;
        width: 100%;
        padding-left: 16px;
        margin-top: 32px;
        margin-bottom: 36px;
    }
    .footer .block1 .logo {
        margin-bottom: 18px;
    }
    .footer .block1 .adresse {
        margin-bottom: 8px;
    }
    .footer .block1 .adresse p {
        line-height: 30px;
    }
    .footer .block1 .adresse img, .footer .block1 .telephone img {
        display: none;
    }
    .footer .block1 .line {
        display: block;
        margin-top: 34px;
        margin-bottom: 20px;
    }
    .footer .block2 {
        flex-direction: column;
        align-items: baseline;
        margin: unset;
        margin-left: 16px;
        margin-bottom: 24px;
    }
    .footer .block2 p {
        margin-bottom: 18px;
        cursor: pointer;
    }
}
/* -----------------        Mobile        ----------------- */
@media screen and (max-width:640px) {
    .header {
        height: 60px;
        align-items: center;
    }
    .header .blockheader {
        max-width: 639px;
        min-width: 320px;
        padding-top: 15px;
    }
    .header .logo img {
        width: 124px;
        height: 30px;
    }
    .header ul li {
        display: none;
    }
    .header ul li:last-child {
        display: block;
    }
    .header .burgerMenu {
        display: block;
        width: 100px;
    }
    .header .navigation {  
        margin-right: 0px;  
        padding-top: 0px;
        width: 100px;
    }
    .header .navigation ul {
        display: flex;
        justify-content: end;
    }
    .footer {
        height: auto;
    }
    .footer .block1 {
        flex-direction: column;
        align-items: baseline;
        width: 100%;
        padding-left: 16px;
        margin-top: 32px;
        margin-bottom: 36px;
    }
    .footer .block1 .logo {
        margin-bottom: 18px;
    }
    .footer .block1 .adresse {
        margin-bottom: 8px;
    }
    .footer .block1 .adresse p {
        line-height: 30px;
    }
    .footer .block1 .adresse img, .footer .block1 .telephone img {
        display: none;
    }
    .footer .block1 .line {
        display: block;
        margin-top: 34px;
        margin-bottom: 20px;
    }
    .footer .block2 {
        flex-direction: column;
        align-items: baseline;
        margin: unset;
        margin-left: 16px;
        margin-bottom: 24px;
    }
    .footer .block2 p {
        margin-bottom: 18px;
        cursor: pointer;
    }
}


/* -----------------        EXTRA Desktop         ----------------- */
@media screen and (min-width:1400px) {
    .footer .block1 {
        width: 100%;
        max-width: 1190px;
    }
    .footer .block2 {
        width: 56%;
    }
}</pre></body></html>