@import url(hamburgers.min.css);
#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: visible;
    z-index: 1041;
}
#navigation-toggle {
    position: absolute;
    top: 59px;
    color: #fff;
    outline: 0;
    z-index: 1039;
}
#navigation-toggle.is-active {
    display: none;
}
#navigation-close {
    position: fixed;
    top: 36px;
    left: 36px;
    color: #fff;
    outline: 0;
    z-index: 1042;
    display: none;
}
#navigation-close.is-active {
    display: block;
}
#navigation-toggle .hamburger-title, #navigation-close .hamburger-title {
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 17px;
    font-weight: 100;
    float: right;
    padding-left: 6px;
    color: #fff;
}
#navigation-toggle .hamburger-inner,
#navigation-toggle .hamburger-inner:after,
#navigation-toggle .hamburger-inner:before,
#navigation-close .hamburger-inner,
#navigation-close .hamburger-inner:after,
#navigation-close .hamburger-inner:before {
    background-color: #fff;
}
#navigation-close.is-active .hamburger-inner {
    background-color: transparent;
}
#navigation-close.is-active .hamburger-inner:after,
#navigation-close.is-active .hamburger-inner:before {
    background-color: #fff;
}
div.navbar-clearfix {
    position: relative;
    display: block;
    width: 100%;
    height: 113px;
    content: " ";
}
#navigation-content {
    position: fixed;
    height: auto;
    width: 100%;
    left: 0;
    top: -100%;
    transition: top 200ms;
    z-index: 9999;
    padding-top: 60px;
    padding-bottom: 60px;
    
}
#navigation-background {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: -100%;
    transition: top 200ms;
    z-index: 1039;
    background-color: #000000;
    opacity: 0.9;
    cursor: pointer;
}
#navigation.open #navigation-content,
#navigation.open #navigation-background {
    top: 0;
}
#navigation-container h1 {
    color: #F92740;
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: bold;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
}
#navigation-container a,
#navigation-container a:visited {
    color: #fff;
    /* font-family: 'Montserrat', sans-serif; */
    font-weight: 500;
    font-size: 18px;
    margin-top: 5px;
    display: block;
}
#navigation-container a:hover {
    color: #dedede;
}
#navigation-container .image-links > a {
    margin-top: 40px;
}
@media screen and (max-width: 991px) {
    #navigation-container h1,
    #navigation-container a {
        text-align: center;
    }
    #navigation-container a {
        font-size: 17px;
        margin-top: 2px;
    }
    #navigation-container .image-links > a > img {
        margin: auto auto;
    }
    #navigation-content {
        max-height: 80%;
        overflow: auto;
    }
}
@media screen and (max-width: 767px) {
    #navigation-toggle .hamburger-title {
        display: none;
    }
    #navigation.open #navigation-content {
        padding-top: 90px;
    }
}