@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: #FAF9F6;
    --black: #000000;
    --lightgrey: rgba(229, 229, 229, 1);
    --darkgrey: rgba(48, 48, 48, 1);
    --green: #336435;
    --lightgreen: #95bb38;
    --red: #c3342c;
    --orange: #ee7832;
}

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);
    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;
}

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-width: 290px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    -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-width: 260px;
}

.nav-link {
    display: inline-block;
    color: var(--green) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
}

    .nav-link:hover {
        text-decoration: none;
        color: var(--orange) !important;
    }

    .nav-link:visited {
        color: var(--green);
    }

        .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;
}

@media screen and (min-width: 992px) {
    .dropdown-menu {
        border-radius: 0;
    }
}

@media screen and (max-width: 991px) {
    #dnn_dnnLOGO_imgLogo {
        max-width: 180px;
    }

        .nav-minimize #dnn_dnnLOGO_imgLogo {
            max-width: 180px;
        }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }
}

@media screen and (min-width: 992px) and (max-width: 1014px) {
    #dnn_dnnLOGO_imgLogo {
        max-width: 175px;
    }

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-width: 160px;
    }
}

@media screen and (min-width: 1015px) and (max-width: 1054px) {
    #dnn_dnnLOGO_imgLogo {
        max-width: 200px;
    }

        .nav-minimize #dnn_dnnLOGO_imgLogo {
            max-width: 180px;
        }
}

@media screen and (min-width: 1055px) and (max-width: 1201px) {
    #dnn_dnnLOGO_imgLogo {
        max-width: 240px;
    }

        .nav-minimize #dnn_dnnLOGO_imgLogo {
            max-width: 230px;
        }
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

.hero-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Portals/_default/images/AdobeStock_1533767439.jpeg');
    background-size: cover;
    background-position: center;
    object-fit: cover;
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.PageType_Home .hero-bg {
    height: 700px;
}

/* 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;
}

@media screen and (max-width: 991px) {
    .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 (min-width: 992px) and (max-width: 1119px) {
    .nav-link {
        font-size: 
    }
}

/*------------------------------------------------*/
/* MAIN CONTENT */
/*------------------------------------------------*/
@media screen and (min-width: 992px) {
    .PageType_Normal #MainContent {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .PageType_Home #TopContent {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #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%;
    }
}

/* memberships */
.Page-Memberships #MainContent {
    padding-bottom: 0;
}

.Page-Memberships #TwoLeftOffset {
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    background-color: var(--green);
}

.Page-Memberships .content-box {
    margin-top: 1em;
    margin-bottom: 1em;
    background-color: var(--orange);
    border-color: var(--black);
    color: var(--black);
}

.mem-highlights {
    text-align: center;
}

    .mem-highlights h2,
    .mem-highlights h3,
    .mem-highlights h4,
    .mem-highlights h5,
    .mem-highlights h6,
    .mem-highlights p,
    .mem-highlights ul {
        color: var(--white);
    }

    .mem-highlights i {
        font-size: 2rem;
        color: var(--orange);
    }

@media screen and (min-width: 992px) {
    .mh-center {
        border-left: 1px solid var(--orange);
        border-right: 1px solid var(--orange);
    }
}

/*------------------------------------------------*/
/* COMPONENTS */
/*------------------------------------------------*/

/* 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;
    }

/* boxes */
.content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border: 2px solid var(--green);
    border-radius: 16px;
}

    .content-box p,
    .content-box li {
        font-size: 1rem;
        font-weight: 600;
    }

    .content-box img {
        border-radius: 10px;
    }

.list-header {
    margin-left: -24px;
    list-style-type: none;
}

/* buttons */
.book-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--lightgreen);
    color: var(--black) !important;
    border: 1px solid var(--black);
    border-radius: 12px;
    -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;
}

    .book-button:hover {
        background-color: var(--green);
        color: var(--white) !important;
        text-decoration: none;
    }

.book-button-alt {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--white);
    color: var(--black) !important;
    border: 1px solid var(--black);
    border-radius: 12px;
    -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;
}

    .book-button-alt:hover {
        background-color: var(--red);
        color: var(--white) !important;
        text-decoration: none;
    }

/* img pill */
.img-pill {
    border-radius: 16px;
}

/* videos */
.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* recaptcha */
.grecaptcha-badge {
    opacity: 0;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--lightgrey);
    padding-top: 1%;
    padding-bottom: 0;
}

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;
    }