.header {
    background-color: #1e21269c;
    color: #fff;
    padding: 2.75em 6.25em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 10000;
}

.header__logo img {
    max-width: 8.75em;
    height: 4em;
}

.header__language-switcher {
    display: flex;
    padding: 20px 0;
    gap: 20px;
}

.header__language-switcher__link {
    font-size: 0.8em;
    color: white;
    letter-spacing: 0.1em;
    text-decoration: none;
    font-weight: 200;
    transition: all 0.3s ease-in-out;
}

.header__language-switcher__link.active {
    font-weight: 700;
}

.header__language-switcher__link:hover {
    transform: scale(1.1);
}

.header__button {
    font-size: 12px !important;
    margin: auto;
    gap: 4px !important;

    .double-arr-right {
        width: 0px;
        height: 0;
    }
}

.header__button:hover .double-arr-right {
    display: block;
    height: 10px;
    width: 10px;
    rotate: 90deg;
}

.header__button {
    padding: 8px 12px !important;
}

@media (max-width: 1280px) {

    .header {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header {
        max-height: 10em;
        padding: 1em !important;
        justify-content: space-between;
        gap: 2em;
        width: 100vw;
    }

    .header__logo img {
        max-width: 6em;
    }

    .header__language-switcher {
        gap: 10px;
    }

    .header__language-switcher__link {
        font-size: 0.6em;
    }
}