/* Set font-family & font-weight for Page */
body {
    font-family: 'Lufga', 'Lato', sans-serif;
    font-weight: 400;
}
/* Set font-family & font-weight for all Headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Lufga', 'Lato', sans-serif;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}
/* Set font-family & font-weight for all Display Heading sizes */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Lufga', 'Lato', sans-serif;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}
/* Set font-family & font-weight for all FS sizes */
.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6 {
    font-family: 'Lufga', 'Lato', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}
/* Set font-family & font-weight for other sizes */
p, small, .lead {
    font-family: 'Lufga', 'Lato', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.15);
}

/* Set the Z of page wrapper so it can be seen over backgrounds and canvases */
.page-wrapper {
    z-index: 1;
}
/* Set Navbar height on smaller devices */
.page-wrapper.navbar-fixed-top-padding {
    padding-top: 59px;
}
/* Set Navbar height on larger devices */
@media (min-width: 992px) {
    .page-wrapper.navbar-fixed-top-padding {
        padding-top: 67px;
    }
}

/* Set font-weight for navbar brand */
.navbar .navbar-brand {
    font-weight: 600;
}
/* Set Navbar fixed z-index */
.navbar.fixed-top {
  z-index: 3;
}
/* Set maximum Navbar logo height */
.navbar {
    .site_logo {
        max-height: 40px;
    }
}
/* Set maximum Footer logo height */
footer {
    .site_logo {
        max-height: 120px;
    }
}


.bg-image-std {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.min-h-80 {
    min-height: 80vh;
}
.min-h-75 {
    min-height: 75vh;
}
.min-h-62 {
    min-height: 62vh;
}
.h-100vh {
    height: 100vh;
}
.h-100pc {
    height: 100%;
}

/* Stops Bootstrap Hidden from interfering with RevealJS Hidden */
.reveal-viewport .reveal [hidden] {
    display: revert !important;
}