



.menuMobile{
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    width: 43%;
    height: 100%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1.1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.logo {
    z-index: 101 !important;
}

.menuMobile_backdrop{
    position: fixed;
    z-index: 11;
    top:0;
    right:0;
    height: 100%;
    width: 0%;
    background: #000000e6;
    opacity: 0;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.ShowUpMenu{
    opacity: 1;
    width: 100%;
}

.menuMobile.Visibl{
    right: -10%;
}

.menuMobile.Visibl + .headerScroll{
    background: none;
    top:0 !important;
}

.Visibl + .scroll-up{
    background: none;
    top:0 !important;
}

.menuMobile.Visibl + .headerScroll .logo_murano.Neg{
    display: none !important;
}

.menuMobile.Visibl + .headerScroll .logo_murano.Pos{
    display: block !important;
}

.menuMobile > div{
    padding:30px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.menuMobile > div a{
    text-decoration: none;
    color: #000;
    margin: 4px 0px;
    font-weight: 100;
    letter-spacing: 0px !important;
} 

.menuMobile .socials{
    position: absolute;
    z-index: 11;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    bottom: 0;
    list-style: none;
    flex-direction: row;
    padding: 30px;
    display: none;
}

.menuMobile .socials li{
    margin-left:10px
}
.menuMobile .socials li a{
    display: block;
}
.menuMobile .socials li img{
    width: 50px;
    opacity: 1;
}

.menuMobile > div a.active{
    color: #000000;
    text-decoration: underline;
}

.menuMobile > div a {
    opacity: 0;
}
/* Animation for menu items */
.menuMobile.Visibl > div a {
    opacity: 0;
    transform: translateX(60px);
    animation: fadeInLeft 0.33s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

/* Delay for sequential animation */
.menuMobile.Visibl > div a:nth-child(1) {
    animation-delay: 1s;
}

.menuMobile.Visibl > div a:nth-child(2) {
    animation-delay: 1.1s;
}

.menuMobile.Visibl > div a:nth-child(3) {
    animation-delay: 1.2s;
}

.menuMobile.Visibl > div a:nth-child(4) {
    animation-delay: 1.3s;
}

.menuMobile.Visibl > div a:nth-child(5) {
    animation-delay: 1.4s;
}
.menuMobile.Visibl > div a:nth-child(6) {
    animation-delay: 1.5s;
}
.menuMobile.Visibl > div a:nth-child(7) {
    animation-delay: 1.6s;
}
.menuMobile.Visibl > div a:nth-child(8) {
    animation-delay: 1.7s;
}
.menuMobile.Visibl > div a:nth-child(9) {
    animation-delay: 1.8s;
}




.menuMobile.hiding > div a {
    animation: fadeOutLeft 0.5s ease-in-out forwards;
    opacity:1;
    transform: translateX(0px);
}

/* Reverse delays to make items disappear in reverse order */

.menuMobile.hiding > div a:nth-child(1) {
    animation-delay: 0.09s;
}

.menuMobile.hiding > div a:nth-child(2) {
    animation-delay: 0.08s;
}

.menuMobile.hiding > div a:nth-child(3) {
    animation-delay: 0.07s;
}


.menuMobile.hiding > div a:nth-child(4) {
    animation-delay: 0.06s;
}

.menuMobile.hiding > div a:nth-child(5) {
    animation-delay: 0.05s;
}

.menuMobile.hiding > div a:nth-child(6) {
    animation-delay: 0.04s;
}

.menuMobile.hiding > div a:nth-child(7) {
    animation-delay: 0.03s;
}

.menuMobile.hiding > div a:nth-child(8) {
    animation-delay: 0.02s;
}

.menuMobile.hiding > div a:nth-child(9) {
    animation-delay: 0.01s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(60px);
    }
}

.closeBtn{
    position: fixed;
    width: 24px;
    height: auto;
    top: 50px;
    display: block;
    right: -55px;
    cursor: pointer;
    z-index: 101;
    filter: invert(1);
    transition: all 0.9s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hidBt{
    right:-55px !important;
}

.closeBtn_show{
    right: 46px;
}

.menu_btn_black,
.menu_btn_white{
    position: fixed;
    width: 38px;
    height: auto;
    top:50px;
    right:50px;
    cursor: pointer;
    display:none;
    z-index: 11;
}

.menu_btn_black{
    display:block;
}

@media (max-width: 768px) {
    body .menuMobile > div a {
        text-decoration: none;
        color: #000;
        margin: 20px 0px;
        font-weight: 100;
        letter-spacing: 0px !important;
        font-size: 40px;
        font-size: 1.15em;
        line-height: normal;
    }
    body .menuMobile {
        width: 100% !important;
        right: 0;
        width: 0px !important;
    }
    body .menuMobile.Visibl{
        right: 0 !important;
        width: 95% !important;
    }
    body .menuMobile > div{
        padding: 0px 0vw !important;
        width: calc(100% - 6vw) !important;
    }

    body .menuMobile.Visibl > div{
        padding: 30px 6vw !important;
    }
}