@font-face {
    font-family: "Abril";
    src: url("../font/AbrilFatface-Regular.ttf") format("truetype");
}

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

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

body {
    font-family: "Ubuntu Regular", Arial, Helvetica, sans-serif !important;
    color: #e5e5e5 !important;
}

main {
    min-height: 100vh;
}

h1 {
    font-family: "Abril", Georgia, 'Times New Roman', Times, serif !important;
    color: #e6cd3f;
}

h2,
h3 {
    font-family: "Ubuntu Medium", Arial, Helvetica, sans-serif !important;
}

.jaune {
    color: #e6cd3f;
}

.degrade-bleu {
    background: linear-gradient(to bottom, #212c37, #245469) !important;
}

.degrade-fonce {
    background: linear-gradient(to bottom, #070812, #212c37);
}

.btn-warning {
    background-color: #e6cd3f!important;
}
/*----------------------------
-------------Navbar-----------
----------------------------*/
.collapse{
    box-shadow: 1px 0 5px rgba(7,8, 18);
}

.btn-burger-blanc{
    background-image: url("../img/button_burger_blanc.png")!important;
}

.btn-burger-jaune{
    background-image: url("../img/button_burger.png")!important;
}

.navbar-toggler-icon {
    width: 5em!important;
    height: 4em!important;
}

.navbar-toggler {
    z-index: 2 !important;
}

.navbar-collapse {
    height: 100vh;
    display: block;
}

.nav-link {
    color: #e5e5e5;
    font-family: "Ubuntu Medium", Arial, Helvetica, sans-serif;
}

.nav-link:hover {
    color: #e6cd3f;
}

.nav-link-deco {
    font-size: 0.85rem;
}

footer .nav-link{
    font-family: "Ubuntu Regular", Arial, Helvetica, sans-serif !important;
}

.logo {
    max-height: 150px;
}

.logoFb{
    max-height: 2.5em;
}

/*----------------------------
-----------Responsive---------
----------------------------*/

@media screen and (max-width: 767px) {
    .navbar-collapse {
        padding-top: 6em;
        position: absolute;
        right: 100%;
        width: 100%;
        transition: all 0.3s ease;
    }

    .navbar-collapse.collapsing {
        margin-right: 50%;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        right: 0;
    }
}