/* 
    Table of content
    1. MOBILE MENU
*/

/* 1. MOBILE MENU */
.mobile-menu {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-green);
    display: none;
}

.mobile-menu .header .container {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.mobile-menu .logo-wrapper a {
    display: flex;
}

.mobile-menu .logo-wrapper img {
    height: 5.6rem;
}

.mobile-menu .close {
    justify-self: flex-end;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    cursor: pointer;
}

.mobile-menu .body {
    margin-top: 5rem;
}

.mobile-menu ul.menu {
    margin: 0;
    padding: 0;
    list-style-type: none;    
}

.mobile-menu ul.menu li:not(:first-child) {
    margin-top: .5rem;
}

.mobile-menu ul.menu a {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: .2rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.mobile-menu ul.menu a:hover {
    color: black;
}

.mobile-menu .socials {
    margin-top: 5rem;
}

.mobile-menu .socials a:hover {
    background-color: black;
    color: white;
}