/* Pour TOUT le site */

@font-face {
    font-family: 'oliveira';
    src: url('/assets/font/oliveira.ttf') format('truetype');
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/assets/img/base/overlay.jpg);
    mix-blend-mode: overlay;
    pointer-events: none;
    opacity: 30%;
}

body {
    background-color: #dadada;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'oliveira';
}

.html {
    height: 100vh;
    width: 100%;
    margin: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

a {
    text-decoration: none;
}



/* //Footer */
.footer {
    display: flex;
    width: 100%;
    height: 50px;
    background-color: #D9D9D9;
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: #00223D;
    bottom: 0;
    position: fixed;
    padding-left: 30px;
    gap: 40px;
    align-items: center;
}

.footer a {
    color: #00223D;
}


.burger {
    position: absolute;
    bottom: 0%;
    height: 50px;
    display: flex;
    align-items: center;
    width: 90%;
    justify-content: flex-end;
    right: 20px;
}

.burger a {
    font-weight: 500;
    color: #00223D;
    width: 100px;
    /* margin-right: 20px; */
    transition: 0.3s;
}

.footerBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
}

.footerBtn:hover {
    font-weight: 600;
    transition: 0.3s;
    color: #D9D9D9 !important;
    background-color: #EA651D !important;
    outline-style: none;
}

.iconBurger {
    display: none;
}

.favicon{
    width: 20px;
}

/* Menu burger mobile */
@media (max-width: 700px) {

    .iconBurger {
        font-size: 20px;
        display: flex;
        padding: 10px;
        color: #00223D;
    }


    .burger {
        flex-direction: column;
        gap: 0;
        position: absolute;
        bottom: 0;
        width: 100%;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
        height: fit-content;
        right: 0;
    }

    .burger a {
        width: fit-content;
        margin-right: 0;
    }

    .burger a:not(:last-child) {
        display: none;
    }

    .burger.responsive {
        display: flex;
        flex-direction: column;
        bottom: 0;
        position: absolute;
        align-items: flex-end;
    }

    .burger.responsive a {
        display: flex;
        flex-direction: column;
        background-color: #D9D9D9;
        border: none;
        width: 100px;
        text-align: right;
        padding: 10px;
        height: fit-content;
        transition: 0.3s;
        color: #00223D;
    }

    .base {
        background-image: url(/assets/img/base/phoneFond.png);
    }
}