﻿/* Move down content because we have a fixed navbar that is 50px tall */


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/OIG1.jpeg') 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: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding-left: 0px;
        padding-right: 0px;
    }
}

.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 */
}

@font-face {
    font-family: myFirstFont;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/NUEVASTD-bold.otf) format("opentype");
    src: url(../fonts/NUEVASTD-boldcond.otf) format("opentype");
    src: url(../fonts/NUEVASTD-boldconditalic.otf) format("opentype");
    src: url(../fonts/NUEVASTD-cond.otf) format("opentype");
    /*src: url(fonts/NUEVASTD-condItalic.otf) format("opentype");*/
    /*src: url(fonts/NUEVASTD-Italic.otf) format("opentype");*/
}



@media (max-width: 991.98px) {
    .headtextPre1 {
        font-family: 'Tw Cen MT';
        color: rgb(183, 158, 57);
        font-size: 48px !important;
        font-weight: 800;
    }

    .headtextLat1 {
        font-family: 'Tw Cen MT';
        color: rgb(86, 96, 101) !important;
        font-size: 48px !important;
        font-weight: 800;
    }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .headtextPre1 {
        font-family: 'Tw Cen MT';
        color: rgb(183, 158, 57);
        font-size: 72px !important;
        font-weight: 800;
    }

    .headtextLat1 {
        font-family: 'Tw Cen MT';
        color: rgb(86, 96, 101) !important;
        font-size: 75px !important;
        font-weight: 800;
    }
}

@media (min-width: 1400px) {
    .headtextPre1 {
        font-family: 'Tw Cen MT';
        color: rgb(183, 158, 57);
        font-size: 96px !important;
        font-weight: 800;
    }

    .headtextLat1 {
        font-family: 'Tw Cen MT';
        color: rgb(86, 96, 101) !important;
        font-size: 96px !important;
        font-weight: 800;
    }
}


   

    .menulistitem {
        font-family: myFirstFont !important;
        color: dimgrey;
        font-size: 48px;
        font-weight: 400;
        text-decoration: none;
        text-align: center;
    }
