﻿
.menuSide {
    height: 200px;
    min-width: 100%;
    background: #0080ff00;
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 1rem;
    border-radius: 1rem;
}

.menu-expanded {
    max-width: 0px;
    opacity: 0;
    height: 100%;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease 0s;
    overflow: hidden;
    background: #0080ff;
    font-family: "Poppins", sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1rem;
}

    .menu-expanded ul {
        margin: 0;
        margin-left: 2.5rem;
        line-height: 2;
        list-style: none;
        font-size: 19px;
        margin-right: 2.5rem;
        text-align: center;
    }
    .menu-expanded ul a{
        text-decoration: none;
        color: white;
    }

/*a {
    text-decoration: none;
    color: #fff;
}*/

.hamburguer-menu {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 16px;
    position: absolute;
    margin: 0.5rem 0.4rem;
    cursor: pointer;
}

.line {
    
    display: block;
    width: 50px;
    background: #002385;
    height: 3px;
    margin: 5px 5px;
    transition: all 0.4s ease;
    z-index: 1;
}

.change .first-line {
    transform: rotate(45deg) translate(0px, 0px);
    width: 20px;
    height: 2px;
    background: white;
}

.change .second-line {
    transform: rotate(-45deg) translate(8px, -8px);
    width: 20px;
    height: 2px;
    background: white;
}
.change .three-line {
    display: none;
}

.change ~ .menu-expanded {
    max-width: 300px;
    padding: 0.5rem;
    margin: 0.1rem 0.1rem;
    opacity: 1;
}

@media (max-width: 400px) {
    .menu-expanded {
        width: 100%;
    }
}

@media all and (min-width: 320px) and (max-width: 991px){
    .hamburguer-menu{
        z-index: 99999;
    }
    .menu-expanded {
        z-index: 9999;
    }
    .line {
        background:white;
    }
}

