.module-corp-header {
    --site-max-width: 1000px;
    --site-narrow-width: 750px;
    /* --font-family-1: "Sansation", sans-serif; */
    --font-family-1: "Roboto", sans-serif;
    --dark-blue: #082360;
    --really-dark-blue: #1C202A;
    --coral: #F78E69;
    --light-blue: #4A96CC;
    --light-gray: #E5E5E5;
    --medium-gray: #A8ADB8;
    --dark-gray: #595F6D;
    --dark-gradient: linear-gradient(90deg, rgba(28, 32, 42, 1) 0%, rgba(8, 35, 96, 1) 100%);
    --light-gradient: linear-gradient(90deg, rgba(218, 218, 218, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.module-corp-header .header {
    height: 85px;
    background-color: #fff;
    color: var(--dark-blue);
    box-sizing: border-box;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

.module-corp-header .header ul,
.module-corp-header .header ol {
    margin: 0;
    padding: 0;
}

.module-corp-header .header ul li,
.module-corp-header .header ol li {
    list-style-type: none;
    line-height: 24px !important;
}

.module-corp-header .header p {
    margin: 0;
}

.module-corp-header .header a {
    color: var(--dark-blue);
    text-decoration: none;
}

.module-corp-header .header a:hover {
    text-decoration: underline;
}

.module-corp-header .header__logo svg {
    height: 100%;
    width: auto;
}

.module-corp-header .header__bar {
    height: 85px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 1.6rem;
}

.module-corp-header .button__search-button {
    width: 17px;
    height: 17px;
}

.module-corp-header .button__search-button i {
    font-size: 17px;
    color: var(--dark-blue);
}

.module-corp-header .header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.module-corp-header #menu-header-quick-menu {
    display: none;
}

.module-corp-header .hamburger {
    position: relative;
    width: 32px;
    height: 24px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.module-corp-header .hamburger__content .hamburger__bar {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--dark-blue);
    border-radius: 50px;
}

.module-corp-header .hamburger__content .hamburger__bar:nth-child(1) {
    top: 0;
}

.module-corp-header .hamburger__content .hamburger__bar:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.module-corp-header .hamburger__content .hamburger__bar:nth-child(3) {
    bottom: 0;
}

body.locked .module-corp-header .hamburger__content .hamburger__bar:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

body.locked .module-corp-header .hamburger__content .hamburger__bar:nth-child(2) {
    opacity: 0;
}

body.locked .module-corp-header .hamburger__content .hamburger__bar:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.module-corp-header .header__page {
    display: none;
    /* height: 0vh; */
    height: 100vh;
    background-color: rgba(28, 32, 42, 0.9);
}

.module-corp-header .header__page-content {
    position: relative;
    max-height: calc(100% - 85px);
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 6.4rem 1.6rem;
    box-sizing: border-box;
}

body.locked {
    overflow: hidden;
}

.module-corp-header .header__page .header__page-content {
    overflow: auto;
    box-sizing: border-box;
    padding: 64px 48px;
}

.module-corp-header #menu-primary-menu>li {
    /* opacity: 0; */
    break-inside: avoid;
    page-break-inside: avoid;
}

.module-corp-header #menu-primary-menu>li:not(:last-child) {
    margin-bottom: 3.2rem;
}

.module-corp-header #menu-primary-menu>li>a {
    font-size: 19.2px;
    font-weight: 700;
    color: var(--light-blue);
}

.module-corp-header #menu-primary-menu a {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}

.module-corp-header #menu-primary-menu>li>.sub-menu>li>.sub-menu {
    margin-left: 24px;
}

.module-corp-header #menu-primary-menu>li {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-corp-header #menu-primary-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-corp-header #menu-primary-menu .sub-menu>li {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-corp-header .header {
    transition: background 100ms ease-in-out;
}

.module-corp-header .header .hamburger__bar {
    /* transition: background 100ms ease-in-out; */
    transition: background 100ms ease-in-out, top 0.2s linear, transform 0.2s linear, opacity 0.2s linear;
}

.module-corp-header .header #menu-header-quick-menu a {
    transition: color 100ms ease-in-out;
}

.module-corp-header .header .button__search-button i {
    transition: color 100ms ease-in-out;
}

.module-corp-header .header .header__svg path:not(.exclude) {
    transition: color 100ms ease-in-out;
}

.module-corp-header .header.dark {
    background-color: var(--really-dark-blue);
}

.module-corp-header .header.dark .hamburger__bar {
    background-color: #fff;
}

.module-corp-header .header.dark #menu-header-quick-menu a {
    color: #fff;
}

.module-corp-header .header.dark .button__search-button i {
    color: #fff;
}

.module-corp-header .header.dark .header__svg path:not(.exclude) {
    fill: #fff;
}

@media screen and (min-width: 768px) {
    .module-corp-header #menu-primary-menu {
        column-count: 2;
    }
}

@media screen and (min-width: 1300px) {
    .module-corp-header #menu-primary-menu {
        column-count: 4;
    }
}

@media screen and (min-width: 590px) {
    .module-corp-header .header__actions {
        gap: 40px;
    }

    .module-corp-header #menu-header-quick-menu {
        display: flex;
        gap: 40px;
    }

    .module-corp-header #menu-header-quick-menu ul>li>a {
        font-size: 16px;
    }
}

body.admin-bar .module-corp-header .header {
    top: 32px;
}