@charset "UTF-8";
/* ==========================================================================
   Get global options
   ========================================================================== */
/* ==========================================================================
   Vars
   ========================================================================== */
/* ==========================================================================
   Queries
   ========================================================================== */
/* ==========================================================================
   Includes
   ========================================================================== */
.separate-containers .entry:not(.post) .featured-image {
  margin-top: 0;
}

body.no-sidebar .site.grid-container .site-content {
  display: block;
}

body {
  font-size: 18px;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   All headings
   ========================================================================== */
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin-top: 50px;
}
h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 0;
}

@media (max-width: 960px) {
  body.blog .site-main,
  body.archive .site-main {
    padding: 20px;
    margin: 0;
  }
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
  z-index: 10;
}

video[poster] {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-widgets-container.grid-container {
  padding: 70px 40px;
}
@media (max-width: 600px) {
  .footer-widgets-container.grid-container {
    padding: 25px;
  }
}

.wp-block-navigation-item__label {
  text-transform: uppercase;
}

.mobile-header-navigation .site-logo.mobile-header-logo img {
  height: 35px !important;
}

.menu a[target=_blank]:after,
.sf-menu a[target=_blank]:after {
  content: "\f504";
  font-family: "dashicons";
  opacity: 0.5;
  margin-left: 2px;
  transform: translateY(1.5px);
  display: inline-block;
  line-height: 0;
  font-weight: normal;
}

@media (min-width: 600px) {
  .site-header .main-navigation .main-nav ul li.nav-button {
    margin-left: 20px;
  }
}
@media (min-width: 600px) {
  .site-header .main-navigation .main-nav ul li.nav-button a {
    background-color: var(--accent);
    border-radius: 3px;
    color: white;
    padding: 15px 20px !important;
    line-height: 1;
    transition: 0.3s all ease;
  }
  .site-header .main-navigation .main-nav ul li.nav-button a:hover {
    background-color: var(--accent-2);
    color: white;
  }
}
.site-header .main-navigation .main-nav ul ul {
  width: 250px;
}
.site-header .main-navigation .main-nav ul ul li a {
  padding: 15px 20px;
}

#menu-main > li.menu-item {
  position: relative;
}
#menu-main > li.menu-item > a:after {
  content: "";
  height: 3px;
  width: 0;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s width ease, 0.5s opacity ease;
}

#menu-main > li.current-menu-item > a:after,
#menu-main > li.menu-item:hover > a:after {
  width: 30px;
  opacity: 1;
}

.sticky-enabled .main-navigation.is_stuck {
  z-index: 50 !important;
}

nav.has-sticky-branding.is_stuck img.is-logo-image {
  height: 68px !important;
  margin: 0;
  padding: 10px 0;
}
@media (max-width: 960px) {
  nav.has-sticky-branding.is_stuck img.is-logo-image {
    height: 50px !important;
  }
}

.site-logo.mobile-header-logo img.is-logo-image {
  height: 68px !important;
  margin: 0;
  padding: 10px 0;
}
@media (max-width: 960px) {
  .site-logo.mobile-header-logo img.is-logo-image {
    height: 50px !important;
  }
}

.secondary-navigation.has-top-bar {
  padding-left: 20px !important;
  padding-right: 10px !important;
}

.prefooter iframe {
  margin-bottom: -9px;
}

@media (max-width: 960px) {
  div.top-bar {
    display: none;
  }
}
div.top-bar .inside-top-bar {
  justify-content: flex-end;
}
@media (max-width: 600px) {
  div.top-bar .inside-top-bar {
    justify-content: center;
  }
}
div.top-bar .inside-top-bar .widget {
  order: 0;
}
div.top-bar .inside-top-bar .widget:first-child {
  margin-left: 0 !important;
  margin-right: auto;
}
div.top-bar .inside-top-bar .widget:last-child {
  margin-right: 0 !important;
}
div.top-bar p {
  margin-bottom: 0;
}
div.top-bar a {
  text-decoration: none;
}
div.top-bar a:hover {
  text-decoration: none;
}

.widget h2,
.widget h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
.widget a {
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 1024px) {
  [a]:not([a=""]) {
    animation-timing-function: ease-in-out;
  }
  [a=fade-right] {
    animation: fade-right;
    animation-timeline: view(block auto);
  }
  @keyframes fade-right {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    30% {
      opacity: 1;
    }
    60% {
      transform: none;
    }
  }
  [a=fade-left] {
    animation: fade-left;
    animation-timeline: view(block auto);
  }
  @keyframes fade-left {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }
    30% {
      opacity: 1;
    }
    60% {
      transform: none;
    }
  }
  [a=fade-top] {
    animation: fade-top;
    animation-timeline: view(block auto);
  }
  @keyframes fade-top {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    30% {
      opacity: 1;
    }
    40% {
      transform: none;
    }
  }
  [a=fade-bottom] {
    animation: fade-bottom;
    animation-timeline: view(block auto);
  }
  @keyframes fade-bottom {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    30% {
      opacity: 1;
    }
    60% {
      transform: none;
    }
  }
  [a=fade-top-right] {
    animation: fade-top-right;
    animation-timeline: view(block auto);
  }
  @keyframes fade-top-right {
    0% {
      opacity: 0;
      transform: translateY(40px) translateX(-40px);
    }
    30% {
      opacity: 1;
    }
    40% {
      transform: none;
    }
  }
  [a=fade-top-left] {
    animation: fade-top-left;
    animation-timeline: view(block auto);
  }
  @keyframes fade-top-left {
    0% {
      opacity: 0;
      transform: translateY(40px) translateX(40px);
    }
    30% {
      opacity: 1;
    }
    40% {
      transform: none;
    }
  }
  [a=fade-bottom-right] {
    animation: fade-bottom-right;
    animation-timeline: view(block auto);
  }
  @keyframes fade-bottom-right {
    0% {
      opacity: 0;
      transform: translateY(-40px) translateX(-40px);
    }
    30% {
      opacity: 1;
    }
    40% {
      transform: none;
    }
  }
  [a=fade-bottom-left] {
    animation: fade-bottom-left;
    animation-timeline: view(block auto);
  }
  @keyframes fade-bottom-left {
    0% {
      opacity: 0;
      transform: translateY(-40px) translateX(40px);
    }
    30% {
      opacity: 1;
    }
    40% {
      transform: none;
    }
  }
  [a=fade-up] {
    animation: fade-up;
    animation-timeline: view(block auto);
  }
  @keyframes fade-up {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    30% {
      opacity: 1;
    }
    60% {
      transform: none;
    }
  }
  [a=fade-down] {
    animation: fade-down;
    animation-timeline: view(block auto);
  }
  @keyframes fade-down {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    30% {
      opacity: 1;
    }
    60% {
      transform: none;
    }
  }
}
/* ==========================================================================
   Normal blockquotes
   ========================================================================== */
.wp-block-quote {
  border: none;
  margin: 30px 0 36px;
  padding: 0;
  position: relative;
}
.wp-block-quote:before {
  content: "“";
  font-size: 6em;
  color: var(--accent);
  position: absolute;
  line-height: 0;
  top: 0;
  height: 80px;
  left: -25px;
}
.wp-block-quote p {
  font-size: 21px;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 42px;
}
.wp-block-quote p:last-of-type {
  margin-bottom: 0;
}
.wp-block-quote cite {
  display: block;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 10px;
  font-style: normal;
  text-align: left;
  color: var(--accent);
}

/* ==========================================================================
   Large blockquotes
   ========================================================================== */
.wp-block-quote.is-style-large {
  margin: 24px 0 30px;
  padding: 0;
}
.wp-block-quote.is-style-large p {
  font-size: 28px;
}
.wp-block-quote.is-style-large cite {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  margin-top: 10px;
  font-style: normal;
  text-align: left;
}

div[data-type="core/buttons"] .block-list-appender__toggle {
  opacity: 1 !important;
  transform: none !important;
}

/* ==========================================================================
   Generic
   ========================================================================== */
.btn, body #sb_instagram .sbi_follow_btn a, .wp-block-file .wp-block-file__button, .buttons-staff .button, .buttons-staff .leadership-info .linkedin, .leadership-info .buttons-staff .linkedin, .gform-button--width-full, .wp-block-button a.wp-block-button__link,
.wp-block-button div.wp-block-button__link, .read-more.button, .leadership-info .read-more.linkedin, .gform_footer input[type=submit], .gb-button-wrapper .gb-button {
  font-weight: normal;
  cursor: pointer;
  padding: 15px 25px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  display: inline-block !important;
  position: static;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 600px) {
  .btn, body #sb_instagram .sbi_follow_btn a, .wp-block-file .wp-block-file__button, .buttons-staff .button, .buttons-staff .leadership-info .linkedin, .leadership-info .buttons-staff .linkedin, .gform-button--width-full, .wp-block-button a.wp-block-button__link,
  .wp-block-button div.wp-block-button__link, .read-more.button, .leadership-info .read-more.linkedin, .gform_footer input[type=submit], .gb-button-wrapper .gb-button {
    display: block;
    width: 100%;
  }
}

/* ==========================================================================
   Core buttons
   ========================================================================== */
.wp-block-buttons {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .wp-block-buttons {
    margin-top: 20px;
  }
}
.wp-block-buttons:first-child {
  margin-top: 0;
}
.wp-block-buttons:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .wp-block-buttons .wp-block-button {
    display: block;
    width: 100%;
  }
}

/* ==========================================================================
   GeneratePress buttons
   ========================================================================== */
/* ==========================================================================
   Gravity forms buttons
   ========================================================================== */
.gform_footer input[type=submit]:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

/* ==========================================================================
   Blog buttons
   ========================================================================== */
/* ==========================================================================
   Buttons
   ========================================================================== */
/* ==========================================================================
   Nav buttons
   ========================================================================== */
@media (min-width: 960px) {
  .nav-button > a {
    font-weight: bold;
    cursor: pointer;
    padding: 15px 25px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 600;
    display: inline-block !important;
    position: static;
    border-radius: 3px;
    background-color: var(--accent);
    color: white;
  }
  .nav-button > a:hover {
    background-color: var(--accent-2);
    color: white;
  }
}

/* ==========================================================================
   Gforms buttons
   ========================================================================== */
.gform-button--width-full {
  width: 100% !important;
  text-align: center;
}

.buttons-staff {
  margin-top: 15px;
}
.buttons-staff .button, .buttons-staff .leadership-info .linkedin, .leadership-info .buttons-staff .linkedin {
  background-color: var(--accent);
  color: white;
}
.buttons-staff .button:hover, .buttons-staff .leadership-info .linkedin:hover, .leadership-info .buttons-staff .linkedin:hover {
  background-color: var(--accent-2);
  color: white;
}

.wp-block-file {
  display: flex;
  align-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.wp-block-file a {
  order: 1;
  text-decoration: none;
}
.wp-block-file a:not(.wp-block-file__button) {
  color: var(--contrast);
  pointer-events: none;
}
.wp-block-file .wp-block-file__button {
  margin: 0 15px 0 0;
  order: 0;
  color: var(--white-color);
  background-color: var(--accent);
}
.wp-block-file .wp-block-file__button:hover {
  color: var(--white-color);
  background-color: var(--accent-2);
}

.wp-block-gallery {
  margin-bottom: 1.5em;
}
.wp-block-gallery:last-child {
  margin-bottom: 0;
}

h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading {
  margin-top: 50px;
}
h1.wp-block-heading:first-child,
h2.wp-block-heading:first-child,
h3.wp-block-heading:first-child {
  margin-top: 0;
}

.is-style-kicker + h1.wp-block-heading,
.is-style-kicker + h2.wp-block-heading,
.is-style-kicker + h3.wp-block-heading {
  margin-top: 0;
}

.wp-block-image.is-style-rounded img {
  border-radius: 3px;
}

ul.is-style-checkmark,
ol.is-style-checkmark {
  margin-left: 0;
  padding-left: 0;
}
ul.is-style-checkmark:last-child,
ol.is-style-checkmark:last-child {
  margin-bottom: 0;
}
ul.is-style-checkmark > li,
ol.is-style-checkmark > li {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin-bottom: 8px;
  line-height: 1.4;
}
ul.is-style-checkmark > li:last-child,
ol.is-style-checkmark > li:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  ul.is-style-checkmark > li,
  ol.is-style-checkmark > li {
    padding-left: 30px;
  }
}
ul.is-style-checkmark > li:before,
ol.is-style-checkmark > li:before {
  content: "\f147";
  font-family: "dashicons";
  font-size: 1.5em;
  position: absolute;
  line-height: 1em;
  left: 0;
  top: 0;
  color: var(--accent);
}
ul.is-style-checkmark > li > ul,
ul.is-style-checkmark > li > ol,
ol.is-style-checkmark > li > ul,
ol.is-style-checkmark > li > ol {
  margin-top: 10px;
  margin-bottom: 15px;
}

.wp-block-social-links li.wp-social-link,
.widget ul.wp-block-social-links li.wp-social-link {
  margin-bottom: 0;
}
.wp-block-social-links li.wp-social-link a,
.widget ul.wp-block-social-links li.wp-social-link a {
  display: block;
}

.block-editor-block-list__block.wp-block-spacer {
  background-color: rgba(128, 128, 128, 0.1);
}

/* ==========================================================================
   Padding in the editor AND on the frontend
   ========================================================================== */
.root-level-container, :where(.gb-is-root-block > [class^=gb-element-]),
:where(.gb-root-block-generateblocks-container > [class^=gb-element-]),
:where(.block-library-block__reusable-block-container > [class^=gb-element-]),
:where(.gb-is-root-block > .wp-block-generateblocks-element),
:where(.is-root-container > .block-library-block__reusable-block-container > .wp-block-generateblocks-element), :where(.entry-content > [class^=gb-element-]),
:where(.entry-content > div:not([class])),
:where(body > [class^=gb-element-]), :where(.gb-is-root-block > .gb-container),
:where(.gb-root-block-generateblocks-container > .gb-container),
:where(.block-library-block__reusable-block-container > .gb-container), :where(.entry-content > .gb-container),
:where(body > .gb-container) {
  padding: 120px 25px;
  margin: 0;
}
@media (min-width: 600px) and (max-width: 960px) {
  .root-level-container, :where(.gb-is-root-block > [class^=gb-element-]),
  :where(.gb-root-block-generateblocks-container > [class^=gb-element-]),
  :where(.block-library-block__reusable-block-container > [class^=gb-element-]),
  :where(.gb-is-root-block > .wp-block-generateblocks-element),
  :where(.is-root-container > .block-library-block__reusable-block-container > .wp-block-generateblocks-element), :where(.entry-content > [class^=gb-element-]),
  :where(.entry-content > div:not([class])),
  :where(body > [class^=gb-element-]), :where(.gb-is-root-block > .gb-container),
  :where(.gb-root-block-generateblocks-container > .gb-container),
  :where(.block-library-block__reusable-block-container > .gb-container), :where(.entry-content > .gb-container),
  :where(body > .gb-container) {
    padding: 45px 25px;
  }
}
@media (max-width: 600px) {
  .root-level-container, :where(.gb-is-root-block > [class^=gb-element-]),
  :where(.gb-root-block-generateblocks-container > [class^=gb-element-]),
  :where(.block-library-block__reusable-block-container > [class^=gb-element-]),
  :where(.gb-is-root-block > .wp-block-generateblocks-element),
  :where(.is-root-container > .block-library-block__reusable-block-container > .wp-block-generateblocks-element), :where(.entry-content > [class^=gb-element-]),
  :where(.entry-content > div:not([class])),
  :where(body > [class^=gb-element-]), :where(.gb-is-root-block > .gb-container),
  :where(.gb-root-block-generateblocks-container > .gb-container),
  :where(.block-library-block__reusable-block-container > .gb-container), :where(.entry-content > .gb-container),
  :where(body > .gb-container) {
    padding: 25px;
  }
}

/* ==========================================================================
   Default to left alignment when we set it on the block
   ========================================================================== */
@media (max-width: 600px) {
  .align-left-mobile, :where(.gb-is-root-block > [class^=gb-element-]),
  :where(.gb-root-block-generateblocks-container > [class^=gb-element-]),
  :where(.block-library-block__reusable-block-container > [class^=gb-element-]),
  :where(.gb-is-root-block > .wp-block-generateblocks-element),
  :where(.is-root-container > .block-library-block__reusable-block-container > .wp-block-generateblocks-element), :where(.entry-content > [class^=gb-element-]),
  :where(.entry-content > div:not([class])),
  :where(body > [class^=gb-element-]), :where(.gb-is-root-block > .gb-container),
  :where(.gb-root-block-generateblocks-container > .gb-container),
  :where(.block-library-block__reusable-block-container > .gb-container), :where(.entry-content > .gb-container),
  :where(body > .gb-container) {
    text-align: left;
  }
}

/* ==========================================================================
   Extend rules
   ========================================================================== */
/* GenerateBlocks v1 Frontend */
/* GenerateBlocks v1 Editor */
/* GenerateBlocks v2 Frontend */
/* GenerateBlocks v2 Editor */
/* ==========================================================================
   Dotted line on containers
   ========================================================================== */
.gb-inside-container .block-editor-inner-blocks,
.block-editor-block-list__block.gb-container > .gb-container,
.gb-is-root-block .wp-block-generateblocks-element,
.is-root-container > .block-library-block__reusable-block-container .wp-block-generateblocks-element {
  outline: 1px dashed rgba(128, 128, 128, 0.4) !important;
}

/* ==========================================================================
   Fix spacing issue on reusable blocks
   ========================================================================== */
:root :where(.editor-styles-wrapper) :where(.is-layout-flow) > * {
  margin-block-start: 0;
}

.is-style-kicker {
  color: var(--accent);
}

body #sb_instagram {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
}
body #sb_instagram .sbi_follow_btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: auto;
  transform: translateY(50%) translateX(-50%);
  text-transform: uppercase;
  z-index: 50;
  margin: 0 !important;
}
body #sb_instagram .sbi_follow_btn a {
  background: var(--accent) !important;
  box-shadow: none !important;
  color: white !important;
  margin: 0 !important;
}
body #sb_instagram .sbi_follow_btn a:hover {
  background: var(--accent-2) !important;
  box-shadow: none !important;
}
body #sb_instagram #sbi_images {
  margin: 0 !important;
  padding: 0 !important;
}
body #sb_instagram #sbi_images .sbi_item {
  position: relative;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
}
body #sb_instagram #sbi_images .sbi_item:before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 100px;
  color: white;
  z-index: 20;
  opacity: 0;
  transition: 0.6s all ease;
  pointer-events: none;
}
body #sb_instagram #sbi_images .sbi_item:after {
  opacity: 0;
  content: "";
  background-color: var(--accent);
  position: absolute;
  inset: 0;
  transition: 0.3s all ease;
  pointer-events: none;
  z-index: 10;
}
body #sb_instagram #sbi_images .sbi_item:hover:after {
  opacity: 0.85;
}
body #sb_instagram #sbi_images .sbi_item:hover:before {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) rotate(180deg);
}

.facetwp-facet {
  margin-bottom: 0 !important;
}
.facetwp-facet * {
  color: var(--contrast);
  text-align: left;
}
.facetwp-facet.facetwp-type-fselect .fs-wrap {
  width: 100%;
}
.facetwp-facet.facetwp-type-fselect .fs-wrap .fs-label-wrap {
  border-radius: 5px;
  border: 1px solid var(--contrast-3);
}
.facetwp-facet.facetwp-type-fselect .fs-wrap .fs-label-wrap .fs-label {
  line-height: 48px;
  padding: 0 15px;
  font-size: 16px;
  color: var(--contrast-2);
  text-align: left;
}
.facetwp-facet.facetwp-type-fselect .fs-wrap .fs-label-wrap .fs-arrow {
  right: 10px;
}
.facetwp-facet.facetwp-type-fselect .fs-option-label {
  font-size: 16px;
}
.facetwp-facet.facetwp-type-dropdown {
  width: 100%;
}
.facetwp-facet.facetwp-type-dropdown select.facetwp-dropdown {
  border: 1px solid var(--contrast-3);
  background-color: white;
  height: 50px;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  width: 100%;
}
.facetwp-facet.facetwp-facet-search .facetwp-input-wrap {
  width: 100%;
}
.facetwp-facet.facetwp-facet-search input.facetwp-search {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--contrast-3);
  padding: 0 15px;
  line-height: 48px;
  font-size: 16px;
  color: var(--contrast-2);
}
.facetwp-facet.facetwp-facet-search i.facetwp-icon {
  display: none;
}
.facetwp-facet.facetwp-type-reset {
  text-align: left;
  color: var(--contrast-3);
}
.facetwp-facet.facetwp-type-reset a {
  color: var(--contrast-3);
}
.facetwp-facet.facetwp-type-proximity {
  margin: 0;
}
.facetwp-facet.facetwp-type-proximity .facetwp-input-wrap {
  width: 100%;
}
.facetwp-facet.facetwp-type-proximity .facetwp-input-wrap i.facetwp-icon.locate-me {
  left: 0;
  right: auto;
}
.facetwp-facet.facetwp-type-proximity .facetwp-input-wrap i.facetwp-icon.locate-me:before {
  width: 45px;
  background-position: center center;
  opacity: 0.5;
  transition: 0.3s all ease;
}
.facetwp-facet.facetwp-type-proximity .facetwp-input-wrap i.facetwp-icon.locate-me:hover:before {
  opacity: 1;
}
.facetwp-facet.facetwp-type-map .facetwp-map-filtering {
  display: none;
}

.page-id-10 #facetwp-map {
  height: 100% !important;
  position: absolute !important;
}

.gm-style-iw-d {
  margin-top: -35px;
  max-width: 300px;
}
.gm-style-iw-d h3 {
  margin-bottom: 5px;
  font-size: 22px;
  text-transform: none;
  font-weight: bold;
  letter-spacing: 0;
}

.leadership-carousel {
  position: relative;
}
.leadership-carousel .type-staff {
  margin-bottom: 0;
}
.leadership-carousel .type-staff .featured-image {
  height: 0;
  display: block;
  padding-top: 120%;
  background-size: cover;
  filter: grayscale(100%) contrast(120%);
  transition: 0.3s all ease;
}
.leadership-carousel .slick-arrow {
  position: absolute;
  right: 10%;
  left: auto;
  bottom: 30px;
  top: auto;
  background-color: var(--accent) !important;
  z-index: 50;
  width: 30px;
  height: 30px;
}
.leadership-carousel .slick-arrow:before {
  font-size: 30px;
}
@media (min-width: 600px) {
  .leadership-carousel .slick-arrow {
    height: 40px;
    width: 40px;
    right: 3%;
  }
  .leadership-carousel .slick-arrow:before {
    font-size: 30px;
  }
}
.leadership-carousel .slick-prev {
  transform: translateX(-60%);
}
.leadership-carousel .slick-prev:before {
  content: "\f341";
  font-family: dashicons;
}
.leadership-carousel .slick-next {
  transform: translateX(60%);
}
.leadership-carousel .slick-next:before {
  content: "\f345";
  font-family: dashicons;
}
.leadership-carousel .slick-current .type-staff .featured-image {
  filter: none;
}

.staff-content {
  display: none;
}
.staff-content h2 {
  margin-bottom: 0 !important;
}

body .lity {
  background-color: var(--contrast-2);
}

.leadership-info {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
.leadership-info h3 {
  font-size: 30px;
  margin-bottom: 0;
}
.leadership-info p.jobtitle {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 5px;
}
.leadership-info .type-staff {
  text-align: center;
  margin-bottom: 0;
}
.leadership-info .linkedin {
  display: inline-block;
  margin-left: 5px;
  padding: 12px 15px 12px;
  position: relative;
  top: -3px;
}
@media (max-width: 600px) {
  .leadership-info .linkedin {
    margin: 0 0 5px 0;
  }
}
@media (max-width: 600px) {
  .leadership-info .buttons-staff {
    padding: 0 5%;
  }
}
@media (max-width: 600px) {
  .leadership-info .button, .leadership-info .linkedin {
    margin: 0 0 5px 0;
  }
}

.news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}
.news-container .entry,
.news-container .news {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  margin: 0;
  border-radius: 3px;
  position: relative;
}
.news-container .entry .overlay,
.news-container .news .overlay {
  position: absolute;
  inset: 0;
  transition: 0.3s all ease;
  border-radius: 3px;
}
.news-container .entry .overlay:hover,
.news-container .news .overlay:hover {
  box-shadow: 0 0 0 3px var(--accent);
}
.news-container .entry .background,
.news-container .news .background {
  height: 0;
  padding-top: 45%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
}
.news-container .entry .the-content,
.news-container .news .the-content {
  padding: 15px;
}
.news-container .entry .the-content h3,
.news-container .news .the-content h3 {
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.1;
}
.news-container .entry .the-content p.date,
.news-container .news .the-content p.date {
  margin-bottom: 0;
  font-size: 18px;
  opacity: 0.7;
  text-transform: uppercase;
  line-height: 1;
}
.news-container .entry .the-content :last-child,
.news-container .news .the-content :last-child {
  margin-bottom: 0;
}

div.facetwp-template[data-name=projects_grid],
div.facetwp-template[data-name=projects_grid_limit_items] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 30px;
}
div.facetwp-template[data-name=projects_grid] .projects,
div.facetwp-template[data-name=projects_grid_limit_items] .projects {
  position: relative;
  background-color: var(--accent);
  border-radius: 5px;
  text-align: center;
}
div.facetwp-template[data-name=projects_grid] .projects .overlay,
div.facetwp-template[data-name=projects_grid_limit_items] .projects .overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  transition: 0.3s box-shadow ease;
  border-radius: 5px;
}
div.facetwp-template[data-name=projects_grid] .projects .overlay:hover,
div.facetwp-template[data-name=projects_grid_limit_items] .projects .overlay:hover {
  box-shadow: 0 0 0 3px var(--contrast);
}
div.facetwp-template[data-name=projects_grid] .projects .featured-image,
div.facetwp-template[data-name=projects_grid_limit_items] .projects .featured-image {
  height: 0;
  display: block;
  padding-top: 60%;
  background-size: cover;
  background-position: center center;
  border-radius: 5px;
  overflow: hidden;
  margin: 0;
  transition: 0.3s opacity ease;
}
div.facetwp-template[data-name=projects_grid] .projects .content,
div.facetwp-template[data-name=projects_grid_limit_items] .projects .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  opacity: 0;
  transition: 0.3s opacity ease;
}
div.facetwp-template[data-name=projects_grid] .projects .content h3,
div.facetwp-template[data-name=projects_grid_limit_items] .projects .content h3 {
  color: white;
}
div.facetwp-template[data-name=projects_grid] .projects:hover .featured-image,
div.facetwp-template[data-name=projects_grid_limit_items] .projects:hover .featured-image {
  opacity: 0.2;
}
div.facetwp-template[data-name=projects_grid] .projects:hover .content,
div.facetwp-template[data-name=projects_grid_limit_items] .projects:hover .content {
  opacity: 1;
}

div.facetwp-template[data-name=projects_no_show] {
  display: none;
}

.loop-container.loop-layout-projects {
  padding: 30px 30px 0;
}
.loop-container.loop-layout-projects .entry {
  border-radius: 5px;
  overflow: hidden;
}
.loop-container.loop-layout-projects .featured-image {
  height: 0;
  padding-top: 60%;
  display: block;
  text-align: none;
  position: relative;
  text-align: center;
  background-size: cover;
  background-position: center center;
}
.loop-container.loop-layout-projects .featured-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5;
  opacity: 0;
  transition: 0.3s all ease;
}
.loop-container.loop-layout-projects .featured-image h3 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  z-index: 10;
  color: white;
  opacity: 0;
  transition: 0.3s all ease;
  padding: 0 25px;
}
.loop-container.loop-layout-projects .featured-image:hover h3 {
  top: 50%;
  opacity: 1;
}
.loop-container.loop-layout-projects .featured-image:hover:before {
  opacity: 1;
}

body.single-projects .site.grid-container {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 100%;
}
body.single-projects h1 {
  color: var(--accent);
}
@media (min-width: 960px) {
  body.single-projects h1 {
    font-size: 40px;
  }
}
body.single-projects .fullwidth-project {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}
body.single-projects .featured-image {
  height: 250px;
  max-height: 40vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin: 0;
}
@media (max-width: 600px) {
  body.single-projects .featured-image {
    height: 100px;
  }
}
body.single-projects .single-project-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 960px) {
  body.single-projects .single-project-wrap {
    flex-flow: column;
  }
}
body.single-projects .single-project-content {
  width: 100%;
  padding: 60px 60px;
}
@media (min-width: 960px) {
  body.single-projects .single-project-content {
    max-width: 660px;
  }
}
body.single-projects .single-project-content :last-child {
  margin-bottom: 0;
}
@media (max-width: 960px) {
  body.single-projects .single-project-content {
    padding: 30px;
    width: 100%;
  }
}
body.single-projects .single-project-images {
  width: 50%;
}
@media (min-width: 960px) {
  body.single-projects .single-project-images {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}
@media (max-width: 960px) {
  body.single-projects .single-project-images {
    width: 100%;
  }
}
body.single-projects .project-content p {
  line-height: 1.4em;
}
body.single-projects .single-slider {
  margin-bottom: -8px !important;
}
body.single-projects .single-slider .slick-dots {
  bottom: 25px;
}
body.single-projects .single-slider .slick-dots button:before {
  color: white;
  font-size: 15px;
}
body.single-projects .single-slider .image {
  height: 0;
  width: 100%;
  padding-top: 70%;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1200px) {
  body.single-projects .single-slider .image {
    padding-top: 100%;
  }
}
@media (max-width: 960px) {
  body.single-projects .single-slider .image {
    padding-top: 60%;
  }
}
body.single-projects .project-info {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-top: 30px;
}
body.single-projects .project-info li {
  list-style: none;
  line-height: 1.2em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.single-projects .project-info li span.label {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}
body.single-projects .project-info li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body.single-projects .navigation {
  padding: 20px 0;
}
body.single-projects .navigation a {
  display: inline-block;
  text-decoration: none;
  margin: 0 5px 0 0;
  font-size: 15px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
}
body.single-projects .navigation a:hover {
  color: white;
}

body .loop-container.loop-layout-testimonial_slider .slick-slide {
  padding-bottom: 30px !important;
}
body .loop-container.loop-layout-testimonial_slider .entry {
  padding: 10px 0 0;
}
body .loop-container.loop-layout-testimonial_slider .entry .testimonial-content p {
  font-size: 21px;
}
body .loop-container.loop-layout-testimonial_slider .entry a.testimonial-url {
  display: block;
  text-align: center;
}
body .loop-container.loop-layout-testimonial_slider .slick-dots {
  margin: 0;
  padding: 0;
}
body .loop-container.loop-layout-testimonial_slider .testimonial-content {
  text-align: center;
}
body .loop-container.loop-layout-testimonial_slider .testimonial-content > :first-child:before {
  content: '"';
}
body .loop-container.loop-layout-testimonial_slider .testimonial-content > :last-child:after {
  content: '"';
}
body .loop-container.loop-layout-testimonial_slider .testimonial-content > :last-child {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  body .loop-container.loop-layout-testimonial_slider .testimonial-content {
    text-align: left;
  }
}
body .loop-container.loop-layout-testimonial_slider .testimonial-content:before {
  display: none !important;
}
body .loop-container.loop-layout-testimonial_slider h3,
body .loop-container.loop-layout-testimonial_slider span.jobtitle {
  display: block;
  text-align: center;
}
@media (max-width: 600px) {
  body .loop-container.loop-layout-testimonial_slider h3,
  body .loop-container.loop-layout-testimonial_slider span.jobtitle {
    text-align: left;
  }
}
