* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    font-size: 18px;
    background-color: #22292B;
    color: white;
}

#wrapper {
    max-width: 1440px;
}


/* NAVBAR & FOOTER*/

#menu__bars {
    display: none;
}

nav {
    background-color: #567A86;
    max-height: 60px;
    position: sticky;
    top: 0;
}

#menu__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.menu__list__items {
    list-style-type: none;
    margin: 1em;
    font-family: "Roboto";
    text-align: center;
    text-justify: center;
}

.menu__list__items a {
    text-decoration: none;
    color: #E6E6E6;
}

.menu__list__items a:hover {
    color: black;
    font-size: 1em;
    border-bottom: 1px solid black;

}

#menu__logo img, #menu__logo_menu img {
    max-height: 50px;
    max-width: 200px;
    position: relative;
    bottom: 12px;
}

footer {
    display: flex;
    font-size: 12pt;
    flex-direction: column;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    justify-content: space-between;
    background-color: #567A86;
    padding-top: 32px;
    padding-bottom: 31px;
}

#footer__container {
    text-align: center;
}

.footer__txt {
    padding: 5px;
}

/* NAVBAR & FOOTER END*/


@media only screen and (max-width: 1024px) {
    #menu__bars {
        display: unset;
        position: fixed;
        right: 0;
        top: 0;
        margin-right: 1em;
        margin-top: .5em;
        font-size: 25px;
        color: rgb(255, 255, 255);
        z-index: 10000;
    }

    #menu__list {
        grid-template-columns: unset;
        grid-template-rows: repeat(10, auto);
        text-align: center;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #567a86;
        z-index: 9999;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .menu__list__items {
        font-size: 18pt;
        padding: 1em;
    }

    #menu__logo img {
        position: unset;
        max-height: 50px;
    }

    #menu__logo {
        text-align: center;
    }

    .menu {
        max-height: unset;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999;
    }

    /*ANIMATION*/
    #menu__bars i {
        transition: transform 0.2s ease;
    }

    #menu__bars i.fa-xmark {
        transform: rotate(90deg);
        opacity: 1;
        animation: fade .5s linear;
    }

    
    @keyframes fade {
        0% {
            opacity: 0
        }
        
        50% {
            opacity: 1
        }
    }
    /*ANIMATION END*/
}

@media only screen and (max-width: 515px) {
    .footer__txt {
        font-size: 9pt;
    }
}