.menu-list *{
    outline: none;
}

.menu{
    height: 80px;
    background-color: rgb(218,218,218);
    z-index: 1000;
    height: 100%;
    width: 23%;
    transition: 0.3s;
    
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    background-color: rgba(0,0,0,0.3);
}

    .menu.open-menu{
        background-color: rgba(0,0,0,0.0);
    }

.menu-content{
    padding: 0px 60px;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu{
    width: 230px;
    height: 80px;
    box-sizing: border-box;
    background-image: url(../img/logo_white.svg);
    background-position: 0px center;
    background-repeat: no-repeat;
    background-size: 80%;
    position: relative;
    z-index: 3000;
}

.menu-button{
    width: 50px;
    height: 50px;
    
    background-image: url(../img/icon_menu_white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    cursor: pointer;
    z-index: 1500;
}
    
    .menu-bar{
        position: absolute;
        display: flex;
        z-index: 100;
        top: 0px;
        width: 100%;
        height: 100vh;
        right: 0px;
        overflow: hidden;
        visibility: hidden;
    }
    
    .menu-bar.open{
        z-index: 2000;
        visibility:visible;
    }
    
    .menu-bar.open .menu-list{
        right: 0%;
    }
    
    .menu-bar.open .menu-blur{
        width: 50%;
    }
    
    .menu-list-close{
        position: absolute;
        top: 15px;
        right: 60px;
        width: 60px;
        height: 60px;
        cursor: pointer;
        border-radius: 50%;
        background-color: #1A1A1A;
        background-image: url(../img/icon_close_white.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 20%;
        opacity: 1;
        transition: opacity 0.3s;
    }
    
    .menu-list-close:hover{
        opacity: 0.8;
    }
    
    .menu-blur{
        opacity: 0;
        width: 0%;
        height: 100%;
        transition: opacity 0.3s;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
        .menu-blur.open{
            opacity: 1;
        }

    .menu-list{
        position: absolute;
        padding: 120px 60px;
        height: 100%;
        width: 50%;
        box-sizing: border-box;
        background-color: #FFF;
        right: -100%;
        transition: right 0.3s;
    }

.items-menu{
/*    position: relative;*/
    box-sizing: border-box;
    transition: 0.3s;
}

.items-menu:hover .text-link-menu{

}

.text-link-menu{
    font-weight: 500;
/*    text-transform: uppercase;*/
    font-size: 31px;
    
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    
    transition: 0.2s;
}

.text-link-menu a{
    color: #969499;
    transition: color 0.3s;
}

.text-link-menu a.hover{
    color: #333;
}

.menu.fixed-menu{
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0px;
}

.fixed-menu + section{
    margin-top: 80px;
}

.link-list-items-menu{
    width: 100%;
    padding: 4px 0px;
    z-index: 1000;
    overflow: hidden; 
    padding: 0px;
    transition: height 0.3s, padding 0.3s;
    margin-bottom: 3px;
    
    position: absolute;
    top: 120px;
    right: 0px;
    left: 50%;
    min-height: 100%;
    display: none;
}

.link-list-items-menu.show{
    display: block;
}

.link-list-items-menu a{
    display: block;
    font-size: 18px;
    color: #333;
    font-weight: 500;
/*    padding-left: 15px;*/
    padding: 2px 0px;
    margin-bottom: 5px;
    color: #000;
    transition: 0.1s;
}

.link-list-items-menu a.gray{
    color: #747779;
}

.link-list-items-menu a:before{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/icon_arrow.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 6px;
    position: relative;
    top: 2px;
    opacity: 0.8;
}

.link-list-items-menu a.gray:before{
    opacity: 1;
}

.mobile-menu{
    position: absolute;
    background-size: 60%;
    width: 50px;
    height: 50px;
    top: 13px;
    right: 5%;
    right: 20px;
    cursor: pointer;
    display: none;
    
    -webkit-transition: 0.3s;
     -moz-transition: 0.3s;
     -o-transition: 0.3s;
     transition: 0.3s;
}

#icon_mobile_menu{
    zoom: 80%;
    transform: scale(0.5);
}

rect{
    transform-origin: 50% 50%;
}

/*.list-link-menu:hover ~.link-list-items-menu{
    display: block;
}

.link-list-items-menu:hover{
    display: block;
}*/

.lang-panel{
    position: absolute;
    bottom: 25px;
    font-weight: bold;
}

.lang-panel a {
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
    transition: 0.2s;
    opacity: 0.5;
    display: inline-block;
}

.lang-panel a:hover{
    opacity: 1;
}

.lang-panel a:hover::after{
    opacity: 0.5;
}

.lang-panel a:after {
    content: "|";
    margin-left: 10px;
    color: rgb(70,70,70) !important;
}

.lang-panel a:last-child:after{
    content: "";
}

.mobile-open{
    height: 100% !important;
}

.mobile-open .menu-list{
    text-align: center;
}

.mobile-open .link-list-items-menu{
    height: auto !important;
}

.mobile-open .items-menu{
    padding: 5px 7%;
    padding-left: 10px;
}

.mobile-open .text-link-menu{
    padding-bottom: 4px;
}

@media only screen and (max-width: 1600px){
    .logo-menu{
        width: 240px;
    }
}

@media only screen and (max-width: 1350px){
    .menu-content{
        padding: 23px 30px;
    }
}

@media only screen and (max-width: 1200px){
    .menu{
        width: 275px;
    }
}

@media only screen and (max-width: 950px){
    .menu{
        width: 220px;
    }
}

@media only screen and (max-width: 768px){
    .menu{
        height: 75px;
        width: 100%;
        top: 0px;
        
        background-color: rgba(240,240,240,0.5);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        backdrop-filter: saturate(180%) blur(20px);
    }
    
    .logo-menu{
        width: 220px;
        height: 50px;
        background-position: 0px center;
        margin-top: 0px;
        background-size: 65%;
        margin-bottom: 40px;
        display: inline-block;
    }
    
    .menu-content{
        padding: 12px 25px;
        z-index: 900;
    }
    
    .lang-panel{
/*        display: none;*/
        position: static;
        text-align: right;
    }
    
        .lang-panel a{
            margin-right: 0px;
            margin-left: 10px;
            opacity: 1;
        }
    
    .menu-content .menu-list{
        text-align: right;
    }
    
    .menu-content .items-menu{
        padding-right: 10px;
    }
    
    .items-menu{
        float: none;
        display: block;
        margin-left: 0px;
        
        height: auto;
        padding: 15px 7%;
    }
    
    .text-link-menu{
        cursor: pointer;
    }
    
    .line-text-menu{
        display: none;
    }
    
    .fixed-menu + section{
        margin-top: 80px;
    }
    
    .mobile-menu{
        display: block;
    }
    
    .link-list-items-menu{
        display: block;
        position: static;
        width: 100%;
        margin-top: 10px;   
    }
    
    .link-list-items-menu a:last-of-type{
        padding-bottom: 0px;
    }
    
    .list-link-menu:after{
        content: "";
        display: none;
    }
    
    .items-menu:hover .text-link-menu{
        -webkit-transform: translate(0px, 0px) scale(1);
        -moz-transform: translate(0px, 0px) scale(1);
        -o-transform: translate(0px, 0px) scale(1);
        transform: translate(0px, 0px) scale(1);
    }
    
    .link-list-items-menu a:hover {
        -webkit-transform: translate(0px, 0px) scale(1);
        -moz-transform: translate(0px, 0px) scale(1);
        -o-transform: translate(0px, 0px) scale(1);
        transform: translate(0px, 0px) scale(1);
    }
}