/* Theme Name: BoilerSplat v1.9
Theme URI: https://splatworld.tv/
Author: Brian Mishico for Splat, Inc.
Author URI: https://splatworld.tv/
Description: A theme created by Splat, Inc.
Version: 1.9
License: GNU General Public License v2 or later
License URI: LICENSE
Tags: Modernizr, Conditionizr, HTML5, CSS3
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

BoilerSplatv2.5 - 2023 is based on Hello Elementor, Underscores, HTML5blank themes.
Hello - https://elementor.com/products/hello-theme/
Underscores - https://underscores.me/, (C) 2012-2019 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
HTML5blank - http://html5blank.com/
HTML5blank is distributed under the terms of the GNU GPL v2 or later.
*/



/*/ DEBUG OUTLINE /*/
*, *:before, *:after {
    /*border: 2px solid red;*/
}



/*//////// GLOBAL DOCUMENT SET UP ////////*/
html, body {
    width: 100%; 
    height: 100%;
    margin: 0 0;
    padding: 0 0;
}
html {
    font-family: "Verdana", "Arial", "Helvetica", sans-serif;
    font-size: 62.5%; /* = 10px BASE FONT-SIZE FOR EM */
    line-height: 1.3; /* = 130% BASE LINE HEIGHT */
    font-weight: normal;
    font-style: normal;
    color: var(--var-font-color);
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    /* overflow: overlay; */
    background-color: var(--var-body-color);
}

/*//// SCROLL BAR ////*/
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0);;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .6);
  outline: 1px solid rgba(0, 0, 0, .6);
}



/*//////// LINKS ////////*/
a, a:link {
    color: var(--var-link-color);
    text-decoration: none;
    transition: color .4s ease-in-out;
}
a:hover, 
a:active {
    color: var(--var-active-link-color);
    text-decoration: none;
}
a:visited {
    color: var(--var-visited-link-color);
}



/*//////// TYPE ELEMENTS ////////*/
/*/ SYSTEM RATIO CHOICE - MAJOR THIRD (1.25) < Chosen /*/
/*/ SYSTEM RATIO CHOICE - PERFECT FOURTH (1.333) /*/
/*/ SYSTEM RATIO CHOICE - GOLDEN RATIO (1.618) /*/

h1 { font-size: 4.8rem; }
h2 { font-size: 3.9rem; }
h3 { font-size: 3.1rem; }
h4 { font-size: 2.5rem; }
h5 { font-size: 2rem; }
h6 { font-size: 1.6rem; }
p,
li { font-size: 1.6rem; }

/*//// FONT CLASSES ////*/

/*// FONT SMALL CAPS //*/
.small-caps {
  font-variant: small-caps;
}



/*//////// SHARED PAGE ELEMENTS ////////*/

/*//// SCREEN READER TEXT & SKIPLINK ////*/
.screenreader-text {
    position: absolute;
    left: -999px;
    width: 1px;
    height: 1px;
    top: auto;
}
.screenreader-text:focus {
    color: black;
    display: inline-block;
    height: auto;
    width: auto;
    position: static;
    margin: auto;
}

/*//// BREAD CRUMBS ////*/

/*//// PAGE CONTAINER WRAPS ALL - 100% EDGE TO EDGE ////*/
.page-container {
    position: relative;
    min-height: 100%;
    background-color: var(--var-gutter-color);
    background: linear-gradient(180deg, rgba(196, 196, 196, .5) 0%, rgba(0, 0, 0, 0) 100%);
}

/*//// SECTION CONTAINER WRAPS MAIN & SECTIONS - DESIGN WIDTH ////*/
div.section-container {
    position: relative;
    width: 100%;
    max-width: var(--var-design-width); 
    height: auto;
    min-height: calc( 100vh - ( 100vh * var(--var-sticky-footer-height) ) );
    margin: 0 auto;
    background-color: var(--var-page-color);
}
/*//// MAIN WRAPS SECTIONS EXCEPT FOR NAVIGATION AND FOOTER - DESIGN WIDTH ////*/
main {
    display: block;
    position: relative;
    z-index: 10;
}
/*//// SECTIONS HOLD PAGE/DESIGN ELEMENTS ////*/
section { 
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    min-height: 10rem;
}
/*// NAVIGATION SECTION //*/
section.page-navigation-section { 
    min-height: initial;
}


/*//// CONTAINERS - CONTENT WIDTH ////*/
div.container-content-width {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: var(--var-content-width);
    margin: 0 auto;
    padding: 0;
    background-color: inherit;
}
/*// SPECIFIC WIDTH CONTAINERS //*/
div.container-1440-width {
    max-width: 1440px;
}
div.container-1920-width {
    max-width: 1920px;
}



/*//////// NAVIGATION SECTION ////////*/
section.page-navigation-section { 
    height: var(--var-header-height);
}
section.page-navigation-section.sink-into-hero {
    margin-bottom: calc( var(--var-header-height) * -1 );
    z-index: 1000;
}
section.page-navigation-section.fixed {
    position: fixed;
    z-index: 1000;
}

/*//// PAGE HEADER ////*/
section.page-navigation-section header.page-header {
    position: relative;
    z-index: 100;
    width: 100%;
    height: var(--var-header-height);
    max-width: var(--var-header-width);
    background-color: var(--var-header-color);
    overflow: visible;
}

/*// SITE LOGO - HEADER  //*/
a.top-logo-link {
    position: relative;
    width: 30rem;
}
img.top-site-logo {
    position: absolute;
    z-index: 101;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 29.5rem;
    height: auto;
}
img.top-site-logo.logo-hide {
    display: none;
}

/*// PAGE HEADER FLEX CONTAINER //*/
div.header-flex-container {
    justify-content: space-between;
    position: relative;
    z-index: 100;
    width: 134.2rem;
    height: 7.2rem;
    margin: 2.8rem auto 0 auto;
    padding: .8rem 6rem;
    border-radius: 4rem;
    border-bottom: 1px solid var(--Neutral-2, #DEE5ED);
    background: rgba(255, 255, 255, 0.80);
    transition: background .3s ease;
}
div.header-flex-container:hover {
    background: rgba(255, 255, 255, 1);
}
div.header-flex-container div.splat-flex-item {
    position: relative;
}
/*/ LEFT /*/
div.splat-flex-item.logo-flex-item {
    padding-left: 4rem;
}
/*/ RIGHT /*/
div.splat-flex-item.hamburger-flex-item {
    padding-top: 4rem;
    padding-right: 4rem;
}

/*/ HIDE INITIAL LINKS AND BURGER /*/
div.hamburger-flex-item a.nav-link,
div.hamburger-flex-item div.hamburger-container {
    opacity: 1;
}

/*/ PAGE HEADER NAV LINKS & ACCENT /*/
a.nav-link {
    margin-right: 0;
    font-family: 'Red Hat Display', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.33;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--var-nav-link-color);
}
div.nav-link-container {
    display: inline-block;
    position: relative;
    margin-right: 4rem;
}
div.nav-link-container div.nav-link-accent {
    position: absolute;
    left: 0;
    bottom: -.4rem;
    height: 1px;
    width: 0%;
    transition: all .4s ease;
    background-color: var(--var-nav-link-color);
}
div.nav-link-container:hover div.nav-link-accent {
    width: 100%;
}






/*//// DESKTOP NAVIGATION ////*/
nav#desktop-menu { }



/*// SLIDE DOWN ON SCROLL DESKTOP MENU //*/
div#slide-down-menu { 
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -100%);
    width: 100%;
    max-width: var(--var-header-nav-width);
    height: 100%;
    background-color: var(--var-header-nav-color);
    transition: height .3s ease;
}

/*// DROP DOWN ON HAMBURGER CLICK //*/
nav#desktop-drop-menu {
    position: absolute;
    top: calc( var(--var-header-height) * -1 );
    top: 9rem;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
    width: 100vw;
    height: 0;
    background: #D9D9D9;
    transition: height .3s ease;
    transition-delay: .2s;
    overflow: hidden;
}
nav#desktop-drop-menu.open {
    height: calc(100dvh - 9rem);
    max-height: 108rem;
    /*border-bottom: 2px solid red;*/
}
nav#desktop-drop-menu div.desktop-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 96.2rem;
    background: #ACACAA;
}

/*//// MAIN MENU LINKS ////*/
nav#desktop-menu ul.main-menu {
    position: absolute;
    top: 50%;
    right: 6rem;
    transform: translateY(-50%);
    margin: 0 0;
    padding: 0 0;
    list-style: none;
}


nav#desktop-menu ul.main-menu li.main-menu-item {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0 2.4rem;
    margin: 0 0;
    border-bottom: 1px solid transparent;
}
nav#desktop-menu ul.main-menu li.main-menu-item a { 
    display: inline-block;
    width: auto;
    color: #000;
    text-align: center;
    font-family: "Gotham";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5; /* 150% */
    letter-spacing: 0.05rem;
    transition: all .4s ease;
    text-decoration: none;  
}
nav#desktop-menu ul.main-menu li.main-menu-item a.accent {
    padding: 1.2rem 2rem;
    border-radius: 5rem;
    border: 1px solid var(--Blue, #0A1E2C);
    background: var(--Blue, #0A1E2C);
    color: #ffffff;
}
nav#desktop-menu ul.main-menu li.main-menu-item a.accent:hover {
    background: #ffffff; 
    color: var(--Blue, #0A1E2C);
}

/*/ HOVER & ON THIS PAGE /*/
nav#desktop-menu ul.main-menu li.main-menu-item a:hover,
nav#desktop-menu ul.main-menu li.main-menu-item.on-this-page a {
    color: var(--Gold, #C3A86B);
}
/*/ ACTIVE /*/
nav#desktop-menu ul.main-menu li.main-menu-item a:active,
nav#desktop-menu ul.main-menu li.main-menu-item.on-this-page a:active { }
/*/ VISITED /*/
nav#desktop-menu ul.main-menu li.main-menu-item a:visited,
nav#desktop-menu ul.main-menu li.main-menu-item.on-this-page a:visited { }


/*// MENU ACCENT / SEPERATOR //*/
nav#desktop-drop-menu div.menu-seperator {
    position: absolute;
    /*top: 59rem;*/
    top: 67%;
    transform: translateY(-50%);
    left: 41rem;
    padding: 0;
    margin: 1rem 0 1rem 3rem;
    width: 5.4rem;
    height: 0.1rem;
    background: #ffffff;
}

/*// MENU IMAGE / QUOTE //*/
div.menu-image-container {
    position: absolute;
    /*top: 14rem;*/
    top: 51%;
    transform: translateY(-50%);
    right: 0;
    width: 81rem;
    /*height: 85rem;*/
    height: auto;
    /*padding-top: 65rem;*/
    padding-top: 62rem;
}
div.menu-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 81rem;
    /*height: 60.5rem;*/
    height: auto;
}
div.menu-image-container img.nav-image {
    display: block;
    opacity: 0;
    transition: opacity .4s ease;
    transition-delay: .2s;
}
div.menu-image-container img.nav-image.show-opacity,
nav#desktop-drop-menu.open img.nav-image {
    opacity: 1;
}
div.menu-image-container p.quote {
    margin: 3rem 0 0 0rem;
    color: #727070;
    font-family: "Reddit Sans";
    font-size: 4rem;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    text-transform: lowercase;
} 
div.menu-image-container p.source {
    margin: 1rem 0 0 44rem;
    color: #727070;
    font-family: "Reddit Sans";
    font-size: 2.6rem;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}




/*// DESKTOP HAMBURGER //*/
div.splat-flex-item.hamburger-flex-item div.hamburger-container {
    display: inline-block;
    position: relative;
    top: -16%;
    left: initial;
    transform: translateY(-50%);
    width: 5.4rem;
    height: 2rem;
    cursor: pointer;
}
div.hamburger-flex-item div.hamburger-container .hamburger {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 0;
}
div.hamburger-flex-item div.hamburger-container .bar-1 { top: 0; }
div.hamburger-flex-item div.hamburger-container .bar-2 { top: 50%; }
div.hamburger-flex-item div.hamburger-container .bar-3 { top: 100%; }


/*// DESKTOP MENU HOVER STATES //*/
section.page-navigation-section.fixed:hover header.page-header { 
    background-color: var(--var-header-color);
}
section.page-navigation-section.fixed:hover a.nav-link,
section.page-navigation-section.fixed:hover div.hamburger-container {
    opacity: 1;
}  

/*// DESKTOP MENU ANIMATED STATES //*/
section.slide-down-navigation.animated div#slide-down-menu,
section.slide-down-navigation.keep-animated div#slide-down-menu {
    transform: translate(-50%, 0);
}
section.slide-down-navigation.animated header.page-header,
section.slide-down-navigation.keep-animated header.page-header { 
    /*background-color: var(--var-header-color);*/
    background-color: #565652;
}
section.slide-down-navigation.animated a.nav-link,
section.slide-down-navigation.keep-animated a.nav-link,
section.slide-down-navigation.animated div.hamburger-container,
section.slide-down-navigation.keep-animated div.hamburger-container {
    opacity: 1;
}



/*//// DESKTOP MENU ACCENTS ////*/
div.menu-accent {
    display: none;
    visibility: hidden;
    float: left;
    width: 0;
    max-width: 6rem;
    height: .5rem;
    margin: -.5rem auto 0 auto;    
    border-bottom: 1px solid transparent;
    transition: all 1.5s ease;
}
div.hover-link,
div.accent-on-this-page,
div.on-this-page { 
    width: 100%;
    border-bottom: 1px solid var(--var-nav-link-hover-color);
}
/*// VERT ACCENT - HIDDEN //*/
div.vert-menu-accent {
    display: none;
    visibility: hidden;
    position: absolute;
    left: .8rem;
    bottom: 0;
    width: 1px;
    height: 0;
    border-right: 1px solid transparent;
    transition: all .5s linear;    
}
div.vert-menu-accent.hover-link,
div.vert-menu-accent.accent-on-this-page,
div.vert-menu-accent.on-this-page { 
    height: 3.2rem;
    border-right: 1px solid #A41E22;
}

/*// HORIZONTAL ACCENT //*/
div.horiz-menu-accent {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 19.6rem;
    height: 1px;
    margin: -1px auto 0 auto;    
    border-bottom: 1px solid var(--var-nav-link-color);
    transition: all .4s ease;
}
div.horiz-menu-accent.hover-link,
div.horiz-menu-accent.accent-on-this-page,
div.horiz-menu-accent.on-this-page { 
/*    width: 100%;*/
    border-bottom: 1px solid var(--var-nav-link-hover-color);
}


/*//// DESKTOP SUB-MENU ////*/
ul.main-menu ul.main-sub-menu {
     position: absolute;
     left: -9999px;
     width: 100%;
     height: auto;
     margin: 0;
     padding: 0;
     opacity: 0;
     transition: opacity .4s ease-in-out;
     list-style: none;
}
ul.main-sub-menu li.sub-main-menu-item {
    width: 100%;
    height: auto;
    margin: auto;
    transition: color .4s ease-in-out;
    text-align: left;
    background-color: rgba( 18, 25, 34, .9 );
}
.main-sub-menu .sub-main-menu-item:hover {
    background-color: rgba( 18, 25, 34, 1 );
}
.main-menu-item .sub-main-menu-item a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; 
    letter-spacing: 0.1rem;
    font-weight: 400;
    text-transform: uppercase;
}
/*// HOVER SUB-MENU VISIBILITY //*/
ul.main-menu li.page-item-x:hover #child-of-x { /*<< x = PARENT PAGE ID */
    left: 100%;
    top: 0;
    opacity: 1;
    border: 1px solid transparent;
}





/*//// DEBUG SETTINGS .debug ////*/
main .debug {
    border: 1px solid rgba( 255, 0, 0, .5) !important;
}





/*//// BUTTONS ////*/






/*//// PAGE HERO SECTION ////*/
section.page-hero-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
section.page-hero-section div.page-hero-container {
    height: var(--var-hero-section-height);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*// HERO CONTENT FLEX //*/
div.page-hero-container div.hero-flex-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    align-items: stretch;
}
div.hero-flex-container div.full-hero-flex-item {
    padding-top: 30rem;
    padding-left: 12.5rem;
    text-align: left;
}

/*// FLUID IMAGE - SECTION & CONTENT CONTAINER //*/
section.page-hero-section img.fluid-image {
    width: 100%;
    height: auto;
}

/*// SCROLL DOWN HERO ARROW //*/
a.hero-section-arrow {
    position: absolute;
    top: 90.5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    cursor: pointer;
}
a.next-section-link img {
    width: 4.5rem;
    height: auto;
}





/*//// LINK HOT SPOT ////*/
a.hot-spot,
a.hotspot {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
}





/*//// CTA BUTTONS ////*/
a.cta-button {
    display: inline-block;
    border-radius: 5rem;
    padding: 1.2rem 2rem;
    margin: 0 1.2rem 0 0;
    font-family: "Gotham";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5; /* 150% */
    letter-spacing: 0.05rem;
    transition: all .3s ease;
}
a.cta-button.dark {
    border: 1px solid var(--Blue, #0A1E2C);
    background: var(--Blue, #0A1E2C);
    color: #FFF;
}
a.cta-button.dark:hover {
    background: #FFF;
    color: var(--Blue, #0A1E2C);
}
a.cta-button.light {
    border: 1px solid var(--Gold, #C3A86B);
    background: #ffffff;
    color: var(--Blue, #0A1E2C);
}
a.cta-button.light:hover {
    color: #ffffff;
    background: #C3A86B;
}





/*////// CTA SECTION //////*/
section.cta-section {
    margin-top: 11.5rem;
    background: var(--Blue, #0A1E2C);
}
section.cta-section div.cta-container {
    padding: 0 12.5rem;
}
/*//// FLEX ////*/
div.cta-container div.cta-flex-container {
    height: 23rem;
    transform: translateY(-11.5rem);
    border-radius: 1rem;
    background-color: var(--Gold, #C3A86B);
    background-color: rgba(195, 168, 107, .75); 
    background-color: #d0b986;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://dev-scheffey-co.pantheonsite.io/wp-content/uploads/2025/07/sheffey-co-home-testimonial-background.png');
}
div.cta-flex-container div.cta-flex-item {}

/*// FLEX SPECIFICS //*/
#cta-flex-item-1 {
    padding: 5.5rem 6rem 0 6rem;
}
#cta-flex-item-2 {
    padding: 1.1rem 3rem 0 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}

/*// ELEMENTS //*/
#cta-flex-item-1 h3 {
    margin: 0 0;
    color: var(--Blue, #0A1E2C);
    font-family: "Gotham";
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4; /* 140% */
}
#cta-flex-item-2 a.cta-button.dark {}
#cta-flex-item-2 a.cta-button.light {}

#cta-flex-item-2 a.cta-button.light:hover {
    color: #ffffff;
    border: 1px solid var(--Blue, #0A1E2C);
    background: var(--Blue, #0A1E2C);
}


/*//// STICKY FOOTER ////*/
/* REMOVE COMMENTS FOR STICKY FOOTER */
/*main, footer {
    padding-bottom: var(--var-sticky-footer-height);
}*/
/*footer {
    position: absolute;
    left: 50%; 
    bottom: 0;
    transform: translateX(-50%);
}*/



/*//// SITE FOOTER ////*/
footer {
    width: 100%;
    max-width: var(--var-design-width);    
    height: var(--var-footer-height);
    height: auto;    
    margin: 0 auto;
    margin-top: -6rem;
    text-align: center;
    background-color: var(--var-footer-color);
    background: var(--Blue, #0A1E2C);
}
footer a:active {
    color: var(--var-active-link-color);
}
footer a:visited {
    color: var(--var-visited-link-color);
}


/*//// FOOTER CONTAINER ////*/
footer div.footer-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: var(--var-content-width);
    margin: 0 auto;
    padding: 5rem 20rem;
}
footer div.footer-bottom-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: var(--var-content-width);
    margin: 0 auto;
    padding: 0 5rem;
}


/*//// FOOTER TOP FLEX ROW ////*/
div.footer-container div.footer-top-row {
    justify-content: space-between;
    width: 100%;
}
/*// TOP LEFT COLUMN //*/
div.footer-top-row div.footer-top-left-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding-right: 4rem;
    text-align: right;
}
/*// TOP CENTER COLUMN //*/
div.footer-top-row div.footer-top-center-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.footer-top-center-column img.footer-logo {
    width: 17.4287rem;
    margin: 0 auto;
}
/*// TOP RIGHT COLUMN //*/
div.footer-top-row div.footer-top-right-column {
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4rem;
}


/*//// FOOTER BOTTOM FLEX ROW ////*/
div.footer-bottom-container div.footer-bottom-row {
    justify-content: space-between;
    width: 100%;
}
/*// BOTTOM LEFT COLUMN //*/
div.footer-bottom-row div.footer-bottom-left-column {
    position: relative;
    display: flex;
    align-items: center;
    text-align: left;
}

div.footer-bottom-left-column p {
    color: var(--Gray, #C0CDD4);
    text-align: right;
    font-family: "avenir-lt-pro";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.25rem; /* 225% */
    letter-spacing: 0.02rem;
}

/*// BOTTOM CENTER COLUMN //*/
div.footer-bottom-row div.footer-bottom-center-column {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*// SOCIAL ICONS //*/
div.footer-bottom-center-column a {
    display: inline-block;
    margin: 0 0;
    padding: 0 0;
}
div.footer-bottom-center-column a img.social-icon {
    width: 100%;
    max-width: 3.36rem;
    margin: 0 1rem;
}



/*// BOTTOM RIGHT COLUMN //*/
div.footer-bottom-row div.footer-bottom-right-column {
    position: relative;
    text-align: right;
    display: flex;
    align-items: center;
}



/*//// FOOTER NAVIGATION ////*/
ul.footer-menu {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
ul.footer-menu li {
    display: inline-block;
    width: auto;
    padding: 0 2rem;
    vertical-align: top;
}
ul.footer-menu li a {
    color: var(--Gray, #C0CDD4);

    /* Body */
    font-family: "avenir-lt-pro";
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.33; /* 133.333% */
}
ul.site-menu {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
ul.site-menu li {
    display: inline-block;
    width: auto;
    padding: 0 2rem;
    vertical-align: top;
}
ul.site-menu li a {
    color: var(--Gray, #C0CDD4);
    text-align: right;
    font-family: "avenir-lt-pro";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.25rem; /* 225% */
    letter-spacing: 0.02rem;
}
/*// HIDE MENU ACCENTS //*/
ul.footer-menu li div.menu-accent,
ul.footer-menu li div.vert-menu-accent,
ul.footer-menu li div.horiz-menu-accent {
    display: none;
}
/*// HIDE MENU SUB MENU //*/
li ul.footer-sub-menu {
    display: none;
}










/*//// ELEMENT ANIMATIONS ////*/
.fade-in-up {
    transform: translateY(16px);
    opacity: 0;
    transition: all .4s ease;
}
.fade-in-up.animate {
    transform: translateY(0px);
    opacity: 1;
}
