.header {
    display: flex;
    flex-direction: column;
    background: white;
    padding-top: 40px;
    padding-inline: 40px;
}

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

@media (max-width: 1184px) {
    .header {
        padding-block: 20px;
        padding-inline: 20px;
    }

    .header-content {
        width: 100%;
    }

    .header-logo img {
        width: 90px;
        height: 40px;
    }
}