.menu{
    position: relative;
    height: 80px;
    background-color: rgb(218,218,218);
    z-index: 1000;
    position: fixed;
    height: 100%;
    width: 23%;
    overflow: hidden;
    transition: 0.3s;
}

.menu-content{
    padding: 23px 60px;
    position: relative;
    box-sizing: border-box;
    height: 100%;
}

.logo-menu{
    width: 310px;
    height: 80px;
    box-sizing: border-box;
    background-image: url(../img/logo.svg);
    background-position: 0px center;
    background-repeat: no-repeat;
    background-size: 75%;
    margin-top: 20px;
    margin-bottom: 70px;
}

.menu-list{
}

.items-menu{
    position: relative;
    height: 100%;
    box-sizing: border-box;
    transition: 0.3s;
}

.items-menu:hover .text-link-menu a{
/*    color: rgb(36,149,68);*/
}

.items-menu:hover .text-link-menu{
    -webkit-transform: translate(9px, 0px) scale(1.08);
    -moz-transform: translate(9px, 0px) scale(1.08);
    -o-transform: translate(9px, 0px) scale(1.08);
    transform: translate(9px, 0px) scale(1.08);
}

.text-link-menu{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    padding-top: 4px;
    padding-bottom: 10px;
    cursor: pointer;
    
    transition: 0.2s;
}

    .text-link-menu:hover{
    }

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

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

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

.link-list-items-menu{
/*    width: max-content;*/
    width: 100%;
    padding: 4px 0px;
    z-index: 1000;
    overflow: hidden; 
    
    padding: 0px;
    transition: height 0.3s, padding 0.3s;
    margin-bottom: 3px;
}

.link-list-items-menu a{
    display: block;
    font-size: 15px;
    color: #fff;
    padding-left: 15px;
    margin-bottom: 5px;
    color: #000;
    transition: 0.1s;
}

.link-list-items-menu a:hover{
/*    opacity: 0.9;
    color: rgb(36,149,68);*/
    
    -webkit-transform: translate(9px, 0px) scale(1.08);
    -moz-transform: translate(9px, 0px) scale(1.08);
    -o-transform: translate(9px, 0px) scale(1.08);
    transform: translate(9px, 0px) scale(1.08);
}

.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:after{
    content: "";
    display: inline-block;
    margin-left: 6px;
    width: 12px;
    height: 12px;
    background-image: url(../img/down_black.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    transition: 0.3s;
    top: 0px;
}

.list-link-menu:hover:after{
    transform: rotate(90deg);
}

.list-link-menu:hover ~.link-list-items-menu{
    height: var(--data-height) !important;
}

.link-list-items-menu:hover{
    height: var(--data-height) !important;
}

.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;
    }
    
    .logo-menu {
        width: 190px;
    }
}

@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);
    }
}