/*
@font-face {
    font-family: "Ubuntu";
    src: url(../fonts/Ubuntu/Ubuntu-Regular.ttf);
}

@font-face {
    font-family: "Ubuntu Medium";
    src: url(../fonts/Ubuntu/Ubuntu-Medium.ttf);
}

@font-face {
    font-family: "Ubuntu Bold";
    src: url(../fonts/Ubuntu/Ubuntu-Bold.ttf);
}
*/

* {
    list-style-type: none;
}

:root {
    --bleu-canard: #5A88AA;
    --dore-canard: #BEAC77;
    --white: #fff;
    --regular: 400;
    --medium: 500;
    --bold: 700;
}

body {
    font-family: "Ubuntu", Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.font-dore-canard {
    color: var(--bleu-canard) !important;
}

.bold {
    font-weight: var(--bold) !important;
}

.mail-contact {
    font-weight: var(--bold) !important;
    cursor: pointer;
}

.mail-contact a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--dore-canard);
}

.logo-nav {
    width: 280px;
}

nav {
    font-size: 20px;
}

.nav-ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nav-ul li a .font-dore-canard {
    font-family: "Ubuntu", Arial, Helvetica, sans-serif;
    font-weight: var(--bold);
}

.nav-ul li {
    margin-right: 80px;
}

.nav-ul li a {
    text-decoration: none;
    color: inherit;
}

.nav-ul li a:after {
    transition: all ease-in-out 0.2s;
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: none repeat scroll 0 0 #BEAC77;
}

.nav-ul li a:hover:after {
    width: 100%;
}