/*  Foxbright 2025 Redesign - (Default2)

Custom Page classes: 
- page_neutral_focus
- no_column_top_padding
-----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,700;1,700&display=swap');

:root {
    --FB_Black:       #383939; /* 11.58 */

    --FB_DkGray:                #434343; /* 9.89 - text color, footer background */
    --FB_Orange:                #f26524; /* 3.15 - buttons, accents */
    --FB_Blue:                  #3C8CA5; /* 3.82 - icons */
    --FB_LtBlue:                #D1E7ED; /* 1.28 - backgrounds, icons */
    --FB_LtTan:                 #F5F5F1; /* 1.09 - backgrounds */

    --Filter_ColorBlue:         brightness(0) saturate(100%) invert(50%) sepia(19%) saturate(1171%) hue-rotate(148deg) brightness(94%) contrast(93%);
    --Filter_ColorOrange:       brightness(0) saturate(100%) invert(59%) sepia(83%) saturate(3906%) hue-rotate(345deg) brightness(96%) contrast(97%);


    --Color_Primary:            var(--FB_DkGray);
    --Color_ComplPrimary:       var(--Color_White);
    --Color_AltComplPrimary:    var(--FB_LtBlue);
    --Color_TransPrimary:       color-mix(in oklab, var(--Color_Primary), transparent 15%);

    --Color_Secondary:          var(--FB_Blue);
    --Color_ComplSecondary:     var(--Color_White);

    --Color_Accent:             var(--FB_Orange);
    --Color_ComplAccent:        var(--FB_DkGray);

    --Color_White:              #ffffff;
    --Color_XXLtGray:           var(--FB_LtTan);
    --Color_XLtGray:            var(--FB_LtTan);
    --Color_LtGray:             rgba(67, 67, 67, 0.20);
    --Color_Gray:               rgba(67, 67, 67, 0.60);
    --Color_Black:              var(--FB_Black);

    --Color_Link:               var(--FB_Blue);

    --Background_XLt:           var(--FB_LtBlue);

    --Font_Body: 'Open Sans',Arial,Helvetica,sans-serif;
    --Font_Heading: 'PT Serif',Arial,Helvetica,sans-serif;

    --Font-Size_Base:           1rem;
    --Font-Size_h1:             3rem;
    --Font-Size_h2:             2.5rem;
    --Font-Size_h3:             1.6rem;
    --Font-Size_h4:             1.2rem;
    --Font-Size_h5:             1.1rem;
    --Font-Size_h6:             1rem;
    --Font-Size_Intro:          1.4rem;
    --Font-Size_Sub:            .825rem;


    --box-shadow:               0 0 6px 0 rgba(0,0,0,0.15);

    --Site_ComponentWidth:      95%;
    --Site_ComponentMaxWidth:   1200px;

    --Header_Height: 150px;
}

.page_body {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--StickyHeader-Height) * 5);
}
@media only screen and (max-width: 767px)
{
    :root 
    {
        --Font-Size_h1:         2rem;
        --Font-Size_h2:         1.8rem;
        --Font-Size_h3:         1.4rem;
    }
}

.bg_blue .addblock_buttonbar_wrapper
{
    background: var(--Color_XXLtGray);
}

/* wrapper & overall structure */
.fbcms_component
{
    max-width: 100%;
    display: block;
    width: 100%;
    position: relative;
}
@media only screen and (min-width: 768px)
{
    .fbcms_header,
    .fbcms_main,
    .fbcms_footer
    {
        --site-padding-inline: 1rem;
        border-inline: solid var(--site-padding-inline) #fff;
    }
    .fbcms_component
    {
        --wrapper-max-width: var(--Site_ComponentMaxWidth);
        --_breakout-column-count: 12;
        display: grid;
        grid-template-columns: 
            [page-start] minmax(var(--section-padding-inline), 1fr)
            [content-start] repeat(var(--_breakout-column-count), minmax(0, calc(var(--wrapper-max-width) / var(--_breakout-column-count))))
            [content-end] minmax(var(--section-padding-inline), 1fr) [page-end];
            grid-auto-flow: column;
    }
    .fbcms_component.vertical-center
    {
        align-items: center;
    }

    .fbcms_component .content_container
    {
        position: relative;
    }
    .fbcms_component .content_container.vertical-center
    {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .fbcms_component .content_container.padding-top0 .firstone
    {
        padding-top: 0;
    }
    .fbcms_component .content_container.padding-bottom0 .lastone
    {
        padding-bottom: 0;
    }
    .fbcms_component .content_container.padding-right0
    {
        padding-right: 0 !important;
    }
    .fbcms_component .content_container.full-width
    {
        grid-column-start: content-start;
        grid-column-end: content-end;
    }
    .fbcms_component .content_container.column_left
    {
        grid-column-start: content-start;
        padding-right: var(--section-padding-inline);
    }
    .fbcms_component .content_container.column_right
    {
        grid-column-end: content-end;
        padding-left: var(--section-padding-inline);
    }
    .fbcms_component .content_container.no-pad 
    {
        padding-inline: 0;
    }
    .fbcms_component .content_container.one-third
    {
        grid-column-end: span 4;
    }
    .fbcms_component .content_container.one-half
    {
        grid-column-end: span 6;
    }
    .fbcms_component .content_container.two-thirds
    {
        grid-column-end: span 8;
    }
    .fbcms_component .content_container.five-12ths
    {
        grid-column-end: span 5;
    }
    .fbcms_component .content_container.seven-12ths
    {
        grid-column-end: span 7;
    }
}

/*=== Background Colors ======================================*/
.bg_white
{
    background: var(--Color_White);
}
.bg_tan,
.bg_split.tan:before
{
    background: var(--FB_LtTan);
}
.bg_blue,
.bg_split.blue:before
{
    background: var(--FB_LtBlue);
}

.bg_split
{
    z-index: 1;
}
.bg_split > * 
{
    z-index: 2;
}
.bg_split:before
{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg_split .fbcms_content
{
    position: relative;
    z-index: 2;
}
.bg_split.upper:before
{
    bottom: calc(100% - var(--_splitbg_height, 50%));
}
.bg_split.lower:before
{
    top: calc(100% - var(--_splitbg_height, 50%));
}
.bg_split:where(:not(:has(.fbcms_content))):before
{
    display: none;
}
.home_content_2
{
    --_splitbg_height: 30%;
}
.page_inside .main_content_middle 
{
    --_splitbg_height: 200px;
}
.inside_blue .main_content_middle.bg_split.lower.blue 
{
    --_splitbg_height: 50%;
}
.page_websites .main_content_middle.bg_split.lower.blue 
{
    --_splitbg_height: 57%;
}
@media only screen and (min-width: 768px)
{
    .round_mtl:before,
    .round_tl
    {
        border-top-left-radius: 80px;
        border-top-right-radius: 10px;
    }
    .round_mtr:before,
    .round_tr
    {
        border-top-right-radius: 80px;
        border-top-left-radius: 10px;
    }
    .round_mbl:before,
    .round_bl
    {
        border-bottom-left-radius: 80px;
        border-bottom-right-radius: 10px;
    }
    .round_mbr:before,
    .round_br
    {
        border-bottom-right-radius: 80px;
        border-bottom-left-radius: 10px;
    }
}

/* Image Backsplash and Callouts */
/*.fbcms_image.backsplash_image
{
    position: relative;
    isolation: isolate;
    margin-inline: var(--section-padding-inline);
}
.fbcms_image.backsplash_image:before
{
    content: "";
    display: block;
    position: absolute;
    inset: calc(var(--section-padding-block) + 20px) calc(-1 * var(--section-padding-inline)) calc(var(--section-padding-block) + 60px);
    border-radius: 9px;
    background: linear-gradient(171deg, rgba(209, 231, 237, 0.70) 49.4%, rgba(241, 103, 38, 0.60) 124.62%);
    z-index: -1;
}
.nav-slider-active .fbcms_image.backsplash_image:before
{
    inset-inline: calc(.5 * var(--section-padding-inline));
}
.fbcms_image.backsplash_image.all_orange:before
{
    background: linear-gradient(139deg, rgba(241, 103, 38, 0.30) 0%, rgba(241, 103, 38, 0.05) 50%, rgba(241, 103, 38, 0.40) 100%);
    mix-blend-mode: color;
}*/
.nav-slider-active .fbcms_richtext.inside_right_callout
{
    margin-inline: var(--section-padding-inline);
}
.page_inside .fbcms_richtext.inside_right_callout
{
    width: fit-content;
    border: solid 1px var(--Color_Accent);
    background: var(--FB_LtTan);
    padding: 1rem 1rem 1px;
    border-radius: 10px;
    position: relative;
    margin-top: 3rem;
}
.page_inside .fbcms_richtext.inside_right_callout h3 
{
    position: absolute;
    top: -2rem;
    left: 0;
    font-size: var(--Font-Size_Sub);
    text-transform: uppercase;
    font-family: var(--Font_Body);
}
.page_inside .fbcms_richtext.inside_right_callout p
{
    font-family: var(--Font_Heading);
    font-size: var(--Font-Size_h4);
}
@media only screen and (min-width: 994px)
{
    .fbcms_component .column_right:has(.inside_right.fbcms_image.backsplash_image)
    {
        padding-left: 0;
    }
    .page_body:where(:not(.fbcms_editmode)) .column_right:has(.inside_right_callout)
    {
        grid-column: span 7;
        margin-right: -1rem;
    }
    /*.page_interior .fbcms_image.backsplash_image:before
    {
        inset-block: 20px;
    }
    .page_interior .fbcms_image.backsplash_image.firstone
    {
        margin-top: var(--section-padding-block);
        padding-top: 0;
    }
    .page_interior .fbcms_image.backsplash_image.lastone
    {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .page_body:where(:not(.fbcms_editmode)) .column_right:where(:has(.inside_right_callout)) .inside_right.fbcms_image.backsplash_image
    {
        margin-left: calc(var(--section-padding-inline) * 5);
    }
    .column_right:where(:has(.inside_right_callout)) .inside_right.fbcms_image.backsplash_image:before
    {
        border-radius: 9px 0 0 9px;
    }*/
    .page_body:where(:not(.fbcms_editmode)) .fbcms_content.inside_right_callout
    {
        margin-top: calc(-1 * (var(--section-padding-inline) * 3));
    }
}

/*=== END Background Colors ======================================*/

/*=== Breakout content ======================================*/
.breakout_grid .fbcms_image img
{
    display: block;
}
.cta_image.fbcms_image img
{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 767px)
{
    .page_interior .main_focus
    {
        display: flex;
        flex-direction: column;
    }
    .page_interior .main_focus .fbcms_richtext.inside_focus
    {
        order: 3;
        padding-bottom: var(--section-padding-block);
    }
}
@media only screen and (min-width: 768px)
{
    .page_interior .main_focus:where(:has(.inside_focus))
    {
        min-height: 500px;
    }
    .page_interior .main_focus .fbcms_videoblock.inside_focus
    {
        filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .2));
    }

    .page_interior .intro_wrapper:where(:has(.inside_title))
    {
        padding-block: var(--section-padding-block);
    }
    .breakout_grid .inside_focus_watermark
    {
        position: relative;
        z-index: 1;
        height: 120%;
        max-width: 400px;
        grid-column: 11 / 15;
        grid-row: 1 / 2;
        background: url(../img/AccentFoxWithFill.png) no-repeat bottom right;
        background-size: 75% auto;
        opacity: .6;
    }
    .breakout_grid .intro_wrapper
    {
        grid-column: content-start / 8;
        grid-row: 1 / 2;
        position: relative;
        z-index: 3;
        padding-right: var(--section-padding-inline);
    }
    .breakout_grid .inside_focus,
    .breakout_grid .demo_form
    {
        grid-column: 9 / 14;
        grid-row: 1 / 2;
        position: relative;
        z-index: 2;
        margin-block: calc(var(--section-padding-block) * .5);
        /*        padding-right: var(--section-padding-inline);*/
        display: block;
    }
    .breakout_grid .inside_focus
    {
        grid-column: 8 / 14;
        display: grid;
        align-content: center;

        &.vpadm_editable_section
        {
            display: block;
        }
    }    
    .breakout_grid .inside_focus:where(:not(.fbcms_videoblock))
    {
        justify-content: end;
    }
    .breakout_grid .inside_focus img
    {
        border-radius: 10px 0 0 10px;
    }

    .breakout_grid .inside_focus.fbcms_richtext
    {
        padding-block: var(--section-padding-block);
        margin: 0;
    }
}

/* Inheriting CTA section */
.cta_wrapper
{
    position: relative;
}
@media only screen and (max-width: 767px)
{
    .breakout_grid .fbcms_content.cta_image
    {
        position: absolute;
        z-index: 1;
        top: 0;
        opacity: .2;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .breakout_grid .cta_content
    {
        position: relative;
        z-index: 3;
        padding: var(--section-padding-block) var(--section-padding-inline);
    }
}
@media only screen and (min-width: 768px)
{
    .breakout_grid .cta_watermark
    {
        position: relative;
        z-index: 2;
        height: 92%;
        grid-column: page-start / span 4;
        grid-row: 1 / 2;
        background: url(../img/AccentFox-AllOrange.png) no-repeat center;
        background-size: auto 100%;
    }
    .breakout_grid .cta_content
    {
        grid-column: content-start / span 10;
        grid-row: 1 / 2;
        position: relative;
        z-index: 3;
        background: var(--FB_LtTan);
        padding: var(--section-padding-inline) var(--section-padding-inline) calc(var(--section-padding-inline) * .5);
        border-radius: 10px;
        /*box-shadow: 0px 3.644px 30.971px 4.554px rgba(0, 0, 0, 0.05);*/
        margin-left: var(--section-padding-inline);
    }
    .breakout_grid .cta_image
    {
        grid-column: 3 / page-end;
        grid-row: 1 / 2;
        position: relative;
        z-index: 1;
        margin-right: -1rem;
    }
}
@media only screen and (min-width: 994px)
{
    .breakout_grid .cta_content
    {
        grid-column: content-start / span 6;
    }
}

/*=== END Breakout content ======================================*/

.fbcms_image.fade_left,
.fbcms_image.fade_right
{
    background: #fff;
    position: relative;
}
.fbcms_image.fade_left:before,
.fbcms_image.fade_right:before
{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 100;
}
.fbcms_image.fade_left:before
{
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 40%, rgba(255,255,255,0) 100%);
}
.fbcms_image.fade_right:before
{
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 60%, rgba(255,255,255,1) 100%);
}

/*
===========================================================
 Animations
===========================================================
*/
.page_body:not(.fbcms_editmode) .fade-slide 
{
    opacity: 0;
    transform: translateY(3rem);
}
.page_body:not(.fbcms_editmode) .fade-slide.active 
{
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s, transform 1s;
}
/*
===========================================================
 END Animations
===========================================================
*/

/*
===========================================================
 HEADER
===========================================================
*/
.fbcms_header
{
    background: #fff;
    --Header_ComplColor: var(--Color_Primary);
    --Header_Padding: 12px;
}
.page_home .fbcms_header
{
    background: var(--FB_LtTan);
    border: none;
}
.logo 
{
    display: inline-block;
    margin: var(--Header_Padding) 50px var(--Header_Padding) var(--Header_Padding);
    z-index: 2;
}
.site_menu_logo.fbcms_content
{
    display: none;
}
.navigation_wrapper.collapsed .site_menu_logo.fbcms_content,
.fbcms_editmode .site_menu_logo.fbcms_content
{
    display: block;
    position: absolute;
    /*top: calc(-1 * var(--section-padding-block) + 1rem);
    left: calc(-1 * var(--section-padding-inline) + 1rem);*/
    top: 1rem;
    left: 1rem;
    width: 50px;
}
.fbcms_content.home_welcome
{
    padding-top: calc(var(--section-padding-block) * .5);

    p 
    {
        max-width: 60ch;
    }
    .vp-icon
    {
        display: inline-grid;
        align-content: center;
        position: relative;
        font-size: 1.5rem;
        line-height: 1;
        padding: 12px 10px 8px;
        background: var(--Color_White);
        aspect-ratio: 1;
        width: auto;
        border-radius: 50%;
        border: solid 1px var(--Color_Accent);

        &:before
        {
            aspect-ratio: 1;
        }
    }
}
@media only screen and (max-width: 1299px) 
{
    .fbcms_content.home_welcome p:where(:has(.vp-icon))
    {
        display: none;
    }
}
@media only screen and (min-width: 768px) 
{
    .fbcms_header 
    {
        z-index: 3;

        .header_main
        {
            position: relative;
            transition: height .3s ease-out, padding-block .3s;
            padding-top: var(--Header_Padding);
            padding-right: var(--section-padding-inline);

            grid-column-start: content-start;
            grid-column-end: page-end;
            grid-row-start: 1;
            grid-row-end: 2;
            overflow: hidden;
        }

        .logo 
        {
            margin: 0;
            position: relative;
            z-index: 102;
        }
        &.sticky .logo
        {
            margin: -12px 0 0;
        }
        .site_logo 
        {
            transition: all .2s ease-out;
        }

        .home_welcome
        {
            grid-column: content-start / span 8;

            .vp-icon:after 
            {
                content: "";
                display: block;
                position: absolute;
                top: 50%;

                left: calc(50% - 1px);
                /*bottom: calc(-1 * (var(--section-padding-block) * 3));*/
                height: 0px;
                width: 1px;
                background: var(--Color_Accent);
                z-index: -1;
                transition: height .6s;
                height: calc(var(--section-padding-block) * 2.25);
            }
        } 

        .home_focus
        {
            grid-column: 3 / span 6;
            padding-block: var(--section-padding-inline) 0;
            /*margin-bottom: calc(-1 * var(--section-padding-block));*/
        }
    }

    .fxb_desktop .fbcms_header.sticky
    {
        padding-top: var(--StickyHeader-Height, 0) !important;

        .header_main
        {
            position: fixed;
            z-index: 800;
            left: 0;
            top: 0;
            width: 100%;
            background: var(--Color_White);
            padding: var(--Header_Padding) var(--section-padding-inline);
            box-shadow: 0 2px 4px rgb(0 0 0 / 5%);
            animation: expandHeader 0.4s ease forwards;
        }
    }

    @keyframes expandHeader {
        from {
            height: 0;
        }
        to {
            height: var(--StickyHeader-Height);
        }
    }

    .nav-slider-active .header_main .nav-slider-button.slider-button
    {
        z-index: 10;
    }

    .navigation_wrapper
    {
        display: inline-block;
        position: relative;

        grid-column-start: span 4;
        grid-column-end: page-end;
        grid-row-start: 1;
        grid-row-end: 5;
        overflow: hidden;

        &:where(:not(.collapsed))
        {
            z-index: 3;

            .focus_catcher
            {
                display: none;
            }
        }
    }

    .page_home .fbcms_header .header_main
    {
        grid-column-start: content-start;
        grid-column-end: 11;
    }
}
@media only screen and (min-width: 1300px) 
{
    .fbcms_header 
    {
       --Header_Padding: 20px;        


        .navigation_wrapper
        {
            grid-column-start: span 4;
            grid-row-end: 3;
        }

        .home_welcome
        {
            grid-column: content-start / span 4;
        }
        .home_focus
        {
            grid-column: 6 / span 5;
            margin-bottom: 0;
        }
    }
}
@media only screen and (min-width: 1600px) 
{
    .fbcms_header 
    {
        .navigation_wrapper
        {
            grid-column-start: span 3;
            grid-row-end: 3;
        }
        .home_focus
        {
            grid-column: 7 / span 5;
        }
    }
}

/* Site Scripts */
.fbcms_content.site_script_head
{
    display: block;
    text-align: center;
    padding-top: var(--section-padding-inline);

    a
    {
        color: var(--FB_Blue);
    }
}
.site_script_head .fa
{
    margin-right: .25em;
}
.fbcms_content.site_script_foot
{
    display: block;
    position: relative;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_script_head 
    {
        z-index: 4;
    }
}
@media print
{
}

/* Social Media Script */
.fbcms_content ul.social_media_list 
{
    margin: 0px;
    line-height: 2;
}
.social_media_list li a.phone 
{
    margin-left: 8px;
}
.social_media_list:after
{
    content: "";
    display: table;
    clear: both;
}
.fbcms_content ul.social_media_list > li 
{
    display: inline-block;
    margin: 0 5px;
    list-style: none;
}

.fbcms_content ul.social_media_list > li:first-child 
{
    margin-left: 0;
}
.fbcms_content ul.social_media_list > li:last-child 
{
    margin-right: 0;
}

.social_media_list a.social-media-circle 
{
    display: block;
    border-radius: 13px;
    color: var(--Color_Primary);
    background-color: #fff;
    width: 26px;
    line-height: 26px;
    font-size: 14px;
    text-align: center;
}
.social_media_list a.social-media-circle:hover,
.social_media_list a.social-media-circle:focus 
{
    color: #fff;
}
.social_media_list a.social-media-circle.facebook:hover,
.social_media_list a.social-media-circle.facebook:focus 
{
    background-color: #4267B2;
}
.social_media_list a.social-media-circle.linkedin:hover,
.social_media_list a.social-media-circle.linkedin:focus 
{
    background-color: #0077b5;
}
.social_media_list a.social-media-circle.twitter:hover,
.social_media_list a.social-media-circle.twitter:focus 
{
    background-color: #1da1f2;
}
@media print
{
    .fbcms_content ul.social_media_list 
    {
        display: none;
    }
}

.zc_animated
{
    max-width: 90%;
    margin: 0 auto;
}
/*
===========================================================
 END HEADER
===========================================================
*/

/*
===========================================================
 MENUS
===========================================================
*/

/* Footer Menu */
.nav-main.menu_foot 
{
    display: block;
    position: relative;
    margin-bottom: 30px;
}
.fbcms_footer .nav-main.menu_foot .top_level 
{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.nav-main.menu_foot .top_level_link 
{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: var(--Font-Size_h4);
    line-height: 1.2;
    margin-bottom: 1em;
    padding: 0;
    border: none;
    background: transparent;
}
.nav-main.menu_foot .top_level_link:hover,
.nav-main.menu_foot .top_level_link:focus 
{
    cursor: default;
    text-decoration: none;
}
.nav-main.menu_foot .drop .item_link 
{
    text-decoration: underline;
    color: #fff;
    padding: 6px 0 10px;
    border: none;
}
.nav-main.menu_foot .drop .item_link:hover,
.nav-main.menu_foot .drop .item_link:focus 
{
    text-decoration: none;
}
.nav-main.menu_foot .top_level_item > .drop 
{
    display: block;
    position: relative;
    background: transparent;
    top: 0;
    padding-left: 0;
}
@media only screen and (max-width: 767px)
{
    .nav-main.menu_foot .top_level 
    {
        justify-content: center;
    }

    .nav-main.menu_foot .top_level_item
    {
        text-align: left;
        width: 50%;
        padding-inline: 1.5rem 0;
    }
    .nav-main.menu_foot .top_level_item:first-child
    {
        border-right: solid 1px var(--Color_Accent);
        text-align: right;
        padding-inline: 0 1.5rem;
    }
}
@media only screen and (min-width: 768px)
{
    .nav-main.menu_foot .top_level 
    {
        justify-content: space-between;
    }
    .nav-main.menu_foot .top_level_item 
    {
        width: calc(50% - .5rem);
        float: none;
    }
    .nav-main.menu_foot .top_level_link,
    .nav-main.menu_foot .drop 
    {
        padding: 0;
    }
    .nav-main.menu_foot .drop .item_link 
    {
        text-decoration: none;
        padding: 0 0 4px;
    }
    .nav-main.menu_foot .drop .item_link:hover,
    .nav-main.menu_foot .drop .item_link:focus 
    {
        text-decoration: underline;
    }
    .nav-main.menu_foot .top_level_item > .drop 
    {
        display: inline-block;
    }
}

/* Subpages Menu */
.menu_subpages
{
    display: none;
}
.menu_subpages .menu_title,
.menu_subpages.fbcms_rdropmenu .menu_opener 
{
    background-color: var(--Color_Primary);
}
.menu_subpages.fbcms_rdropmenu .simplemenu_container
{
    background: #fff;
    box-shadow: 0px 4px 8px -2px rgba(0,0,0,0.8); 
}
.menu_subpages.fbcms_rdropmenu .simplemenu_container a 
{
    color: var(--Color_Primary);
    padding: 8px 12px 8px 6px;
    font: 600 14px/1.4 var(--Font_Body);
}
.menu_subpages.fbcms_rdropmenu .simplemenu_container a:before
{
    content: "";
    display: inline-block;
    border: solid 6px transparent;
    margin-right: 2px;
}
.menu_subpages.fbcms_rdropmenu .simplemenu_container a:hover,
.menu_subpages.fbcms_rdropmenu .simplemenu_container a:focus
{
    color: var(--FB_Orange);
}
.menu_subpages.fbcms_rdropmenu .simplemenu_container a:hover:before,
.menu_subpages.fbcms_rdropmenu .simplemenu_container a:focus:before
{
    border-left-color: var(--FB_Orange);
}
@media print, screen and (min-width: 768px)
{
    .menu_subpages.drop-nav
    {
        display: none;
    }
}


/* main-nav */
.nav-slider-active .fbcms_header .nav-slider-button.slider-button
{
    top: calc(var(--Header_Padding) + 10px);
    right: var(--section-padding-inline);
}
.nav-slider-active .fbcms_header.sticky .nav-slider-button.slider-button
{
    top: var(--Header_Padding);
}

.nav-slider-active .nav-slider-button.slider-button:hover span,
.nav-slider-active .nav-slider-button.slider-button:hover:after,
.nav-slider-active .nav-slider-button.slider-button:hover:before,
.nav-slider-active .nav-slider-button.slider-button:focus span,
.nav-slider-active .nav-slider-button.slider-button:focus:after,
.nav-slider-active .nav-slider-button.slider-button:focus:before
{
    box-shadow: none;
    background-color: var(--FB_Orange);
}

.nav-slider-button.slider-button-secondary.activated,
.nav-slider-active.navslideout .nav-main .menu_title,
.nav-slider-active .fbcms_rmainmenu.nav-main.main_menu
{
    display: none;
}
.page_home:where(:has(.fbcms_header:not(.sticky))) .nav-slider-button
{
    display: none !important;
}
.fxb_mobile.page_home:where(:has(.fbcms_header:not(.sticky))) .nav-slider-button
{
    display: block !important;
}

.navigation_wrapper .focus_catcher:focus 
{
    outline: none;
}

.nav-slider-active .nav-slider
{
    background-color: var(--FB_LtBlue);
}
.nav-slider
{
    box-shadow: none !important;
}
.fxb_desktop .nav-slider
{
    transition: opacity .15s linear;
}

.fxb_desktop.nav-slider-active
{
    .fbcms_header .nav-slider
    {
        left: auto;
        right: 0;
    }
    .navigation_wrapper:where(.collapsed) .nav-slider
    {
        position: fixed;
        left: auto;
        right: 0;
        width: 0;
        max-width: 0;
        height: 100vh;
        opacity: 0;
        z-index: 900;
    }
    .fbcms_header .nav-slider.slide-open
    {
        width: 50%;
        min-width: 500px;
        height: 92%;
        max-width: 100%;
        opacity: 1;
        margin: auto;
        box-shadow: 0px 4px 24px 10px rgba(0, 0, 0, 0.2) !important;
        right: 50%;
        transform: translateX(50%);
        border-radius: 10px;
    }
    .navigation_wrapper:where(:not(.collapsed)) .nav-slider
    {
        width: 100%;
        max-width: 100%;
        opacity: 1;
        height: 100%;
        /* TODO test */
        position: relative;
        overflow: visible;
    }

    &:has(.navigation_wrapper:not(.collapsed)) 
    {
        .nav-slider-button
        {
            display: none;
        }
    }
    .nav-slider .slide-liner
    {
        padding: var(--section-padding-block) var(--section-padding-inline);
        position: relative;
        display: grid;
        align-content: space-between;
        overflow: visible;


        &:after 
        {
            content: "";
            display: block;
            position: absolute;
            inset: auto -100px 1rem 50%;
            height: 250px;
            background: url(../img/AccentFox-AllOrange.png) no-repeat top right;
            background-size: contain;
            z-index: -1;
            opacity: .4;
        }
    }
}

.navslideout .nav-slider .menu_main 
{
    max-width: 300px;
    margin-inline: auto;

    .top_level
    {
        max-width: 15rem;
        margin-inline: auto;
    }
    .top_level_item
    {
        padding: 1rem 0;
        text-align: center;

        &:first-child
        {
            padding-top: 0;
        }
        .top_level_link
        {
            font-weight: bold;
            text-transform: uppercase;
            display: inline-block;
        }

        &:where(:has(.main-drop-opener:hover, .main-drop-opener:focus-visible)) .top_level_link
        {
            text-decoration: underline;
        }

        .drop 
        {
            padding-left: 0;
        }

        > .drop
        {
            display: grid;
            transition: all .3s linear;
            grid-template-rows: 0fr;
            
            .sublist_0 
            {
                overflow: hidden;
            }
        }

        &.menuopen > .drop,
        &.hoverfocus > .drop
        {
            grid-template-rows: 1fr;
        }

        &:nth-last-child(2)
        {
            border-bottom: none;
        }

        &:last-child .top_level_link
        {
            background: transparent;       
            border: solid 2px var(--Color_Accent);
            border-radius: 5px;
            width: fit-content;
            margin-inline: auto;
            transition: all .2s ease;
        }

        &:last-child:where(:hover, .hoverfocus) .top_level_link
        {
            text-decoration: none;
            background-color: var(--Color_Accent);
            color: var(--Color_White);
        }
    }
    .drop .item_link
    {
        font-size: .95rem;
        font-weight: 600;
    }
}

/* = animated links =========================================================*/
.nav-main .top_level_item > .drop 
{
    .link_pair
    {
        padding: .3rem 1rem;
    }

    .item_link
    {
        display: inline;
        padding: 0 0 3px;
        text-decoration: none;
        background-image: linear-gradient(var(--Color_Accent) 0 0);
        background-position: 0 96%;
        background-size: 0 2px;
        background-repeat: no-repeat;
        transition: color .3s ease 0s,background .3s ease 0s,background-position 0s ease .3s;

        &:hover,
        &:focus-visible
        {
            text-decoration: none;
            background-image:linear-gradient(var(--Color_Accent) 0 0); 
            background-position: 100% 96%;
            background-size: 100% 2px;
            background-repeat: no-repeat;
        }
    }
}
/*
===========================================================
 END MENUS
===========================================================
*/

/*
===========================================================
 MAIN CONTENT FRAMEWORK
===========================================================
*/
.fbcms_wrapper
{
    --section-padding-block: 2rem;
    --section-padding-inline: 1rem;
}
.fbcms_main
{
    flex: 1;
}
.fbcms_content.firstone
{
    padding-top: var(--section-padding-block);
}
.fbcms_content.lastone
{
    padding-bottom: var(--section-padding-block);
    margin-bottom: 0;
}
.fbcms_ec.fbcms_content.firstone
{
    margin-top: var(--section-padding-block);
}
.fbcms_ec.fbcms_content.lastone
{
    margin-bottom:  var(--section-padding-block);
}
.fxb_mobile.page_home .fbcms_header .fbcms_content,
.fxb_mobile .fbcms_main .fbcms_content:where(:not(.neutral_image, .tab_title))
{
    margin-inline: var(--section-padding-inline);
}

/* eliminates double padding */
.no_column_top_padding .content_container:where(.column_left, .column_right) .firstone
{
    padding-top: 0;
}
.no_column_top_padding .content_container:where(.column_left, .column_right) .firstone.fbcms_ec,
.page_interior.no_column_top_padding .fbcms_image.backsplash_image.firstone
{
    margin-top: 0;
}

.restricted-width
{
    max-width: 100ch;
    margin-inline: auto;
}


@media only screen and (min-width: 768px)
{
    .fbcms_wrapper,
    .page_terms .fbcms_wrapper
    {
        --section-padding-block: 3rem;
        --section-padding-inline: 2rem;
    }
    .fbcms_main
    {
        position: relative;
        z-index: 1;
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_wrapper
    {
        --section-padding-block: 4.5rem;
        --section-padding-inline: 3rem;
    }
}
@media only screen and (min-width: 1200px)
{
    .fbcms_wrapper
    {
        --section-padding-block: 6rem;
        --section-padding-inline: 3rem;
    }
}

/* Flexi Content */
.flexi
{
    position: relative;

    --_flexi-spacing-block: 1rem;
    --_flexi-spacing-inline: 2rem;
}
.flexi .fbcms_section
{
    width: 100%;
    position: relative;
    margin-bottom: var(--_flexi-spacing-block);
}
.flexi,
.flexi .fbcms_section
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--_flexi-spacing-block);
}

.flexi .fbcms_content
{
    --_flexi-count: 1;
    width: 100%;
    flex-grow: 1;
}
.section_title
{
    text-align: center;
    position: relative;
    margin-top: var(--section-padding-block);
}
@media only screen and (min-width: 768px)
{
    /* http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ 
    -- editmode selectors added to accomodate add block button as an additional item */

    /* When 2 or more blocks */
    .flexi .fbcms_content
    {
        width: calc((100% / var(--_flexi-count)) - ((var(--_flexi-spacing-inline) * (var(--_flexi-count) - 1)) / var(--_flexi-count)));
    }
    .flexi .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(3), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(3) ~ .fbcms_content,
    .flexi .fbcms_content:first-child:nth-last-child(2), 
    .flexi .fbcms_content:first-child:nth-last-child(2) ~ .fbcms_content
    {
        --_flexi-count: 2;
    }

    /* When 3 or 6 flexi content blocks*/
    .flexi .fbcms_content:first-child:nth-last-child(3), 
    .flexi .fbcms_content:first-child:nth-last-child(3) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(4), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(4) ~ .fbcms_content,
    .flexi .fbcms_content:first-child:nth-last-child(6), 
    .flexi .fbcms_content:first-child:nth-last-child(6) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(7), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(7) ~ .fbcms_content
    {
        --_flexi-count: 3;
    }

    .flexi .fbcms_content:only-child,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(2), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(2) ~ .fbcms_content
    {
        width: 100%;
    }

    .flexi .fbcms_section > .addblock_buttonbar_wrapper
    {
        min-width: 100%;
    }
}
@media only screen and (min-width: 1200px)
{
    .flexi .fbcms_content
    {
        --_flexi-count: 3;
    }
}


/* Focus Areas */
.fbcms_imagerotator .cycle-slide
{
    width: 100%;
}
.fbcms_photogallery .fbcms_imagerotator .slide img 
{
    margin: 0 auto;
}

/* == Main Content Stuff ==========================================*/

/* Home Specific */

/* Inside Specific */
.page_inside .fbcms_richtext.flexi_block
{
    background: var(--Color_White);
    padding: var(--section-padding-inline) var(--section-padding-inline)  calc(var(--section-padding-inline) - .9em);
    border-radius: 10px;
    box-shadow: 0px 3.644px 30.971px 4.554px rgba(0, 0, 0, 0.05);
    transition: all .3s;
}
.fxb_desktop:where(.flexi1-hover)
{
    .fbcms_richtext.flexi_block:where(:hover, :focus-within)
    {
        transform: translateY(-20px);
    }
}
.page_websites .flexi2.fbcms_richtext 
{
    transform: none !important;
}


.page_inside .flexi3 .content_buttonblock,
.page_inside .flexi3 .content_buttonview
{
    display: block;
    text-align: center;
    margin: 20px auto;
}

/* Demo / Inquiry Layout */
.page_inquiry .menu_breadcrumb
{
    display: none;
}
.page_inquiry .fbcms_content.testimonials
{
    padding:  0; 
    margin:  0;
}
.page_inquiry .fbcms_content.client_logos
{
    margin: calc(var(--section-padding-block) / 2) 0 var(--section-padding-block);
}
.page_inquiry .fbcms_custom_form.demo_form
{
    background: #fff;
    border-radius: 17px;
    box-shadow: 0 1px 3px rgb(0 0 0 / 50%);
    margin-bottom: 1rem;
    padding: 30px;
    overflow: hidden;
}
.page_inquiry .fbcms_custom_form.demo_form .fbcms_custom_form_title
{
    background: var(--FB_Orange);
    color: #fff;
    margin: -30px -30px 30px;
    padding: 30px;
    text-align: center;
}
.page_inquiry .fbcms_custom_form.demo_form .reqd_marker
{
    position: relative;
    color: #fff;
}
.page_inquiry .fbcms_custom_form.demo_form .reqd_marker:before
{
    content: "*";
    color: var(--FB_Orange);
}
@media only screen and (min-width: 768px)
{
    .page_inquiry .main_focus
    {
       --_splitbg_height: 55%; 
    }
    .page_inquiry .demo_form
    {
        grid-row: 1 / 3;
    }
}
@media only screen and (min-width: 994px)
{
}



/* Zoho form heights */
#MarketingConsultantForm iframe
{
    height: 1150px !important;
}
@media only screen and (min-width: 361px)
{
    #MarketingConsultantForm iframe
    {
        height: 1280px !important;
    }
}
@media only screen and (min-width: 617px)
{
    #MarketingConsultantForm iframe
    {
        height: 1050px !important;
    }
}
@media only screen and (min-width: 768px)
{
    #MarketingConsultantForm iframe
    {
        height: 1260px !important;
    }
}
@media only screen and (min-width: 994px)
{
    #MarketingConsultantForm iframe
    {
        height: 1220px !important;
    }
}
@media only screen and (min-width: 1280px)
{
    #MarketingConsultantForm iframe
    {
        height: 1044px !important;
    }
}

#ProposalRequestForm iframe
{
    height: 1265px !important;
}
@media only screen and (min-width: 361px)
{
    #ProposalRequestForm iframe
    {
        height: 1360px !important;
    }
}
@media only screen and (min-width: 617px)
{
    #ProposalRequestForm iframe
    {
        height: 1140px !important;
    }
}
@media only screen and (min-width: 768px)
{
    #ProposalRequestForm iframe
    {
        height: 1360px !important;
    }
}
@media only screen and (min-width: 994px)
{
    #ProposalRequestForm iframe
    {
        height: 1300px !important;
    }
}
@media only screen and (min-width: 1296px)
{
    #ProposalRequestForm iframe
    {
        height: 1140px !important;
    }
}


#DemoRequestForm iframe
{
    height: 1185px !important;
}
@media only screen and (min-width: 361px)
{
    #DemoRequestForm iframe
    {
        height: 1280px !important;
    }
}
@media only screen and (min-width: 617px)
{
    #DemoRequestForm iframe
    {
        height: 1060px !important;
    }
}
@media only screen and (min-width: 768px)
{
    #DemoRequestForm iframe
    {
        height: 1280px !important;
    }
}
@media only screen and (min-width: 994px)
{
    #DemoRequestForm iframe
    {
        height: 1220px !important;
    }
}
@media only screen and (min-width: 1296px)
{
    #DemoRequestForm iframe
    {
        height: 1060px !important;
    }
}
/*
===========================================================
  Tabset Customization
===========================================================
*/
.fbcms_editmode .tabset_title_header .vpadm_editable_section
{
    min-width: 224px;
    padding-bottom: 1px;
}
.fbcms_tabset .tabset_titlecontainer 
{
    position: relative;
    display: flex; 
    flex-wrap: wrap;
    z-index: 2;
}
.page_gallery_tabs .fbcms_tabset .tabset_titlecontainer 
{
}

.fbcms_tabset .tabset_title_header,
.fbcms_tabset .tabset_title a 
{
    height: 100%;
}
.fbcms_tabset .tabset_title a
{
    position: relative;
    text-align: center;
    font: 600 var(--Font-Size_h5)/1.2 var(--Font_Body);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    width: 100%;
    padding: 1em 2em;
    transition: all 0.3s ease;
    background-color: var(--Color_White);
    color: var(--Color_Accent);
    border-radius: 6px 6px 0 0;
    /*border-bottom: solid 3px transparent;*/
}
.fbcms_tabset .tabset_title.active a,
.fbcms_tabset .tabset_title a:hover,
.fbcms_tabset .tabset_title a:focus
{
    background-color: var(--FB_LtTan);
    color: var(--Color_Primary);
    /*border-bottom-color: var(--Color_Accent);*/
}
.fbcms_tabset .tabset_titlecontainer .tabset_title 
{
    padding: 0 3px;
}
.fxb_mobile .fbcms_tabset 
{
    .tabset_titlecontainer 
    {
        display: flex;
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-inline: 10px;
    }
    .tabset_titlecontainer::-webkit-scrollbar
    {
        display: block; /* Forces the scrollbar to be visible */
    }
    .tabset_titlecontainer::-webkit-scrollbar-thumb
    {
        background: var(--Color_Gray);
    }
    .tabset_titlecontainer::-webkit-scrollbar-button
    {
        background: white;
        width: 6px;
    }

    .tabset_title 
    {
        flex-shrink: 0;

        a 
        {
            font-size: var(--Font-Size_Base);
            padding: .75em 1.5em;
        }
    }
}
@media all and (min-width: 768px)
{
    .fbcms_tabset 
    {
        .tabset_contentcontainer,
        .tabset_contentcontainer .tabset_content.active
        {
            display: contents;
        }
    }
}

.fbcms_editmode .fbcms_tabset .tabset_titlecontainer .tabset_title
{
    color: #767676;
}
.fbcms_editmode .fbcms_tabset .tabset_titlecontainer .tabset_title .fbcms_content
{
    margin-bottom: 15px;
}
/*
===========================================================
  END Tabset Customization
===========================================================
*/

/*
===========================================================
 END MAIN FRAMEWORK
===========================================================
*/

/*
===========================================================
 FOOTER
===========================================================
*/
/* footer */
.fbcms_footer
{
    position: relative;
    background-color: var(--Color_Primary);
    color: var(--Color_ComplPrimary);
    font-size: .9rem;
    border-color: var(--Color_Primary);
    padding-block: var(--section-padding-block);
    z-index: 2;
}
.fbcms_footer a 
{
    color: var(--Color_ComplPrimary);
}

.fbcms_content.footer_contact 
{
    margin: 0 0 6px;
}
.fbcms_footer h2 
{
    color: #fff;
    font-size: var(--Font-Size_h4);
    font-family: var(--Font_Body);
}

.fbcms_content.footer_contact,
.fbcms_content.footer_social
{
    display: block;
    margin-bottom: 30px;
}
.fbcms_translate,
.copyright
{
    display: block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px)
{
    .fbcms_footer 
    {
        text-align: center;
        padding-inline: var(--section-padding-inline);
    }
}
@media only screen and (min-width: 768px)
{
    .fbcms_footer .column_left
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 2.5rem;
        grid-gap: 0 1rem;
        height: max-content;
    }
    .fbcms_footer .menu_foot 
    {
        grid-column: 1 / span 2;
    }
    .logo_foot 
    {
        grid-row: 2 / 4;
        height: min-content;
    }

    .fbcms_footer .center_col
    {
        width: 40%;
        padding: 0 2rem;
    }
    .fbcms_footer .right_col
    {
        width: 30%;
    }
}
@media print {
    .fbcms_translate,
    .link_pdfviewer
    {
        display: none;
    }
}

/* Translate */
.fbcms_footer .fbcms_translate .drop_title
{
    padding-inline: 0;
}
.translatedrop_title:after,
.translatedrop_title:before
{
    content: "\f107";
    display: inline-block;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    vertical-align: bottom;
}
.translatedrop_title:before
{
    content: "\f1ab";
    margin-right: 8px;
}
.translatedrop_title:after
{
    margin-left: 8px;
    transition: transform .3s;
    transform-origin: center;
}
.fbcms_translate.fbcms_drop.dropopen .translatedrop_title:after
{
    transform: rotate(180deg);
}
.goog-te-gadget,
.goog-te-gadget a
{
    color: #fff !important;
}
.fbcms_drop .goog-te-gadget,
.fbcms_drop .goog-te-gadget a
{
    color: initial !important;
}
.goog-te-gadget .goog-te-combo
{
    margin: 4px 0 0 0 !important;
}
/*
===========================================================
 END FOOTER
===========================================================
*/

/*
-------------------------------------
 Rich Text Formatting
-------------------------------------
*/
h1
{
    text-wrap: balance;
}

h1
{
    color: var(--Color_Primary);
    line-height: 1.3;
    margin-bottom: .75em;
}
h1 span:not(.vp-icon),
h2 span:not(.vp-icon)
{
    font-family: var(--Font_Body);
    color: var(--Color_Accent);
    display: block;
    font-size: var(--Font-Size_Base);
    text-transform: uppercase;
    margin-bottom: .5em;
    letter-spacing: 1px;
    font-weight: 700;
}

.fbcms_htmleditor h1
{
    color: var(--FB_Black);
    text-shadow: none;
}

h2
{
    color: var(--FB_Black);
    margin-bottom: .75em;
    text-wrap: balance;
}


h3,
.fbcms_news_headlines .fbcms_article_title,
.fbcms_newscontent .newsarticle_title,
.fbcms_storylist .story_title,
.fbcms_story_search .story_title,
.fbcms_story_block .story .story_subtitle
{
    color: var(--FB_Black);
}

h3 span.number-circle
{
    display: inline-block;
    aspect-ratio: 1;
    padding: .5em;
    background: url(../img/Circle_Blank.png) no-repeat center;
    background-size: contain;
}

h4,
.fbcms_spotlight .desc_short,
.fbcms_cards .fbcms_card_name,
.fbcms_upcoming_events .event_title, 
.fbcms_upcoming_events .event_title a
{
    color: var(--FB_Black);
}

h5
{
    color: var(--FB_Black);
}

h6
{
    color: var(--FB_Black);
}

.fbcms_content h2 + ul, .fbcms_content h2 + ol,
.fbcms_content h3 + ul, .fbcms_content h3 + ol,
.fbcms_content h4 + ul, .fbcms_content h4 + ol,
.fbcms_content h5 + ul, .fbcms_content h5 + ol,
.fbcms_content h6 + ul, .fbcms_content h6 + ol
{
    margin-top: 0;
}

.fbcms_content hr 
{
    border-bottom: 1px solid var(--Color_Accent);
}

.fbcms_richtext ul li,
.building_details ul li
{
    list-style-type: none;
    margin-bottom: 10px;
    position: relative;

    &:before
    {
        content: "";
        width: 18px;
        height: 18px;
        background: url(../img/orange-check.png) no-repeat center;
        background-size: contain;
        margin-right: 10px;
        position: absolute;
        top: 3px;
        left: -30px;
    }
}
.fbcms_richtext ol,
.page_websites .fbcms_headline_list_content
{
    list-style: none;
    counter-reset: section;
    /*max-width: 800px;*/
    margin-left: 0;
}

.fbcms_richtext ol > li,
.page_websites .fbcms_headline_list_content .fbcms_article
{
    margin:0; 
    padding: .8em 50px;
    list-style: none;
    counter-increment: section;
    position: relative;
    isolation: isolate;
}
.fbcms_richtext ol > li:before,
.page_websites .fbcms_headline_list_content .fbcms_article:before
{
    content: counter(section);
    right: 100%; 
    margin-right: -20px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    border-radius: 50%;
    display: grid;
    align-content: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: #fff url(../img/Circle_Blank.png) no-repeat center;
    text-align:center;
    color: var(--FB_Black);
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    border: solid 2px var(--Color_Accent);
    transition: all .3s;
}
.page_websites .fbcms_headline_list_content .fbcms_article
{
    padding: 0 80px var(--section-padding-inline);

    &:last-child
    {
        padding-bottom: 0;
    }

    &:where(:not(:last-child)):after
    {
        content: "";
        display: block;
        position: absolute;
        top: 10px;
        left: 20px;
        width: 2px;
        bottom: -10px;
        background: var(--Color_LtGray);
        z-index: -1;
    }
    &.active:before
    {
        border-width: 3px;
        transform: scale(1.5);
    }
}


p.content_intro,
.fbcms_story_block .story_summary
{    
    color: var(--FB_DkGray);
    font: 500 var(--Font-Size_Intro)/1.4 var(--Font_Heading);
    margin: 0 0 .9em;
    font-style: italic;
}
.page_inside .flexi_block p.content_intro:where(:first-child) 
{
    color: var(--FB_Orange);
    text-transform: uppercase;
    font-style: unset;
    font: 600 1rem/1.2 var(--Font_Body);
}

p.content_intro + ul,
p.content_intro + ol
{
    margin-top: 0;
}

.dark_bg,
.dark_bg h1,
.dark_bg h2,
.dark_bg h3,
.dark_bg h4,
.dark_bg .fbcms_spotlight .desc_short,
.dark_bg .fbcms_cards .fbcms_card_name,
.dark_bg .fbcms_news_headlines .fbcms_article_title,
.dark_bg .fbcms_newscontent .newsarticle_title
.dark_bg h5,
.dark_bg h6,
.dark_bg .content_intro,
.dark_bg a
{
    color: #fff;
}

/* Button Block links */
.jump_url a,
.spotlight_button.spotlight_viewall,
.fbcms_newsletters .news_archivetoggle,
.fbcms_more_link a,
.content_buttonblock a,
.fbcms_staff_cards .fbcms_contentbody .btn_read,
.news_archivetoggle,
.content_buttonview a,
.story_list .fbcms_linkedstory:after,
.fbcms_article .document_download,
.fbcms_custom_form_submission #submit_button
{
    display: inline-block;
    height: auto;
    background-color: transparent;
    color: var(--Color_Primary);
    border: solid 2px var(--Color_Accent);
    font: 600 .9rem/1.2 var(--Font_Body);
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 5px;
    margin: 10px 0;
    text-decoration: none;
    transition: all .1s ease;
/*    box-shadow: 0 1px 3px rgb(0 0 0 / 50%);*/
}
.jump_url a:hover,
.jump_url a:focus,
.spotlight_button.spotlight_viewall:hover,
.spotlight_button.spotlight_viewall:focus,
.fbcms_newsletters .news_archivetoggle:hover,
.fbcms_newsletters .news_archivetoggle:focus,
.fbcms_more_link a:hover,
.fbcms_more_link a:focus,
.content_buttonblock a:hover,
.content_buttonblock a:focus,
.fbcms_staff_cards .fbcms_contentbody .btn_read:hover,
.fbcms_staff_cards .fbcms_contentbody .btn_read:focus,
.news_archivetoggle:hover,
.news_archivetoggle:focus,
.content_buttonview a:hover,
.content_buttonview a:focus,
.story_list .fbcms_linkedstory:hover:after,
.story_list .fbcms_linkedstory:focus:after,
.fbcms_article .document_download:hover,
.fbcms_article .document_download:focus,
.fbcms_custom_form_submission #submit_button:hover,
.fbcms_custom_form_submission #submit_button:focus
{
    color: #fff;
    background-color: var(--Color_Primary);
    border-color: var(--Color_Primary);
    text-decoration: none;
}

.fbcms_content ul:where(:has(a.anchor_link)) > li
{
    margin-left: 2.25rem;
}
a.anchor_link
{
    text-decoration: none;
    font-weight: 600;
    color: var(--Color_Primary);
    font-size: var(--Font-Size_h5);

    &:after 
    {
        content: "\f061";
        display: inline-block;
        font-family: 'Font Awesome 5 Free';
        margin: 0 0 .2em 8px;
        transition: transform .2s;
        font-weight: 900;
        transform: rotate(0);
        font-size: .8em;
        vertical-align: middle;
    }

    &:hover, &:focus
    {
        &:after 
        {
            transform: rotate(45deg);
        }
    }
}

a.vp_show_share_button
{
    color: var(--Color_Primary);
}

.content_buttonview a
{
    background-color: var(--FB_Orange);
}
.content_buttonview a:before
{
    content: "\f35a";
    font-family: 'Font Awesome 5 Free';
    margin: 0 8px 0 0;
}

.content_buttonunderline a,
.fbcms_spotlight_text .more_link
{
    display: inline-block;
    color: var(--Color_Accent);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 1em;
    border-bottom: solid 2px currentColor;
    border-color: transparent;

    &:after
    {
        content: "\f061";
        display: inline-block;
        font-family: 'Font Awesome 5 Free';
        margin: 0 0 0 8px;
        transition: transform .2s;
    }
}
.content_buttonunderline a:hover,
.content_buttonunderline a:focus,
.fbcms_spotlight_text .more_link:hover,
a.fbcms_spotlight_liner:focus .more_link
{
    border-color: currentColor;

    &:after
    {    
        transform: rotate(-45deg);
    }
}

.fbcms_richtext_content:after
{
    content: "";
    display: block;
    clear: both;
}

img.Left_Align_With_Padding,
img.Right_Align_With_Padding
{
    margin-bottom: .25em;
}

/* -- Side Headings -------------------- */
.fbcms_richtext_content:has(.content_side-heading:where(h2,h3))
{
    display: grid;
    grid-template-columns: [start] 40% [content-start] 1fr [end];
    gap: 0 var(--section-padding-inline);
}
.fbcms_richtext_content:where(:has(.content_side-heading:where(h2,h3))) *
{
    grid-column-start: content-start;
}
.fbcms_richtext_content .content_side-heading:where(h2,h3)
{
    grid-column-start: start;
    grid-row: 1 / 100;
}
.fbcms_richtext_content:has(.content_side-heading:where(h2,h3)) hr 
{
    width: 100%;
    grid-column: start / end;
}

/*
-------------------------------------
 END Rich Text Formatting
-------------------------------------
*/

.fb_videoresponsive {
    border-radius: 10px;
    overflow: hidden;
}

/*
===========================================================
 Photo Galleries
===========================================================
*/

.fbcms_carousel .slideItem .main 
{
    border-radius: 10px;
}


.fbcms_photogallerycards .fbcms_card_liner
{
    padding: 0;
    border-radius: 10px;
}
.fbcms_photogallerycards .fbcms_card_name,
.fbcms_photogallerycards .fbcms_card_desc
{
    padding-inline: var(--_card-padding);
}
.fbcms_photogallerycards .fbcms_card_image
{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

/* home_focus */
.home_focus.fbcms_photogallerycards .fbcms_cards
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    position: relative;

    .fbcms_card_liner,
    .fbcms_card_imagelink
    {
        height: 100%;
        cursor: unset;
    }

    .fbcms_card
    {
        padding: 0;
        width: 100%;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        z-index: 4;

        .fbcms_card_liner
        {
            border-radius: 20px;
        }
        

        &:first-child
        {
            grid-column: 2 / -1;
            aspect-ratio: 2.25 / 1;

            .fbcms_card_liner
            {
                border-bottom-left-radius: 0;
            }
        }
        &:nth-child(2)
        {
            grid-column: 2 / span 1;
            aspect-ratio: 1;
        }
        &:nth-child(3)
        {
            grid-column: 3 / span 1;
            grid-row: 2 / span 2;
            aspect-ratio: 1 / 2;

            .fbcms_card_liner
            {
                border-radius: 0 40px 0 0;
            }
        }
        &:nth-child(4)
        {
            grid-column: 4 / span 1;
            grid-row: 2 / span 2;
            aspect-ratio: 1 / 2;
        }
        &:nth-child(5)
        {
            grid-column: 1 / span 2;
            grid-row: 3 / span 1;
            aspect-ratio: 3 / 1.5;
        }
    }
}

@media only screen and (min-width: 994px)
{
    .page_home .fbcms_photogallerycards
    {
        margin-right: calc(-1 * var(--section-padding-inline));

        .fbcms_contentheader,
        .fbcms_contentfooter
        {
            margin: 0;
        }
        .fbcms_cards:after 
        {
            content: "";
            position: absolute;
            top: calc(-2 * var(--section-padding-inline));
            left: calc(-1 * var(--section-padding-inline));
            right: calc(-1 * var(--section-padding-inline));
            z-index: -1;
            aspect-ratio: 3 / 1;
            background: linear-gradient(to right, rgba(209, 231, 237, 0.70) 49.4%, rgba(241, 103, 38, 0.60) 100%);
            border-radius: 1000px;
            transform-origin: top right;
            rotate: -20deg;
        }

        /*.fbcms_card
        {
            &:first-child
            {
                grid-column: 1 / 3;
                grid-row: 1 / 3;
            }
            &:nth-child(2),
            &:nth-child(4)
            {
                top: 2rem;
            }
            &:nth-child(3),
            &:nth-child(5)
            {
                top: -2rem;
            }
        } */
    }
}

.page_home .fbcms_photogallerycards .fbcms_ajcp
{
    display: none !important;
}
/*
===========================================================
 END Photo Galleries
===========================================================
*/

/*
===========================================================
 News Styling
===========================================================
*/
.fbcms_newscontent .fbcms_newscontent_month 
{
    font-size: 14px;
    color: #000;
}
/* Permapage heading 1 */
.data-driven-title.newsarticle_title.newsarticle_section 
{
    color: var(--FB_Black);
}

/* Our Process */
.page_inside .flexi1.fbcms_news_headlines 
{
    position: relative;
}
.page_inside .flexi1 .fbcms_article
{
    display: flex;
    max-width: 800px;
    padding: 1rem 0 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}
.page_inside .flexi1 .fbcms_article:before
{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 54px;
    width: 2px;
    background: var(--FB_Orange);
    z-index: -1;
}
.page_inside .flexi1 .fbcms_article:first-child:before
{
    top: 1.5rem;
}
.page_inside .flexi1 .fbcms_article:last-child:before
{
    bottom: calc(100% - 80px);
}
.page_inside .flexi1 .fbcms_article_imageblock
{
    width: 107px;
    flex-shrink: 0;
    margin-right: 1.5rem;
}
.page_inside .flexi1 .fbcms_article_textblock
{
    padding-top: 25px;
}

/* Lotus Site Alert */
#fbcms_ea_shadowBox
{
    display: none;
}
.fbcms_emergencyAlert
{
    top: auto;
    bottom: 50px;
    left: auto;
    right: 50px;
    transform: none;
    border: none;
    border-radius: 15px;
    box-shadow: 1px 1px 10px -1px rgba(0 0 0 / 30%);
    max-height: calc(100% - 100px);
    padding: 1rem;
}
.fbcms_emergencyAlert #closeAlert
{
    top: 10px;
    right: 10px;
    border: none;
    border-radius: 4px;
    z-index: 100;
    color: #444;
    padding: 2px 4px;
}
.site_alert.fbcms_news_headlines
{
    margin: 0;
}
.fbcms_emergencyAlert .fbcms_headline_list_content
{
    padding: 0;
}
.fbcms_emergencyAlert .fbcms_headline_list_content:before
{
    content: "";
    width: 100px;
    height: 100px;
    background: url(/downloads/logos__image_assets/site_alert_icon.png) no-repeat top left;
    background-size: contain;
}
.site_alert .fbcms_article
{
    display: flex;
    flex-direction: column;
}
.site_alert .fbcms_article .fbcms_article_textblock
{
    order: 1;
    padding: 0 25px 10px 120px;
}
.site_alert .fbcms_article .fbcms_article_imageblock
{
    order: 2;
    text-align: center;
}

/*
===========================================================
 END News Styling
===========================================================
*/

/*
===========================================================
 Buildings Styling
===========================================================
*/
.building_list.fbcms_grid:where(:has(.has_moreinfo))
{
    grid-gap: 0 var(--section-padding-inline);
    display: block;
    column-count: 2;
    column-width: 200px;
}
.building_list .building.has_moreinfo
{
    margin-bottom: 0;
    border-block: solid 1px var(--Color_Accent);
    margin-bottom: -1px;
    display: block;
    height: auto;

    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;

    .building_liner
    {
        background: transparent;
        padding: .5em 0;
        display: block;
        height: 100%;
        transition: all .3s;
        border-radius: 3px;

        .building_data,
        .building_metadata,
        .building_title
        {
            margin-bottom: 0;
        }
        .building_link
        {
            display: none;
        }
    }
    &:hover .building_liner,
    &:focus .building_liner
    {
        outline: none;
        background: var(--Color_White);
        padding: .5em;
        margin-inline: -.5em;
    }
}

.fbd_building 
{
    .fbd_title
    {
        color: transparent;
        opacity: 0;
    }
    .building_title
    {
        margin-bottom: 1em;
        font-size: var(--Font-Size_h3);
    }
}
/*
===========================================================
 END Buildings Styling
===========================================================
*/  

/*
===========================================================
 Spotlight Styling
===========================================================
*/
.spotlights_horizontal.horz_layout_1, 
.fbcms_spotlights_list.spotlights_horizontal
{
    --_horz-spotlight-gap: calc(var(--section-padding-inline) / 2);
}
.fbcms_spotlight .desc_long
{
    display: block;
}

/* benfits - /solutions/websites/ */
.page_websites 
{
    .inside_middle.fbcms_spotlights
    {
        .fxb_desktop & 
        {
            .fbcms_spotlight_slide_liner
            {
                display: flex;

                .fbcms_spotlight
                {
                    width: 30%;
                    flex-grow: 1;
                }
            } 
        }

        .fbcms_spotlight_liner
        {
            height: 100%;
            background: var(--Color_White);
            padding: var(--section-padding-inline);
            border-radius: 10px;
            box-shadow: 0px 3.644px 30.971px 4.554px rgba(0, 0, 0, 0.05);
        }
        .fbcms_spotlight_image
        {
            margin-bottom: .25rem;
            float: left;
            margin-right: 1rem;
        }
    }
    
}

/*== Home Page ==================================================*/
.home_1_text
{
    container-type: inline-size;

    .fbcms_richtext_content
    {
        @container (min-width: 800px)
        {
            display: grid;
            grid-template-columns: [content-start] repeat(var(--_breakout-column-count), minmax(0, calc(var(--wrapper-max-width) / var(--_breakout-column-count)))) [content-end];
            
            > *
            {
                grid-column: 5 / content-end;
            }

            h2
            {
                grid-column: content-start / span 3;
                grid-row: 1 / -1;
                padding-inline: 0 var(--section-padding-inline);
                margin-bottom: 0;
            }
        }
    }
}
.home_1_spotlights h3
{
    font-size: var(--Font-Size_h2);
    margin-bottom: .75em;
}

/* Industries */
.fbcms_spotlights:where(:not(.testimonials):has(.linedup))
{
    .fxb_mobile & 
    {
        .fbcms_spotlight_image
        {
            opacity: 1;
        }
        .fbcms_spotlight .fbcms_spotlight_text
        {
            grid-template-rows: auto;
        }
    }

    .fbcms_spotlight
    {
        overflow: visible;
        flex-grow: 1;

        .fbcms_spotlight_text
        {
            position: relative;
            display: grid;
            grid-template-rows: max-content 0fr;
            padding: 0 0 1rem 1rem;
            transition: all .3s;
        }
    }
    .fbcms_spotlight_image
    {
        filter: var(--Filter_ColorOrange);
        transition: all .3s;
        opacity: .5;
        transform: translateY(-10px);
        transform-origin: bottom;
    }

    .desc_short
    {
        font-family: var(--Font_Heading);
        font-size: 1.5rem;
        font-weight: 500;
        position: relative;
        padding-bottom: .2em;
        transition: all .5s ease;

        &:after
        {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: solid 2px var(--Color_AltComplPrimary);
        }
    }
    .desc_long
    {
        overflow: hidden;
    }
    .fbcms_spotlight_liner:hover,
    .fbcms_spotlight_liner:focus
    {
        background: transparent;

        .fbcms_spotlight_image
        {
            transform: scale(1.05) translateY(-10px);
            opacity: 1;
        }

        .fbcms_spotlight_text
        {
            grid-template-rows: max-content 1fr;
        }
    }
} 

/* Home Features / Solutions */
.page_home .home_2_spotlights.fbcms_spotlights
{
    container-type: inline-size;

    .fbcms_contentheader,
    .fbcms_contentfooter
    {
        margin: 0;
    }

    .fbcms_spotlight
    {
        overflow: visible;

        .fbcms_spotlight_liner 
        {
            background: var(--Color_White);
            height: 100%;
            padding: 2rem 1rem;
            text-align: center;
            border-radius: 4px;
            filter: drop-shadow(0px 3.644px 30.971px  rgba(0, 0, 0, 0.05));
            overflow: hidden;

            &:after
            {
                display: none;
            }
        }
    }
    @container (min-width: 500px)
    {
        .fbcms_spotlight_slide_liner
        {
            max-width: 660px;
            margin-inline: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            position: relative;
            isolation: isolate;

            &:after
            {
                content: "";
                display: block;
                position: absolute;
                inset: var(--section-padding-inline);
                border: solid 3px var(--Color_Accent);
                border-radius: 50%;
                z-index: -1;
            }
        }
        .fbcms_spotlight
        {
            overflow: visible;
            width: 100%;
            position: relative;

            .fbcms_spotlight_liner 
            {
                --image_position-amount: 15%;
                display: grid;
                align-content: center;
                border-radius: 10px;
            }

            &:nth-child(1) 
            {
                 &:after 
                {
                    top: var(--section-padding-inline);
                    right: 0;
                    transform: translate(43px, -17px);
                }
                .fbcms_spotlight_liner 
                {
                    --image_position: var(--image_position-amount) auto auto var(--image_position-amount);
                }
            }
            &:nth-child(2) 
            {
                &:after 
                {
                    right: var(--section-padding-inline);
                    bottom: 0;
                    transform: rotate(90deg) translate(45px, -17px);
                }
                .fbcms_spotlight_liner 
                {
                    --image_position: var(--image_position-amount) var(--image_position-amount) auto auto;
                }
            }
            &:nth-child(3) 
            {
                &:after 
                {
                    left: var(--section-padding-inline);
                    top: 0;
                    transform: rotate(-90deg) translate(45px, -17px);
                }
                .fbcms_spotlight_liner 
                {
                    --image_position: auto auto var(--image_position-amount) var(--image_position-amount);
                }
            }
            &:nth-child(4) 
            {
                &:after 
                {
                    bottom: var(--section-padding-inline);
                    left: 0;
                    transform: rotate(180deg) translate(45px, -17px);
                }
                .fbcms_spotlight_liner 
                {
                    --image_position: auto var(--image_position-amount) var(--image_position-amount) auto;
                }
            }
        }
    }
}
@media only screen and (min-width: 768px)
{
    .home_2_spotlights .spotlights_horizontal
    {
        --_horz-spotlight-count: 2;
    }
}
/*== END Home Page ==================================================*/

/* Testimonials */
.testimonials.fbcms_spotlights
{
    padding-block: calc(var(--section-padding-block) / 2);
    margin: 0;

    .fbcms_contentheader
    {
        position: relative;
        text-align: center;
    }
    .fbcms_spotlights_list
    {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
    }
    .fbcms_spotlight
    {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        max-width: 900px;
        margin: 0 auto 3rem;
        box-shadow: 0px 4px 34px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;

        &:only-child
        {
            top: 0;
            transform: none !important;
            margin-bottom: 2rem;
        }
        &.linedup .fbcms_spotlight_liner
        {
            display: grid;
            align-items: center;
            justify-items: center;
            padding: 0;
            background: #fff;
            overflow: hidden;

            &:hover, &:focus 
            {
                .fbcms_spotlight_image
                {
                    filter: grayscale(0);
                }
            }
        }
        .fbcms_spotlight_image
        {
            opacity: .8;
            filter: grayscale(50%);
            text-align: center;
            max-width: 100%;
            padding: 1rem;
            filter: grayscale(50%);
            transition: all .3s;
        }
    }
    .fbcms_spotlight_text
    {
        grid-column: auto / -1;
        padding: 1rem;
        position: relative;
        height: 100%;
        width: 100%;
        display: grid;
        align-content: center;
        text-align: center;

        &:before
        {
            content: "";
            position: absolute;
            top: -1rem;
            left: .5rem;
            width: 5.5rem;
            aspect-ratio: 1;
            background: url(../img/AccentQuote.png) no-repeat center;
            background-size: contain;
            opacity: .5;
            color: var(--Color_Secondary);
            z-index: 1;
        }
    }
    .desc_long
    {
        order: 1;
        font-size: 1.2rem;
        font-family: var(--Font_Heading);
        padding-bottom: 10px;
        display: block;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .desc_short
    {
        order: 2;
        width: 100%;
        font: 700 .9rem/1.3 var(--Font_Body);
        text-transform: uppercase;
        letter-spacing: 0.9px;
        margin: .5em 0 0;
        position: relative;
        z-index: 2;
    }
    .fbcms_contentfooter
    {
        margin-top: 0;
        text-align: center !important;
    }
}

@media only screen and (min-width: 768px)
{
    .testimonials.fbcms_spotlights 
    {
        .fbcms_contentheader:before
        {
            left: -200px;
            right: -200px;
        }
        .fbcms_spotlight.linedup 
        {
            .fbcms_spotlight_liner
            {
                grid-template-columns: max-content 1fr;
            }
            .fbcms_spotlight_image
            {
                padding: 2rem;
            }
            .fbcms_spotlight_text
            {
                padding: 2rem 2rem 2rem 4rem;
                text-align: left;
            }
            .fbcms_spotlight_text:before
            {
                top: 2rem;
                left: 0;
                width: 3.5rem;
                height: 3.5rem;
                opacity: .8;
            }
        }
    }

    .page_home .testimonials.fbcms_spotlights
    {
        .fbcms_spotlight.linedup 
        {
            .fbcms_spotlight_liner
            {
                display: block;
                overflow: hidden;
                position: relative;
                padding-left: 1rem;

                .fbcms_spotlight_image
                {
                    position: absolute;
                    bottom: 1rem;
                    right: 1rem;
                    height: 150px;
                    width: 50%;
                    padding: 0;
                    opacity: .2;
                    display: grid;
                    align-content: end;
                    justify-content: end;

                    img 
                    {
                        width: auto;

                    }
                }
            }
        }
    }
}

.testimonials.fbcms_richtext *:where(h2,h3,h4,h5,h6,.content_intro,a)
{
    color: #fff;
}
.testimonials.fbcms_richtext
{
    text-align: center;
    max-width: 800px;
    margin-inline: auto;
    padding-block: 2rem;
    margin-block-start: 3rem;
    color: #fff;
}


/* Site Bottom Spotlights */
.fbcms_spotlights.bottom_spots
{
    padding-block: var(--section-padding-block);
}
.bottom_spots .fbcms_spotlight
{
    overflow: visible;
    flex-grow: 1;
}
.bottom_spots .fbcms_spotlight_liner
{
    background: var(--FB_LtTan);
    padding: 0;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    height: 100%;
}
.bottom_spots .stacked .fbcms_spotlight_image
{
    margin: 0;
}
.bottom_spots .fbcms_spotlight_image img
{
    width: 100%;
}
.bottom_spots .fbcms_spotlight_text
{
    padding: var(--section-padding-inline);
    position: relative;
}
@media only screen and (min-width: 768px)
{
    .fbcms_spotlights.bottom_spots
    {
        padding: var(--section-padding-block) 0 calc(var(--section-padding-block) / 2);
    }
}

/* Client Logos */
.client_logos .fbcms_spotlights_title
{
    text-align: center;
}
.client_logos .fbcms_spotlight_liner
{
    padding: 1.5rem;
    text-align: center;
}
.client_logos a.fbcms_spotlight_liner:hover, 
.client_logos a.fbcms_spotlight_liner:focus
{
    background: transparent;
}
.client_logos img 
{
    max-height: 80px; 
    /*filter: grayscale(50%);*/
    /*opacity: .75;*/
    transform: scale(.9);
    transition: all .3s ease;
}
.client_logos a.fbcms_spotlight_liner:hover img, 
.client_logos a.fbcms_spotlight_liner:focus img
{
    /*filter: drop-shadow(0 1px 1px #333) grayscale(0%);*/
    transform: scale(1);
    /*opacity: 1;*/
}
@media only screen and (min-width: 768px)
{
    .client_logos .fbcms_spotlights_list.spotlights_horizontal .fbcms_spotlight_slide_liner
    {
        justify-content: space-around;
    }
    .client_logos .spotlights_horizontal .fbcms_spotlight
    {
        flex: 0 1 auto;
        width: auto;
    }
    .testimonials .fbcms_contentfooter.blockpos_left 
    {
        position: relative;
        top: -15px;
    }
}
/*
===========================================================
 END Spotlight Styling
===========================================================
*/

/*
===========================================================
 Story / Stories Styling
===========================================================
*/
.page_permalink 
{
    .fbcms_header .header_main 
    {
        padding-block: var(--Header_Padding);
    }

}


.story_list .story 
{
    transition: background-color .25s linear;
    padding: 1rem;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
}
.story_list_result.story:hover, 
.story_list_result.story:focus 
{
    background: var(--Color_White);
}
.bg_white .story_list_result.story:hover, 
.bg_white .story_list_result.story:focus 
{
    /*background: var(--Color_XLtGray);*/
}
.story_storydate
{
    font-weight: 600;
    font-size: var(--Font-Size_Sub);
}
.story_list .story .story_title
{
    font-family: var(--Font_Heading);
    margin-bottom: .5em;
}

.story_list .fbcms_linkedstory:after
{
    content: attr(data-text-readmore);
    clear: both;
}
.story_list .fbcms_linkedstory.Stack:after
{
    margin-inline: auto;
    display: block;
    width: fit-content;
}

.fbcms_content:where(.fbcms_storylist, .fbcms_story_search) .fbcms_contentfooter
{
    margin-top: 2em;
    text-align: center;
}


/* Vertical Stories */
.story_list.Vertical .story_list_result.Wrap
{
    border-bottom: solid 1px var(--FB_Orange);
}


/* Horizontal Stories */
.story_list.Horizontal,
.story_list.Vertical:where(:has(.story.Stack)),
.fbcms_story_search .story_list:where(:has(.story.Stack))
{
    display: grid;
    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    justify-content: space-evenly;
}
.story_list.Horizontal .story,
.story_list.Vertical .story.story.Stack,
.fbcms_story_search .story.Stack
{
    background: var(--Color_White);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 3.644px 30.971px 4.554px rgba(0, 0, 0, 0.05);
}


/* Stacked Stories */
.story_list.Vertical 
{
    .story_list_result.Stack .story_thumbnail
    {
        display: block;
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
        margin: -1rem -1rem 1rem;
    }
    .story_list_result.Stack p 
    {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .story_list_result.Stack .tagcategorytitles
    {
        position: absolute;
        top: 1rem;
        left: 1rem;
    }
    .story .category_container
    {
        display: inline-block;
    }
    .story_list_result.Stack .category_title
    {
        display: none;
    }
    .story_list_result.Stack .categoryitem_title
    {
        display: inline-block;
        font-weight: bold;
        text-transform: uppercase;
        padding: .5em 1em;
        background: var(--Color_White);
        border: solid 2px var(--Color_Accent);
        border-radius: 10px;
        font-style: unset;
        margin: 0 0 4px;
    }
    .story_list_result.Stack .categoryitem_title:after
    {
        display: none;
    }
    .story_list .story.Stack > *:last-child,
    .story_list .story.Stack:where(:has(.tagcategorytitles:last-child)) .story_title
    {
        margin-bottom: 3.5rem;
    }
    .story_list .fbcms_linkedstory.Stack:after
    {
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        display: inline-block;
        white-space: pre;
        margin: 0;
    }
}


/* Expanding Story */
.fxb_mobile .story_list.Horizontal
{
    display: flex;
    width: 100%;
    overflow-x: auto;

    .story.Stack
    {
        flex: 1 0 350px;
    }
}

.story_list.Horizontal
{
    padding: .5rem 0;
}
.story_list.Horizontal .story.Stack
{
    background-color: var(--Color_White);
    color: var(--Color_Primary);
    margin: 0;
    display: grid;
    align-content: start;

    &:hover, &:focus
    {
        &:before
        {
            opacity: 1;
            padding-left: 75px;
        }
        &:after
        {
            opacity: 1;
            width: 50px;
        }
        .story_image
        {
            transform: scale(1.05);
        }
    }

    > *:where(:not(.story_image))
    {
        position: relative;
        z-index: 3;
    }
    &:before 
    {
        grid-row-start: 1;
        grid-column-start: 1;
        align-self: end;
        justify-self: end;
        content: 'Explore';
        padding: .25em 15px;
        text-transform: uppercase;
        font-weight: 600;
        background: var(--Color_Accent);
        color: var(--Color_White);
        z-index: 2;
        border-radius: 5px;
        opacity: 0;
        transition: padding-left .5s;
    }
    &:after 
    {
        content: "";
        grid-row-start: 1;
        grid-column-start: 1;
        align-self: end;
        justify-self: end;
        background: var(--Color_White);
        height: 2px;
        width: 0;
        position: relative;
        bottom: 1em;
        right: 6.5em;
        z-index: 3;
        opacity: 0;
        transition: width .5s;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
    }
    .story_image
    {
        grid-row-start: 1;
        grid-column-start: 1;
        margin: -1rem -1rem 1rem;
        z-index: 1;
        transition: transform .5s ease;
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
        border-bottom: solid 2px var(--Color_Primary);
        transform-origin: bottom;
        bottom: .75em;
        right: 50em;
    }
    .story_title
    {
        grid-row-start: title;
        margin: 0;
    }
    .story_summary 
    {
        overflow: hidden;

        > p:first-child
        {
            -webkit-line-clamp: 4;
        }
    }

    .tagcategorytitles
    {
        margin-top: .5em;
    }
    .category_container
    {
        display: inline-block;
    }
    .category_title
    {
        display: none;
    }
    .categoryitem_title
    {
        font-weight: bold;
        text-transform: uppercase;
        font-style: unset;
        padding: .25em .5em;
        border: solid 2px var(--Color_Accent);
        border-radius: 5px;
        margin: 0 4px 4px 0;
    }
    .categoryitem_title:after
    {
        display: none;
    }

    /*&:after
    {
        display: inline-block;
        white-space: pre;
        margin: 0;
        position: absolute;
        transition: bottom .5s;
        bottom: -4rem;
        left: 1rem;
        z-index: 10;
        background: var(--Color_White);
        color: var(--Color_Primary);
        border-color: var(--Color_Accent);
        display: none;
    }*/
    .story_list .fbcms_linkedstory:after {
        content: attr(data-text-readmore) + test;
        clear: both;
    }


}

/* Wrapping Stories */
.story_list_result.Wrap .story_thumbnail
{
    border-radius: 10px;
}
@media only screen and (min-width: 500px)
{
    .story_list_result.Wrap .story_thumbnail
    {
        max-width: 40%;
    }
}
@media only screen and (min-width: 994px)
{
    .story_list .story.Wrap
    {
        display: grid;
        grid-template-columns: 300px 1fr;
        grid-column-gap: 1rem;
        justify-items: start;
    }
    .story_list .story.Wrap img
    {
        max-width: 100%;
        margin: 0;
        grid-row-start: 1;
        grid-row-end: 6;
    }
}


/* Story Block */
@media only screen and (min-width: 768px)
{
    .fbcms_story_block .story_metadata_liner .storymedia,
    .fbcms_story_block .story_metadata_liner .story_image
    {
        width: 40%;
        float: left;
        margin: 0 2rem 1rem 0;
    }
    .fbcms_story_block .story_metadata_liner:after
    {
        content: "";
        display: block;
        clear: both;
    }
}


/* Story Search */
.fbcms_story_block .story .story_byline
{
    font-weight: bold;
}
.fbcms_story_search h2.fbcms_story_title 
{
    display: inline-block;
    position: relative;
    color: var(--FB_Black);
    font-size: var(--Font-Size_h4);
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 0 3px;
    border-bottom: solid 5px var(--FB_Orange);
    margin-bottom: 6px;
}
.fbcms_story_search .story_search_form
{
    padding: 10px 10px .75rem;
    background: var(--FB_LtBlue);
    border-radius: 10px;
    position: relative;
    z-index: 100;
}
.fbcms_story_search .story_search:where(:not(.fbss_sbs)) .story_search_form
{
    width: 100%;
    max-width: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-start;
}
.fbcms_story_search .story_search:where(:not(.fbss_sbs)) .story_search_form .date_range_filter,
.fbcms_story_search .story_search:where(:not(.fbss_sbs)) .story_search_form .category_filter
{
    display: contents;
}
.story_search_form .search_filter
{
    margin-bottom: 0;
}
.story_search_form .category_filter .category
{
    border: none;
    min-width: 200px;
    position: relative;
    padding-block: 0;
}
.story_search_form .category_filter .category_topper
{
    padding: 5px 10px;
    background: #cae0e6; /* rgba(0, 0, 0, .03) */
    border-radius: 5px;
}
.story_search_form .category_filter .category .items 
{
    position: absolute;
    z-index: 1;
    width: 100%;
    padding: 5px 10px;
    background: #cae0e6;
    border-radius: 0 0 5px 5px;
}
.fbcms_story_search .story_search:where(:not(.fbss_sbs)) .story_search_form .search_buttons
{
    margin-left: auto;
}

.Page_DesignGallery .story_search_form .search_filter.text_filter
{
    display: none;
}
.story_search_form .text_filter input
{
    width: calc(100% - 6.5em);
}

.story_search_form .category_filter .fa-chevron-circle-up::before 
{
    content: "\f107";
}
.story_search_form .category_filter .fa-chevron-circle-down::before 
{
    content: "\f106";
}
@media only screen and (min-width: 620px) and (max-width: 767px), (min-width: 1000px)
{
    .fbcms_story_search:not(.inside_right) .story_search:where(:not(.fbss_sbs)) .story_search_form
    {
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px 1rem;
    }
    .fbcms_story_search:not(.inside_right) .story_search:where(:not(.fbss_sbs)) .story_search_form .date_range_filter
    {
        grid-area: 1 / 2 / 3 / 2;
    }
}
@media only screen and (min-width: 768px)
{
    .story_search.fbss_sbs
    {
        align-items: flex-start;
        gap: var(--section-padding-inline);
    }
    .story_search.fbss_sbs .story_search_form
    {
        order: 2;
    }
}
/*
===========================================================
 END Story / Stories Styling
===========================================================
*/

/*
===========================================================
 Expandable Content Styling
===========================================================
*/
.fbcms_content.fbcms_ec
{
    padding: 0;
    text-align: left;
    overflow: hidden;
    transition: all .2s;
}

.fbcms_content.fbcms_ec:where(:not(.fbcms_ec_collapsed))
{
    border-radius: 0 6px 6px 0;
    border-left: solid 4px var(--Color_Accent);
}
.fbcms_content.fbcms_ec:last-child
{
    margin-bottom: calc(var(--section-padding-block) / 2);
}


.fbcms_ec
{
    --_border-radius: 6px;
    margin-bottom: .5em;
    border: solid 1px var(--Color_LtGray);
    box-shadow: 0px 0px 20px -10px rgb(0 0 0 / 30%);
    border-radius: 10px;

    --_ec-title-background-open: var(--Color_White);
    --_ec-title-color-open: var(--Color_Primary);
    --_ec-title-background-collapsed: var(--Color_White);
    --_ec-title-color-collapsed: var(--Color_Primary);
    --_ec-content-background: var(--Color_White);
}
.fbcms_ec_title
{
    overflow: hidden;
    margin-bottom: 0;
    border-radius: var(--_border-radius);
    padding: .5rem 1rem;
}
.fbcms_ec_title h2.fbcms_ec_titletext
{
    font: bold var(--Font-Size_h6)/1.4 var(--Font_Body);
    text-transform: uppercase;
}

.navslideout .nav-main .top_level_item .main-drop-opener .fas
{
    display: none;
}
.navslideout .nav-main .top_level_item .main-drop-opener
{
    width: 100%;
}
.navslideout .nav-main .main-drop-opener:hover, 
.navslideout .nav-main .main-drop-opener:focus-visible
{
    background: transparent;
}
.fbcms_ec_title .fbcms_ec_titleicon .ec_titleicon
{
    color: var(--Color_Accent);
}
.navslideout .menu_main .top_level_item.has_subitems .top_level_link:after
{
    color: var(--Color_Accent);
    position: absolute;
    left: 100%;
}
.fbcms_ec_title .fbcms_ec_titleicon .ec_titleicon.titleicon_open:before,
.navslideout .menu_main .top_level_item.has_subitems .top_level_link:after
{    
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    content: "\f107";
    transition: all .3s;
    transform-origin: center;
}
.fbcms_ec_title .fbcms_ec_titleicon .ec_titleicon.titleicon_close:before,
.navslideout .menu_main .top_level_item.has_subitems.menuopen .top_level_link:after
{    
    content: "\f107";
    transform: rotate(180deg);
}
.fbcms_ec .fbcms_richtext_content
{
    padding: 1rem;
}
/*
===========================================================
 END Expandable Content Styling
===========================================================
*/

/*
===========================================================
  Unstyled Terms Layout Customization
===========================================================
*/
.page_terms .fbcms_header,
.page_terms .fbcms_footer
{
    display: none;
}
.page_terms .fbcms_main
{
    padding-top: 2rem !important;
}
.page_terms h1
{
    color: var(--FB_Orange);
    text-shadow: none;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px)
{
    .page_terms .site_logo 
    {
        display: block;
        text-align: right;
        margin: 0 0 1rem;
        width: 100%;
    }
}
/*
===========================================================
  END Unstyled Terms Layout Customization
===========================================================
*/