/* 
    Table of content
    1. MOBILE MENU
        1.1 Header
        1.2 Body
*/

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

/* 1.1 Header */
.mobile-menu .header .container {
    padding: 4rem 0 0;
    display: flex;
    justify-content: space-between;
}

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

.mobile-menu .header .logo-wrapper img {
    width: auto;
    height: 5.8rem;
}

.mobile-menu .header .close {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-beige);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu .header .close img {
    width: 1.6rem;
    height: 1.6rem;
    object-fit: contain;
    object-position: center;
}

/* 1.2 Body */
.mobile-menu .body {
    margin-top: 4rem;
}

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

.mobile-menu .body ul.menu li {
    margin-bottom: .5rem;
}

.mobile-menu .body ul.menu a {
    font-family: 'PP Editorial New';
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
}

.mobile-menu .btn {
    margin-top: 1rem;
}

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