.header {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
}

.header,
.header__section,
.header__section__nav__menu {
    display: flex;
}

.burger-icon {
    background-color: #00253d;
    color: #009ca6;
    border: 2px solid;
    border-radius: 100px;
    padding: 5px 10px;
}

.burger-icon:hover {
    box-shadow: 0px 0px 10px -2px;
}

.header__section__button {
    border: none;
    cursor: pointer;
    background-color: #00253d;
}

.header__section--second,
.header__section--third {
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
}

.header__section__nav__menu {
    padding: 0;
    margin: 0;
    column-gap: 26px;
    text-decoration: none;
    list-style: none;
}

.header__section__nav__menu > li > a {
    text-decoration: none;
    color: inherit;
    line-height: 2.5;
}

.header__section__nav__menu > li:hover > a {
    color: var(--light-blue);
    border-bottom: 2px solid var(--light-blue);
}

.header__section--mobile {
    display: none;
}

@media (max-width: 1010px) {
    .header {
        max-height: 88px;
    }

    .header__section--desktop {
        display: none;
    }

    .header__section--mobile {
        display: flex;
        justify-content: flex-end;
    }
}

.header__section__mobile__menu,
.header__section__mobile__menu .header__section__mobile__menu__logo {
    position: fixed;
    left: 150vw;
    z-index: 99;
    transition: left 0.2s ease-in-out;
}

.header__section__mobile__menu {
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #00253d;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 0 88px;
    gap: 24px;
    isolation: isolate;
    justify-content: right;
    overflow: auto;
}

.header__section__mobile__menu.active,
.header__section__mobile__menu.active .header__section__mobile__menu__logo {
    left: 0;
}

.header__section__mobile__menu__exit {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0;
    gap: 24px;
    isolation: isolate;
    margin-top: 32px;
    margin-right: 18px;
    margin-bottom: 88px;
    cursor: pointer;
}

.header__section__mobile__menu__list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: right;
    flex-wrap: wrap;
    margin-top: 120px;
    z-index: 5;
    gap: 24px;
}

.header__section__mobile__menu__list__item {
    display: block;
    flex-wrap: wrap;
    flex-grow: 1;
    padding: 8px 16px 8px 8px;
    box-sizing: content-box;
    border-right: 4px solid var(--blue-accent);
}

.header__section__mobile__menu__list__item a {
    color: var(--accent-light);
}

.header__section__mobile__menu__list__item:hover a {
    color: var(--yellow);
}

.header__section__mobile__menu__logo {
    box-sizing: content-box;
    display: block;
    width: 140px;
    height: 154px;
    position: fixed;
    left: 0;
    bottom: 0;
    margin: 0 0 16px 16px;
    z-index: 1;
}

#wpadminbar ~ header .header__section__mobile__menu {
    top: 32px;
}

@media screen and (max-width: 782px) {
    #wpadminbar ~ header .header__section__mobile__menu {
        top: 46px;
    }
}