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


/* ========== General ========== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ========== Navigation ========== */

header {
    width: 100%;
    height: 50px;
    padding: 0 8.5vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #222222;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
    transition: .3s ease-in-out;
}

.nav {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    transition: .3s ease-in-out;
}


/* ===== Menu principal ===== */

.primary {
    width: auto;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
    transition: .3s ease-in-out;
}

.primaryBtn {
    width: 100px;
    height: 100%;
    display: flex;
    transition: .3s ease-in-out;
}

.primaryLink {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 1.5em;
    color: #06c0da;
    text-decoration: none;
    width: 100%;
    height: 100%;
    margin: auto;
    transition: .3s ease-in-out;
}

#active {
    background-color: #06c0da;
    color: #222222;
    transition: .3s ease-in-out;
}


/* ===== Menu social ===== */

.social {
    width: auto;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    transition: .3s ease-in-out;
}

.social li {
    width: auto;
    height: auto;
    display: flex;
}

.socialLink {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #06c0da;
    font-size: 1.8em;
    text-decoration: none;
    width: 50px;
    height: 50px;
    transition: .3s ease-in-out;
}


/* ===== Header style quand scroll ===== */

.scrolling-active {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transition: .3s ease-in-out;
}


/* ========== Survol ========== */


/* ===== Menu principal ===== */

.homeLink:hover .homeLinkLogo {
    transition: .3s ease-in-out;
    -webkit-filter: drop-shadow(0px 5px 10px #06c0da);
    filter: drop-shadow(0px 5px 10px #06c0da);
}

.homeLink:hover .homeLinkLogo .topColor1 {
    stop-color: #e7ecef;
    transition: fill .3s ease-in-out;
}

.homeLink:hover .homeLinkLogo .bottomColor1 {
    stop-color: #e7ecef;
    transition: fill .3s ease-in-out;
}

.primaryLink:hover {
    color: #e7ecef;
    text-decoration: none;
    width: 100%;
    height: 100%;
    margin: auto;
    transition: .3s ease-in-out;
}


/* ===== Menu social ===== */

.socialLink:hover {
    color: #e7ecef;
    font-size: 1.8em;
    transition: .3s ease-in-out;
}


/*
font-family: 'Dosis', sans-serif;
font-family: 'Roboto', sans-serif;
*/


/* ==================== Tablette ==================== */

@media all and (max-width: 1250px) {
    /* ========== Navigation ========== */
    header {
        padding: 0 6vw;
        transition: .3s ease-in-out;
    }
    /* ===== Menu principal ===== */
    /* ===== Menu social ===== */
}


/* ==================== Smartphone ==================== */

@media all and (max-width: 850px) {
    /* ========== Navigation ========== */
    header {
        padding: 0 3vw;
        transition: .3s ease-in-out;
    }
    /* ===== Menu principal ===== */
    /* ===== Menu social ===== */
    .socialLink {
        height: 40px;
        transition: .3s ease-in-out;
    }
}</pre></body></html>