header {
    width: 100%;
    
    padding: var(--space-xxxxl) calc(2 * var(--space-xxxxl)) 0 calc(2 * var(--space-xxxxl));

    position: absolute;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-wrapper {
    width: 122px;
    height: 60px;
}

.header-logo {
    height: 100%;
}

.header-links {
    display: flex;
    align-items: center;
    gap: var(--space-xxxl);

    position: relative;
}

.header-links > .c-link {
    color: var(--color-03);
}

.header-placeholder {
    margin-top: 111px;
}

@media only screen and (max-width: 800px) {
    header {
        padding: var(--space-xxxxl) var(--space-xxxxl) 0 var(--space-xxxxl);
    }

    .header-logo-wrapper {
        height: 45px;
    }
}

@media only screen and (max-width: 800px) {
    .header-links > .c-link {
        display: none;
    }
}