/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*brand colours*/
@font-face {
  font-family: "UniversLTStd-Light";
  src: url("webfonts/univers/361195_7_0.eot");
  src: url("webfonts/univers/361195_7_0.eot?#iefix") format("embedded-opentype"), url("webfonts/univers/361195_7_0.woff2") format("woff2"), url("webfonts/univers/361195_7_0.woff") format("woff"), url("webfonts/univers/361195_7_0.ttf") format("truetype");
}
@font-face {
  font-family: "UniversLTStd";
  src: url("webfonts/univers/361195_4_0.eot");
  src: url("webfonts/univers/361195_4_0.eot?#iefix") format("embedded-opentype"), url("webfonts/univers/361195_4_0.woff2") format("woff2"), url("webfonts/univers/361195_4_0.woff") format("woff"), url("webfonts/univers/361195_4_0.ttf") format("truetype");
}
@font-face {
  font-family: "UniversLTStd-Bold";
  src: url("webfonts/univers/361195_3_0.eot");
  src: url("webfonts/univers/361195_3_0.eot?#iefix") format("embedded-opentype"), url("webfonts/univers/361195_3_0.woff2") format("woff2"), url("webfonts/univers/361195_3_0.woff") format("woff"), url("webfonts/univers/361195_3_0.ttf") format("truetype");
}
@font-face {
  font-family: "TradeGothicLTPro-Bold";
  src: url("webfonts/trade-gothic/361ACB_0_0.eot");
  src: url("webfonts/trade-gothic/361ACB_0_0.eot?#iefix") format("embedded-opentype"), url("webfonts/trade-gothic/361ACB_0_0.woff2") format("woff2"), url("webfonts/trade-gothic/361ACB_0_0.woff") format("woff"), url("webfonts/trade-gothic/361ACB_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "TradeGothicLTPro-Light";
  src: url("webfonts/trade-gothic/361ACB_1_0.eot");
  src: url("webfonts/trade-gothic/361ACB_1_0.eot?#iefix") format("embedded-opentype"), url("webfonts/trade-gothic/361ACB_1_0.woff2") format("woff2"), url("webfonts/trade-gothic/361ACB_1_0.woff") format("woff"), url("webfonts/trade-gothic/361ACB_1_0.ttf") format("truetype");
}
/*margins*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
.main-navigation a {
  color: #404040;
  text-decoration: none;
}
.main-navigation a:visited {
  color: #404040;
}
.main-navigation a:hover, .main-navigation a:focus, .main-navigation a:active {
  color: #404040;
}
.main-navigation a:focus {
  outline: thin dotted;
}
.main-navigation a:hover, .main-navigation a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
:root {
  --desktop-header-height: 48px;
}

.site-header {
  padding: 0;
  height: auto;
}
.site-header .main-navigation {
  position: relative;
  height: 100%;
  margin: 0;
}
.site-header .main-navigation .nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation .nav-menu li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: auto;
  flex: 0 0 auto;
}
.site-header .main-navigation .nav-menu a {
  display: block;
  text-decoration: none;
  font-family: UniversLTStd;
  font-weight: 400;
  font-style: normal;
  font-synthesis: none;
  font-size: 1.1rem;
  text-transform: none;
}
@media (max-width: 768px) {
  .site-header .main-navigation .nav-menu a {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .site-header .main-navigation .nav-menu a {
    font-size: 1.4rem;
  }
}
.site-header .main-navigation .nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #000;
  z-index: 20;
}
.site-header .main-navigation .nav-menu .sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
}
.site-header .main-navigation .nav-menu .sub-menu a {
  padding: 0.45rem 0.9rem;
  font-size: 1rem;
  color: #fdf1b1;
  text-align: left;
}
.site-header .main-navigation .nav-menu li.submenu-open > .sub-menu {
  display: block;
}
.site-header .submenu-toggle {
  background: transparent;
  border: 0;
  padding: 0.15rem;
  line-height: 1;
  color: inherit;
  cursor: pointer;
}
.site-header .submenu-toggle::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M6 8l4 4 4-4' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform-origin: center;
  transition: transform 0.2s ease;
}
.site-header .submenu-toggle:focus-visible {
  outline: none !important;
  box-shadow: none;
}
.site-header .submenu-toggle[aria-expanded=true]::before {
  transform: rotate(180deg);
}
.site-header .menu-toggle {
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: visible;
  position: relative;
  float: right;
  z-index: 1001;
  color: #000;
}
.site-header .menu-toggle:after {
  clear: both;
}
.site-header .menu-toggle:focus-visible {
  outline: none !important;
  box-shadow: none;
}
.site-header .menu-toggle.is-active {
  color: #fff;
}
.site-header .menu-toggle-icon {
  width: 36px;
  height: 18px;
}
.site-header .menu-toggle-icon rect {
  border-radius: 9999px;
  fill: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
  transform-box: fill-box;
}
.site-header .menu-toggle.is-active .menu-toggle-icon rect:first-child {
  transform: translateY(6px) rotate(45deg);
}
.site-header .menu-toggle.is-active .menu-toggle-icon rect:last-child {
  transform: translateY(-6px) rotate(-45deg);
}
.site-header .main-navigation .nav-menu,
.site-header .main-navigation .nav-menu li {
  list-style: none;
}
.site-header .header-container {
  padding: 0;
}
@media (max-width: 768px) {
  .site-header .main-navigation .nav-menu {
    display: none;
  }
  .site-header .main-navigation.toggled .nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0.65rem;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    padding: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid #ccc;
    animation: menu-overlay-in 0.28s ease-out both;
  }
  .site-header .main-navigation.toggled .nav-menu li {
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100%;
    text-align: right;
    opacity: 0;
    transform: translateY(12px);
    animation: menu-item-in 0.35s ease-out both;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(1) {
    animation-delay: 0s;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(2) {
    animation-delay: 0.06s;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(3) {
    animation-delay: 0.12s;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(4) {
    animation-delay: 0.18s;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(5) {
    animation-delay: 0.24s;
  }
  .site-header .main-navigation.toggled .nav-menu li:nth-last-child(6) {
    animation-delay: 0.3s;
  }
  .site-header .main-navigation.toggled .nav-menu li a {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: normal;
    text-align: right;
  }
  .site-header .main-navigation.toggled .nav-menu .sub-menu {
    display: none;
    position: static;
    order: 3;
    width: 100%;
    min-width: 0;
    margin: 0.35rem 0 0;
    padding: 0.15rem 0;
    background: transparent;
  }
  .site-header .main-navigation.toggled .nav-menu .sub-menu li {
    display: block;
    animation: none;
    opacity: 1;
    transform: none;
    text-align: right;
  }
  .site-header .main-navigation.toggled .nav-menu .sub-menu li + li {
    margin-top: 0.2rem;
  }
  .site-header .main-navigation.toggled .nav-menu .sub-menu a {
    color: #fdf1b1;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 0.38rem 0;
  }
  .site-header .main-navigation.toggled .nav-menu li.submenu-open > .sub-menu {
    display: block;
  }
  .site-header .main-navigation .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: 0.35rem;
    color: #fdf1b1;
  }
}
@media (min-width: 769px) {
  .site-header :root {
    --desktop-header-height: 48px;
  }
  .site-header #masthead .container {
    height: var(--desktop-header-height);
    min-height: var(--desktop-header-height);
    align-items: center;
  }
  .site-header .site-branding,
  .site-header #site-navigation,
  .site-header .main-navigation,
  .site-header .main-navigation .nav-menu {
    height: var(--desktop-header-height);
    align-items: center;
  }
  .site-header .site-branding .custom-logo-link {
    display: inline-flex;
    align-items: center;
    height: var(--desktop-header-height);
  }
  .site-header .site-branding .custom-logo {
    display: block;
    max-height: 44px;
    width: auto;
    height: auto;
  }
  .site-header .menu-toggle {
    display: none;
  }
  .site-header .main-navigation .nav-menu > li {
    display: inline-flex;
    align-items: center;
    align-self: center;
    height: var(--desktop-header-height);
  }
  .site-header .main-navigation .nav-menu > li > a,
  .site-header .main-navigation .nav-menu > li > .submenu-toggle {
    display: inline-flex;
    align-items: center;
    height: var(--desktop-header-height);
  }
  .site-header .main-navigation .nav-menu > li > .sub-menu {
    top: 100%;
  }
  .site-header .main-navigation .nav-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    align-items: center;
    margin: 0;
  }
  .site-header .main-navigation .nav-menu li {
    display: inline-flex;
    align-items: center;
    align-self: center;
    height: var(--desktop-header-height);
    width: auto;
  }
  .site-header .main-navigation .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.site-header .hamburger {
  padding-right: 0;
}
@keyframes menu-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menu-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes menu-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.site-main .site-header .comment-navigation,
.site-main .site-header .posts-navigation,
.site-main .site-header .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.site-header .comment-navigation .nav-previous,
.site-header .posts-navigation .nav-previous,
.site-header .post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.site-header .comment-navigation .nav-next,
.site-header .posts-navigation .nav-next,
.site-header .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

div {
  box-sizing: border-box;
}

/* Bootstrap grid compatibility (Bootstrap removed, markup preserved) */
.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
.hero .container,
.hero .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
#masthead::after {
  clear: both;
  content: "";
  display: block;
}
#masthead .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#masthead .container > .site-branding,
#masthead .container > #site-navigation {
  margin: 0;
}

#content::after {
  clear: both;
  content: "";
  display: block;
}

@media (max-width: 768px) {
  .container {
    max-width: 820px;
  }
}
.container-grid::after {
  clear: both;
  content: "";
  display: block;
}
.container-grid.projects-grid {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.overview-technology p:last-child {
  margin-bottom: 0;
}

#main {
  position: relative;
}

article.post {
  margin: 40px;
}

/*Menu block left*/
.site-branding {
  width: calc(18.75% - 23.75px);
  float: left;
  margin-left: 20px;
  margin-left: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.site-branding a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.site-branding img {
  display: block;
}

/*Menu block right*/
#site-navigation {
  width: calc(81.25% - 36.25px);
  float: left;
  margin-left: 20px;
  float: none !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/**********************************************/
/*PROJECTS*/
#response {
  margin-top: 15px;
}

.project-wrap {
  margin-top: 20px;
}

.single-projects .project-wrap > .row,
.single-workshop .project-wrap > .row {
  margin-left: 0;
  margin-right: 0;
  align-items: flex-start;
}

.single-projects .project-wrap > .row > [class*=col-],
.single-workshop .project-wrap > .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.single-projects .project-wrap > .row > .col-md-3 {
  background: #fdf1b1;
  padding: 1rem;
  margin-left: 1.25rem;
  flex: 0 0 calc(25% - 1.25rem);
  max-width: calc(25% - 1.25rem);
  align-self: flex-start;
}

.single-projects .project-wrap > .row > .col-md-9 {
  padding-right: 1.25rem;
}

@media (max-width: 768px) {
  .single-projects .project-wrap > .row > .col-md-9 {
    padding-right: 0;
  }
  .single-projects .project-wrap > .row > .col-md-3 {
    margin-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.single-technology .project-wrap .container-grid {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}

.single-projects .metaslider,
.single-projects .ml-slider,
.single-technology .metaslider,
.single-technology .ml-slider {
  margin-bottom: 1rem;
}

#project-description {
  width: calc(75% - 35px);
  float: left;
  margin-left: 20px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  #project-description {
    padding-right: 0;
    width: calc(62.5% - 32.5px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  #project-description {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  #project-description p,
  #project-description ul {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  #project-description p,
  #project-description ul {
    font-size: 1rem;
  }
}
#project-description strong {
  font-family: UniversLTStd-Bold;
}

#project-details {
  width: calc(25% - 25px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #project-details {
    width: calc(37.5% - 27.5px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  #project-details {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  #project-details h2 {
    font-size: 1rem;
  }
}
#project-details .detail {
  margin-bottom: 40px;
}
#project-details .detail a {
  text-decoration: underline;
}
#project-details .detail .detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#project-details .detail .detail-list li {
  margin-bottom: 8px;
}

#project-header-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background-size: cover !important;
}

#project-scope {
  width: calc(37.5% - 27.5px);
  float: left;
  margin-left: 20px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  display: none;
  margin: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  max-height: calc(100% - 20px);
  overflow: hidden;
}
#project-scope p {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/*Contact sections*/
.contact-top {
  padding: 3rem 0;
}
.contact-top .contact-top__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-top .contact-top__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }
}
.contact-top .contact-top__intro,
.contact-top .contact-top__form {
  flex: 1 1 0;
  min-width: 0;
}
.contact-top .contact-top__form {
  background: #f6f6f6;
  padding: 1.5rem;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .contact-top .contact-top__form {
    padding: 2rem;
  }
}
.contact-top h1,
.contact-top h2,
.contact-top p {
  margin-top: 0;
}

.contact-intro h1 {
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact-intro .contact-intro__text {
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 40rem;
  margin-bottom: 1rem;
}
.contact-intro .contact-intro__email a {
  text-decoration: underline;
}

.contact-form h2 {
  margin-bottom: 1rem;
}

.content-area--contact,
.content-area--contact .site-main {
  overflow-x: clip;
}

.contact-full-bleed-image {
  margin: 0;
  width: min(100%, 100vw);
  max-width: 100vw;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.contact-full-bleed-image .contact-full-bleed-image__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

section.collective,
section.contact-people-grid {
  background: #000;
  color: #fff;
  padding: 4rem 0;
}
section.collective h2,
section.contact-people-grid h2 {
  text-align: left;
}
section.collective h2.main,
section.contact-people-grid h2.main {
  text-align: left;
}
section.collective .container-grid,
section.contact-people-grid .container-grid {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
section.collective.contact-people-grid .container-grid,
section.contact-people-grid.contact-people-grid .container-grid {
  width: 100%;
  margin: 0;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
section.collective .collective-member,
section.contact-people-grid .collective-member {
  width: calc(50% - 30px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 600px) {
  section.collective .collective-member,
  section.contact-people-grid .collective-member {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
section.collective .collective-member,
section.contact-people-grid .collective-member {
  text-align: left;
  margin-bottom: 2rem;
  color: #fff;
}
section.collective .collective-member img,
section.contact-people-grid .collective-member img {
  float: left;
  width: 40%;
}
@media (max-width: 768px) {
  section.collective .collective-member img,
  section.contact-people-grid .collective-member img {
    width: 100%;
  }
}
section.collective .collective-member .member-details,
section.contact-people-grid .collective-member .member-details {
  width: 60%;
  float: right;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  section.collective .collective-member .member-details,
  section.contact-people-grid .collective-member .member-details {
    width: 100%;
    padding: 1rem 0 0 0;
  }
}
section.collective .collective-member .member-details h2,
section.contact-people-grid .collective-member .member-details h2 {
  margin: 0 0 4px 0;
  color: #fff;
}
section.collective .collective-member .member-details a,
section.contact-people-grid .collective-member .member-details a {
  text-decoration: underline;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
}
section.collective .collective-member .member-details span,
section.contact-people-grid .collective-member .member-details span {
  font-size: inherit;
  color: #fff;
}
section.collective .collective-member .member-details p,
section.contact-people-grid .collective-member .member-details p {
  margin-top: 4px;
  margin-bottom: 4px;
  color: #fff;
}
section.collective .collective-member span,
section.contact-people-grid .collective-member span {
  display: block;
  color: #fff;
}
section.collective .collective-member span.title,
section.contact-people-grid .collective-member span.title {
  font-size: 1.2rem;
  font-family: TradeGothicLTPro-Bold;
}
section.collective.contact-people-grid .collective-member--featured,
section.contact-people-grid.contact-people-grid .collective-member--featured {
  width: 100vw;
  max-width: 100vw;
  float: none;
  margin: 0 calc(50% - 50vw) 2.5rem;
  box-sizing: border-box;
  padding: 0;
}
section.collective.contact-people-grid .collective-member--featured .collective-member--featured__inner,
section.contact-people-grid.contact-people-grid .collective-member--featured .collective-member--featured__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(1.5rem, 3vw, 2.5rem);
  box-sizing: border-box;
}
section.collective.contact-people-grid .collective-member--featured img,
section.contact-people-grid.contact-people-grid .collective-member--featured img {
  float: none;
  width: min(360px, 32%);
  flex: 0 0 min(360px, 32%);
  max-width: 360px;
  margin-bottom: 1rem;
}
section.collective.contact-people-grid .collective-member--featured .member-details,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details {
  float: none;
  width: auto;
  flex: 1 1 auto;
  padding: 0;
}
section.collective.contact-people-grid .collective-member--featured .member-details h2,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details h2 {
  font-size: clamp(2rem, 2vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
section.collective.contact-people-grid .collective-member--featured .member-details .title,
section.collective.contact-people-grid .collective-member--featured .member-details .bio,
section.collective.contact-people-grid .collective-member--featured .member-details .links,
section.collective.contact-people-grid .collective-member--featured .member-details .projects,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details .title,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details .bio,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details .links,
section.contact-people-grid.contact-people-grid .collective-member--featured .member-details .projects {
  font-size: 1.2rem;
  line-height: 1.55;
}
@media (max-width: 600px) {
  section.collective.contact-people-grid .collective-member--featured,
  section.contact-people-grid.contact-people-grid .collective-member--featured {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw) 2rem;
    display: block;
  }
  section.collective.contact-people-grid .collective-member--featured .collective-member--featured__inner,
  section.contact-people-grid.contact-people-grid .collective-member--featured .collective-member--featured__inner {
    display: block;
    padding: 0 1rem 1.25rem;
  }
  section.collective.contact-people-grid .collective-member--featured img,
  section.collective.contact-people-grid .collective-member--featured .member-details,
  section.contact-people-grid.contact-people-grid .collective-member--featured img,
  section.contact-people-grid.contact-people-grid .collective-member--featured .member-details {
    width: 100%;
    max-width: 100%;
    flex: none;
  }
}

.toggleFilter {
  color: #fff;
  cursor: pointer;
}
.toggleFilter:focus {
  outline: 0 !important;
}
.toggleFilter.active {
  color: green;
}

div#mfPreviewBarShow {
  display: none;
}

.banner-header .container-fluid {
  margin: 0 40px;
}
.banner-header {
  background: #000;
  padding: 10px 0;
}
.banner-header::after {
  clear: both;
  content: "";
  display: block;
}
@media (max-width: 768px) {
  .banner-header .col-6 {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.banner-header h1 {
  color: #fff;
}
@media (max-width: 768px) {
  .banner-header h1 {
    margin: 0;
  }
}
.banner-header .banner-title {
  background: transparent;
}
.banner-header .banner-title h1 {
  font-family: TradeGothicLTPro-Light;
  font-size: 2.6rem;
  line-height: 1.05;
  margin: 0;
}
@media (max-width: 768px) {
  .banner-header .banner-title h1 {
    font-size: 1.55rem;
  }
}
.banner-header .banner-title {
  margin-left: 0;
}
.banner-header .banner-button {
  margin: 0;
}
.banner-header .banner-button:focus, .banner-header .banner-button:active {
  outline: 0 !important;
}
.banner-header .banner-button button {
  position: absolute;
  right: 10px;
  background-color: #000;
  border: none;
  color: #fff;
  font-size: 22.4px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .banner-header .banner-button button {
    margin-top: 30px;
  }
}

.banner-header--projects {
  background: transparent;
  padding: 4rem 0 2ch;
}
@media (max-width: 600px) {
  .banner-header--projects {
    padding: 3rem 0 1.5rem;
  }
}
.banner-header--projects h1 {
  color: #000;
}
.banner-header--projects .banner-button button {
  background-color: transparent;
  color: #000;
}
.banner-header--projects .banner-button .fa {
  color: #000;
}

.project-filters-row {
  position: relative;
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 0 1.5rem;
}

.filterBox {
  width: min(32rem, 100vw - 2rem);
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  position: absolute;
  right: 0;
  top: calc(100% + 0.9rem);
  padding: 1.1rem;
  z-index: 100;
  border-radius: 18px;
  box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.filterBox.is-closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
}
.filterBox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.filterBox button {
  width: 100%;
  margin-top: 0.4rem;
  grid-column: 1/-1;
}
.filterBox form {
  color: #000;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.1rem;
  row-gap: 0.8rem;
}
.filterBox .container {
  display: block;
  position: relative;
  padding: 0.45rem 0 0.45rem 2rem;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.3;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  border-radius: 10px;
}
.filterBox {
  /* Hide the browser's default checkbox */
}
.filterBox .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.filterBox {
  /* Create a custom checkbox */
}
.filterBox .checkmark {
  position: absolute;
  top: 0.45rem;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 7px;
  border: 1px solid #000;
  background-color: #fff;
}
.filterBox {
  /* On mouse-over, add a grey background color */
}
.filterBox .container:hover input ~ .checkmark {
  background-color: #f4f4f4;
}
.filterBox {
  /* When the checkbox is checked, add a blue background */
}
.filterBox .container input:checked ~ .checkmark {
  background-color: #000;
}
.filterBox {
  /* Create the checkmark/indicator (hidden when not checked) */
}
.filterBox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filterBox {
  /* Show the checkmark when checked */
}
.filterBox .container input:checked ~ .checkmark:after {
  display: block;
}
.filterBox {
  /* Style the checkmark/indicator */
}
.filterBox .container .checkmark:after {
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.filter-toggle-inline {
  margin: 0;
}
.filter-toggle-inline .toggleFilter--text {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 1px solid #111;
  border-radius: 999px;
  box-shadow: none;
  padding: 0.35rem 0.9rem;
  color: #111;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}
.filter-toggle-inline .toggleFilter--text:hover {
  color: #111;
}
.filter-toggle-inline .toggleFilter--text:focus, .filter-toggle-inline .toggleFilter--text:active {
  outline: 0 !important;
}
.filter-toggle-inline .toggleFilter--text:focus-visible {
  outline: none;
  box-shadow: none;
}

@media (max-width: 767px) {
  .project-filters-row {
    margin-bottom: 1.2rem;
  }
  .filterBox {
    width: min(28rem, 100vw - 2rem);
  }
}
/*Approach page*/
.slideIn {
  position: absolute;
  height: auto;
  width: 50vw;
  color: #000;
  background: #fff;
  top: 0;
  opacity: 0;
  padding: 20px;
  transition: opacity 0.9s;
  -webkit-transition: opacity 0.9s;
  -moz-transition: opacity 0.9s;
  pointer-events: none;
  z-index: 1;
}
.slideIn p {
  line-height: 2.5;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .slideIn p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .slideIn p br {
    margin-bottom: 10px !important;
  }
}
@media (max-width: 600px) {
  .slideIn p {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.slideIn h2 {
  margin: 0 0 10px;
}

.letterBox {
  height: calc(100vh - 58.9px);
  cursor: pointer;
  position: relative;
  width: 25%;
  background: transparent;
  float: left;
}
.letterBox:nth-child(1) .slideIn {
  right: -50vw;
}
.letterBox:nth-child(2) .slideIn {
  right: -50vw;
}
.letterBox:nth-child(3) .slideIn {
  left: -50vw;
}
.letterBox:nth-child(3) p,
.letterBox:nth-child(3) h2 {
  margin-left: 10px;
}
.letterBox:nth-child(4) .slideIn {
  left: -50vw;
}
.letterBox .big-letter {
  font-size: 10rem;
  position: relative;
  color: #fff;
  text-align: center;
  top: 20%;
}
@media (max-width: 768px) {
  .letterBox .big-letter {
    font-size: 4rem;
    top: 40%;
  }
}
@media (max-width: 600px) {
  .letterBox .big-letter {
    font-size: 3rem;
  }
}
.active .letterBox .big-letter {
  color: #000 !important;
}
.letterBox.active {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.letterBox.active .letterBox {
  z-index: 0;
}
.letterBox.active .slideIn {
  z-index: 3;
}
.letterBox.active .big-letter {
  z-index: 0;
}

section.approach {
  padding-top: 0;
  background: url("images/approach.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/*Contact page*/
#contact-details {
  padding: 2rem 0;
}
#contact-details p span {
  width: 90px;
  display: inline-block;
}
#contact-details a {
  text-decoration: underline;
}
#contact-details .ed-details h1,
#contact-details .ed-details h3 {
  margin: 0 0 10px;
}
#contact-details .ed-details p {
  font-size: 1rem;
}
@media (max-width: 768px) {
  #contact-details .ed-details img {
    margin-bottom: 15px;
  }
}
#contact-details .contact-box {
  background: #f6f6f6;
  padding: 3rem;
}
#contact-details .contact-box h2 {
  margin-bottom: 10px;
}
#contact-details .contact-box p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #contact-details .contact-box {
    padding: 1rem;
  }
  #contact-details .contact-box h2 {
    font-size: 1.2rem;
  }
  #contact-details .contact-box p {
    font-size: 1rem;
  }
}

.contact-left {
  width: calc(37.5% - 27.5px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .contact-left {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
.contact-left img {
  margin-bottom: 1rem;
}

.contact-right {
  width: calc(62.5% - 32.5px);
  float: left;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .contact-right {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
  }
}
.contact-right {
  margin-bottom: 20px;
}
.contact-right h2 {
  margin: 0;
}
.contact-right h3 {
  color: #737373;
  margin: 0;
}
.contact-right p.bio {
  margin-top: 0.4rem;
}
.contact-right img {
  width: 100%;
}

.theme-mode-toggle {
  margin-left: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid #222;
  border-radius: 50%;
  background: #fff;
  color: #111;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-mode-toggle:hover,
.theme-mode-toggle:focus-visible {
  background: #f4f4f4;
}

.theme-mode-toggle__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.theme-mode-toggle__label {
  display: none;
}

.theme-mode-toggle--mobile {
  display: none;
}

@media (max-width: 768px) {
  .theme-mode-toggle--desktop {
    display: none;
  }
  .theme-mode-toggle--mobile {
    margin-left: 0;
  }
  #site-navigation {
    gap: 0.6rem;
  }
  .main-navigation.toggled .theme-mode-toggle--mobile {
    position: fixed;
    top: calc(clamp(2rem, 5vw, 4rem) + 3.5rem);
    right: clamp(2rem, 5vw, 4rem);
    z-index: 1001;
  }
}
.theme-dark {
  color-scheme: dark;
}

.theme-dark body {
  background-color: #181a1b;
  color: #e8e6e3;
}

.theme-dark #page,
.theme-dark .highlight,
.theme-dark #content,
.theme-dark .site,
.theme-dark .site-content,
.theme-dark .site-header,
.theme-dark .site-footer,
.theme-dark article,
.theme-dark section,
.theme-dark aside,
.theme-dark main,
.theme-dark .widget,
.theme-dark .post,
.theme-dark .page,
.theme-dark .entry-content,
.theme-dark .entry-header,
.theme-dark .entry-footer,
.theme-dark .grid-item .grid-inner,
.theme-dark button {
  background-color: #181a1b;
  color: #e8e6e3;
}

.theme-dark .detail, .theme-dark .detail h2, .theme-dark .detail a {
  color: #181a1b;
}

.theme-dark .contact-form {
  background-color: #000;
  color: #e8e6e3;
}

.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark p,
.theme-dark li,
.theme-dark span,
.theme-dark label,
.theme-dark blockquote,
.theme-dark figcaption,
.theme-dark dt,
.theme-dark dd,
.theme-dark strong,
.theme-dark em,
.theme-dark small {
  color: #e8e6e3;
}

.theme-dark .highlight p {
  color: #bbb697;
}

.theme-dark a {
  color: #8ab4f8;
}

.theme-dark a:hover,
.theme-dark a:focus {
  color: #a8c7fa;
}

.theme-dark hr,
.theme-dark table,
.theme-dark td,
.theme-dark th,
.theme-dark .wp-block-separator {
  border-color: #3f4347;
}

.theme-dark input::placeholder,
.theme-dark textarea::placeholder {
  color: #b4b8bc;
}

.theme-dark .main-navigation .nav-menu,
.theme-dark .main-navigation .sub-menu {
  background-color: #181a1b;
}

.theme-dark .main-navigation a,
.theme-dark .main-navigation .submenu-toggle,
.theme-dark .menu-toggle {
  color: #e8e6e3;
}

.theme-dark .menu-toggle-icon rect {
  fill: #e8e6e3;
}

.theme-dark .theme-mode-toggle {
  border-color: #61666b;
  background: #2a2d2f;
  color: #e8e6e3;
}

.theme-dark .theme-mode-toggle:hover,
.theme-dark .theme-mode-toggle:focus-visible {
  background: #35393c;
}

.theme-dark .site-logo {
  filter: brightness(0) invert(1);
}

.theme-dark img,
.theme-dark video,
.theme-dark iframe,
.theme-dark canvas,
.theme-dark svg,
.theme-dark .wp-post-image,
.theme-dark .metaslider img {
  filter: brightness(0.88) contrast(1.05);
}

.theme-dark .site-logo,
.theme-dark .custom-logo {
  filter: brightness(0) invert(1);
}

.theme-dark .wp-block-image img,
.theme-dark .gallery img,
.theme-dark .project-wrap img,
.theme-dark .entry-content img,
.theme-dark .site-main img,
.theme-dark .site-footer img {
  filter: brightness(0.86) contrast(1.08);
}

.theme-dark .site-logo,
.theme-dark .footer-branding img,
.theme-dark .site-branding img {
  filter: brightness(0) invert(1) !important;
}

.theme-dark [style*="color:#000"],
.theme-dark [style*="color: #000"],
.theme-dark [style*="color:black"],
.theme-dark [style*="color: black"] {
  color: #e8e6e3 !important;
}

p {
  margin-bottom: 1.5em;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  p {
    font-size: 1.2rem;
  }
}
p strong {
  font-family: UniversLTStd-Bold;
  font-weight: 700;
}

ul {
  font-size: 1.4rem;
}
ul.footer-menu {
  font-size: 1rem;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

h1, h2, h3, h4, h5, h6, .sawa-main-heading {
  clear: both;
  font-family: UniversLTStd;
  letter-spacing: -1px;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8em;
}
h2.detail-title {
  font-family: UniversLTStd-Bold;
  margin: 1rem 0;
}
h2.detail-title span {
  padding: 5px 0;
}

.detail {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.detail h2 {
  font-size: 1.4rem;
  margin: 0 0 6px;
}

h3 {
  font-size: 1.4em;
  margin: 0.2em 0;
  color: #404040;
}
.sawa-main-heading {
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .sawa-main-heading {
    font-size: 2rem;
    margin: 2rem 0;
  }
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  line-height: 1.05;
  text-wrap: balance;
  font-family: TradeGothicLTPro-Light;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: UniversLTStd-Light;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Global keyboard focus indicator for interactive controls. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #fdf1b1 !important;
  outline-offset: 2px;
}

.skip-link:focus-visible {
  outline-color: #000 !important;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

#hero-section,
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 860px);
  background-color: #111;
  isolation: isolate;
}
#hero-section .hero-media,
.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero-section .hero-media .hero-media__sticky,
.hero .hero-media .hero-media__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}
#hero-section .hero-media picture,
#hero-section .hero-media img,
.hero .hero-media picture,
.hero .hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}
#hero-section .hero-media picture > img,
.hero .hero-media picture > img {
  width: 100%;
  height: 100%;
}
#hero-section .hero-media img,
.hero .hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transform-origin: center;
}
#hero-section::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
#hero-section.hero--no-overlay::before,
.hero.hero--no-overlay::before {
  display: none;
}
@media (max-width: 768px) {
  #hero-section,
  .hero {
    height: 60vh;
    min-height: 60vh;
  }
  #hero-section .hero-media,
  .hero .hero-media {
    height: 100%;
  }
  #hero-section .hero-media .hero-media__sticky,
  .hero .hero-media .hero-media__sticky {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  #hero-section .hero-media picture,
  #hero-section .hero-media img,
  #hero-section .hero-media picture > img,
  .hero .hero-media picture,
  .hero .hero-media img,
  .hero .hero-media picture > img {
    width: 100%;
    height: 100%;
    min-height: 100%;
  }
  #hero-section .hero-media img,
  .hero .hero-media img {
    transform: none;
  }
}
#hero-section > .container,
.hero > .container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
}
#hero-section .hero__inner,
.hero .hero__inner {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 3.5vw, 4rem) 0;
  background: transparent;
}
@media (max-width: 768px) {
  #hero-section .hero__inner,
  .hero .hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Sections */
section.highlight {
  background: #fdf1b1;
  color: #026143;
  padding: 4rem 0;
  text-wrap: balance;
}
@media (max-width: 768px) {
  section.highlight {
    padding: 1.8rem 0;
  }
}
section.highlight p {
  font-size: 1.6rem;
  margin: 0;
}
@media (max-width: 768px) {
  section.highlight p {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  section.highlight p {
    font-size: 1.2rem;
  }
}

section.standard {
  padding: 60px 0;
}
section.standard p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section.standard {
    padding: 40px 0;
  }
}

section.standard.black {
  background: #000;
  color: #fff;
}
section.standard.black p {
  max-width: 800px;
  text-wrap: balance;
}
section.standard.black .section-header {
  margin-bottom: 2rem;
}
section.standard.black hr {
  border: 1px solid #fdf1b1;
  margin: 1rem 0 2rem;
  max-width: 200px;
}
section.standard.black .bold {
  font-family: UniversLTStd-Bold;
  font-weight: 700;
  color: #fdf1b1;
}

section.standard.video {
  padding: 120px 0;
}
@media (max-width: 768px) {
  section.standard.video {
    padding: 60px 0;
  }
}

section.standard.grey {
  text-align: center;
  background: #e9e9e9;
}
@media (max-width: 768px) {
  section.standard.grey {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  section.standard.grey h2 {
    font-size: 1.2rem;
  }
}
section.standard.grey iframe {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  section.standard.grey iframe {
    width: 500px;
    height: 281px;
  }
}
@media (max-width: 600px) {
  section.standard.grey iframe {
    width: 100%;
    height: auto;
  }
}

section#tech-grid {
  background: #f6f6f6;
}
@media (max-width: 600px) {
  section#tech-grid .grid-inner {
    position: relative;
  }
}

section.fullwidth-img {
  position: relative;
  background-image: var(--service-bg-desktop);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 400px;
}
@media (max-width: 600px) {
  section.fullwidth-img {
    height: 260px;
    background-image: var(--service-bg-mobile, var(--service-bg-desktop));
    background-attachment: scroll;
  }
}
section.fullwidth-img .container {
  height: 100%;
}
section.fullwidth-img h2 {
  text-align: center;
  position: absolute;
  bottom: 0;
  margin: 0;
  padding: 20px;
  background: #000;
  border-radius: 1rem 1rem 0 0;
  color: #fff;
  font-size: 2.6rem;
}
@media (max-width: 768px) {
  section.fullwidth-img h2 {
    padding: 20px;
    left: 20px;
  }
}
@media (max-width: 600px) {
  section.fullwidth-img h2 {
    padding: 15px;
    font-size: 1.4rem;
    left: 15px;
  }
}

@media (max-width: 768px) {
  .service-text {
    font-size: 1.2rem;
  }
}

.service-sub-content {
  margin-top: 2rem;
}

.service-sub-content__item + .service-sub-content__item {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .service-sub-content .service-text {
    font-size: 1.2rem;
  }
}

.service-how-we-work {
  padding-top: 0;
}
.service-how-we-work h3 {
  margin-bottom: 1rem;
}

/* Services grid section
   Two-column asymmetric layout, right col bleeds up into section above */
.section-services-grid {
  padding: 4rem 0;
  overflow: visible;
  position: relative;
}
.section-services-grid .container {
  overflow: visible;
}

.services-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
@media (min-width: 768px) {
  .services-grid__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.services-grid__left img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .services-grid__left {
    padding-top: 0;
  }
}

.services-grid__text {
  margin-bottom: 1.5rem;
}
.services-grid__text h1, .services-grid__text h2, .services-grid__text h3 {
  margin-top: 0;
}

.services-grid__headline {
  line-height: 1.2;
}

.services-grid__img-left img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  .services-grid__img-left img {
    transform: scale(0.8);
    transform-origin: right top;
  }
}

.services-grid__right {
  margin-top: -1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.services-grid__right img {
  width: 100%;
  display: block;
  object-fit: cover;
}
@media (min-width: 768px) {
  .services-grid__right > img:first-child {
    transform: scale(1);
    transform-origin: left bottom;
  }
}
@media (min-width: 768px) {
  .services-grid__right > img:last-child {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
@media (max-width: 768px) {
  .services-grid__right {
    margin-top: 0;
    align-items: stretch;
  }
  .services-grid__right > img:first-child,
  .services-grid__right > img:last-child {
    width: 100%;
  }
  .services-grid__right > img:last-child {
    margin-top: 0;
  }
}
.services-grid__right img {
  display: block;
  object-fit: cover;
}

section.approach-v2 {
  overflow: hidden;
}
section.approach-v2 .container {
  overflow: hidden;
}

.approach-v2__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.approach-v2__copy {
  flex: 1 1 auto;
  min-width: 0;
}
.approach-v2__copy .section-header h2 {
  margin: 2rem 0;
}

.approach-v2__media {
  flex: 0 0 clamp(220px, 33vw, 420px);
  width: clamp(220px, 33vw, 420px);
  height: clamp(260px, 32vw, 480px);
  margin: 0 clamp(-8rem, -10vw, -3rem) 0 0;
  overflow: hidden;
}
.approach-v2__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .approach-v2__inner {
    display: block;
  }
  .approach-v2__media {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }
  .approach-v2__media img {
    height: auto;
  }
}
.technology-content-item {
  margin-bottom: 2rem;
}

#response.project-listing-response {
  padding-top: 2.25rem;
  padding-bottom: 2.75rem;
}
@media (max-width: 600px) {
  #response.project-listing-response {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
#response.project-listing-response .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-left: 0;
  margin-right: 0;
}
#response.project-listing-response .row > [class*=col-] {
  padding-left: 0;
  padding-right: 0;
  flex: 0 1 calc((100% - 2.5rem) / 3);
  max-width: calc((100% - 2.5rem) / 3);
}
@media (max-width: 768px) {
  #response.project-listing-response .row > [class*=col-] {
    flex: 0 1 calc((100% - 1.25rem) / 2);
    max-width: calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 600px) {
  #response.project-listing-response .row {
    gap: 1rem;
  }
  #response.project-listing-response .row > [class*=col-] {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

.grid-item {
  width: 100%;
  margin-bottom: 1rem;
  position: relative;
}
.grid-item a {
  text-decoration: none;
}
.grid-item h3 {
  margin-top: 0.8rem;
}
.grid-item img {
  width: 100%;
  height: auto;
}
.grid-item .grid-inner {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
}

@media (hover: hover) and (pointer: fine) {
  #response.project-listing-response .grid-item {
    position: relative;
    transition: opacity 0.3s ease, filter 0.3s ease;
  }
  #response.project-listing-response .row:hover .grid-item {
    opacity: 0.62;
    filter: grayscale(20%);
  }
  #response.project-listing-response .row:hover .grid-item:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
}
/*Footer*/
.site-footer {
  background: #f6f6f6;
  position: relative;
  padding: 60px 0;
}
.site-footer hr {
  display: none;
  margin: 1.5rem 0;
  border: 0;
  height: 4px;
  border-radius: 9999px;
  background: #000;
}
@media (max-width: 768px) {
  .site-footer hr {
    display: block;
  }
}
.site-footer .footer-left ul {
  margin-bottom: 0;
}
.site-footer .footer-left .footer-copyright {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #666;
}
.site-footer .footer-middle #mc4wp-form-1 {
  /* position:relative; */
}
.site-footer .footer-middle #mc4wp-form-1 h3 {
  margin-bottom: 10px;
}
.site-footer .footer-middle #mc4wp-form-1 input {
  margin-bottom: 10px;
}
.site-footer .footer-middle #mc4wp-form-1 p {
  margin-bottom: 0;
}
.site-footer .footer-right {
  position: relative;
}
.site-footer .footer-right a {
  position: relative;
  bottom: 0;
  font-size: 1rem;
  margin-bottom: 40px;
  color: #999;
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer .footer-right a {
    position: relative;
    text-align: left;
  }
}

.footer-menu {
  padding-left: 0;
}
.footer-menu li {
  list-style: none;
  font-size: 3em;
  display: inline;
}
.footer-menu li a {
  text-decoration: none;
}

/*# sourceMappingURL=style.css.map */
