.header {
    display: flex;
    padding-inline: 20px;
    color: white;
    background: #35003D url(/images/header-background-19a52b04afedc53edc15160353e0690f.svg) right+2vw center no-repeat;
    height: 155px;
}

@media (max-width: 1184px) {
    .header {
        padding: 15px 5vw 15px 5vw;
        background: #35003D;
        height: max-content;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    width: calc(100% + 1280px - 100vw);
    margin: auto;
    font-size: 14px;
    font-weight: 500;
    gap: 50px;
}

@media (max-width: 1184px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
}

.header-logo-small {
    display: none;
}

@media (max-width: 1184px) {
    .header-logo {
        display: none;
    }

    .header-logo-small {
        display: block;
    }
}

.header-left {
    display: flex;
}

@media (max-width: 1184px) {
    .header-left {
        width: 100%;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.header-right {
    display: flex;
    flex-direction: column;
    flex: auto;
    gap: 12px;
}

.header-right-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex: auto;
}