*{
    margin: 0;
}

a{
    text-decoration: none;
    color: #E7F0F4;
    cursor: pointer;
}

@media screen and (max-width:900px){
    a{
        color: #0C1F28;
    }
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Montserrat';
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0C1F28;
}

#header{
    background-color: #0C1F28;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-bureau{
    height: 10vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    font-family:'Shippori';
    width: 100vw;
    padding: 20px 40px;
    box-sizing: border-box;
}

li{
    display: flex;
    flex-direction: row;
    width: 70%;
    justify-content: space-between;
    color: #E7F0F4;
    font-family: 'Shippori Antique B1', sans-serif;
}

.menu-bureau ul{
    box-sizing: border-box;
    padding-inline-start: 0px;
}

.menu-bureau .logo{
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.menu-bureau .logo img{
    height: 30px;
}

.menu-bureau span ul{
     border-bottom: #E7F0F4 solid 2px;
     padding-bottom: 10px;
}

.top-mobile{
    display: none;
}

#menu-mobile{
    width: 400px;
    background-color: #E7F0F4;
    height: 100vh;
    color: #0C1F28;
    position: fixed;
    left: -400px;
    top: 0;
    z-index: 2;
}

#menu-mobile li{
    display: flex;
    flex-direction: column;
    color: #0B181F;
    margin-left: 40px;
}

#menu-mobile span ul{
    border-bottom: #0C1F28 solid 2px;
    padding-bottom: 3px;
    margin-bottom: 20px;
    width: 70px;
    margin-left: 0px;
}

#menu-mobile ul{
    width: auto;
    padding-inline-start: 0px;
    margin-left: 40px;
}

#menu-mobile button{
    height: 30px;
    margin-left: 40px;
    margin: 20px 40px;
    cursor: pointer;
}

#menu-mobile button img{
    height: 30px;
}

button{
    border: none;
    background-color: transparent;
    cursor: pointer;
}

@media screen and (max-width:900px){
    .top-mobile{
        display: flex;
        flex-direction: row-reverse;
        width: 80vw;
        justify-content: space-between;
        margin-bottom: 80px;
        padding: 50px 0;
    }
    
    .top-mobile img{
        height: 30px;
    }

    #header .menu-bureau{
        display: none;
    }

}

footer{
    display: flex;
    flex-direction: row;
    width: 100vw;
    background-color: #0B181F;
    justify-content: space-evenly;
    padding: 30px 0;
    box-sizing: border-box;
    align-items: center;
    color: #E7F0F4;
}

footer img{
    width: 25px;
}

footer .arrow{
    transform: rotate(180deg);
}

@media screen and (max-width:1000px){
    footer{
        flex-direction: column;
        align-items: flex-start;
    }

    footer p{
        margin-left: 20px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    footer img{
        margin-left: 20px;
    }
}