
.dl-main-menu{
    padding: 3em;
    width: 30vw;
    height: 100vh;
    transform: translateX(-100%);
    display: block;
    position: fixed;
    background-color: var(--main-bg-color);
    z-index: 90;
    left: 0;
    overflow: hidden;
}
.dl-main-menu  .logo{
    max-width: 340px;
    height: 30%;
    display: flex;
    align-items: flex-start;
}
.dl-logo-1{
    width: 34%;
}
.dl-logo-2{
    width: 50%;
    margin-left: 22px;
}
.dl-navigation{
    height: 50%;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    opacity: 1;
}
.dl-nav-bar{
    list-style: none;
    height: 70%;
}
.dl-nav-bar li{
    margin-bottom: 1em;
}
.dl-nav-bar a{
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    color: var(--main-text-color);
    font-size: var(--font-title-menus);
    font-weight: 400;
    font-style: normal;
    transform: skewX(0deg);
    transition: all 0.3s ease-in-out;
}
.dl-nav-bar a:hover{
    color: var(--main-text-color-hover);
    font-weight: 600;
    margin-left: .3em;
    transform: skewX(-12deg);
}
.ml-list-vertical{
    list-style: none;
    display: block;
}
.ml-list-vertical a{
    text-decoration: none;
    text-transform: lowercase;
    color: black;
    font-size: var(--font-footer-menus);
    transition: all 0.3s ease-in-out;
}
.ml-list-vertical a:hover{
    color: var(--main-link-color);
}
.ml-list-horizontal{
    list-style: none;
    display: flex;
    justify-content: space-between;
}
.dl-footer-menu{
    width: 100%;
    max-width: 320px;
    height: 20%;
    padding-left: 0em;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
}
.dl-footer-menu {
    height: 20%;

}
.dl-footer-menu a{
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-size: var(--font-footer-menus);
}



@media only screen and (max-width: 600px) {

    img{
        width: 100%;
    }
    .dl-main-menu{
        height: 84px;
        width: 84px;
        top: 0;
        padding: 0.6em;
        overflow: hidden;
    }
    .dl-footer-menu  .ml-list-horizontal{
        display: none;
        opacity: 0;
    }
    .dl-main-menu  .dl-navigation{
        display: none;
        opacity: 0;
    }
    .dl-main-menu  .logo{
        display: flex;
                width: 100%;
                height: 100%;
                justify-content: center;
                align-items: center;
    }
    .dl-main-menu  .dl-logo-1 {
        width: 64px;
    }
    .dl-main-menu  .dl-logo-2{
        display: none;
    }
    .logo a{
        display: block;
    }

}
