header {
    position: absolute;
    width: 100%;
    z-index: 9;
    padding: 1rem 2.5rem;
}

header#header-alternativa .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-left-block {
    margin-right: auto;
}

.alt-logo {
    display: block;
    width: 10.25rem;
    height: 3rem;
    object-fit: cover;
    background-image: url(../../img/components/header/Alt_logo.svg);
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: contain;
}

a.alt-logo h1.alt-logo-text {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.header-right-block {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 auto;
    gap: 1.25rem;
}

header .header-right-block ul {
    display: flex;
    text-decoration: none;
    list-style-type: none;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
    padding-inline-start: 0;
}

header .header-right-block li{
    text-align: center;
    font-family: 'Formular';
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    display: block;
    transition: 0.3s ease;
}

.header-mobile-icon {
    display: block;
    width: 100%;
    height: 3rem;
    object-fit: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: contain;
    margin-left: auto;
    display: none;
}

.header-mobile-icon[opened="0"] {
    background-image: url(../../img/components/header/menu-mobile.svg);
}

.header-mobile-icon[opened="1"] {
    background-image: url(../../img/components/header/close-menu-m.svg);
}

.header-right-block-option,
ul#menu-main_menu li,
header .header-right-block ul li a {
    text-align: center;
    font-size: 0.875rem;
    font-family: 'Formular';
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    list-style-type: none;
    align-self: center;
}

header .header-right-block-locale a,
header .header-right-block ul li a {
    text-decoration: none;
    color: var(--White, #FFF);
}

header .header-right-block ul li a:-webkit-any-link,
header .header-right-block-locale ul li a:-webkit-any-link {
    color: var(--White, #FFF);
    text-decoration: none;
}


.header-right-block-option a:hover,
header .header-right-block ul li a:hover {
    transition: 0.3s ease;
    opacity: 0.5;
}

.header-right-block-option:not(:last-child),
ul#menu-main_menu li:not(:last-child) {
    margin-right: 1.25rem;
}

.header-right-block-option:last-child {
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.header-right-block-option.header-right-block-locale ul {
    margin: 0;
}

/*Adaptive*/
@media (max-width: 1000px) {
    header {
        position: relative;
        padding: 1rem 0;
    }
}

@media (max-width: 600px) {

    header {
        margin-bottom: 6rem;
    }

    .header-right-block-option:last-child {
        margin-left: 0;
    }

    .header-right-block-option:not(:last-child),
    .header-right-block ul li:not(:last-child) {
        margin-right: 0;
    }

    .header-right-block-option,
    .header-right-block ul li,
    header .header-right-block ul li a {
        font-size: 1rem;
    }

    .header-right-block-option.header-right-block-locale {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-left: 0;
        padding-left: 0;
        padding-top: 0.25rem;
        width: 100%;
    }

    header .header-right-block ul li a,
    header .header-right-block ul li a {
        margin-right: 0;
    }

    header .header-right-block ul li:last-child,
    header .header-right-block ul li:last-child {
        border-right: none;
    }

}