/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 1.5rem 1.5rem;
  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: 2.8rem;
  height: 1.7rem;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.15rem;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 2.8rem;
  height: 0.3rem;
  background-color: #fff;
  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: -0.7rem;
}
.hamburger-inner::after {
  bottom: -0.7rem;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 5.6rem;
}
.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, 0.7rem, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -0.7rem, 0) rotate(-45deg);
}

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

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(0.56rem, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(0.56rem, 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(-0.56rem, -0.7rem, 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(-0.56rem, 0.7rem, 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(0.56rem, -0.7rem, 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(0.56rem, 0.7rem, 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: -1.4rem;
  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, -0.7rem, 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: -1.4rem;
  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, -0.7rem, 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: 0.15rem;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 0.7rem;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 1.4rem;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 0.7rem, 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, -1.4rem, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 0.15rem;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 0.7rem;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 1.4rem;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 0.7rem, 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, -1.4rem, 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: 0.7rem;
  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: -5.6rem;
  top: -5.6rem;
  transform: translate3d(5.6rem, 5.6rem, 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: -5.6rem;
  top: -5.6rem;
  transform: translate3d(-5.6rem, 5.6rem, 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: 0.7rem;
  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: -5.6rem;
  top: 5.6rem;
  transform: translate3d(5.6rem, -5.6rem, 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: -5.6rem;
  top: 5.6rem;
  transform: translate3d(-5.6rem, -5.6rem, 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: 0.15rem;
}
.hamburger--slider .hamburger-inner::before {
  top: 0.7rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 1.4rem;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 0.7rem, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-0.4rem, -0.4rem, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.4rem, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.15rem;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 0.7rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 1.4rem;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 0.7rem, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(0.4rem, -0.4rem, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -1.4rem, 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: 0.15rem;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 0.7rem;
  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: 1.4rem;
  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, 0.7rem, 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, 0.7rem, 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: -1.4rem;
  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, -0.7rem, 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);
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  overflow-x: hidden;
}

h1, .image-with-text h2, .small-image-with-text h2, .big-image-with-text h2 {
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1;
  margin: 1.4rem 0;
  color: #777777;
  font-weight: 600;
  margin-left: -3px;
  margin-left: -0.3rem;
}

h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  margin: 1rem 0;
  font-weight: 300;
  color: #f0592e;
  padding-bottom: 10px;
  padding-bottom: 1rem;
}

a {
  color: #f0592e;
}

p {
  line-height: 2.5;
}

code {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 16px;
  padding: 1.6rem;
  margin: 32px 16px;
  margin: 3.2rem 1.6rem;
  background-color: #f0f0f0;
  line-height: 1;
  display: block;
  tab-size: 2;
  overflow: auto;
}

.mobile-only {
  display: none;
}

/*#region Common Classes*/
.info, .info-white, .info-white a, .info-white p, .info-orange, .info-orange a, .info-orange p, .info a, .info p {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Source Code Pro", monospace;
  font-weight: 600;
  color: #322b6a;
  text-align: right;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.info a, .info-white a, .info-orange a {
  text-decoration: none;
}
.info-orange, .info-orange a {
  color: #f0592e;
}
.info-orange a {
  color: unset;
  text-decoration: none;
}
.info-white, .info-white a {
  color: #FFFFFF;
}
.info-white a {
  color: unset;
  text-decoration: none;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.center-container {
  margin: auto;
  display: block;
  box-sizing: border-box;
}

.content-container {
  display: flex;
  padding: 150px 0;
  padding: 15rem 0;
  position: relative;
  margin: auto;
  box-sizing: border-box;
  min-height: 100vh;
}

.content-container img {
  width: 100%;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0.5rem 0.5rem rgba(0, 0, 0, 0.3);
}

.content-container video {
  width: 100%;
  height: unset;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0.5rem 0.5rem rgba(0, 0, 0, 0.3);
}

.text-container {
  padding: 0 80px;
  padding: 0 8rem;
  max-width: 1000px;
  max-width: 100rem;
  box-sizing: border-box;
}

.image-with-text, .small-image-with-text, .big-image-with-text {
  margin: 27px;
  margin: 2.7rem;
  flex: 1;
}
.image-with-text h1, .small-image-with-text h1, .big-image-with-text h1, .image-with-text h2, .small-image-with-text h2, .big-image-with-text h2 {
  margin: 0;
  margin-top: -81px;
  margin-top: -8.1rem;
  padding: 28px;
  padding: 2.8rem;
  font-family: "Source Code Pro", monospace;
  font-weight: 600;
  font-size: 25px;
  font-size: 2.5rem;
  color: #FFFFFF;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  white-space: nowrap;
}
.image-with-text h2, .small-image-with-text h2, .big-image-with-text h2 {
  margin: 0;
  margin-top: -48px;
  margin-top: -4.8rem;
  padding: 16px;
  padding: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  overflow: hidden;
}
.image-with-text img, .small-image-with-text img, .big-image-with-text img {
  height: unset;
  width: 100%;
}

.big-image-with-text {
  max-width: 808px;
  max-width: 80.8rem;
}

.small-image-with-text {
  max-width: 368px;
  max-width: 36.8rem;
}

/*#endregion Common Classes*/
/*#region Animations*/
.transition-02 {
  transition: 0.2s;
}

.transition-03 {
  transition: 0.3s;
}

.transition-05 {
  transition: 0.5s;
}

@media (hover: hover) {
  .hover-grow:hover {
    transform: scale(1.05);
    transform-origin: center;
  }

  .hover-color-blue:hover {
    background-color: #322b6a;
  }

  .hover-color-orange:hover {
    background-color: #f0592e;
  }

  .hover-color-green:hover {
    background-color: #7cb82f;
  }

  .hover-color-grey:hover {
    background-color: #777777;
  }
}
/*#endregion Animations*/
/*#region Social Media*/
.social-media-container {
  display: flex;
  justify-content: center;
  height: 75px;
  height: 7.5rem;
}

.social-media-container img {
  box-shadow: unset;
}

.social-media-button {
  margin: 10px;
  margin: 1rem;
  width: 55px;
  width: 5.5rem;
  height: 55px;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #b3b3b3;
}

.social-media-button img {
  margin: 25%;
  width: 50%;
  height: 50%;
}

.social-media-button-facebook {
  margin: 10px;
  margin: 1rem;
  width: 55px;
  width: 5.5rem;
  height: 55px;
  height: 5.5rem;
}

.social-media-button-facebook img {
  width: 100%;
  height: 100%;
}

/*#endregion Social Media*/
/*#region Youtube*/
.video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
}

.fluid-width-video-wrapper {
  width: 100%;
  position: relative;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
}

.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*#endregion Youtube*/
/*#region Header*/
.header {
  top: 0;
  height: 80px;
  height: 8rem;
  position: fixed;
}

.header::after {
  content: "";
  height: 16px;
  height: 1.6rem;
  width: 100vw;
  display: flex;
  background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
}

.header-content {
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
}

.hamburger-container {
  display: none;
}

.menu-container {
  margin: auto 0 auto 28px;
  margin: auto 0 auto 2.8rem;
}

.menu-item, .menu-item-selected {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Source Code Pro", monospace;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 0 41px;
  margin: 0 0 0 4.1rem;
  color: #777777;
}
.menu-item a, .menu-item-selected a {
  color: unset;
  text-decoration: none;
}
.menu-item-selected {
  color: #f0592e;
}

.logo-container {
  display: flex;
  justify-content: right;
  margin: auto 28px auto 0;
  margin: auto 2.8rem auto 0;
}

.logo-container div {
  margin: auto 0;
}

.logo-container h1, .logo-container .image-with-text h2, .image-with-text .logo-container h2, .logo-container .big-image-with-text h2, .big-image-with-text .logo-container h2, .logo-container .small-image-with-text h2, .small-image-with-text .logo-container h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 32px;
  font-size: 3.2rem;
  color: #777777;
  text-align: right;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.logo-container h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000000;
  text-align: right;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.logo-container a {
  text-decoration: none;
}

.logo-container img {
  height: 55px;
  height: 5.5rem;
}

/*#endregion Header*/
/*#region Footer*/
.footer {
  margin-top: -116px;
  margin-top: -11.6rem;
  box-sizing: border-box;
  position: relative;
}

.footer::before {
  content: "";
  height: 16px;
  height: 1.6rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
  display: flex;
  position: relative;
}

.footer-content {
  background-color: #FFFFFF;
  height: 100px;
  height: 10rem;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.footer-social-media {
  justify-content: left;
  margin-left: 72px;
  margin-left: 7.2rem;
  line-height: 1;
}

.copyright-content {
  text-align: right;
  margin-right: 54px;
}

.copyright-content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  color: #777777;
}

/*#endregion Footer*/
/*#region Landing*/
.landing-container {
  position: relative;
  max-width: 1270px;
  max-width: 127rem;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: auto auto;
}

.landing-text-container {
  position: relative;
  margin: 27px;
  margin: 2.7rem;
  max-width: 850px;
  max-width: 85rem;
}

.landing-text-container .info, .landing-text-container .info p, .info .landing-text-container p, .landing-text-container .info a, .info .landing-text-container a, .landing-text-container .info-orange, .landing-text-container .info-orange p, .info-orange .landing-text-container p, .landing-text-container .info-orange a, .info-orange .landing-text-container a, .landing-text-container .info-white, .landing-text-container .info-white p, .info-white .landing-text-container p, .landing-text-container .info-white a, .info-white .landing-text-container a {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.landing-side-container {
  display: flex;
  flex-direction: column;
}

/*#endregion Landing*/
/*#region Projects*/
.projects-flexbox {
  position: relative;
  max-width: 1270px;
  max-width: 127rem;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: auto auto;
  align-items: center;
  flex-wrap: wrap;
}

.projects-flexbox .big-image-with-text {
  padding: 27px;
  padding: 2.7rem;
  margin: 0;
  box-sizing: border-box;
  max-width: unset;
  max-height: unset;
  flex: 0 0 100%;
}

.projects-side-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex: 0 0 100%;
  flex-wrap: wrap;
}

.projects-side-container .small-image-with-text {
  padding: 27px;
  padding: 2.7rem;
  margin: 0;
  box-sizing: border-box;
  max-width: unset;
  max-height: unset;
  flex: 0 0 50%;
}

.projects-flexbox a {
  text-decoration: none;
}

/*#endregion Projects*/
/*#region Blog*/
.blog-posts-container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  max-width: 100rem;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}

.blog-post-entry {
  display: flex;
  padding: 30px;
  padding: 3rem;
}

.blog-post-entry-text {
  flex: 1;
  margin: 0 50px;
  margin: 0 5rem;
}

.blog-post-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-post-entry * a {
  text-decoration: none;
}

.blog-post-entry h3 {
  font-weight: 400;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.blog-posts-container .image-with-text, .blog-posts-container .big-image-with-text, .blog-posts-container .small-image-with-text {
  margin: 0;
  margin-left: -380px;
  margin-left: -38rem;
  pointer-events: auto;
}

.blog-posts-side-container {
  position: fixed;
  pointer-events: none;
  top: 150px;
  top: 15rem;
  bottom: 0;
}

.blog-container .half {
  width: 50%;
  max-width: 50%;
  display: block;
  margin: auto;
}
.blog-container pre {
  max-width: 100vw;
}
.blog-container img[src$="#img-half"] {
  height: unset;
  max-width: 50%;
  display: block;
  margin: auto;
}

/*#endregion Blog*/
/*#region Team*/
.team-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.team-group-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

.team-entry {
  min-width: 200px;
  max-width: 400px;
  max-width: 40rem;
  padding: 15px;
  padding: 1.5rem;
}

.team-entry:nth-child(2n+1)::after {
  content: "";
  flex-basis: 100%;
  height: 0;
}

.team-entry img {
  max-width: 370px;
  max-width: 37rem;
}

.team-entry * img {
  width: unset;
}

.team-entry h1, .team-entry .image-with-text h2, .image-with-text .team-entry h2, .team-entry .big-image-with-text h2, .big-image-with-text .team-entry h2, .team-entry .small-image-with-text h2, .small-image-with-text .team-entry h2 {
  padding-top: 16px;
  padding-top: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #f0592e;
  line-height: 1;
}

.team-entry p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #000000;
  line-height: 1.5;
}

/*#endregion Team*/
/*#region Partners*/
.partners-container {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.partners-group-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
}

.partners-entry {
  max-width: 400px;
  max-width: 40rem;
  padding: 45px;
  padding: 4.5rem;
}

.partners-entry:nth-child(2n+1)::after {
  content: "";
  flex-basis: 100%;
  height: 0;
}

.partners-entry img {
  max-width: 370px;
  max-width: 37rem;
  box-shadow: none;
}

.partners-entry * img {
  width: unset;
}

.partners-entry h1, .partners-entry .image-with-text h2, .image-with-text .partners-entry h2, .partners-entry .big-image-with-text h2, .big-image-with-text .partners-entry h2, .partners-entry .small-image-with-text h2, .small-image-with-text .partners-entry h2 {
  padding-top: 16px;
  padding-top: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #f0592e;
  line-height: 1;
}

.partners-entry p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #000000;
  line-height: 1;
}

/*#endregion Team*/
/*#region Contact*/
.contact-text-container, .contact-text-container a, .contact-text-container h2 {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #777777;
  line-height: 1.8;
}

.contact-text-container h2 {
  color: #f0592e;
}

.contact-background {
  position: relative;
  right: 15vw;
  margin: auto 0;
}

.contact-background img {
  box-shadow: none;
}

/*#endregion Contact*/
@media (max-width: 1900px) {
  .hide-when-slim {
    display: none;
  }

  .landing-container {
    flex-direction: column;
  }

  .landing-side-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .blog-posts-side-container {
    position: unset;
    height: unset;
    pointer-events: auto;
    top: unset;
    bottom: unset;
  }

  .blog-posts-side-container .blog-posts-container .image-with-text, .blog-posts-side-container .blog-posts-container .big-image-with-text, .blog-posts-side-container .blog-posts-container .small-image-with-text {
    margin: 0;
    pointer-events: auto;
  }

  .text-container {
    max-width: 100vw;
  }

  .blog-posts-side-container .blog-posts-container .blog-post-entry:nth-child(n+3) {
    display: none;
  }

  .blog-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .blog-posts-side-container .blog-posts-container {
    flex-direction: row;
    width: 100vw;
  }
}
@media (max-width: 1000px), (max-aspect-ratio: 1/1) {
  .mobile-only {
    display: block;
  }

  .text-container {
    padding: 0 40px;
    padding: 0 4rem;
  }

  .menu-container {
    display: none;
  }

  .menu-container .info, .menu-container .info p, .info .menu-container p, .menu-container .info a, .info .menu-container a, .menu-container .info-orange, .menu-container .info-orange p, .info-orange .menu-container p, .menu-container .info-orange a, .info-orange .menu-container a, .menu-container .info-white, .menu-container .info-white p, .info-white .menu-container p, .menu-container .info-white a, .info-white .menu-container a {
    display: block;
    pointer-events: all;
  }

  .menu-is-active {
    display: block;
    position: fixed;
    top: 80px;
    top: 8rem;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #322b6a;
    background-color: rgba(50, 43, 106, 0.5);
    margin: 0;
  }

  .menu {
    padding-top: 28px;
    padding-top: 2.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 300px;
    width: 30rem;
    background-color: #322b6a;
    max-height: 100vh;
    flex-wrap: wrap;
  }

  .menu-item, .menu-item-selected {
    color: #FFFFFF;
    padding: 16px 0;
    padding: 1.6rem 0;
  }
  .menu-item-selected {
    color: #f0592e;
  }

  .hamburger-container {
    display: block;
    background-color: #322b6a;
    border-radius: 0 50% 50% 0;
    height: 5.5rem;
    width: 6rem;
    margin: auto 0;
    padding-top: 0.4rem;
  }

  .footer-social-media {
    justify-content: left;
    margin-left: 16px;
    margin-left: 1.6rem;
    line-height: 1;
  }

  .copyright-content {
    margin-right: 16px;
    margin-right: 1.6rem;
  }

  .copyright-content p {
    display: none;
  }

  .copyright-content .info-orange, .copyright-content .info-orange a, .info-orange .copyright-content a {
    display: block;
  }

  .landing-side-entry {
    margin: 27px;
    margin: 2.7rem;
    height: 207px;
    height: 20.7rem;
    max-width: 368px;
    max-width: 36.8rem;
  }

  .image-with-text h1, .big-image-with-text h1, .small-image-with-text h1, .image-with-text h2, .big-image-with-text h2, .small-image-with-text h2 {
    margin: 0;
    margin-top: -48px;
    margin-top: -4.8rem;
    padding: 16px;
    padding: 1.6rem;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .projects-flexbox {
    flex-direction: column;
  }

  .projects-entry {
    max-width: unset;
    flex: 1;
  }

  .team-group-container {
    flex-basis: 100%;
  }

  .team-entry {
    flex-basis: 100%;
  }
}
@media (max-width: 500px), (max-height: 500px) {
  html {
    font-size: calc(62.5% / 3 * 2);
  }
}

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