header{
    /* width: 100vw; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
    padding: 1rem;
    background-color: #C94E1A;

    position: relative;

    z-index: 5;
}

header .imgLogo, header a[href='index.html']{
    width: 70%;
    max-width: 300px;
}

header a[href='index.html']{
    img{
        width: 100%;
        max-width: 100%;
    }
}

header .topHeader{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    grid-column: 1 / 3;

    background-color: #000000;
    color: #ffffff;
    padding: .5rem 0;
    margin: -1rem 0 1rem;

    i{
        margin-right: .2rem;
    }
}

header .menuOptions{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    background-color: #C94E1A;
    height: 100vh;
    width: 70vw;
    padding: 0 1rem;
    box-shadow: -2px 0px 7px 0px rgba(0,0,0,0.53);

    transition: all .5s ease-in-out;

}

header .menuOptions.open{
    visibility: visible;
    opacity: 1;
}

.menuOptions li{
    padding: 1rem;
    color: #ffffff;
    text-wrap: nowrap;
    text-transform: uppercase;
    border-bottom: 1px solid #000000;
    font-weight: 800;
}

.menuOptions li a{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header .menuMobile{
    font-size: 2rem;
}

@media (min-width: 1024px) {
    
    header{
        justify-content: center !important;
        gap: 5vw;
    }

    header .menuOptions{
        visibility: visible;
        opacity: 1;
        transition: none;
        position: static;
        z-index: 0;
        height: auto;
        width: auto;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;

        gap: 1rem;
    }

    .menuOptions li{
        border: none;
        color: #000000;
        padding: 1rem;
        font-size: 1.1rem;
        font-weight: 600;

        &:hover{
            color: #ffffff;
        }
    }

    .menuOptions li a i{
        display: none;
    }

    header .menuMobile{
        display: none;
    }
}