header{
    padding-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: auto;
    width: 100%;
    background-color: black;
    color: #fff;
    padding-inline: 32px;
    box-sizing: border-box;
    .basicRow{
        align-items: center;
        gap: 36px;
    }
}

#searchBtn{
    position: absolute;
    right: 10px;
    height: 100%;
    width: 30px;
    color: #fff;
    background: none;
    border: none;
}

#searchBtn:hover{
    cursor: pointer;
    color: var(--veige_semi);
}

#searchMain::placeholder{
    color: rgb(177, 177, 177);
}

nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    .basicRow{
        a{
            color: #fff;
            text-decoration: none;
        }
    }
}

#carBtn{
    background-color: black;
    color: #fff;
    padding: 4px;
    padding-inline: 16px;
    border: 1px solid #fff;
}

#carBtn:hover{
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

#navLogo{
    height: 70px;
    width: 162px;
    background-image: url(../Images/LAZO\ LOGO.svg);
    background-position: center;
    background-size: cover;
    background-color: #F1EBE2;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
}

#contLogo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: #F1EBE2;
    height: auto;
    width: 100%;
    padding: 1rem 0;
}

#selection{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 1rem 0;
    width: 100%;
    height: auto;
    color: #fff;
    background-color: black;
    box-sizing: border-box;
}

.navLink{
    position: relative;
    color: #fff;
    text-decoration: none;
    i{
        font-size: 12px;
        margin-left: 8px;
    }
}

.navLink:hover{
    cursor: pointer;
}

.navLink::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.navLink:hover::after{
    width: 101%;
}

#contMobileNav, #mobileNav{
    width: 100%;
}

#burgerMenu{
    display: none;
    color: #fff;
    background-color: black;
    font-size: 1.2rem;
    padding: 8px 9px;
    border: 1px solid gray;
    border-radius: 5px;
}

#burgerMenu:hover{
    background-color: #fff;
    color: black;
    cursor: pointer;
}

.contSearchNav{
    position: relative;
    width: 30%;
    overflow: hidden;
    padding-right: 8px;
}

#searchMain{
    color: #fff;
    text-indent: 12px;
    background-color: black;
    border: 1px solid gray;
    height: 70%;
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 5px;
    letter-spacing: 1px;
    outline: none;
}

#searchTextNav{
    position: absolute;
    font-size: 1rem;
    top: 7px;
    left: 62px;
    letter-spacing: 1px;
    color: #aaaaaa;
}

@media(max-width:808px){

    #navSpace{
        height: 150px;
    }

    #selection{
        flex-direction: column;
        a{
            width: 90%;
        }
    }

    #searchMain{
        width: auto;
        flex: 1;
        margin-right: 32px;
    }

    nav{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 80;
        width: 100%;
        header{
            padding-top: 16px;
            padding-bottom: 16px;
            padding-inline: 16px;
            .basicRow{
                display: none;
            }
        }
    }

    #contMobileNav{
        position: fixed;
        display: none;
        opacity: 0;
        flex-direction: row;
        align-items: end;
        height: 100vh;
        width: 100%;
        transition: all 0.2s ease-in-out;
        background-color: rgba(0, 0, 0, 0.4);
        .filler{
            height: 100%;
            width: auto;
            flex: 1;
        }
    }

    #mobileNav{
        height: 100%;
        width: 70%;
        background-color: black;
    }

    #burgerMenu{
        display: flex;
    }

    .contSearchNav{
        width: 80%;
    }

    #searchMain{
        width: 100%;
    }

}