/**
 * This file will be included in header in every page after reboot.
 * It should be used for content that relates
 * to your site as a whole, it should not be used for plugin-specific css.
 */
html {
    overflow-y: scroll;
}

body > .contentRender {
    min-height: 100%;
    height: 100%;
}

/* This ensures that the page always has a scrollbar to ensure that some headers load correctly without FOUC */
html, body {
    height: 100%;
    font-family: var(--font-body);
    color: var(--gray-900);
}

.sr-only {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Skip links */
.skip-link[href] {
    z-index: 5000000;
    display: block;
    margin: 0;
    padding: var(--space-8) var(--space-12);
    width: auto;
    height: auto;
    font-size: var(--text-3xl);
    line-height: var(--leading-tight);
    color: var(--gray-100);
    text-align: center;
    border: 4px dashed var(--gray-100);
    background: var(--gray-900);
    opacity: 0;
    clip: auto;
    pointer-events: none;
    transition: opacity 200ms cubic-bezier(0,0,0.3,1);
}

.skip-link[href]:focus {
    opacity: 1;
    pointer-events: all;
}

/* Set General max-width of site content */
.contentRender_name_plugins_core_textbox,
.contentRender_name_plugins_nav_sitemap,
.contentRender_name_plugins_search_results,
.contentRender_name_plugins_common_button,
.contentRender_name_plugins_collections_template_custom_list,
.contentRender_name_plugins_collections_template_custom_contacts,
.contentRender_name_plugins_blog_leisure_blog_posts,
.contentRender_name_plugins_blog_articles_posts,
.contentRender_name_plugins_crm_formbuilder,
.contentRender_name_plugins_events_submitevent,
.contentRender_name_plugins_crm_rfp,
.contentRender_name_plugins_crm_rsvp {
    width: 100%;
    padding: 0 var(--space-5);
    margin: 0 auto;
}

.contentRender_name_plugins_collections_template_custom_contacts {
    padding: var(--space-16) var(--space-5);
    background: linear-gradient(to top, rgba(248, 247, 249, 1), rgba(248, 247, 249, 0) 100%);
}

.contentRender_name_plugins_core_textbox {
    padding: var(--space-8) var(--space-5);
    max-width: 1010px;
}

/* BEGIN Default Button */

.button-default {
    position: relative;
    display: inline-block;
    padding: var(--space-1) var(--space-4) var(--space-1) var(--space-6);
    background-image: url('/includes/public/assets/shared/btn-arrow.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 17px auto;
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-left: none;
    color: var(--black-alt);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: normal;
    letter-spacing: .06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        padding var(--long-transition-speed-and-ease),
        background-position var(--long-transition-speed-and-ease);
}
.button-default.transparent {
    background-color: transparent;
}
.button-default.transparent-10 {
    background-color: rgba(255,255,255,.1);
}
.button-default.transparent-dark-30 {
    background-color: rgba(0,0,0,.3);
}
.button-default.white-arrow {
    background-image: url('/includes/public/assets/shared/btn-arrow-white.svg');
}
.button-default.dark {
    background-color: var(--light-blue-alt);
}
.button-default::before,
.button-default::after {
    position: absolute;
    left: 0;
    display: block;
    content: '';
    width: 1px;
    height: 50%;
    background: var(--medium-gray);
    pointer-events: none;
    transform: scaleY(.5);
    transition: transform var(--long-transition-speed-and-ease);
}

.button-default::before {
    transform-origin: center top;
}
.button-default::after {
    transform-origin: center bottom;
}

.button-default.front-white {
    color: var(--white);
    border-color: var(--white);
}
.button-default.front-white::before,
.button-default.front-white::after {
    background: var(--white);
}
.button-default::before {
    top: 0;
}
.button-default::after {
    bottom: 0;
}
.button-default.blur {
    backdrop-filter: blur(5px);
}

.sv-hidden {
    display: none;
}


@media (hover: hover) {
    .button-default:hover {
        padding-left: calc(var(--space-8) - 2px);
        padding-right: calc(var(--space-2) + 2px);
        background-position: var(--space-2) center;
        text-decoration: none;
    }
    .button-default:hover::before,
    .button-default:hover::after {
        transform: none;
    }
}

/* END Default Button */

@media (min-width: 64em) {
    .button-default {
        padding: var(--space-2) var(--space-4) var(--space-2) var(--space-6);
    }
    .contentRender_name_plugins_search_results,
    .contentRender_name_plugins_nav_sitemap,
    .contentRender_name_plugins_common_button,
    .contentRender_name_plugins_common_jumplist_outer,
    .contentRender_name_plugins_collections_template_custom_list,
    .contentRender_name_plugins_crm_formbuilder,
    .contentRender_name_plugins_events_submitevent,
    .contentRender_name_plugins_crm_rfp,
    .contentRender_name_plugins_crm_rsvp  {
        max-width: var(--width-base);
    }
}

/* a button wrapper for convenience */

.button-wrapper {
    display: flex;
    padding: var(--space-6) 0 var(--space-4) 0;
}

.button-wrapper.justify-right {
    justify-content: flex-end;
}

.button-wrapper.justify-center {
    justify-content: center;
}

/* Panels */
.panel-page {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr auto;
    min-height: 100%;
}

.panel-page.no-slideshow #main-content {
    margin-top: 120px;
}

.panel-navigation-share {
    display: flex;
	justify-content: flex-start;
	align-items: center;
	max-width: var(--width-base);
    padding: 0 var(--space-5);
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-navigation-share .navigation-container { 
	display: none; 
}

.panel-navigation-share .share-container { 
	margin-left: auto;
    padding: 20px 0 0;
}

.panel-social {
    max-width: var(--width-base);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.panel-social .title-container {
    text-align: center;
}

.one-column .row {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.one-column .row.content-width-row {
    max-width: var(--width-comfortable);
}

.panel-three-column,
.panel-two-column {
    max-width: var(--width-base);
    padding: 0;
    margin: 0 auto;
    margin-bottom: var(--space-8);
}

.panel-three-column :is(.left-container, .center-container, .right-container),
.panel-two-column :is(.left-container, .right-container) {
    padding: 0 var(--space-5);
}

:is(.panel-intro, .panel-social, .panel-three-column, .panel-two-column) .contentRender_name_plugins_core_textbox {
    padding: 0;
}

.sv-col > .contentRender > .sv-panel {
    margin-left: calc(-1 * var(--space-5));
    margin-right: calc(-1 * var(--space-5));
}

[id^="sv_adminBar"] {
    display: none;
}

@media (min-width: 64em) {
    .panel-navigation-share .navigation-container { display: block; }

    .panel-three-column,
    .panel-two-column {
        display: flex;
    }

    .panel-two-column.sidebar-left .left-container {
        order: 1;
        flex-basis: 40%;
    }

    .panel-two-column.sidebar-left .right-container {
        order: 2;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .left-container {
        order: 1;
        flex-basis: 60%;
    }

    .panel-two-column.sidebar-right .right-container {
        order: 2;
        flex-basis: 40%;
    }

    .panel-two-column.even :is(.left-container, .right-container) {
        flex-basis: 50%;
    }

    .panel-three-column > * { flex-basis: calc(100% / 3); }
}

/* Rando Typography */
.small-gray-text {
    display: block;
	font-size: var(--text-lg);
    font-weight: normal;
	letter-spacing: .01em;
	font-family: var(--font-body-bold-italic);
    font-style: normal;
	color: #c0c0c0;
}

/*=========================================*/
/*===-----  BLOG HIGHLIGHTS PANEL  -----===*/
/*=========================================*/

/*=====---- GENERAL ----=====*/

.panel-blog-highlights {
    padding: var(--space-4) 0 0 0;
    background: #000000;
}

.panel-blog-highlights,
.panel-blog-highlights .core-cards,
.panel-blog-highlights .core-side-by-side {
    color: var(--white);
}

.panel-blog-highlights .core-cards .slide .slide-title,
.panel-blog-highlights .core-side-by-side .slide .slide-title,
.panel-blog-highlights .core-cards .content-section p,
.panel-blog-highlights .core-side-by-side .slide p {
    color: inherit;
}

.panel-blog-highlights .blog-feed-header {
    display: none !important;
}

/*=====---- CONTENT (under slides) ----=====*/

.panel-blog-highlights.no-intro {
    padding-bottom: 52px;
}

.panel-blog-highlights .intro-section {
    position:relative;
    padding: 56px 60px 52px 60px;
}

.panel-blog-highlights .intro-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--width-comfortable);
    margin:0 auto;
    text-align: center;
}

.panel-blog-highlights .intro-title,
.panel-blog-highlights .intro-desc {
    font-weight: normal;
    color: inherit;
}

.panel-blog-highlights .intro-title {
    font-size: 3.125rem;
    font-family: var(--font-display-bold);
    line-height: var(--leading-none);
    letter-spacing: .04rem;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
}

.panel-blog-highlights .intro-desc {
    font-family: var(--font-body-bold-italic);
    font-size: var(--text-xl);
    line-height: 1.2;
}

.panel-blog-highlights .intro-background,
.panel-blog-highlights .intro-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.panel-blog-highlights .intro-background::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 25%;
    z-index: 2;
    display: block;
    content: '';
    background: linear-gradient(to bottom, #000000, rgba(0,0,0,0) 100%);
}

.panel-blog-highlights .intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=====---- WIDGETS ----=====*/

/*--- General ---*/

.panel-blog-highlights .core-cards .slide .slide-title,
.panel-blog-highlights .core-side-by-side .slide .slide-title {
    font-size: var(--text-3xl);
    font-weight: normal;
    text-transform: uppercase;
    line-height: var(--leading-none);
    letter-spacing: .04rem;
    margin-bottom: var(--space-4);
}

.panel-blog-highlights .core-cards .slide .slide-title a,
.panel-blog-highlights .core-side-by-side .slide .slide-title a {
    text-decoration: none !important;
}

.panel-blog-highlights .core-cards .content-section p,
.panel-blog-highlights .core-side-by-side .slide p {
    font-size: var(--text-lg);
    font-weight: normal;
    line-height: 1.333;
    letter-spacing: .02rem;
}

.panel-blog-highlights .core-cards .slide .img-cont,
.panel-blog-highlights .core-side-by-side .slide .img-cont {
    margin-bottom: var(--space-4);
}

/*--- Cards ---*/

.panel-blog-highlights .core-cards {
    margin-bottom: 56px;
}

.panel-blog-highlights .core-cards .slides {
    padding: 0 var(--space-5);
    gap: 70px;
}

/*--- Side by Side ---*/

.panel-blog-highlights .core-side-by-side {
    padding-top: 0;
}

.panel-blog-highlights .core-side-by-side .slides {
    width: 100%;
    max-width: var(--width-base);
    margin:0 auto;
}

.panel-blog-highlights .core-side-by-side .slide > .inner {
    padding: 0;
    max-width: none;
}

.panel-blog-highlights .core-side-by-side .slide .content-section .content-top {
    display: block;
}

.panel-blog-highlights .core-side-by-side .slide .content-section,
.panel-blog-highlights .core-side-by-side .slide .content-section .heading-container {
    display: block;
}

.panel-blog-highlights .core-side-by-side .slide .content-section {
    padding: 0 var(--space-5);
}


.panel-blog-highlights .core-side-by-side .slide .slide-title {
    font-size: 2.5rem;
    line-height: var(--leading-none);
}

/*=====---- MEDIA QUERIES ----=====*/

@media screen and (min-width: 40em) {
    /*--- Panel Content ---*/

    .panel-blog-highlights .intro-section {
        padding-top: 90px;
    }

    /*--- Widgets ---*/

    .panel-blog-highlights .core-cards {
        margin-bottom: 90px;
    }

    .panel-blog-highlights .core-cards .slides {
        grid-template: auto / repeat(3, 1fr);
        gap: 10px;
    }

    .panel-blog-highlights .core-cards .slide .slide-title {
        font-size: var(--text-2xl);
    }

    .panel-blog-highlights .core-cards .content-section p {
        font-size: var(--text-base);
    }

    .panel-blog-highlights .core-side-by-side .slide .content-section {
        padding: 0;
    }

    .panel-blog-highlights .core-side-by-side .slide > .inner,
    .panel-blog-highlights .core-side-by-side .slide .content-section > .inner {
        display: block;
    }

    .panel-blog-highlights .core-side-by-side .slide .content-section > .inner {
        padding-right: 0;
    }

    .panel-blog-highlights .core-side-by-side .slide .content-section > .inner {
        max-width: none;
    }
}

@media screen and (min-width: 64em) {
    /*--- Panel ---*/

    .panel-blog-highlights {
        padding: 50px 0 0 0;
    }

    .panel-blog-highlights.no-intro {
        padding-bottom: var(--space-16);
    }

    .panel-blog-highlights .intro-section {
        padding-top: 116px;
        padding-bottom: var(--space-16);
    }

    .panel-blog-highlights .intro-title {
        font-size: 6.267rem;
        margin-bottom: var(--space-3);
    }

    .panel-blog-highlights .intro-desc {
        font-size: 1.625rem;
    }

    /*--- Widgets ---*/

    .panel-blog-highlights .core-cards .slides {
        gap: 30px;
    }

    .panel-blog-highlights .core-cards .slide .slide-title {
        font-size: var(--text-3xl);
    }

    .panel-blog-highlights .core-cards .content-section p {
        font-size: var(--text-lg);
    }

    .panel-blog-highlights .core-side-by-side .slides {
        padding: 0 var(--space-5);
    }
}

@media screen and (min-width: 90em) {
    /*--- Widgets ---*/

    .panel-blog-highlights .core-cards .slide .slide-title,
    .panel-blog-highlights .core-side-by-side .slide .slide-title {
        line-height: 1.133;
    }

    .panel-blog-highlights .core-cards .content-section p,
    .panel-blog-highlights .core-side-by-side .slide p {
        font-size: 1.0625rem;
        line-height: 1.47;
        letter-spacing: 0;
    }

    .panel-blog-highlights .core-side-by-side .slide > .inner {
        display: grid;
        grid-template: auto / 57.5% 1fr;
        gap: 34px;
    }
    
    .panel-blog-highlights .core-side-by-side .slide .img-cont {
        margin-bottom: 0;
    }
    
    .panel-blog-highlights .core-side-by-side .slide .content-section {
        padding: var(--space-8) 0;
    }
    
    .panel-blog-highlights .core-side-by-side .slide .slide-title {
        font-size: 2.75rem;
        line-height: 1.09;
    }

    .panel-blog-highlights .core-side-by-side .slide p {
        font-size: 1.1875rem;
        line-height: 1.42;
    }
}

/*===========================================*/
/*===-----  MARQUEE CONTAINER PANEL  -----===*/
/*===========================================*/

.marquee-container {
    padding: var(--space-8) 0;
    margin-bottom: var(--space-12);
}

.marquee-row {
    width: 100%;
	max-width: 1210px;
	margin:0 auto;
	padding:0 var(--space-5);
}

@media (min-width: 40em) {	
	.marquee-row {
		display: grid;
		grid-template: auto / 2fr 1fr;
		align-items: start;
		gap: var(--space-10);
	}
}

@media screen and (min-width: 90em) {
    .marquee-row {
		grid-template: auto / 1fr 300px;
		gap: 90px;
	}
}