* {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

@font-face {
    font-family: robotoLight;
    src: url("/fonts/roboto/Roboto-Light.ttf");
}
@font-face {
    font-family: robotoBold;
    src: url("/fonts/roboto/Roboto-Bold.ttf");
}
@font-face {
    font-family: robotMedium;
    src: url("/fonts/roboto/Roboto-Medium.ttf");
}
@font-face {
    font-family: robotoRegular;
    src: url("/fonts/roboto/Roboto-Regular.ttf");
}

:root{
    --bleu-fonce : #03989e;
    --bleu-noir : #002728;
    --bleu1 : #00C2CB;
    --bleu2 : #5CE1E6;
    --rouge : #FF5757;
    --gradient1 : linear-gradient(to top left, #00C4CC, #03989E);
    --gradient2 : linear-gradient(to top left , #5CE1E6, #00C2CB);
}

a {
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    display: flex;
    width: 100vw;
    height: 10vh;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--bleu-fonce);
    z-index: 9999;
}
.h-icon {
    height: 10vh;
}
#h-user {
    width: 10vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
#h-flag {
    display: flex;
    flex-direction: row;
    
}
#h-nav {
    display: flex;
    align-items: center;
    height: 10vh;
}
#h-flag img {
    height: 5vh;
    margin-left: 2rem;
}
.user-content-nav {
    width: 9vw;
    text-align: center;
    font-size: 1.1em;
    padding: 0.7rem;
    border-radius: 20px;
}
.user-content-nav a {
    color: #e5e5e5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-nav:hover > a, #ulheader:hover, #liheader:hover > a{
    color: var(--rouge);
    transition: all 0.5s ease;
}
.user-content-nav:hover > a {
    color: var(--bleu-noir);
    transition: all 0.5s ease;
}

.content-nav {
    text-align: center;
    font-size: 1.2em;
    height: 10vh;
    width: 8vw;
    line-height: 10vh;
    transition: color 0.3s ease;
}
.content-nav a, .user-content-nav, #ulheader, #ulheader > #liheader a {
    font-family: robotoRegular;
    font-weight: 500;
}
.content-nav a, #ulheader, #liheader {
    color: #fff;
}
.fas {
    margin-left: 0.5rem;
}

#ulheader {
    display: inline-block;
    position: relative;
    cursor: pointer;
}
#ulheader .fa-caret-right {
    transition: transform 0.5s ease;
}
#ulheader > #liheader {
    position: absolute;
    left: -1.1vw;
    background-color: var(--bleu-fonce);
    list-style: none;
    height: 8vh;
    line-height: 8vh;
    display: none;
    width: 12vw;
    transition: all 1s ease;
    z-index: 2;
}
#ulheader:hover > #liheader {
    display: block;
    transition: color 1s ease;
}
#ulheader:hover .fa-caret-right {
    transform: rotate(90deg);
    transition: transform 0.5s ease;
}



/* <div id="h-flag">
        <div class="flagfrance">
            <img src="{{asset('/img/france.png')}}" alt="Drapeau de la France">
        </div>
        <div class="flaguk">
            <img src="{{asset('/img/uk.png')}}" alt="Drapeau du Royaume-Uni">
        </div>
    </div> */


    




.z-index{
    display: none;
    position: fixed;
        top: 0;
}

@media (max-width: 40em) {
    .z-index {
        display: block;
    }
    .header {
        display: none;
    }
}



    @import url(https://fonts.googleapis.com/css?family=Roboto:400,700);

    @keyframes checked-anim {
        50% {
            width: 3000px;
            height: 3000px;
        }
        100% {
            width: 100%;
            height: 100%;
            border-radius: 0;
        }
    }
    @keyframes not-checked-anim {
        0% {
            width: 3000px;
            height: 3000px;
        }
    }
    #menu li, #menu a {
        margin: 75px 0 -55px 0;
        color: #fff;
        font: 14pt "Roboto", sans-serif;
        font-weight: 700;
        line-height: 1.8;
        text-decoration: none;
        text-transform: none;
        list-style: none;
        outline: 0;
        display: none;
    }
    #menu li {
        width: 230px;
        text-indent: 56px;
    }
    #menu a:focus {
        display: block;
        color: #333;
        background-color: #eee;
        transition: all .5s;
    }
    aside {
        position: absolute;
        color: white;
        top: 35%;
        right: 10%;
        text-align: right;
    }
   
    #trigger, #burger, #burger:before, #burger:after {
        position: absolute;
        z-index: 12;
        top: 25px;
        left: 25px;
        background: #000000;
        width: 30px;
        height: 5px;
        transition: .2s ease;
        cursor: pointer;
    }
    #trigger {
        height: 25px;
        background: none;
    }
    #burger:before {
        content: " ";
        top: 10px;
        left: 0;
    }
    #burger:after {
        content: " ";
        top: 20px;
        left: 0;
    }
    #menu-toggle:checked + #trigger + #burger {
        top: 35px;
        transform: rotate(180deg);
        transition: transform .2s ease;
    }
    
    #menu-toggle:checked + #trigger + #burger:before {
        width: 20px;
        top: -2px;
        left: 18px;
        transform: rotate(45deg) translateX(-5px);
        transition: transform .2s ease;
    }
    #menu-toggle:checked + #trigger + #burger:after {
        width: 20px;
        top: 2px;
        left: 18px;
        transform: rotate(-45deg) translateX(-5px);
        transition: transform .2s ease;
    }
    #menu {
        z-index: 10;
        position: absolute;
        margin: 0; padding: 0;
        width: 110px;
        height: 110px;
        background-color: #03989e;
        border-bottom-right-radius: 100%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.26);
        animation: not-checked-anim .2s both;
        transition: .2s;
    }
    #menu-toggle:checked + #trigger + #burger + #menu {
        animation: checked-anim 1s ease both;
    }
    #menu-toggle:checked + #trigger ~ #menu > li, #menu a {
        display: block;
    }
    [type="checkbox"]:not(:checked), [type="checkbox"]:checked {
        display: none;
    }


    