/*
 * Plugin Styles
 */
/*
 * Shuffl - Quick Modal
 */
body.quickmodal-open {
  overflow: hidden;
}
body > .shuffl-quick-modal {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s;
}
body > .shuffl-quick-modal.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body > .shuffl-quick-modal .modal-inner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  text-align: left;
  height: auto;
  width: 500px;
  max-width: 80%;
  max-height: 80vh;
  padding: 30px;
  border-radius: 3px;
  overflow: scroll;
}
body > .shuffl-quick-modal .close-modal {
  position: absolute;
  text-decoration: none;
  line-height: 26px;
  font-size: 0;
  right: 0;
  top: 0;
  background: #717171;
  color: #fff;
  padding: 2px 10px;
  height: 30px;
}
body > .shuffl-quick-modal .close-modal::before {
  content: 'X';
  font-size: 18px;
  transform: scaleY(0.8);
  display: inline-block;
  opacity: 0.6;
  line-height: 26px;
}
body > .shuffl-quick-modal .close-modal:hover::before {
  opacity: 1;
}
body > .shuffl-quick-modal .close-modal::after {
  content: 'CLOSE';
  font-size: 12px;
  display: inline-block;
  vertical-align: top;
  padding-left: 5px;
}
.shuffl-notice {
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: #fff;
  box-shadow: -1px 1px 7px 0 rgba(123, 123, 123, 0.1);
  padding: 15px 25px;
  border-radius: 2px;
  background: #deffd3;
  color: #32b537;
  z-index: 999999999;
}
/*
 * Shuffl - Begin Block Styles
 */




/*
 * Block - Hero
 */
.section-hero .hero-link-section {
  text-decoration: none;
}
.section-hero .hero-link-section:hover {
  color: initial;
}
.section-hero .hero-link-wrapper {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .section-hero .hero-link-wrapper {
    flex-direction: column;
  }
}
.section-hero .hero-link-wrapper .hero-link-section {
  display: flex;
  flex: 1 0 0;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 calc(0.25 *var(--container-pad));
  transition: flex 0.5s;
}
@media (min-width: 769px) {
  .section-hero .hero-link-wrapper .hero-link-section:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 10vh;
    right: 0;
    width: 2px;
    height: 80vh;
    background-color: #fff;
    opacity: 0.2;
  }
}
@media (max-width: 768px) {
  .section-hero .hero-link-wrapper .hero-link-section:not(:first-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12.5vw;
    width: 75vw;
    height: 2px;
    background-color: #fff;
    opacity: 0.2;
  }
}
.section-hero .hero-link-wrapper .hero-link-section .hero-link-heading {
  text-transform: uppercase;
  z-index: 99;
  transition: color 0.5s ease-in-out;
}
.section-hero .hero-link-wrapper .hero-link-section .hero-link-gallery {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
}
.section-hero .hero-link-wrapper .hero-link-section .hero-link-gallery img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
}
.section-hero .hero-link-wrapper .hero-link-section .hero-link-gallery img.active {
  opacity: 1;
}
.section-hero .hero-link-wrapper .hero-link-section .hero-link-video {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.section-hero .hero-link-wrapper .hero-link-section:not(:hover) .hero-link-gallery {
  opacity: 0;
}
.section-hero .hero-link-wrapper .hero-link-section:hover {
  flex: 2 0;
}
.section-hero .hero-link-wrapper .hero-link-section:hover .hero-link-gallery {
  opacity: 1;
}
.section-hero .hero-link-wrapper .hero-link-section:hover .hero-link-heading {
  color: #fff;
  /* TODO: use CSS variable */
}
.section-hero .hero-link-wrapper .hero-link-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.section-hero .wrapper {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--secondary-color);
  position: relative;
  height: 100vh;
}
.section-hero .wrapper:hover .hero-link-section:not(:hover)::after {
  opacity: 0.8;
}




/*
 * Block - Gallery
 */
.section-gallery {
  margin: 50px 0;
  overflow: visible;
  --slider-height: 700px;
}
.section-gallery .slider-wrap {
  max-height: var(--slider-height);
  margin-bottom: 24px;
}
.section-gallery .slider-wrap img {
  height: var(--slider-height);
  object-fit: cover;
  object-position: center;
}
.section-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 0;
  border: none;
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  background: none;
  border-width: 2px 2px 0 0;
}
.section-gallery .slick-arrow.slick-prev {
  left: -20px;
}
.section-gallery .slick-arrow.slick-next {
  right: -20px;
  transform: translateY(-50%) rotate(45deg);
}
.section-gallery .slider-nav {
  margin: 0 -12px;
}
.section-gallery .slider-nav .slick-slide {
  margin: 0 12px;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.section-gallery .slider-nav .slick-slide.slick-current {
  opacity: 1;
}
.section-gallery .slider-nav img {
  height: 165px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 500px) {
  .section-gallery .slider-nav {
    display: none;
  }
}
@media (max-width: 1420px) {
  .section-gallery .slider-wrap img {
    height: 60vw;
  }
}




/*
 * Block - Content
 */
.section-content.layout-normal {
  margin: 80px 0;
}
.section-content.layout-normal .wrapper .container {
  position: relative;
  display: flex;
  align-items: center;
}
.section-content.layout-full .wrapper {
  position: relative;
}
.section-content .content-wrapper {
  width: 50%;
  padding: 0 90px;
  box-sizing: border-box;
  position: relative;
  flex: 1;
}
.section-content h4 ~ h2 {
  margin-top: -0.2em;
}
.section-content .shuffl-video, .section-content .shuffl-gallery, .section-content .aligned-image {
  width: 50%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.section-content .shuffl-gallery img, .section-content .aligned-image {
  height: calc(var(--container-size) / 3);
}
.section-content .shuffl-gallery img {
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.section-content .aligned-image.size-contain {
  object-fit: contain;
}
.section-content .aligned-image.size-auto {
  object-fit: none;
}
@media (min-width: 1421px) {
  .section-content.align-left .content-wrapper {
    padding-left: 0 !important;
  }
  .section-content.align-left.layout-full .content-wrapper {
    padding-left: 0;
  }
  .section-content.align-left .aligned-image {
    object-position: right;
  }
  .section-content.align-right .content-wrapper {
    padding-right: 0 !important;
  }
  .section-content.align-right.layout-normal .wrapper .container {
    flex-direction: row-reverse;
  }
  .section-content.align-right .aligned-image {
    object-position: left;
  }
  .section-content.layout-full .content-wrapper {
    flex: 0;
    padding: 160px 90px;
  }
  .section-content.layout-full.align-right .content-wrapper {
    margin-left: 50%;
    padding-right: 0;
  }
  .section-content.layout-full .aligned-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
  }
  .section-content.layout-full.align-left .aligned-image {
    left: unset;
    right: 0;
  }
}
@media (max-width: 1420px) {
  .section-content .container {
    display: block;
  }
  .section-content .content-wrapper {
    width: 100%;
    padding: 40px 0 0 0;
    margin: 0;
    flex-basis: 100%;
  }
  .section-content.layout-full .content-wrapper {
    padding: 50px 0;
  }
  .section-content .shuffl-video, .section-content .shuffl-gallery, .section-content .aligned-image {
    width: 100%;
    max-height: 80vw;
    flex-basis: 0;
    object-position: left;
  }
  .section-content.align-right.layout-normal .wrapper .container, .section-content.layout-normal .container {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}




/*
 * Block - Info Columns
 */
.section-columns {
  margin: 100px 0;
}
.section-columns .grid {
  display: grid;
  grid-template: auto / repeat(var(--column-count), auto);
  grid-auto-rows: minmax(min-content, max-content);
  grid-gap: 40px;
}
.section-columns .inner-column img {
  width: 100%;
  height: calc(60vw / var(--column-count));
  object-fit: cover;
}
.section-columns .inner-content:last-child {
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .section-columns .grid {
    grid-template: auto / auto;
  }
  .section-columns .inner-column img {
    height: 60vw;
  }
}




/*
 * Block - Banner
 */
.section-banner .wrapper {
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--secondary-color);
  position: relative;
}
.section-banner .wrapper .inner {
  max-width: var(--content-width);
  display: flex;
  flex-wrap: wrap;
  flex: var(--content-width);
  height: min-content;
}
.section-banner .wrapper .inner-content {
  line-height: 1.5;
}
.section-banner .wrapper .inline-image {
  flex: 50%;
}
.section-banner .wrapper .inline-image img {
  width: auto;
  max-height: 480px;
  max-width: calc(var(--container-size) / 2);
}
.section-banner .wrapper[data-layout=left] .inline-image {
  text-align: right;
  padding-left: 40px;
}
@media (max-width: 1420px) {
  .section-banner .wrapper[data-layout=left] .inline-image {
    padding-left: 0;
  }
}
@media (min-width: 1421px) {
  .section-banner .wrapper[data-layout=right] .container {
    flex-direction: row-reverse;
  }
}
.section-banner .wrapper[data-layout=right] .inline-image {
  text-align: left;
  padding-right: 40px;
}
@media (max-width: 1420px) {
  .section-banner .wrapper[data-layout=right] .inline-image {
    padding-right: 0;
  }
}
@media (max-width: 1420px) {
  .section-banner .wrapper .container {
    flex-direction: column-reverse;
  }
  .section-banner .wrapper .inline-image {
    margin-bottom: 30px;
  }
  .section-banner .wrapper .inline-image img {
    max-width: 100%;
  }
  .section-banner .wrapper .inner {
    max-width: unset;
    flex: 100%;
    width: 100%;
  }
}
.section-banner .wrapper[data-layout=center] {
  text-align: center;
}
.section-banner .wrapper[data-layout=center] .inner {
  margin: 0 auto;
  max-width: unset;
  flex: 100%;
}
.section-banner .wrapper[data-layout=center] .inner-content {
  width: 100%;
  flex: 1;
}
.section-banner .container {
  display: flex;
  align-items: center;
  padding: var(--vertical-padding) var(--container-pad);
}
.section-banner h1 {
  flex-basis: 100%;
  margin-bottom: 20px;
}
.section-banner h4 {
  flex-basis: 100%;
}
.section-banner h4 ~ h1 {
  margin-top: -0.2em;
}
.section-banner .scroll-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: inherit;
  height: calc(var(--arrow-height) + 40px);
  width: var(--arrow-width);
  z-index: 9999;
  text-align: center;
  text-decoration: none;
}
body.shuffl-fullpage .section-banner .wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
body.shuffl-fullpage .section-banner .container {
  flex-grow: 0;
  width: 100%;
}
body.shuffl-fullpage .section-banner .scroll-btn {
  padding-bottom: 50px;
}
.section-banner.show-arrow {
  --arrow-width: 80px;
  --arrow-height: 20px;
  margin-top: calc(var(--arrow-height) * -1);
}
.section-banner.show-arrow .wrapper {
  overflow: hidden;
  clip-path: polygon(0% calc(100% - var(--arrow-height)), 0% 0%, 100% 0%, 100% calc(100% - var(--arrow-height)), calc(50% + (var(--arrow-width) / 2)) calc(100% - var(--arrow-height)), 50% 100%, calc(50% - (var(--arrow-width) / 2)) calc(100% - var(--arrow-height)));
  top: var(--arrow-height);
}
.section-banner.show-arrow .wrapper .container {
  padding-bottom: calc(var(--vertical-padding) + var(--arrow-height));
}
@media (max-width: 1000px) {
  .section-banner .wrapper .inner {
    max-width: unset;
  }
}




/*
 * Footer - JFVisuals Main Footer
 */
footer.shuffl-footer {
  position: absolute;
  z-index: 999999;
  color: var(--footer-text-color);
  max-width: 100vw;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  top: calc(100% - 0.5 * var(--show-footer-icon-size) - var(--container-pad));
  --show-footer-icon-size: 60px;
}
footer.shuffl-footer .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--container-pad) 0 calc(0.125 * var(--container-pad)) 0;
}
footer.shuffl-footer a {
  color: var(--footer-text-color);
}
footer.shuffl-footer #show-footer-icon {
  transition: filter 0.5s ease-in-out;
}
footer.shuffl-footer #show-footer-icon img {
  height: var(--show-footer-icon-size);
  width: var(--show-footer-icon-size);
  transition: transform 0.5s ease-in-out;
}
footer.shuffl-footer .footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 0.5em 0;
  padding: 0.5em 0;
}
footer.shuffl-footer .footer-socials:hover svg {
  opacity: 0.6;
}
footer.shuffl-footer .footer-socials:hover svg:hover {
  opacity: 1;
}
footer.shuffl-footer .footer-socials svg {
  transition: fill 0.5s ease-in-out, opacity 0.5s ease-in-out;
  height: 35px;
  width: 35px;
  fill: var(--footer-text-color);
}
footer.shuffl-footer .footer-copy, footer.shuffl-footer .footer-address {
  transition: color 0.5s ease-in-out;
  text-align: center;
}
body {
  --show-footer-icon-size: 60px;
}
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #000;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body.show-footer::after {
  z-index: 99999;
  opacity: 0.5;
}
body.show-footer footer.shuffl-footer {
  --footer-text-color: #fff;
  transform: translateY(calc(-100% + 0.5 * var(--show-footer-icon-size) + var(--container-pad)));
}
body.show-footer #show-footer-icon {
  filter: invert(1);
}




/*
 * Header - JFVisuals Main Header
 */
.shuffl-header {
  z-index: 99999999;
  padding: var(--vertical-padding) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--primary-text-color);
  font-weight: var(--text-weight);
  transition: top 0.5s;
}
@media (max-width: 1500px) {
  .shuffl-header .container {
    width: auto;
  }
}
.shuffl-header .header-logo {
  height: 100%;
  width: 100%;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shuffl-header .header-logo a {
  display: block;
  line-height: 1;
  height: 100%;
  max-width: var(--header-logo-width);
}
.shuffl-header .header-logo img {
  max-height: 60px;
  width: auto;
  height: 100%;
  transition: filter 0.5s;
}
.shuffl-header a {
  color: var(--primary-text-color);
}
.shuffl-header a:hover {
  color: var(--link-hover-color);
}
.shuffl-header ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.shuffl-header ul li {
  margin: 0.5em 0;
}
.shuffl-header ul li:first-child {
  margin-top: 0;
}
.shuffl-header ul li:last-child {
  margin-bottom: 0;
}
.shuffl-header ul a {
  padding: 0.25em 0;
}
.shuffl-header.is-solid {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.shuffl-header .header-grid {
  display: grid;
  grid-template: auto / 50fr 50fr;
  grid-gap: 20px;
  align-items: center;
}
.shuffl-header .menu {
  display: block;
  list-style: none;
  position: relative;
  margin: 0;
}
.shuffl-header .menu a {
  font-size: 1.5em;
  text-align: center;
  text-transform: uppercase;
  display: block;
  transition: opacity 0.5s;
}
.shuffl-header .menu .menu-item {
  transition: opacity 0.5s;
}
.shuffl-header .menu .menu-item.current-menu-item a {
  opacity: 1;
}
.shuffl-header[data-layout=logo-center] .header-grid {
  grid-template: auto / 38fr 24fr 38fr;
}
.shuffl-header[data-layout=logo-center] .header-logo {
  text-align: center;
}
.shuffl-header[data-layout=logo-center] .header-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  background-color: #000;
  transition: opacity 0.5s, visibility 0.5s 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper a {
  color: #fff;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper ul {
  opacity: 0;
  transition: opacity 0.5s;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s, visibility 0.5s 0s;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul {
  opacity: 1;
  transition: opacity 0.5s 0.5s;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul li a {
  position: relative;
  --menu-link-spacing: 10px;
  --menu-line-width: 25px;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotateZ(180deg);
  left: calc(-1 * var(--menu-link-spacing));
  width: 0px;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul li a::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(-1 * var(--menu-link-spacing));
  width: 0px;
  height: 2px;
  background-color: #fff;
  transition: width 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a {
  opacity: 0.6;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a:hover {
  opacity: 1;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a:hover::after, .shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a:hover::before {
  width: var(--menu-line-width);
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a:hover::after {
  transform: translateY(-50%) rotateZ(180deg) translateX(var(--menu-line-width));
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:hover li a:hover::before {
  transform: translateY(-50%) translateX(var(--menu-line-width));
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li:not(:hover) a {
  opacity: 0.6;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li:not(:hover) a::after, .shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li:not(:hover) a::before {
  width: 0px;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li:not(:hover) a::after {
  transform: translateY(-50%) rotateZ(180deg);
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li:not(:hover) a::before {
  transform: translateY(-50%);
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li.current-menu-item a {
  opacity: 1;
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li.current-menu-item a::after, .shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li.current-menu-item a::before {
  width: var(--menu-line-width);
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li.current-menu-item a::after {
  transform: translateY(-50%) rotateZ(180deg) translateX(var(--menu-line-width));
}
.shuffl-header[data-layout=logo-center] .header-menu .menu-wrapper.active ul:not(:hover) li.current-menu-item a::before {
  transform: translateY(-50%) translateX(var(--menu-line-width));
}
.shuffl-header .header-menu-button {
  z-index: 999999999;
  color: #000;
  position: relative;
  transition: opacity 0.5s;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  --header-menu-height: 30px;
  --header-menu-width: 40px;
  height: var(--header-menu-height);
  width: var(--header-menu-width);
}
.shuffl-header .header-menu-button:hover {
  color: inital;
  opacity: 0.75;
}
.shuffl-header .header-menu-button #header-menu-text {
  font-size: 0em;
}
.shuffl-header .header-menu-button #menu-icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: opacity 0.5s ease-in-out;
}
.shuffl-header .header-menu-button #menu-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--link-color);
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.shuffl-header .header-menu-button #menu-icon-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--link-color);
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.shuffl-header .header-menu-button #menu-icon-wrapper > span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--link-color);
  transition: opacity 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transform: translateY(-50%);
}
.shuffl-header .header-menu-button #menu-icon-wrapper:hover {
  opacity: 0.75;
}
body.resizing header .header-menu {
  transition: none;
}
body.mobile-menu {
  overflow: hidden;
}
body.mobile-menu .header-menu-button {
  color: #fff;
}
body.mobile-menu .header-menu-button #menu-icon-wrapper::before {
  background-color: var(--link-hover-color);
  transform: translateY(calc(0.5 * var(--header-menu-height) - 50%)) rotateZ(45deg);
}
body.mobile-menu .header-menu-button #menu-icon-wrapper::after {
  background-color: var(--link-hover-color);
  transform: translateY(calc(50% - 0.5 * var(--header-menu-height))) rotateZ(-45deg);
}
body.mobile-menu .header-menu-button #menu-icon-wrapper > span {
  background-color: var(--link-hover-color);
  opacity: 0;
}
body.mobile-menu .header-logo img {
  filter: invert(1);
}