.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 var(--global-padding);
    margin-top: 100px;
    position: relative;
    z-index: 5;
}
    .header_narrow{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: var(--content-width-normal);
        border-radius: 10px 10px 0 0;
        background: var(--color-2);
        padding: 40px 50px;
        position: relative;
    }
        .header_logo{
            width: auto;
            max-height: 100px;
        }
        .header_locales{
            display: flex;
            flex-direction: row;
            gap: 10px;
            position: absolute;
            top: 20px;
            right: 20px;
        }
            .header_locale{
            }
                .header_locale img{
                    display: block;
                    width: auto;
                    height: 17px;
                }

@media (max-width: 1024px) {

    .header{
        margin-top: var(--global-padding);
    }

}

@media (max-width: 768px) {

    .header_narrow{
        border-radius: 0;
        padding-left: 30px;
        padding-right: 30px;
    }

}