@charset "utf-8";

/* CSS Document */


/*General Styling*/

h1 {
    font-family: Open Sans;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

html {
    font-size: 14px;
    @include media-breakpoint-up(sm) {
        html {
            font-size: 16px !important;
        }
    }
    @include media-breakpoint-up(md) {
        html {
            font-size: 20px !important;
        }
    }
    @include media-breakpoint-up(lg) {
        html {
            font-size: 12px !important;
        }
    }
}


/*Desktop*/

@media (min-width:993px) {
    /*Media Display Ports*/
    #content-mobile {
        display: none;
    }
    #content-desktop {
        display: inline;
    }
    /*Jummbotron Heading - index.html*/
    .dheading {
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        color: white;
        background: #424242;
        /* fallback for old browsers */
    }
    .jumbosvg {
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    /*Main Content - All Pages*/
    .dcontent {
        width: 96%;
        padding-left: 2%;
        padding-right: 2%;
        margin-top: 7%;
        font-size: 20px;
    }
    .title {
        font-size: 60px;
        padding-right: 1%;
        padding-bottom: 1%;
        padding-top: 1%;
        padding-left: 1%;
    }
    /*Navigation - All Pages*/
    .dnav {
        width: 100%;
        position: fixed;
        z-index: 2;
        background-color: #640202;
        color: white;
    }
    .nav > a {
        color: white;
        font-size: 25px;
        font-family: Open Sans;
    }
    .nav a {
        padding-top: 2px;
    }
    .nav > a:hover {
        background-color: rgba(255, 253, 248, 0.2);
        border-radius: 7px;
    }
    .dnavbot {
        width: 100%;
        height: 100px;
        position: fixed;
        background: #870000;
        /* fallback for old browsers */
        background: -webkit-linear- gradient(to right, #cb2d3e, #ef473a);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #cb2d3e, #ef473a);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        background-size: 600% 600%;
        -webkit-animation: linear-gradient 20s ease infinite;
        -moz-animation: Gradient 10s ease infinite;
        animation: Gradient 10s ease infinite;
        background: linear-gradient(270deg, #cb2d3e, #ef473a);
        background-size: 600% 600%;
        -webkit-animation: Gradient 20s ease infinite;
        -moz-animation: Gradient 20s ease infinite;
        animation: Gradient 20s ease infinite;
        z-index: 1;
    }
    /*Thumbnails - index.html*/
    .thumbs {
        border-radius: 100%;
        object-fit: none;
        display: block;
    }
    .thumbs:hover {
        position: absolute;
        background: rgba(0, 0, 0, 0.2);
        opacity: 0.6;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        border-radius: 100%;
        object-fit: none;
        display: block;
        margin: auto;
    }
    .thumbstext {
        text-align: center;
        color: #333333;
    }
}


/*Links Bar*/

.linksbar {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-top: 2%;
    width: 100%;
    background-color: #E0E0E0
;
    color: black;
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}


/*Mobile*/

@media (max-width: 993px) {
    #content-mobile {
        display: inline;
    }
    #content-desktop {
        display: none;
    }
    .mnav {
        width: 100%;
        position: fixed;
        z-index: 1;
        background-color: #640202;
        color: white;
        height: 10%;
    }
    .mheading {
        width: 100%;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        color: white;
        background-color: #640202;
    }
    .mcontent {
        width: 96%;
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 5%;
        font-size: 1em;
    }
    .mobilelinks {
        color: #640202;
        height: auto;
    }
    .mobilelinks {
        background-color: #640202;
        height: 40px;
        text-align: center;
        padding-top: 5px;
    }
    .mobilelinks ul {
        margin-bottom: 0px;
        padding: 0px;
    }
    .mobilelinks ul li {
        display: inline-block;
        padding: 10px;
        font-size: 15px;
    }
    .mobilelinks ul a {
        color: #EDEDED;
        text-decoration: none;
    }
    .mobilelinks ul a:hover {
        color: #A8A8A8;
        text-decoration: none;
    }
}


/* FOOTER */

footer {
    background-color: #424242;
    height: 120px;
    text-align: center;
    padding-top: 35px;
}

footer ul {
    margin-bottom: 0px;
    padding: 0px;
}

footer ul li {
    display: inline-block;
    padding: 10px;
    font-size: 15px;
}

footer ul a {
    color: #EDEDED;
    text-decoration: none;
}

footer ul a:hover {
    color: #A8A8A8;
    text-decoration: none;
}

footer .copyright {
    color: #B0B0B0;
    font-size: 10px;
}


/*Desktop Footer Height*/

@media (min-width: 331px) {
    footer {
        height: 150px;
    }
}


/*XS Mobile Footer Height*/

@media (max-width: 331px) {
    footer {
        height: 200px;
    }
}
