.header {
    width: 100%;
    background-color: var(--header-bg-color, #101f30);
    display: flex;
    justify-content: center;
}
.header-content {
    color: var(--header-text-color, #fff);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
	max-width: 992px;
    width: 100%;
}

.header-content .middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content a:not(.back-button) {
    text-decoration: none;
}
.header-content a:hover {
    color: var(--header-link-color-hover, #a3a3a3);
}
.header-content .left-section {
    width: 33%;
}

@media (max-width: 992px) {
    .header-content .left-section {
        width: auto;      /* or simply remove width */
        display: none;    /* optional: hide if not needed */
    }
}

.header-content .right-section {
    width: 33%;
}
.header-content .right-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: 45px;
    padding-bottom: 10px;
}
.header-content .disclosure {
    font-size: 12px;
    font-family: Lato;
    font-weight: 400;
    color: var(--Grays-lt-gray-lighten-1, #C6CDD0);
}
.header-content .header-logo {
    background-size: cover;
    background-repeat: no-repeat;
    height: 45px;
    width: 159px;
    @media (max-width:767px) {
        height: 32px;
        width: 113px;
    }
}

@media (max-width: 991px) {
    .header-content {
       padding: 0 var(--spacing-3, 16px);
   }
}