/* off canvas menu */
.show-mobile-menu .main-container .content-container {
    transform: translateX(-250px);
}

.landing-page-nav {
    background: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 5 !important;
}

.landing-page-nav .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.navbar-logo {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.navbar-logo img {
    max-width: var(--mobile-menu);
}

.landing-page-nav .mobile-menu-button {
    font-size: 20px;
    display: none;
}

@media (max-width: 991px) {
    .landing-page-nav .mobile-menu-button {
        display: block;
    }
}

.navbar-nav {
    height: 100%;
    position: relative;
}

.navbar-nav li {
    height: 100%;
    padding-left: 1em;
    padding-right: 1em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navbar-nav li:last-child {
    padding-right: 0;
}

@media (max-width: 1199px) {
    .navbar-nav li:last-child {
        padding-right: 0;
    }
}

.nav-item a {
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
}

.nav-item a:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

.landing-page .content-container {
    transition: transform 0.5s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    transform: translateX(var(--mobile-menu));
    z-index: 25;
    width: var(--mobile-menu);
    background: #f8f8f8;
    box-shadow: initial;
}

.mobile-menu.default-transition {
    transition: transform 0.5s, box-shadow 0.5s;
}

.logo-mobile {
    display: block;
    text-align: center;
    padding: 2rem;
}

.logo-mobile span {
    display: inline-block;
    width: 120px;
    height: 30px;
    background: url('../img/logo-black.svg');
    background-repeat: no-repeat;
}

.show-mobile-menu .mobile-menu {
    transform: translateX(0);
    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1), 0 3px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    text-align: center;
}

.mobile-menu img {
    margin-bottom: 0rem;
    margin-top: 1rem;
    width: 200px;
}

.mobile-menu li {
    height: auto;
    padding: .5em;
    text-align: center;
}

.mobile-menu ul li a {
    font-size: 0.9rem;
}

@media screen and (max-width: 993px) {
    .mobile-menu ul li a {
        font-size: 18px;
        font-weight: 600;
        color: #9199a0;
    }
}

.headroom--unpinned {
    opacity: 0;
    transition: opacity 200ms linear;
}

.headroom--pinned {
    opacity: 1;
    transition: opacity 200ms linear;
}

.headroom--not-top.headroom--pinned {
    background: white;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04), 0 1px 6px rgba(0, 0, 0, 0.04);
}

.headroom--not-top a {
    color: var(--text-light);
}

.headroom--not-top a:hover {
    color: var(--dark-blue);
}

.headroom--not-top.headroom--pinned.headroom--unpinned {
    background: transparent;
}

.headroom--top .mobile-menu-button {
    color: var(--text-light);
}
