header {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

header .container {
    padding: 1rem 4rem;
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    position: relative;
    z-index: 3;
    transition: 0.3s all;
    height: 8rem;
}

ul.menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 30px;
}
 ul.menu li a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 0;
    font-size: 0.8rem;
    position: relative;
    line-height: 150%;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: 0.2s all;
    color: white;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}
ul.menu li a:hover {
    border-bottom: 1px solid white;
}
