html {
    overflow: -moz-scrollbars-vertical;
    overflow: scroll;
}

body, html {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

a, a:hover, a:active, a:focus {
    outline: 0;
}

.bg-dark {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0 !important;
    font-size: 16px;
    border: none;
}

.nav-item:hover {
    background: #000 none repeat scroll 0 0;
}

/* main dropdown titles */
.nav-link {
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    color: #FFF !important;
    margin: 0 15px;
}

/* adds separator between main dropdowns */
.nav-item {
    border-right: 3px solid #9B9A96;
    position: static;
}

/* removes separator from the right of the last main dropdown */
.nav-item:last-child {
    border-right: none;
}

/*pushes modal down from top of screen and allows exiting modal by clicking above modal*/
.modal-content {
    margin-top: 90px;
}

.navModal a {
    font-size: 130%;
    text-decoration: none;
}

.navModal span {
    font-size: 70%;
    display: none;
    color: black;
}

/* NAV CSS desktop */
@media (min-width: 992px) {
    .navModal span {
        display: inline;
    }
}

/* NAV MODAL CSS wide */
@media (min-width: 1200px) {
    .navModal .modal-dialog {
        max-width: 1170px;
    }
}

/* PHOTO GALLERY BTN */

#pgbtn {
    display: none;
    z-index: 99;
    position: absolute;
    top: 85px;
    right: 50%;
    width: 160px;
}

/* PHOTO GALLERY BTN tablet */
@media (min-width: 768px) {

    #pgbtn {
        display: inline-block;
        margin-right: 200px;
        margin-top: 50px;
    }

}

/* PHOTO GALLERY BTN desktop */
@media (min-width: 992px) {

    #pgbtn {
        margin-right: 305px;
        margin-top: 50px;
    }

}

/* PHOTO GALLERY BTN wide */
@media (min-width: 1200px) {

    #pgbtn {
        margin-right: 405px;
        margin-top: 45px;
    }

}

/* NEW TICKER */

#ntbtn ul {
    padding: 0;
}

#ntbtn li {
    padding: 0;
    margin: 0;
}

#ntbtn .tickerspacing {
    height: 43px;
    margin-top: 11px;
}

#ntbtn li a {
    font-size: 18px;
    line-height: 18px;
    color: white;
}

#ntbtn li a span {
    font-size: 14px;
    line-height: 14px;
}

#ntbtn {
    display: none;
    z-index: 99;
    position: absolute;
    top: 65px;
    left: 50%;
    width: 300px;
}

.tickercontrol {
    cursor: pointer;
    font-size: 200%;
    color: white;
}

/* NEW TICKER tablet */
@media (min-width: 768px) {

    #ntbtn {
        display: inline-block;
        margin-left: 60px;
        margin-top: 45px;
    }

}

/* NEW TICKER desktop */
@media (min-width: 992px) {

    #ntbtn {
        margin-left: 165px;
        margin-top: 60px;
    }

}

/* NEW TICKER wide */
@media (min-width: 1200px) {

    #ntbtn {
        margin-left: 265px;
        margin-top: 45px;
    }

}

/* CAROUSEL CSS */
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .carousel-item {
    background-size: cover;
}

.carousel-indicators {
    width: 20%;
    margin-left: 0;
    left: 0;
}

/* CAROUSEL CSS smallest */
@media (min-width: 0px) {
    /* hide carousel for screens smaller than 320 */
    .carousel {
        display: none;
    }

    /* hide carousel indicators, controls and captions until unhiding at proper screen width */
    .carousel-indicators, .carousel-control, .carousel-caption {
        display: none;
    }
}

/* CAROUSEL CSS xsmall */
@media (min-width: 320px) {
    /* unhide carousel */
    .carousel {
        display: block;
        top: 95px;
    }

    .carousel, .carousel .carousel-item {
        height: 125px;
    }

    .carousel .slide1 {
        background-image: url("../images/carousel/carousel-1-xsmall.jpg");
    }

    .carousel .slide2 {
        background-image: url("../images/carousel/carousel-2-xsmall.jpg");
    }

    .carousel .slide3 {
        background-image: url("../images/carousel/carousel-3-xsmall.jpg");
    }
}

/* CAROUSEL CSS phone */
@media (min-width: 480px) {

    .carousel {
        top: 95px;
    }

    .carousel, .carousel .carousel-item {
        height: 200px;
    }

    .carousel .slide1 {
        background-image: url("../images/carousel/carousel-1-phone.jpg");
    }

    .carousel .slide2 {
        background-image: url("../images/carousel/carousel-2-phone.jpg");
    }

    .carousel .slide3 {
        background-image: url("../images/carousel/carousel-3-phone.jpg");
    }
}

/* CAROUSEL CSS tablet */
@media (min-width: 768px) {

    .carousel {
        top: 128px;
    }

    .carousel-indicators {
        top: 10px;
    }

    .carousel, .carousel .carousel-item {
        height: 258px;
    }

    .carousel .slide1 {
        background-image: url("../images/carousel/carousel-1-tablet.jpg");
    }

    .carousel .slide2 {
        background-image: url("../images/carousel/carousel-2-tablet.jpg");
    }

    .carousel .slide3 {
        background-image: url("../images/carousel/carousel-3-tablet.jpg");
    }

    /* carousel indicators, controls and captions are hidden until we get to at least the tablet width */
    .carousel-indicators, .carousel-control, .carousel-caption {
        /*display: block;*/
    }
}

/* CAROUSEL CSS desktop */

@media (min-width: 992px) {

    .carousel {
        top: 0;
    }

    .carousel-indicators {
        top: 90px;
        bottom: auto;
    }

    .carousel, .carousel .carousel-item {
        height: 313px;
    }

    .carousel .slide1 {
        background-image: url("../images/carousel/carousel-1-desktop.jpg");
    }

    .carousel .slide2 {
        background-image: url("../images/carousel/carousel-2-desktop.jpg");
    }

    .carousel .slide3 {
        background-image: url("../images/carousel/carousel-3-desktop.jpg");
    }
}

/* CAROUSEL CSS wide */
@media (min-width: 1200px) {
    .carousel, .carousel .carousel-item {
        height: 500px;
    }

    .carousel .slide1 {
        background-image: url("../images/carousel/carousel-1-wide.jpg");
    }

    .carousel .slide2 {
        background-image: url("../images/carousel/carousel-2-wide.jpg");
    }

    .carousel .slide3 {
        background-image: url("../images/carousel/carousel-3-wide.jpg");
    }
}

.maincontainer {
    position: relative;
}

#promoarea {
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
}

#promoarea .first, #promoarea .second, #promoarea .third {
    background-size: cover;
    display: table;
    margin: 0 auto;
}

/* PROMO CSS smallest */
@media (min-width: 0px) {

    .maincontainer {
        top: 80px;
    }
}

/* PROMO CSS xsmall */
@media (min-width: 320px) {

    .maincontainer {
        top: 80px;
    }

    #promoarea .first, #promoarea .second, #promoarea .third {
        width: 80px;
        height: 53px;
        margin-top: 5px;
    }

    #promoarea .first {
        background-image: url("../images/promo/promo-1-small.jpg");
    }

    #promoarea .second {
        background-image: url("../images/promo/promo-2-small.jpg");
    }

    #promoarea .third {
        background-image: url("../images/promo/promo-3-small.jpg");
    }
}

/* PROMO CSS phone */
@media (min-width: 480px) {

    .maincontainer {
        top: 100px;
    }

    #promoarea .first, #promoarea .second, #promoarea .third {
        width: 130px;
        height: 85px;
        margin-top: 5px;
        box-shadow: 0 0 5px black;
    }
}

/* PROMO CSS tablet */
@media (min-width: 768px) {

    .maincontainer {
        top: 120px;
    }

    #promoarea .first, #promoarea .second, #promoarea .third {
        width: 200px;
        height: 131px;
        box-shadow: 0 0 15px black;
    }

}

/* PROMO CSS desktop */
@media (min-width: 992px) {
    .maincontainer {
        top: 0;
    }

    #promoarea .first, #promoarea .second, #promoarea .third {
        width: 200px;
        height: 131px;
        box-shadow: 0 0 15px black;
    }

    #promoarea .first {
        background-image: url("../images/promo/promo-1-large.jpg");
    }

    #promoarea .second {
        background-image: url("../images/promo/promo-2-large.jpg");
    }

    #promoarea .third {
        background-image: url("../images/promo/promo-3-large.jpg");
    }
}

/* PROMO CSS wide */
@media (min-width: 1200px) {
    .maincontainer {
        top: -80px;
    }

    #promoarea .first, #promoarea .second, #promoarea .third {
        width: 250px;
        height: 165px;
        box-shadow: 0 0 22px black;
    }
}

.scrollToTop {
    width: 40px;
    height: 40px;
    background-image: url('../images/back-to-top.jpg');
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
}

.stripeRows > div:nth-of-type(odd) {
    background-color: #adb5bd;
}