#burger {
    position: fixed;
    right: 0;
    top: 0;
    color: white;
    background: rgba(14,50,77,0.8);
    font-size: 32px;
    padding: 16px 16px 32px 32px;
    border-radius: 0% 0% 0% 100%;
    transition: 1s;
    cursor: pointer;
    z-index: 99999;
}

#quit {
    position: fixed;
    top: 0;
    color: white;
    font-size: 32px;
    padding: 16px;
    display: none;
    cursor: pointer;
    transition: 4s;
    transition-delay: 1s;
    z-index: 999999;
}

#links {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 60% 0;
    transition: 1s;
    z-index: 99999;
    position: fixed;
    overflow: hidden;
    font-family: 'Cinzel', serif;
}

.sub ul {
    flex-direction: column;
    position: relative;
    font-family: 'Cinzel', serif;
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.sub ul li {
    text-align: center;
    float: none;
}

.sub a {
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 1.5em;
    font-family: 'Cinzel', serif;
    z-index: 10;
    margin-bottom: 10px;
    float: none;
    text-transform: capitalize;
}

.sub a:hover {
    color: white;
}

#links .linksa {
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 2em;
    font-family: 'Cinzel', serif;
    z-index: 10;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 991px) {

    #links {
        padding: 35% 0;
    }

    .m-lang{
        float: none;
        position: relative;
        width: 130px;
        margin: 25px auto !important;
    }

    .m-lang a{
        color: rgba(255,255,255,0.8);
        border-left: 1px solid white;
        padding: 5px 15px;
        transition: all .2s ease-in-out;
        font-size: 16px;
    }

    .m-lang a:hover{
        color: rgba(255,255,255,1);
        transition: all .2s ease-in-out;
    }

    .m-lang a:first-child{
        border-left: none;
    }

    .m-social-media {
        float: none;
        position: relative;
        width: 200px;
        margin: 0 auto !important;
    }

    .m-social-media .item {
        font-size: 20px;
        color: white;
        margin-left: 15px;
        border: 1px solid white;
        width: 30px;
        height: 30px;
        border-radius: 25px;
        float: left;
        text-align: center;
        padding-top: 0;
        opacity: 0.7;
        margin-top: 5px;
    }

    .m-social-media a i{
        font-size: 15px;
        color: white;
        padding: 5px;
    }

    .m-social-media .item:hover{
        transition: all .2s ease;
        color: white;
        opacity: 1;
    }

}