/* 
* When possible include css in html file to speed up DOM
* construction. Only add things to sepperate file when
* neccessary (like if used by multiple pages).
*/

* {
    /* To apply to all elements*/
    /*border: 1px solid red !important; */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    background-color: black !important;
}

h2, h3 {
    color: #FFFFFF;

}

hr {
    border: 1px white solid;
    margin: 5px 10px 5px 10px;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

a:focus, a:active, a:hover {
    outline: none !important;
    text-decoration: none;
}

.npi-modal-list {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.glyphicon-white {
    color: #FFFFFF;
}

.bgimg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 1;
}

.npi-container {
    border: 4px #999999 solid;
    border-radius: 10px;
    background-color: rgba(200, 200, 200, .20);
    /* Check media queries below for adjustments*/
}

.npi-text a {
    color: #EEEEEE;
    border-bottom: 1px solid;
    cursor: pointer;
}


.npi-text {
    color: #CCCCCC;
}

.npi-link {
    font-size: 125%;
}

.npi-img {
    margin: 10px;
    width: 90%%;
}

.npi-active:hover {
    color: #24F5AB;
    border-bottom: 1px solid;
    text-decoration: none;
}

.npi-footer-top {
    margin: 15px 5px 15px 5px;
}

.npi-footer-bot {
    margin: 0px 5px 15px 5px;
}

.npi-no-border {
    border: 0px;

}

.npi-ref {
    padding: 0px;
}

/* MEDIA QUERIES FOR RESPONSIVE DESIGN */
/* Wide Screen Large desktops and laptops */
@media (min-width: 1600px) {
    .npi-padding {
        height: 540px;
    }
}

/* Very Large desktops and laptops */
@media (min-width: 1400px)  and (max-width: 1599px){
    .npi-padding {
        height: 400px;
    }
}

/* Large desktops and laptops */
@media (min-width: 1200px)  and (max-width: 1399px){
    .npi-padding {
        height: 320px;
    }
}

/* Large desktops and laptops */
@media (min-width: 1200px) {
    .npi-container-text {
        height: 355px;
    }
    .npi-container-img {
        height: 355px;
    }
    .npi-logo {
        margin-top: 10px;
    }
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .npi-container-text {
        height: 375px;
    }
    .npi-container-img {
        height: 375px;
    }
    .npi-padding {
        height: 300px;
    }
    .npi-logo {
        margin-top: 15px;
    }
}

/* Stacked windows */
@media (max-width: 991px) {
    .npi-container-text {
        height: 100%;
        margin-top: 15px;
    }
    .npi-container-img {
        height: 100%;
        margin-top: 15px;
    }
    .npi-padding {
        height: 1px;
    }
    .npi-ref {
        padding: 10px;
    }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .npi-logo {
        margin-top: 340px;
    }
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    .npi-logo {
        margin-top: 250px;
    }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
    .npi-logo {
        margin-top: 150px;
    }
}


