/*Program Finder updates 1/14/25 - Hannon Hill*/
.programs-list .col-12 ul div {
    display: block;
    padding-left: 0;
    position: relative;
    z-index: 10;
}

html .program-list-wrapper .programs-list ul li a {
    height: 100%;
}

html .program-list-wrapper .programs-list div.col-12:not(:first-child) {
    margin-top: 2rem;
}

html .programs-list .col-12 ul ul li:before {
    display: none;
}

html .program-list-wrapper .programs-list div {
    margin-top: auto;
}

html .program-list-wrapper .programs-list ol li a, html .program-list-wrapper .programs-list ul li a {
    font-size: 1.3rem;
}

.programs-list .col-12 ul div span {
    padding: 0;
    display: inline-block;
}
.programs-list .col-12 ul div span:not(:last-child):after {
    content: ", ";
}

.programs-list .col-12 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
}

.programs-list .col-12 ul lh {
    grid-column: 1 / -1;
}

.programs-list .col-12 > ul > li {
    background: #18311c;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 1;
    transition: all 250ms ease;
    min-height: 12rem;
    padding: 1rem;
}

.programs-list .col-12 > ul > li a{
    transition: all 250ms ease;
}

.programs-list .col-12 > ul > li:hover, .programs-list .col-12 > ul > li:hover a {
    color: white;
} 

.programs-list .col-12 ul li .program-background {
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    transition: all 375ms ease;
    top: 0;
    left: 0;
}

.programs-list .col-12 ul li:hover .program-background {
    opacity: 1;
}

.programs-list .col-12 ul li:hover {
    cursor: pointer;
}

.programs-list .col-12 ul li a {
    position: relative;
    z-index: 10;
    font-weight: bold;
}

.programs-list .col-12 ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #23380d;
    mix-blend-mode: hard-light;
    z-index: 5;
    opacity: 0;
    transition: all 250ms ease;
}

.programs-list .col-12 ul li:hover:before {
    opacity: 1;
}

html .program-list-wrapper .programs-list ol li:last-of-type, .program-list-wrapper .programs-list ul span {
    margin-bottom: 0;
}

html .program-list-wrapper .programs-list ol li a, .program-list-wrapper .programs-list ul li a {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 992px) {
    .programs-list .col-12 ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .programs-list .col-12 ul {
        grid-template-columns: repeat(1, 1fr);
    }
}
/*Start Hero drawer updates 12/22/24 - Hannon Hill*/
.pageHero .w-100.h-100.drawer-container {
    position: absolute;
    top: 0;
    left: 0;

    span {
        color: #fff;
        z-index: 10;
        position: relative;

        i {
            font-size: 14px;
            border: 1px solid #fff;
            padding: .25rem;
            /* aspect-ratio: 1 / 1; */
            /* width: 100%; */
            width: 24px;
            border-radius: 9999px;
            margin-right: .25rem;
            transition: transform 300ms ease;

            &::before {
                position: relative;
            }

            &.fa-xmark {
                transform: rotate(360deg);

                &::before {
                    /* left: 2px; */
                }
            }

            &.fa-info {
                &::before {
                    /* left: 4px; */
                }
            }
        }
    }

    .drawer-trigger {
        bottom: -93.75%;
        right: -75%;
        position: relative;
        background: rgb(0 0 0 / .5);
        width: fit-content;
        padding: .5rem;
        cursor: pointer;
        border: 0;
        z-index: 20;

        @media (max-width: 635px) {
            right: -50%;
            transform: translateX(-50%);
            z-index: 20;
        }
    }

    .drawer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / .75);
        z-index: 15;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: #fff;
        transition: transform 300ms ease;
        transform: translateY(100%);
        &.drawer-open {
            transform: translateY(0);
        }

        h2 {
            color: #fff;
        }
        p {
            font-size:1.05rem;
        }
    }
}

.pageHero .w-100.h-100:first-of-type {
    z-index: 5;
}

@media (min-width: 992px) {
    .siteHeader .site-nav .nav-item.has-megamenu.megamenu-opened .dropdown-menu {
        display: block;
        top: 96%;
        left: 0;
        border-radius: 0;
    }
}

.siteHeader .site-nav .nav-item.has-megamenu.megamenu-opened {
    /* background: rgb(133, 150, 89); */
    background: rgb(97, 124, 70);
}

.siteHeader .site-nav .nav-item.has-megamenu.megamenu-opened .nav-item-wrapper .toggle-icon .fa-angle-down {
    transform: rotate(180deg);
}
/*End Hero drawer updates*/

.pageHero {
    position: relative;
    overflow: hidden;
    
    .w-100.h-100 {
        position: relative;
    }
    
    img.img-fluid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

blockquote.grey-bg {
    background: #DFDDDC;
    padding: 1.875rem;
    border-radius: 0 1.875rem 1.875rem 1.875rem;
    outline: 1px solid #315338;
}
.quote-image-container {
    display: flex;
    gap: 1rem;
    .quote-image {
        /* width: min(100%, 600px); */
        /* height: 400px; */
        height: auto;
        overflow: hidden;
        border-radius: 0 1.875rem 1.875rem 1.875rem;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    blockquote {
        width: min-content;
        height: fit-content;
        flex-grow: 1;
    }
}


.quote-image-reversed {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .quote-image-container {
        flex-direction: column;
        blockquote {
            width: 100%;
        }
    }
}
/* Section Banner Updates 10/8/2024 */
html .quote-wrapper blockquote p {
    font-weight: 400;
}
.section-banner-cta-wrapper {
    position: relative;
}
.section-banner-cta-container {
    position: absolute;
    /* border: 1px solid red; */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 1rem;
    background: rgb(0 0 0 / 0.5);
    width: max-content;
    max-width: 95%;
}
.section-banner-header {
    font-size: calc(1.325rem + 0.9vw);
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-align: center;
}

.section-banner-cta-container p {
    text-align: center;
}

.section-banner-cta-container .btn:not(.btn-light) {
    background-color: #fff;
    border: 4px solid #fff;
    color: #305338;
    transition: all 0.3s ease-in-out;
}
.section-banner-cta-container .btn:not(.btn-light):hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.section-banner-cta-container .btn.btn-light:hover {
    text-decoration: none;
    background: white;
    color: #617c46;
    border: 2px solid white;
}

.section-banner-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .section-banner-cta-wrapper {
        /*margin: 0 1rem;*/
    }
    .section-banner-cta-container {
        position: relative;
        max-width: 100%;
        background: rgb(0 0 0 / 0.9);
    }
    .section-banner-cta {
        flex-direction: column;
    }
}
/* End Section Banner Updates */

.siteHeader .top-nav ul li a.big-cta {
    font-size: 1.4rem;
    padding: 0.5rem 4rem;
}

a.accolade.copper {
    color: #83503b;
}
a.accolade.gray {
    color: #494949;
}
a.accolade.green {
    color: #305338;
}
a.accolade.light_green {
    color: #859659;
}

.article-img-container img {
    width: 95%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    /* padding-bottom: 9px; */
    margin-bottom: 10px;
    border-radius: 0 1.875rem 1.875rem 1.875rem;
}

/*START ADDITIONAL INFO*/
@media (max-width:991.98px) {
    .page-section.gray-box .container-xxl {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .page-section.gray-box .container-xxl {
        padding: 0 2rem;
    }
}

.gray-box {
    background: hsla(30, 4%, 89%, 0.3);
    border: 1px solid #617c46;
    border-radius: 0 1.875rem 1.875rem 1.875rem;
}

.flex-basis-50 {
    flex-basis: 50%;
}

@media (max-width: 1000px) {
    .flex-basis-50 {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .no-x-padding {
        padding: 0 !important;
    }
}
/*END ADDITIONAL INFO*/

.pageHero {
	height: calc(100vh - 184px);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#siteHeader .navbar {
	padding-bottom: 0;
	padding-top: 0;
}
.wysiwyg img {
	 height: auto;
	 max-width: 100%;
}
 .hh-module a:hover, .hh-module a:focus {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-module .primary-button, .hh-module .secondary-button {
	 display: inline-block;
	 padding: 10px 40px;
	 border-radius: 2px;
	 border: none;
	 font-weight: 700;
	 font-size: 14px;
	 text-transform: uppercase;
	 -webkit-transition: .2s all;
	 transition: .2s all;
	 margin-top: 10px;
}
 .hh-module .primary-button {
	 color: #fff;
	 background-color: rgb(48, 83, 56);
	 -webkit-box-shadow: 0 0 0 2px rgb(48, 83, 56) inset;
	 box-shadow: 0 0 0 2px rgb(48, 83, 56) inset;
}
 .hh-module .primary-button:hover, .hh-module .primary-button:focus {
	 color: rgb(48, 83, 56);
	 background: transparent;
	 text-decoration: none;
}
 .hh-module .secondary-button {
	 color: #fff;
	 /*background-color: rgb(133, 150, 89);*/
	 background-color: rgb(97, 124, 70);
	 /*-webkit-box-shadow: 0 0 0 2px rgb(133, 150, 89) inset;*/
	 -webkit-box-shadow: 0 0 0 2px rgb(97, 124, 70) inset;
	 /*box-shadow: 0 0 0 2px rgb(133, 150, 89) inset;*/
	 box-shadow: 0 0 0 2px rgb(97, 124, 70) inset;
}
 .hh-module .secondary-button:hover, .hh-module .secondary-button:focus {
	 /*color: rgb(133, 150, 89);*/
	 color: rgb(97, 124, 70);
	 background: transparent;
	 text-decoration: none;
}
/* News Customization */
 .hh-news .post-title a {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-news .post-title a:hover, .hh-news .post-title a:focus {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-news .post-category span {
	 color: #305338;
}
 .hh-news .category-widget ul {
	 list-style: none;
}
 .hh-news .category-widget ul li a {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-news .category-widget ul li a:hover, .hh-news .category-widget ul li a:focus {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
/* .hh-news ul, .hh-news ol {*/
/*	 padding-inline-start: 0;*/
/*	 padding-left: 0;*/
/*	 margin-left: 0;*/
/*	 line-height: 1.25;*/
/*}*/
 .hh-news .social-widget ul {
	 list-style: none;
}
 .hh-news .social-widget ul li a:hover, .hh-news .social-widget ul li a:focus {
	 text-decoration: none;
}
/* Events Customizations */
 .hh-events .events {
	 background: transparent;
}
 .hh-events .events .events-list {
	 display: block;
}
/* Directory Customizations */
 .hh-directory .dirItem .panel .panel-title > a {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-directory .dirItem .panel .panel-title > a:focus, .hh-directory .dirItem .panel .panel-title > a:hover {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-directory .pagination>li>a, .hh-directory .pagination>li>span {
	 color: rgb(73, 73, 73);
}
 .hh-directory .pagination>.active>a, .hh-directory .pagination>.active>a:focus, .hh-directory .pagination>.active>a:hover, .hh-directory .pagination>.active>span, .hh-directory .pagination>.active>span:focus, .hh-directory .pagination>.active>span:hover {
	 background-color: rgb(73, 73, 73);
	 border-color: rgb(73, 73, 73);
}
 .pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
	 text-decoration: none;
	 background-color: rgb(182, 181, 182);
}
 .hh-directory .hh-user-title {
	 margin-top: 10px;
}
/* Events Customization */
 .hh-events .events .events-list .event a {
	 display: block;
}
 .hh-events .event a:hover .title, .hh-events .event a:focus .title {
	 text-decoration: underline;
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events .sidebar .section-title .title {
	 font-size: 1.25rem;
}
 .hh-events .feeds a:hover, .hh-events .feeds a:focus {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events .sidebar .checkboxes label:hover, .hh-events .sidebar .checkboxes label input:focus~span {
	 /*color: rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events .sidebar .dropdown select:hover, .hh-events .sidebar .dropdown select:focus, .hh-events .sidebar-detail .dropdown select:hover, .hh-events .sidebar-detail .dropdown select:focus {
	 /*border-color: rgb(133, 140, 89);*/
	 border-color: rgb(97, 124, 70);
}
 .hh-events .primary-button.primary-button-white.dropdown-toggle:hover {
	 /*border-color: rgb(133, 140, 89);*/
	 border-color: rgb(97, 124, 70);
}
 .hh-events .sidebar input:focus {
	 /*outline-color: rgb(133, 140, 89);*/
	 outline-color: rgb(97, 124, 70);
}
 .hh-events input.input {
	 width: 100%;
	 height: 40px;
	 padding: 0 15px;
	 background-color: #fff;
	 border-radius: 2px;
	 border: 2px solid #e8eaed;
}
 .hh-events .dropdown-toggle::after {
	 display: none;
}
 .hh-module .sidebar .primary-button.btn-block, .hh-module .sidebar .secondary-button.btn-block {
	 margin-top: 0;
}
 .hh-events .sidebar-detail h2.title {
	 font-size: 1.25rem;
}
 .hh-events .back-to-top {
	 background-color: rgb(108, 132, 148);
	 background-image: none;
	 border: none;
}
 .hh-events .back-to-top:hover, .hh-events .back-to-top:focus {
	 background-color: rgb(50, 61, 93);
	 background-image: none;
	 border: none;
}
 .hh-events .icon {
	 /*color: rgb(133, 150, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events .icon-list a:hover span {
	 /*color:rgb(133, 140, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events .icon-list a:hover {
	 text-decoration: none;
}
 .hh-events .date-img {
	 /*border-color: rgb(133, 140, 89);*/
	 border-color: rgb(97, 124, 70);
}
 .hh-events .date-img .month {
	 /*background: rgb(133, 140, 89);*/
	 background: rgb(97, 124, 70);
}
 .hh-events .date-img .day {
	 /*color: rgb(133, 150, 89);*/
	 color: rgb(97, 124, 70);
}
 .hh-events a:hover .date-img {
	 border-color: rgb(48, 83, 56);
}
 .hh-events a:hover .date-img .month {
	 background:rgb(48, 83, 56);
}
 .hh-events a:hover .date-img .day {
	 color: rgb(48, 83, 56);
}
 .hh-events .loading-spinner {
	 color:rgb(108, 132, 148);
}
 .hh-events .sidebar .date-views button {
	 padding-left: 6px !important;
	 padding-right: 6px !important;
}
 .hh-events .sidebar .date-views button:hover, .hh-events .sidebar .date-views button:focus, .hh-events .sidebar .date-views button.active {
	 border-color: rgb(48, 83, 56);
	 color: rgb(48, 83, 56);
}
/* CUSTOMIZATIONS */
 .cards .card.bg-green a {
	 color: #fff;
}
 .cards .card.bg-green a:hover, .cards .card.bg-green a:focus, .cards .card.bg-green a:active {
	 /*text-decoration: underline;*/
	 text-decoration: none;
	 background: white;
	 color: #617c46;
}
 table:not(.table-standard) {
	 caption-side: top;
}
 table:not(.table-standard) caption {
	 text-align: center;
}
 section.page-section.wysiwyg + section.page-section.accordion-wrapper {
	 margin-top: 0;
	 padding-top: 0;
}

@media(max-width: 991px) {
	.hh-module .newsletter-widget:after {
		content: ''
	}
	.hh-module .post.post-widget .post-img {
		display: block;
		width: 100%;
		float:none;
	}
	.hh-module .post.post-widget .post-body {
		margin-left: 0;
	}
}
.accordion-wrapper .accordion .accordion-item .accordion-body img {
    max-width: 100%;
    height: auto;
}
.showcase-title {
    color: #617c46;
    font-size: calc(1.325rem + 0.9vw);
    margin-bottom: 1rem;
}