header {
    position: absolute;
    z-index: 500;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 114px !important;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
}
header ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: right;
    gap: 24px;
}
header a {
    text-transform: capitalize;
    font-weight: 300;
}
@media (max-width: 768px) {
    header {
        height: 64px !important;
        /* position: absolute; */
    }
}
