.menu-img {
    position: fixed;
    right: 35px;
    top: 90px;
    width: 125px;
    height: 125px;
    background: #fff;
    z-index: 999;
    border-radius: 50%;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    cursor: pointer;
    border: 3px solid #000;
}

.menu-img .menu-open-btn {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-img img {
    width: 125px;
    height: 125px;
}

#top-bar #contact{
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

@media (max-width: 1240px) {
    .menu-img {
        position: fixed;
        right: 0;
        top: 0;
        width: 100px;
        height: 61px;
        background: #fff;
        z-index: 999;
        border-radius: 0;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
        cursor: pointer;
        text-align: center;
        border: none;

    }

    .menu-img img {
        width: 60px;
        height: 60px;
    }

    #top-bar #contact{
        right: -100vh;
    }
}

.menu-open{
    right: -100vw;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: fixed;
    top: 0;
    background: #000;
    z-index: 9999;
    width: 85%;
    height: 100vh;
    -webkit-clip-path: ellipse(93% 125% at 95% 20%);
    clip-path: ellipse(93% 125% at 95% 20%);
}

.menu-open.open {
    right: 0;
}



body.open .opacity {
    background: rgba(0,0,0,.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}


.menu-open.open .container {
    margin-top: 40px;
    max-width: 1140px;
}

li{
    list-style: none;
}

.menu-open  ul.menuLevel0{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu-open  ul.menuLevel0>li{
    width: 20%;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}




.menu-open  ul.menuLevel0>li>a{
    display: inline-block;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-position: center;
    background-size: cover;
}


.menu-open  ul.menuLevel0>li>a>span{
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 19.89px;
    text-transform: uppercase;
    display: block;
    padding-top: 120px;
}

.menu-open  ul.menuLevel0>li>hr{

    width: 0;
    margin: 0;
}

@media (min-width: 800px) {
    .menu-open  ul.menuLevel0>li>hr{

        width: 100px;
        height: 1px;
        margin: 10px auto 10px auto;

        border-block-color: white;
        display: block;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
}


.menu-open  ul.menuLevel0>li ul {
    padding-left: 0;
    margin-top: -5px;
}

.menu-open  ul.menuLevel0>li ul li {
    margin: 5px 0;
}

@media (min-width: 760px) {
    .menu-open  ul.menuLevel0>li ul li {
        margin: 0;
    }
}

.menu-open  ul.menuLevel0>li ul li a {
    display: inline-block;
    font-family: Roboto,sans-serif;
    font-size: 12px;
    line-height: 19px;
    color: #fff;
    text-align: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.menu-open .logo{
    display: none;
}

.menu-open .close{
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 760px) {
    .menu-open{
        width: 100%;
        clip-path: none;
    }

    .menu-open .close{
        display: flex;
        color: #fff;
        opacity: 1;
        border-radius: 50%;
        border: 1px solid white;
        width: 30px;
        height: 30px;
    }
    .menu-open .close > span{
        margin: 0 auto 0 auto;
    }

    .menu-open .logo{
        display: flex;
        margin-left: 30px;
        margin-bottom: 10px;
    }

    .menu-open .logo>img{
        margin: auto;
    }

    .menu-open.open .container {
        margin-top: 10px;
    }

    .menu-open ul.menuLevel0{
        margin: auto;
        max-width: 300px;
    }

    .menu-open ul.menuLevel0 > li:before, .menu-open ul.menuLevel0 > li:last-child:after{
        content: "";
        width: 100%;
        height: 1px;
        border-bottom: 1px solid #fff;
        display: inline-block;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    .menu-open ul.menuLevel0 > li ul:before{
        content: "";
        width: 30%;
        height: 1px;
        border-bottom: 1px solid #fff;
        display: inline-block;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    .menu-open ul.menuLevel0 > li:before{
        margin-bottom: 6px;
    }

    .menu-open ul.menuLevel0 > li:last-child:after{
        margin-top: 6px;
    }

    .menu-open ul.menuLevel0 > li {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
    }

    .menu-open ul.menuLevel0 > li > a{
        width: 50px;
        height: 50px;
        display: flex;
    }

    .menu-open ul.menuLevel0 > li > a > span{
        margin: auto;
        margin-left: 100px;
        width: 60%;
        display: flex;
        flex-direction: column;
        padding-top: 0;

    }

    .menu-open ul.menuLevel0 > li ul{
        display: none;
    }

}


