/*--------------INICIA NAV DESK---------------*/




.logo-img-wrapper{
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#logo{width: 100%;}

#imagotipo{
    width: 100%;
    display: none;
}

.hamburger{
    display: none;
}


.yellow-menu {
    background: #ffc400;
    border-radius: 19px;
    padding: 2px 13px;
}



header{
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    z-index: 999;
    border-bottom: 1px solid #dadada;

}

.header-space{
    height: 41px;
}

.logo-burger{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

.menu-wrapper{
    display: flex;
    justify-content: flex-end;
    max-width: 1000px;
    margin-right:20px ;
}

.menu{
    list-style: none;
    position: relative;
    transition: 0.5s;
    box-sizing: border-box;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    font-size: .8em;
    cursor: pointer;
}


.menu:last-child{
    border-right: none;
}

.menu>a{
    text-decoration: none;
    color: black
}

.arrow-menu{
    width: 8px; 
    margin-bottom: 2px;
    transition: .2s;
}
.menu:hover>span>.arrow-menu{
    transform: rotate(180deg);
}

.submenu-wrapper{
    list-style: none;
    position: absolute;
    top:40px;
    left: 0;
    display: block;
    width: 200px;
    border-right: none;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    color: black;
    background: white;
    border-top:1px solid #dcdcdc;

}
.submenu>a{
    color: black;
}

.menu:hover>.submenu-wrapper{
    opacity: 1;
    visibility: visible;
}

.submenu>a{
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    transition: .2s;
}
.submenu>a:last-child{
    border-bottom: none;
}
.submenu>a:hover{
    background: #0722E1;
}
.submenu:hover>a{
    color: white;
}





@media only screen and (max-width: 780px) {

    

    header{
        width: 100%;
        background: white;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hamburger>img{
        align-self: center;
    }
    .ham{
        width: 20px;
    }
    .logo-burger{
        display: flex;
        justify-content: space-between;
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 0px;
    }

   

    .menu-wrapper{
        display: flex;
        background: white;
        justify-content: flex-start;
        max-width: 1000px;
        width: 100%;
        margin-right: 0;
        transform: translate(-100%, 45px);
        position: fixed;
        height: 100vh;
        border-top: 1px solid #cdcdcd;
        overflow-y: scroll;
        flex-direction: column;
        
    }
    
    .aparecer{
        display: flex;
        flex-direction: column;
        transform: translate(0%, 45px);
        width: 90%;

    }

    .menu{
        display: block;
        height: auto;
        padding: 10px;
    }


    .submenu-wrapper{
        width: 100%;
        list-style: none;
        background: #ededed;
        position: relative;
        top:0px;
        left: 0;
        border-right: none;
        transition: 0.5s;
        opacity: 1;
        visibility: visible;
        display: none;
    }


.yellow-menu {
    background: white;
    border-radius: 0;
    padding: 0;
}




}