
header{
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 105px;
    justify-content: space-between;
    color: black;
    top: 0;
    z-index: 10;
    padding-left: 3%;
    padding-right: 3%;
}

nav{
    margin-right: 20px;
}



#menubtn{
    margin-right: 5px;
    padding: 5px;
    border: none;
    display: none;
}

ul a{
    display: block;
    padding: .5rem;
    font-size: 1.1em;
    text-decoration: none;
    color: black;
}

ul{
    display: flex;
    list-style-type: none;
    gap: .9rem;
}


@media screen and (max-width: 923px){

    #menubtn{
        display: flex;
        padding: .5em 1rem;
        background: none;
        cursor: pointer;
        padding-right: 0 !important;
    }

    ul{
        display: block;
        position: absolute;
        width: 100%;
        top: 100px;
        right: 0px;
        background-color: rgb(255, 255, 255);
        height: 0;
        z-index: 1000;
        transition: .6s;
        visibility: hidden;
        overflow-y: hidden;
        margin-right: 0;
        padding-left: 0 !important;
    }

    #nav.active ul{
        display: block;
        height: calc(100vh - 100px);
        visibility: visible;
        overflow-y: auto;
    }

    ul a{
        padding: 1rem 0;
        margin: 0 1rem;
        border-bottom: 2px solid rgba(0,0,0, .05);
        font-size: 1em;
        text-decoration: none;
        color: black;
    }

    #burguer{
        width: 20px;
        border-top: 2px solid;
    }

    #burguer::after, #burguer::before{
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        margin-top: 5px;
        transition: .6s;
        position: relative;

    }

    #nav.active #burguer{
        border-top-color: transparent;
    }

    #nav.active #burguer::before{
        transform: rotate(135deg);
    }

    #nav.active #burguer::after{
        transform: rotate(-135deg);
        top: -7px;
    }

    header img{
        padding: 0;
    }


}