  .site-header {
    padding: 16px 0;
    font-family: 'quiet-sans', sans-serif;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}

.site-header > * {
    box-sizing: border-box;
}

.header-toolbar {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.menu-toggle {
    border: 0;
    padding: 0;
    background-color: unset;
    margin: 0;
    color: #003594;
    font-size: 20px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.header-side {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #003594;
    padding: 16px 32px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transform: translateX(100%);
    transition: transform .4s ease-in-out;
    min-width: 100vw;
}

.header-side.open {
    transform: translateX(0);
}

.header-side-head {
    display: flex;
    justify-content: flex-end;
}

.header-side-head .menu-toggle {
    color: #fff;
    position: relative;
}

.header-side-head .menu-toggle:hover {
    color: #FFC72C;
}

.header-side-head .menu-toggle:after {
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2.53366 19.3332L0.666992 17.4665L8.13366 9.99984L0.666992 2.53317L2.53366 0.666504L10.0003 8.13317L17.467 0.666504L19.3337 2.53317L11.867 9.99984L19.3337 17.4665L17.467 19.3332L10.0003 11.8665L2.53366 19.3332Z" fill="%23FFC72C"/></svg>');
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    position: absolute;
    display: none;
}

.header-side-head .menu-toggle:hover:after {
    display: block;
}

.header-navigation {
    overflow-y: scroll;
    scrollbar-width: 0;
}

.header-navigation::-webkit-scrollbar {
    display: none;
}

.header-navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-navigation a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.header-navigation a:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #FFC72C;
    transition: width .3s ease;
}

.header-navigation a:hover {
    color: #FFC72C;
}

.header-navigation a:hover:after {
    width: 100%;
}

.mainlevel-menuitems {
    font-size: 32px;
    font-family: 'richmond-text', sans-serif;
}

.secondlevel-menuitems {
    font-size: 20px;
}

@media (min-width: 576px) {
    .header-side {
        min-width: 500px;
    }
}

header.site-header .container {
    width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    header.site-header .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    header.site-header .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    header.site-header .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    header.site-header .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    header.site-header .container {
        max-width: 1320px;
    }
}

.site-header .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -.75rem;
    margin-left: -.75rem;
}

.site-header .row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: .75rem;
    padding-left: .75rem;
}

.site-header .col-auto {
    flex: 0 0 auto;
    width: auto;
}

.site-header .justify-content-between {
    justify-content: space-between !important;
}

.site-header .align-items-center {
    align-items: center !important;
}