@import url("https://use.typekit.net/leb0wdn.css");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --white: #fff;
    --offwhite: rgba(238, 235, 230, 1);
    --black: #050203;
    --blacktp: rgba(0, 0, 0, 0.8);
    --primary: rgba(33, 115, 17, 1);
    --primaryfaded: #527311;
    --secondary: #FCF2C9;
    --primarygradient: linear-gradient(180deg,rgba(177, 120, 43, 1) 0%, rgba(180, 131, 53, 1) 50%, rgba(252, 242, 201, 1) 100%);
    --uscheduleblue: #005e76;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--offwhite);
}

hr {
    width: 100%;
    border-top: 3px solid var(--black);
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "adelle-mono-flex", monospace;
    font-weight: 700;
    font-style: normal;
    color: var(--black);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

    h3 {
        text-transform: uppercase;
    }

.Normal {
    font-family: "inclusive-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 1.5;
    color: var(--black);
}

p {
    color: var(--black);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    -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 {
        color: var(--primary);
    }

    a:visited {
        color: var(--black);
    }

        a:visited:hover {
            color: var(--primary);
        }

ul, li {
    color: var(--black);
}

.bi {
    font-size: 1.5em;
    padding: 0 10px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

    .container-fluid .row {
        margin-right: 0;
        margin-left: 0;
    }

/*------------------------------------------------*/
/* NAVBAR */
/*------------------------------------------------*/

.navbar {
    background-color: var(--black) !important;
    -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;
}

#dnn_dnnLOGO_imgLogo {
    max-width: 150px;
    padding: 2% 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;
}

    .nav-minimize #dnn_dnnLOGO_imgLogo {
        max-width: 150px;
    }

.navbar-brand {
    padding: 0 !important;
}

.nav-link {
    font-family: "adelle-mono-flex", monospace;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 40px;
    letter-spacing: 1px;
    display: inline-block;
    color: var(--offwhite) !important;
    text-decoration: none;
    text-transform: uppercase;
}

    .nav-link:hover {
        text-decoration: none;
        color: var(--primary) !important;
    }

    .nav-link:visited {
        color: var(--offwhite);
    }

        .nav-link:visited:hover {
            text-decoration: none;
            color: var(--primary) !important;
        }

.navbar ul {
    margin-left: 0;
}

.dropdown-menu {
    background-color: var(--black);
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0;
    min-width: 12rem;
}

.dropdown-menu .nav-link {
    line-height: initial;
}

.dropdown-menu .active {
    border-radius: 0px;
}

@media screen and (min-width: 992px) {
    .navbar {
        padding: 0 2%;
    }

    .dropdown-menu {
        border-radius: 0;
    }
}

@media screen and (max-width: 991px) {

    #dnn_dnnLOGO_imgLogo {
        max-height: 120px;
        padding: 5%;
    }

    .navbar-toggler {
        margin: 10px;
    }

    .nav-item {
        margin: 0;
        text-align: center;
    }
}

/*------------------------------------------------*/
/* HERO */
/*------------------------------------------------*/

/* photo hero */

.hero-bg {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Portals/198/twovisionnx-hero-image.webp');
    background-size: cover;
    background-position: 50% 100%;
    object-fit: cover;
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

/* text */

.hero-text {
    position: absolute;
    top: 50%;
    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,
.hero-text p,
.hero-text a {
    color: var(--offwhite);
}

    .hero-text h1 {
        -webkit-text-stroke: 0.25px var(--black);
    }

    .hero-text a:hover {
        color: var(--primary);
    }

    .hero-text a:visited {
        color: var(--white);
    }

        .hero-text a:visited:hover {
            color: var(--primary);
        }

.hero-text img {
    max-width: 700px;
    width: 100%;
}

@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;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 400px) {
    .hero-text h1,
    .hero-text h2 {
        font-size: 10vw;
    }

    .hero-text h3 {
        font-size: 7vw;
    }

    .hero-text img {
        max-width: 40vw;
    }
}

/*------------------------------------------------*/
/* MAIN CONTENT                                   */
/*------------------------------------------------*/

.PageType_Home .hero-bg {
    min-height: 100vh;
}

#MainContent {
    margin-bottom: 1rem;
    width: 100%;
    overflow-x: hidden;
}

    #MainContent h2 {
        font-family: "reklame-script", sans-serif;
        font-weight: 500;
        font-size: clamp(4rem, 3.358rem + 3.019vi, 6rem);
        color: var(--primary);
    }

    #MainContent ul li {
        list-style-type: disc;
    }

#MapContent p {
    margin: 0;
    padding: 0;
    line-height: 0;
}

@media screen and (min-width: 992px) {
    #MainContent > * > * {
        padding-left: 5%;
        padding-right: 5%;
    }

    #MainContent .row {
        margin-right: 0;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    #MainContent {
        padding-top: 0;
        padding-bottom: 0%;
    }
}

/* home */

.PageType_Home .navbar {
    display: none;
}

.PageType_Home #FullWidthTwo {
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)), url('/Portals/_default/images/AdobeStock_463543959.webp');
    background-size: cover;
    background-position: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/*------------------------------------------------*/
/* COMPONENTS */
/*------------------------------------------------*/

/* boxes */

.content-box {
    display: flex;
    flex-direction: column;
    padding: 0.5em 1em;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
    text-align: center;
    background: var(--black);
    color: var(--offwhite);
    border: 2px solid var(--offwhite);
    border-radius: 12px;
}

    .content-footer {
        margin-top: auto;
    }

    .content-box h2 {
        margin-bottom: 0;
        color: var(--primary);
    }

    .content-box h3,
    .content-box h4,
    .content-box h5,
    .content-box h6 {
        color: var(--offwhite);
    }

    .content-box p,
    .content-box li {
        color: var(--offwhite);
    }

    .content-box ul {
        text-align: left;
        margin-left: -10px;
    }

@media screen and (min-width: 992px) {
    .content-box {
        height: 100%;
    }
}

.ribbon-box {
    position: relative;
    overflow: hidden;
}

.ribbon-overlay {
    position: absolute;
    top: 93px;
    left: -38px;
    overflow: hidden;
    padding: 1px 50px;
    transform: rotate(-45deg);
    transform-origin: top left;
    background-color: var(--darkblue);
    text-transform: uppercase;
    cursor: default;
}

    .ribbon-overlay p {
        font-size: 0.95em;
        margin-top: 0;
        margin-bottom: 0;
        color: var(--lightblue);
    }

.info-text {
    background-color: var(--darkblue);
    color: #fff;
    margin-bottom: 1em;
    padding: 10px;
    min-height: 165px;
}

    .info-text p {
        font-size: 14px;
        text-align: justify;
    }

.info-title {
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    width: 80%;
    margin: -25px auto 0;
    position: relative;
    z-index: 10;
    padding: 5px 10px;
    -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;
}

    .info-title a {
        color: var(--white);
    }

    .info-title:hover {
        background-color: var(--darkblue);
    }

@media screen and (min-width:992px) {
    .content-box {
        width: 100%;
        padding: 1em;
    }

    .content-section {
        margin-top: auto;
    }
}

/* booking buttons */

.book-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    color: var(--offwhite) !important;
    text-transform: uppercase;
    border: 1px solid var(--offwhite);
    border-radius: 18px;
    -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(--black);
        color: var(--primary) !important;
        border-color: var(--primary);
        text-decoration: none;
    }

/* zoom buttons */

.zoom-button {
    cursor: pointer;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
}

    .zoom-button img {
        width: 100%;
        aspect-ratio: 16 / 9;
        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;
    }

/* how-to text */

.how-to-box {
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 4em;
}

    .how-to-box h2 {
        font-size: 5em;
        transform: scaleY(3) scaleX(2);
        color: rgba(0, 0, 0, 0.25);
    }

.how-to-overlay {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* faq accordion */

.accordion-item {
    border: none !important;
    background-color: var(--black);
}

.accordion-item .accordion-button {
    border-radius: 12px !important;
}

.accordion button {
    font-family: "adelle-mono-flex", monospace;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: var(--blue);
}

.accordion-body p,
.accordion-body li {
    color: var(--white);
}

.accordion-button::after {
    background-image: url('/Portals/174/plus-circle-fill.png');
    transform: scale(1) !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('/Portals/174/dash-circle-fill.png');
}

.accordion-button:not(.collapsed) {
    background-color: var(--darkblue);
    color: var(--white);
}

/* font & text classes */

.font-roman {
    font-family: hwt-roman-extended-light-fac, serif;
    font-weight: 500;
    font-style: normal;
}

.bold-darkblue {
    font-weight: bold;
    color: var(--darkblue);
}

.font-small {
    font-size: 0.7em;
}

/* fade in */

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

    .fade-in-left.is-visible,
    .fade-in-right.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-in-bottom.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* hover glow */

@media screen and (min-width: 992px) {
    .hover-glow:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 20px -10px rgba(33, 115, 17, .35);
        -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;
    }

    .hover-glow:not(:hover) {
        -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;
    }

    .hover-glow.content-box {
        border-color: var(--offwhite);
    }

        .hover-glow.content-box:hover {
            border-color: var(--primary);
        }
}

/* faq accordion */

.accordion-item {
    background: var(--secondary);
    border: none !important;
}

    .accordion-item .accordion-button {
        font-size: 1.25rem;
    }

.accordion button {
    font-family: rubik, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: var(--black);
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-color: var(--secondary);
}

    .accordion-button:focus {
        border-color: none !important;
        box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
        background-color: var(--secondary);
        color: var(--black);
        box-shadow: none !important;
    }

@media screen and (max-width: 991px) {
    .accordion-button {
        padding: 1rem 0.5rem !important;
    }

    .accordion-item .accordion-button {
        font-size: 1rem;
    }

    .accordion-button::after {
        transform: scale(0.75) !important;
    }
}

/* contact lists */

.contact-email::before {
    font-family: bootstrap-icons;
    content: "\F32C";
    font-size: 2rem;
    margin-right: 10px;
}

.contact-phone::before {
    font-family: bootstrap-icons;
    content: "\F5B4";
    font-size: 2rem;
    margin-right: 10px;
}

.contact-hours::before {
    font-family: bootstrap-icons;
    content: "\F291";
    font-size: 2rem;
    margin-right: 10px;
}

/* photo sets */

.photoset {
    margin-top: 2em;
    margin-bottom: 2em;
}

    .photoset img {
        width: 100%;
        height: auto;
        padding: 0.25em;
    }

/* videos */

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* quick forms */

.DnnModule-DNNSmartQuickForm {
    width: 100%;
    justify-self: center;
}

/* recaptcha */

.grecaptcha-badge {
    opacity: 0;
}

/* misc */

.list-no-bullets,
.list-no-bullets > * {
    list-style-type: none !important;
    padding-left: 0 !important;
}

/*------------------------------------------------*/
/* FOOTER */
/*------------------------------------------------*/

footer {
    background-color: var(--black);
    padding: 2% 0;
    text-align: center
}

footer .Normal {
    font-size: 18px;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p {
    color: var(--offwhite);
}

    footer p {
        margin: 0
    }

footer a {
    color: var(--offwhite);
}

    footer a:hover {
        color: var(--uscheduleblue);
    }

    footer a:visited {
        color: var(--offwhite);
    }

        footer a:visited:hover {
            color: var(--uscheduleblue);
        }

#FooterTop {
    margin-top: 0rem;
}

#FooterTop h3 {
    color: var(--darkblue);
}