header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 40px 80px 0 80px;
}

.header-trademark {
    height: 80px;
}

.header-trademark img {
    height: 100%;
}

.header-navigation {
    display: flex;
    align-items: center;
}

.text-link {
    color: var(--textColor);

    font-size: 16px;

    margin-right: 20px;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.text-link:hover {
    color: var(--primaryColor);
}

.lang-option {
    height: 20px;

    border-radius: 5px;

    display: flex;

    margin-right: 20px;

    overflow: hidden;
}

.lang-option > img {
    height: 100%;

    object-fit: fill;
}

.contact-link {
    border-radius: 5px;

    color: #F1F6F7;
    background: var(--primaryColor);

    font-size: 16px;

    padding: 10px 20px;
}

@media only screen and (max-width: 800px) {
    header {
        padding: 40px;
    }

    .text-link {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    header {
        padding: 20px;
    }
}