@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --white: #ffffff;
    --black: #000000;
    --orange: rgba(130, 54, 2, 1);
    --orangetr: rgba(130, 54, 2, 0.8);
    --green: rgba(37, 108, 34, 1);
    --greentr: rgba(37, 108, 34, 0.8);
    --lightgreen: rgba(130, 221, 164, 1);
    --darkgreen: rgba(0, 110, 41, 1);
    --lightgrey: rgba(229, 229, 229, 1);
    --darkgrey: rgba(48, 48, 48, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

hr {
    width: 100%;
    border-top: 3px solid var(--black);
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    color: var(--black);s
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.Normal {
    font-size: 14px;
    line-height: 1.5;
    color: var(--black);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

p {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--orange);
    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(--black);
}

a:visited {
    color: var(--orange);
}

a:visited:hover {
    text-decoration: none;
    color: var(--black);
}

.bi {
    font-size: 1.5em;
    padding: 0 10px;
}

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0;
    -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-light {
    background-color: var(--white) !important;
}

#dnn_dnnLOGO_imgLogo {
    max-height: 100px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.nav-minimize #dnn_dnnLOGO_imgLogo {
    max-height: 80px;
}

.nav-link {
    display: inline-block;
    color: var(--black) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
}

.nav-link:hover {
    text-decoration: none;
    color: var(--orange) !important;
}

.nav-link:visited {
    color: var(--black);
}

.nav-link:visited:hover {
    text-decoration: none;
    color: var(--orange) !important;
}

.dropdown-menu {
    background-color: var(--darkgrey);
    border: 1px solid var(--lightgrey);
    margin: 0;
    min-width: 12rem;
}

.dropdown-menu .nav-link {
    line-height: initial;
}

.dropdown-menu .active {
    border-radius: 0px;
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Portals/159/normal-hero.png');
    background-size: cover;
    background-position: center;
    object-fit: cover;
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.PageType_Home .hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Portals/159/home-hero.png');
    height: 100vh;
}

/* shape */

.hero-shape {
    fill: #fff;
    margin-top: -50px;
}

.hero-shape svg {
    position: relative;
    min-width: 100%;
    transform: rotate(180deg);
}

/* text */

.hero-text {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    text-align: center;
}

.hero-text h1,
.hero-text h2,
.hero-text h3,
.hero-text h4,
.hero-text h5,
.hero-text h6 {
    margin: 0;
    color: #fff !important;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 6rem;
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/

.PageType_Normal #MainContent {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.PageType_Home #TopContent {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.PageType_Home #TopContentGrey {
    background-color: var(--lightgrey);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.PageType_Home #TwoColumnLower {
    padding-bottom: 2rem;
}

/* zoom buttons */
.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%);
    width: 100%;
}

.text-overlay h2 {
    text-shadow: 2px 2px 4px rgba(0,0,0,.5);
    color: #fff;
}

.text-overlay a {
    color: #fff !important;
    text-decoration: none;
}

/* memberships */

.membership-box {
    display: flex;
    flex-direction: column;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border: 2px solid var(--greentr);
    text-align: center;
}

    .membership-box img {
        border-radius: 10px;
    }

@media screen and (min-width:992px) {
    .membership-box {
        height: 580px;
        width: 100%;
        margin-bottom: 2em;
        padding: 1em;
    }

    .membership-section {
        margin-top: auto;
    }
}

/* buttons */

.green-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--greentr);
    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;
}

    .green-button:hover {
        background-color: var(--green);
        color: var(--white) !important;
        text-decoration: none;
    }

.orange-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--orange);
    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;
}

    .orange-button:hover {
        background-color: var(--orangetr);
        color: var(--white) !important;
        text-decoration: none;
    }

/* videos */
.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* recaptcha */
.grecaptcha-badge {
    opacity: 0;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--lightgrey);
    padding-top: 2%;
    padding-bottom: 2%;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p {
    color: var(--black) !important;
}

footer a {
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    color: var(--orange);
    text-decoration: none;
}

    footer a:visited {
        color: var(--black);
    }

footer a:visited:hover {
    color: var(--orange);
    text-decoration: none;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
    list-style: none;
    padding: 0;
}

    .footer-nav li {
        margin: 0.5em 1em;
    }

    .footer-nav img {
        max-width: 35px;
    }

/*------------------------------------------------*/
/* MEDIA QUERIES */
/*------------------------------------------------*/

@media screen and (min-width: 996px) {

    .dropdown-menu {
        border-radius: 0;
    }

    #MainContent.container-fluid {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #MainContent .row {
        margin-right: 0;
        margin-left: 0;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media screen and (max-width: 997px) {

    #dnn_dnnLOGO_imgLogo {
        max-height: 60px;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }

    .hero-bg {
        background-size: cover;
        background-position: center;
        object-fit: cover;
        width: 100%;
        height: 300px;
        overflow: hidden;
        position: relative;
    }

    .PageType_Home .hero-bg {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {

    #HomeContent {
        padding-left: 3%;
        padding-right: 3%;
    }

    #MainContent {
        padding-top: 6%;
        padding-bottom: 6%;
    }

    .PageType_Home #MainBottomContent,
    .Id3124 #MainBottomContent,
    .Id3125 #MainBottomContent {
        background-attachment: scroll;
    }
}