﻿/* Move down content because we have a fixed navbar that is 50px tall */

body {
    margin-top: 200px;
}

    body:after {
        content: "";
        position: fixed; /* stretch a fixed position to the whole screen */
        top: 0;
        height: 100vh; /* fix for mobile browser address bar appearing disappearing */
        left: 0;
        right: 0;
        z-index: -1; /* needed to keep in the background */
        background: url('/Images/Logo/Background_image.jpg') center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        
    }

.bodyfadein {
   
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html, body {
    height: 100%;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 420px;
}

/* Responsive: Portrait tablets and up */
@media screen and (max-width: 1199.98px) {
    .jumbotron {
        margin-top: 0px;
    }
    .body-content {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 100px;
    }
}

@media screen and (min-width: 1200px) {
    .jumbotron {
        margin-top: 0px;
    }

    .body-content {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 100px;
    }
}

.backgroundpanel {
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.backgroundpanelbottom {
    background-color: rgba(0,0,0,0.5) !important;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 4.5rem; /* Footer height */
}

#footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 4.5rem; /* Footer height */
    
}
