
body {
    animation: fadein 1s;
}
@keyframes fadein {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

.navbar {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    font-size: 1.2em;

    background-color: #c48d0b;
}
.left li{
    list-style: none;
   position: absolute;
   left: 30px;
   top: 30px;
}
.navbar img {
    width: 300px;
}

.logo {

}

.navbar ul {
    list-style-type: none;
}

.navbar a {
    font-family: 'Montserrat';
    color: #1b2e59;
    transition: all .3s;
    text-decoration: none;
}

.navbar .logo {
    font-size: 2em;
    font-weight: bold;
}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 25px;
    align-self: center;
}

.navbar .nav-links ul li .now,
.navbar .nav-links ul li .actif{
    color: #0096c7;
    font-size: 1.2em;
    font-weight: bolder;
}


.navbar .menu-hamburger {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
}

.nav-links .mobile-menu {
    margin-left: 0;
}

.navbar a:hover {
    color: #000000;
    transition: all .3s;
}


.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham5 .top {
    stroke-dasharray: 40 82;
}

.ham5 .bottom {
    stroke-dasharray: 40 82;
}

.ham5.active .top {
    stroke-dasharray: 14 82;
    stroke-dashoffset: -72px;
    overflow: hidden;
}

.ham5.active .bottom {
    stroke-dasharray: 14 82;
    stroke-dashoffset: -72px;
    overflow: hidden;
}

@media screen and (max-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar a {
        color: rgb(255, 255, 255);
    }

    .navbar .logo {

    }
    .navbar .logo img{
        width: 40%;
    }
    .navbar .menu-hamburger {
        display: block;
        /*top: 30px;
        height: 50px;
        width: 50px;*/
    }

    .nav-links {
        position: absolute;
        top: 0;
        left: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -100%;
        transition: all .5s ease;
    }

    .nav-links.mobile-menu {
        margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar .nav-links ul li {
        margin: 25px 0;
        font-size: 1.3em;
    }

}
/* ::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: rgb(5, 68, 139);
    border-radius:5px;
}

::-webkit-scrollbar-thumb:hover {
    background:rgb(3, 46, 95);
} */