<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) {
    
}

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .navbar-inner.sticky-menu{
        background: linear-gradient(90deg, #ffffff 50%, #333333 50%) !important;
    }
    #main-navbar-container{
        background: #333333 !important;
        margin: 0 !important;
    }
    
}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .navbar-btn {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .navbar-nav &gt; li &gt; a {
        padding: 40px 15px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    #footer-bottom h2{
        display: block !important;
        margin:37px  0 !important;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .navbar-top-nav li:after, .navbar-top .social-icon:after {
        content: '' !important;
        padding-left: 0;
    }
    .navbar-inverse .navbar-nav div[class^="col"], .navbar-inverse .navbar-nav div[class*=" col"] {
        border: none !important;
    }
    a.navbar-brand img{
        height: 50px;
    }
    .event-detail-callout {
        margin-top: -40px;
    }
    
}
/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    .owl-controls{
        display: none !important;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {

}</pre></body></html>