:root {
    --gap: 20px;
}

header {
    padding: var(--gap) calc(var(--gap) * 5/2);
    justify-content: space-between;
    background: transparent;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    position: absolute;
    display: flex;
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}

header > .header_mobile__icon {
    display: var(--mobile-display);
    cursor: pointer;
}

@media only screen and (max-width: 1240px) {
    :root {
        --gap: 15px;
    }
}

@media only screen and (max-width: 1024px) {
    :root {
        --gap: 10px;
    }
}

@media only screen and (max-width: 760px) {
    :root {
        --gap: 15px;
    }

    header {
        padding: calc(var(--gap) * 5 / 3) var(--gap) ;
        justify-content: end;
    }

    header > a.hover_text {
        display: none;
    }
}
