@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --lightgrey: #f5f5f5;
    --grey: #909090;
    --darkgrey: #101010;
    --black: #000;
    --white: #fff;
    --green: #006435;
    --darkgreen: #002D17;
    --lightgreen: #3EA372;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darkgrey);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Red Hat Display', Arial, Helvetica, sans-serif;
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.Normal {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: var(--white);
}

.jumbo {
    font-size: 6rem;
}

.large {
    font-size: 4rem;
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--lightgreen);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: var(--white);
}

a:visited {
    color: var(--lightgreen);
}

a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

.bi {
    font-size: 1.4em;
    padding: 0 10px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.container-fluid .row {
    margin-right: 0;
    margin-left: 0;
}

.grecaptcha-badge {
    opacity: 0;
}

/*------------------------------------------------*/
/* HEADER */
/*------------------------------------------------*/

#TopBanner {
    background-color: var(--darkgrey);
    position: relative;
    z-index: 500;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

#TopBanner p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
}

#TopBanner p a {
    color: var(--lightgrey);
}

#TopBanner p a:hover {
    color: var(--white);
}

#TopBanner p a:visited {
    color: var(--lightgrey);
}

#TopBanner p a:visited:hover {
    color: var(--white);
}

#TopBanner .bi {
    font-size: 18px;
}

#TopBanner .white-button {
    padding: 0px 10px;
    margin-top: 0;
    margin-bottom: 0;
}

#TopBanner {
    display: none;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    padding: 0;
    letter-spacing: 1px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.bg-dark {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: var(--black) !important;
}

#dnn_dnnLOGO_imgLogo {
    max-height: 75px;
    margin-left: 20px;
    margin-right: 5px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-minimize #dnn_dnnLOGO_imgLogo {
    max-height: 60px;
}

.nav-item {
    text-align: center;
}

.nav-link {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white) !important;
    display: inline-block;
    text-decoration: none;
    line-height: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--lightgreen) !important;
}

.nav-link:visited {
    color: var(--white);
}

.nav-link:visited:hover {
    text-decoration: none;
    color: var(--lightgreen) !important;
}

.dropdown-menu {
    background-color: var(--darkgrey);
    margin: 0;
    min-width: 10rem;
}

.dropdown-menu .active {
    border-radius: 0px;
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

/* video hero */

.video-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#videoBG {
    object-fit: cover;
    position: absolute;
    height: 500px;
    width: 100%;
    top: 0;
    left: 0;
}

.video-overlay {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    height: 500px;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, .5);
}

/*body:not(.Page-Home)*/ .video-container {
    display: none;
}

.video-overlay p,
.video-overlay h1,
.video-overlay h2,
.video-overlay h3,
.video-overlay h4,
.video-overlay h5,
.video-overlay h6 {
    margin: 0;
    color: #fff !important;
    text-transform: uppercase;
}

/* photo hero */

.hero-bg {
    object-fit: cover;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    height: 450px;
}

/*.PageType_Home .hero-bg {
    display: none;
}*/

/* home */

.PageType_Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('/portals/165/183A8211-Enhanced-NR-1.jpg');
    height: 600px;
}

/* instruction */

.PageType_Normal .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url('/portals/165/183A8211-Enhanced-NR-1.jpg');
    background-position: center;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5,
.hero-text h6 {
    color: var(--white);
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.hero-text h1,
.video-overlay h1 {
    font-weight: 900;
}

.header-logo {
    max-width: 200px;
    width: 100%;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

#MainContent {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#MainContent li {
    list-style-type: disc;
}

.black {
    background-color: var(--black);
    margin: 10px auto;
    padding: 2%;
    border-radius: 0;
    border: 1px solid var(--grey);
}

.black p,
.black li,
.black h1,
.black h2,
.black h3,
.black h4,
.black h5,
.black h6 {
    color: var(--white);
}

.white {
    background-color: var(--white);
    border-radius: 5px;
    margin: 10px auto;
    padding: 2%;
}

.white p,
.white li,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6 {
    color: var(--black) !important;
}

.lightgrey {
    background-color: var(--lightgrey);
    border-radius: 5px;
    margin: 10px auto;
    padding: 2%;
}

.lightgrey p,
.lightgrey h1,
.lightgrey h2,
.lightgrey h3,
.lightgrey h4,
.lightgrey h5,
.lightgrey h6,
.lightgrey li {
    color: var(--black) !important;
}

.white-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border: 2px solid var(--white);
    border-radius: 5px;
    background-color: rgba(0,0,0,.15);
    color: var(--white) !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.white-button:hover {
    background-color: var(--white);
    color: var(--black) !important;
    text-decoration: none;
}

.black-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: var(--black);
    color: var(--white) !important;
    border: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.black-button:hover {
    color: var(--white) !important;
    background-color: var(--darkgrey);
    text-decoration: none;
}

.green-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: var(--green);
    color: var(--white) !important;
    border: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.green-button:hover {
    color: var(--white) !important;
    background-color: var(--darkgreen);
    text-decoration: none;
}

.sub-widget .form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: rgba(255,255,255,.75);
    background-clip: padding-box;
    border: 1px solid var(--white);
    border-radius: 2px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.black-outline-button {
    display: inline-block;
    margin: 10px 0;
    padding: 10px 30px;
    border-radius: 5px;
    background-color: transparent;
    color: var(--black) !important;
    border: 1px solid var(--black);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.black-outline-button:hover {
    color: var(--white) !important;
    background-color: var(--black);
    text-decoration: none;
}

.sub-widget .form-control::placeholder {
    color: #202020;
}

.sub-widget .form-control:focus {
    color: #000;
    border-color: #000;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .1);
}

#signup_button {
    font-family: 'Red Hat Display';
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    min-width: 250px;
}

body:not(.Id3544) #MembershipTabs {
    display: none;
}

/* home */

/*.PageType_Home #TopContentNarrow {
    background-color: var(--black);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.PageType_Home #TopContentNarrow p,
.PageType_Home #TopContentNarrow li,
.PageType_Home #TopContentNarrow h1,
.PageType_Home #TopContentNarrow h2,
.PageType_Home #TopContentNarrow h3,
.PageType_Home #TopContentNarrow h4,
.PageType_Home #TopContentNarrow h5,
.PageType_Home #TopContentNarrow h6 {
    color: var(--white) !important;
}*/

.zoom-button {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.zoom-button img {
    width: 100%;
    transition: transform .5s ease;
}

.zoom-button:hover img {
    transform: scale(1.3);
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.text-overlay h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    color: #fff;
}

.text-overlay a {
    color: #fff !important;
    text-decoration: none;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--black);
    border-top: 1px solid rgba(0,0,0,.25);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

footer p {
    font-size: .85rem;
}

footer a {
    color: var(--lightgreen);
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

footer a:hover {
    text-decoration: none;
    color: var(--white);
}

footer a:visited {
    color: var(--lightgreen);
}

footer a:visited:hover {
    text-decoration: none;
    color: var(--white);
}

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (min-width: 996px) {
    .dropdown-menu {
        border-radius: 0;
    }

    .hero-text h1,
    .video-overlay h1 {
        font-size: 7rem;
    }

    #MainContent {
        padding-right: 5% !important;
        padding-left: 5% !important;
    }

    /* home */

    .PageType_Home .hero-text {
        max-width: 1200px;
    }
}

@media screen and (max-width: 997px) {

    #dnn_dnnLOGO_imgLogo {
        max-height: 50px;
        margin-left: 20px;
        margin-right: 5px;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-height: 40px;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .header-logo {
        max-width: 150px;
    }

    .jumbo {
        font-size: 4rem;
    }

    .large {
        font-size: 2rem;
    }

    .Id3490 .hero-bg {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {

}
