.top-header .divider {
    width: 1.5px;
    height: inherit;
    background-color: #C9A979;
}

.top-header .bottom-divider {
    border-bottom: #C9A979 solid 1px;
}

.top-header .mobile-logos {
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    align-items: center;
}

.top-header .mobile-logos > img {
    justify-self: center;
}

.top-header #search-form{
    border: #C9A979 1px solid;
    border-radius: 30px;
    padding: 0 7px;
}

.top-header .hamburger .line {
    fill: #2A5CA8;
}

.side-menu {
    z-index: 1000;
    right:-1000%;
    transition: all ease 300ms;
}

.side-menu.show {
    right: 0;
    -webkit-box-shadow: -5px 5px 10px 5px rgba(0,0,0,0.25);
-moz-box-shadow: -5px 5px 10px 5px rgba(0,0,0,0.25);
box-shadow: -5px 5px 10px 5px rgba(0,0,0,0.25);
}

#menu-main-menu {
    max-width: 400px;
}

#menu-main-menu a {
    /*font-size: var(--font-42);*/
    font-size: 24px;
    color: #fff;
    font-family: "clarendon-urw", serif;
    text-decoration: none;
    text-align: center;
}

#menu-main-menu a:hover {
    text-decoration: underline;
}

@media(max-width:575px) {
    .side-menu {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}