/* FOR MOBILE */ 

.mobile-nav, .mobile-menu {
    display: none;
}

.mobile-nav i {
    cursor: pointer;
    font-size: 32px;
    padding: 2px calc(var(--main_p) / 2);
}

.open .box-menu {
    display: none;
    visibility: hidden;
}

.open .box-x {
    display: flex;
    visibility: visible;
}

.open .mobile-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    position: fixed; 
    top: var(--main_p); 
    width: auto;
    height: 100%;
    right: 0;
    background-color: #FFF;
    z-index: 10;   
    /* transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transition: .3s;  */
   
}

.open .mobile-menu ul li {
    list-style: none;
    padding: 20px 40px;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: solid 1px #1c1b1f73;
}

.open .mobile-menu ul li a {
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.open .mobile-menu ul li a:hover {
    color: #f0860e;
}

@media only screen and (max-width: 600px) {
    .nav {
        position: fixed;
        top: 0;
        width: 100%; 
        z-index: 20;
    }
    
    .nav .logo {
        padding: 0 calc(var(--main_p) / 2);
    }

    .nav .nav-items{
        display: none;
        visibility: hidden;
    }

    .mobile-nav { 
        height: var(--main_p);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .landing-body {
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        background: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,.5));
    }

    .landing-header {
        width: 100%; 
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .landing-header-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
        text-align: center;
        padding: 20vw 10px;
    }

    .landing-header h1{ 
        /* color: #FFF; */
        font-size: 6rem;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);;
    }

    .landing-header p{ 
        opacity: 100%;
    }

    .landing-img {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        filter: blur(.5px);
    }
    .landing-img {
        object-position: center;
    }
}
 