@import url(https://use.typekit.net/wrm6toa.css);
@charset "UTF-8";
/* Colour Variables */

.brochure {
  opacity: 0.2;
}
.noUnderline {
  text-decoration: none;
}
.brochure.downloadable {
  opacity: 1;
}
.multipleBrochures a {
  text-decoration: none;
}
.container {
  margin: 0 auto;
  max-width: 65rem;
}
@media screen and (max-width: 1199px) {
  .container {
    padding-left: 6%;
    padding-right: 6%;
  }
}

/*!
 * 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: #000;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px;
  height: 3px;
  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: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 70px;
}

.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, 9px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

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

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

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(7px, 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(-7px, -8.75px, 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(-7px, 8.75px, 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(7px, -8.75px, 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(7px, 8.75px, 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: -18px;
  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, -9px, 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: -18px;
  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, -9px, 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: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 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, -18px, 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: 9px;
  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: -70px;
  top: -70px;
  transform: translate3d(70px, 70px, 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: -70px;
  top: -70px;
  transform: translate3d(-70px, 70px, 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: 9px;
  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: -70px;
  top: 70px;
  transform: translate3d(70px, -70px, 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: -70px;
  top: 70px;
  transform: translate3d(-70px, -70px, 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: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 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: 1.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  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: 18px;
  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, 9px, 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, 9px, 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: -18px;
  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, -9px, 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);
}

/*
*  html5resetcss
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
}

header nav ul li a {
  color: #595e66;
  font-weight: 700;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 1.05rem;
  color: inherit;
  text-decoration: underline 5px rgba(255, 255, 255, 0);
  transition: text-decoration 650ms;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
header nav ul li a:hover {
  cursor: pointer;
  color: #364c6f;
  text-decoration-color: #941621;
}

h1 {
  font-size: 54px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0px 2px 18px rgba(0, 0, 0, 0.5);
  width: 66%;
  line-height: 66px;
}

h2 {
  margin-top: 4rem;
  font-weight: 600;
  color: #595e66;
  font-size: 48px;
  letter-spacing: 0.2px;
  line-height: 80px;
  margin-bottom: 2rem;
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #595e66;
}

h4 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.125rem;
  color: #595e66;
}

.panelBox h5 {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2rem;
}

h5 {
  display: inline;
  font-weight: 700;
  font-size: 1rem;
  color: #595e66;
}

p {
  line-height: 1.5rem;
  font-size: 1.125rem;
  color: #555;
}

ul li {
  color: #555;
}

span.firstColumn,
footer .wrappedContainer > ul > li {
  color: #595e66;
}

.footerCopyright {
  margin: 12rem 0 1rem 0;
}
.footerCopyright p {
  opacity: 0.8;
  margin: 0;
  font-size: 0.75rem;
  line-height: 0.85rem;
}
.footerCopyright p.copyRight {
  font-weight: 700;
}
.footerCopyright p a {
  text-decoration: none;
  color: inherit;
}

.patientContent blockquote.bigQuote {
  margin: 4rem 0 4rem;
}

.patientContent .fileDownload {
  margin-top: 4rem;
}

blockquote.bigQuote {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.75rem;
  background-repeat: no-repeat;
  background-position: 30px 26px;
  padding-left: 8rem;
  max-width: 720px;
  margin: 6rem 0 0;
}

blockquote.bigQuote.red {
  background-image: url(305f46d02584fd035faf9feac3da1208.png);
}

blockquote.bigQuote.blue {
  background-image: url(24b895cf463e8bda02fa74507a90c73d.png);
  padding-bottom: 4rem;
}

.fileDownload {
  margin-top: 8rem;
  padding-bottom: 8rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.375rem;
  text-align: center;
  padding-top: 5rem;
  background-repeat: no-repeat;
}
.fileDownload p {
  max-width: 320px;
  margin: 0 auto !important;
  text-transform: capitalize;
}

.brochure.fileDownload {
  background-image: url(d1d3f46fb9e701f6112a28d2e3048076.png);
  background-position: 50% top;
}

.brochure.fileDownload.red {
  background-image: url(b8bf25cc32f0981bf3d875a745ddc2bf.png);
}

.form.fileDownload {
  background-image: url(22ef0968a7ac995f518fdaef370a162b.png);
  background-position: 50% top;
}

h6 {
  font-style: italic;
}

ul li,
ol li {
  font-size: 1.125rem;
}

.interactiveLink {
  clear: both;
  cursor: pointer;
}
.interactiveLink p {
  font-weight: 700;
  font-size: 1.6rem;
  padding-top: 24rem;
  padding-left: 20rem;
  max-width: 500px;
  line-height: 2rem;
}

footer ul li a {
  text-decoration: none;
  color: #555;
  cursor: pointer;
}

.heavyWeight {
  font-weight: 700;
  font-style: italic;
}

.headerText img {
  width: 24px;
}

h5.big {
  font-size: 3rem !important;
}

.donateSection.research {
  margin-bottom: 6rem;
}
.donateSection.research a {
  color: #364c6f;
  font-weight: 700;
}

.referralForm {
  color: #364c6f;
  font-weight: 700;
}

span.lightItalic {
  font-weight: 100 !important;
  font-style: italic;
}

.marginAddTop {
  margin-top: 3rem;
}

.audiogram {
  text-align: center;
}
.audiogram p {
  font-size: 0.8rem;
  font-style: italic;
}

.marginAddTop {
  margin-top: 4rem !important;
}

.fileDownload.inline {
  margin-top: 0 !important;
  padding-bottom: 0 !important;
  background-position: 10% top;
}

.collabLogos {
  margin: 6rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.collabLogos a {
  flex: 1;
  text-align: center;
}
.collabLogos a img {
  mix-blend-mode: multiply;
  width: 180px;
}
.collabLogos .cochlearCollab {
  width: 80px !important;
}
.collabLogos .abCollab {
  position: relative;
  top: 6px;
}
.collabLogos .medCollab {
  position: relative;
  top: 6px;
}

section.research {
  margin-top: 7rem;
}

.alignRight {
  text-align: right;
}

.wrappedContainer {
  width: 940px;
  margin: 0 auto;
}

.heavy {
  font-weight: 300;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 2.8rem;
}

.beaumontHospitalLogoTop {
  width: 137px;
  height: 68px;
  background-image: url(a5ad02ba954eb3c9ebe78df6fedae7aa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 9px;
  left: 2px;
}

.mainContainer {
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.mainContainer header {
  background-color: White;
  overflow: hidden;
}
.mainContainer header .logoImage {
  background-image: url(2449339c75f411cde5f246c2c4711bf4.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 102px;
  height: 66px;
  display: inline-block;
  position: relative;
  top: 8px;
  left: 20px;
  float: left;
}
.mainContainer header nav {
  float: right;
}
.mainContainer header nav .hamburger {
  display: none;
}
.mainContainer header nav ul li {
  float: left;
  line-height: 5rem;
}
.mainContainer .homeIntro {
  background-color: #fafafa;
}

.calloutImage {
  display: flex;
  align-items: center;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-repeat: no-repeat;
}

.homeCalloutImage {
  background-position: 0 50%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(6a20af3fb1bfc7b64fc77c3b9875fb97.jpg);
}

.patientsCalloutImage {
  background-position: right 18%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(255, 255, 255, 0) 70%
    ),
    url(3974dd0d0e1249b0b7217c253db4ae75.jpg);
}

/*.aboutCalloutImage {
  background-position: 0% 34%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(255, 255, 255, 0) 85%
    ),
    url("/src/images/headerImages/163.jpg");
  background-position: right;
}*/
.researchCalloutImage {
  background-position: 0 75%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(7b8d8d9a5934c8494699166e419bdd98.jpg);
}

.healthprofCalloutImage {
  background-position: right 75%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(88a30e243500b06156ede95a362e75ad.jpg);
}

.girlAlt {
  background-position: 0% 50%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(2618fe39557bd99b94291d3e7b04feda.jpg);
}

.twoBoysBack {
  background-position: 0% 50%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(f1b7f8668cf86192f8e1c391aa9ddfd5.jpg);
}

.aboutCalloutImage {
  background-position: right 60%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(836d89a16d675e7bd9bb845893e504c6.jpg);
}

.twoBoysDark {
  background-position: 0% 74%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(d60551b4864abfc0f9e367b019df0221.jpg);
}

.redHairdBoyAlt {
  background-position: right 50%;
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url(aeed5c71f04369c0eafde369d2917949.jpg);
}

.interactiveLink {
  height: 508px;
  background-image: url(109a63b7b137dc37b8d7b5608bfc961b.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.interactiveLink a {
  text-decoration: none;
}

.interactiveLink.about {
  margin: 4rem 0 0;
}

.homeContent {
  background-color: #fafafa;
}
.homeContent .intro {
  display: flex;
}
.homeContent .intro .leftColumn {
  flex: 9;
}
.homeContent .intro .leftColumn h3 {
  margin-top: 1rem;
}
.homeContent .intro .leftColumn p {
  margin-top: 2rem;
}
.homeContent .intro .rightColumn {
  flex: 3;
}
.homeContent .intro .rightColumn .infographic {
  background-image: url(f13bb92e0c041b2fbbf24a1bdf9fcd6c.png);
  width: 399px;
  height: 549px;
  background-repeat: no-repeat;
  position: relative;
  left: 30px;
  top: 70px;
  background-size: contain;
}
.homeContent .whatIsAnimation {
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeContent .whatIsAnimation .imageSequence {
  width: 65%;
}
.homeContent p {
  margin: 5rem 0 0 0;
}

.patientContent {
  background-image: url(28fba5e66966a7b08df2ac1c5fe3b615.png);
  background-repeat: no-repeat;
  background-position: right -20px top 200px;
}
.patientContent .intro .leftColumn {
  max-width: 620px;
  position: relative;
}
.patientContent .intro .rightColumn {
  float: left;
}
.patientContent .assessmentImage {
  position: absolute;
  left: 600px;
  top: 180px;
}

.healthprofContent {
  margin-top: 7rem;
}
.healthprofContent .leftColumn {
  position: relative;
}
.healthprofContent ol li {
  margin: 2rem 0;
  margin-left: 2rem;
}

.addTopMargin {
  margin-top: 4rem !important;
}

footer {
  padding-top: 24rem;
  background-image: url(42ece9df1b2a90e9c4de56338e66c50e.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}
footer .wrappedContainer {
  position: relative;
}
footer .wrappedContainer > ul {
  list-style-type: none;
  width: 100%;
  display: flex;
}
footer .wrappedContainer > ul > li {
  flex: 1;
  font-weight: 700;
}
footer .wrappedContainer > ul > li ul {
  margin-top: 2rem;
  list-style-type: none;
}
footer .wrappedContainer > ul > li ul li {
  text-transform: none;
  margin: 1rem 0;
  list-style-type: none;
  font-weight: 500;
}
footer .map {
  overflow: hidden;
  position: relative;
  height: 560px;
  filter: grayscale(25%);
}
footer .map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
footer .footerContact {
  margin-top: 8rem;
}
footer .footerContact h4 {
  margin-left: -20px;
}
footer .footerContact li.footerLogoGroup {
  flex: 1;
}
footer .footerContact li.contactUs {
  flex: 2;
}
footer .footerContact .mainLogos {
  overflow: hidden;
}
footer .footerContact .footerLogoGroup {
  background-repeat: no-repeat;
  margin-top: 4rem;
  overflow: hidden;
  left: -20px;
  position: relative;
  bottom: 6px;
}
footer .footerContact .footerLogoGroup .logoFooterImage {
  width: 88px;
  height: 57px;
  background-image: url(2449339c75f411cde5f246c2c4711bf4.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  float: left;
  margin-left: 2rem !important;
}
footer .footerContact .footerLogoGroup .beaumontHospitalLogo {
  width: 142px;
  height: 66px;
  background-image: url(a5ad02ba954eb3c9ebe78df6fedae7aa.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  float: left;
  margin-left: 24px;
}
footer .footerContact .footerLogoGroup .beaumontLogo {
  background-image: url(02e1603928a154c360aa28038819b7e6.png);
  width: 66px;
  height: 37px;
  float: left;
}
footer .footerContact .footerLogoGroup .logoAffiliates {
  clear: both;
  margin-top: 1rem;
  margin-left: 5.2rem;
}
footer .footerContact .footerLogoGroup .rcsiLogo {
  position: relative;
  width: 58px;
  height: 41px;
  background-image: url(f03041fa077388e9a42e7768907a7523.png);
  bottom: 32px;
  left: -78px;
  width: 134px;
  height: 85px;
  float: left;
  background-size: cover;
}
footer .footerContact .footerLogoGroup .chiLogo {
  background-image: url(235af5077ef464f5a014bba44d01ed81.jpg);
  width: 43px;
  height: 24px;
  position: relative;
  left: 16px;
  top: 6px;
  width: 90px;
  height: 94px;
  position: relative;
  left: -45px;
  top: -16px;
  float: left;
  background-size: cover;
}
footer .footerContact span {
  margin: 0.75rem 0;
}
footer .footerContact span a {
  text-decoration: none;
  color: inherit;
}
footer .footerContact .firstColumn {
  float: left;
  width: 30%;
  font-weight: 700;
}
footer .footerContact .secondColumn {
  float: left;
  width: 30%;
}
footer .footerContact .thirdColumn {
  float: left;
  width: 30%;
}
footer p {
  margin: 2.5rem 0;
  text-align: center;
  font-style: normal;
  font-weight: 500;
}

.donateSection button {
  background-image: url(b27f2bcdd5f635cce4146f1487dcc500.png);
  width: 326px;
  height: 56px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  border: 0;
  margin: 0 auto;
  display: block;
  background-color: #fafafa;
}

.donateSection h5 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.donateSection p {
  margin: 3rem auto;
  text-align: center;
  max-width: 700px;
}

.donateSection .phoneNumber a {
  color: #364c6f;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.donateSection .line {
  opacity: 0.2;
  width: 280px;
  height: 1px;
  border-top: 1px solid #364c6f;
  margin: 0 auto;
}

footer .donateSection {
  margin: 8rem 0;
}
footer .donateSection button {
  cursor: pointer;
  width: 257px;
  height: 44px;
  background-image: url(7ff4100567e5abfee23f081bc37795cb.png);
  background-size: cover;
}
footer .donateSection button:hover {
  position: relative;
  top: 2px;
}

.collaboratorsSection {
  background-image: url(4ba36d9f04f127271c6866a3e5c9a54f.png);
  background-repeat: no-repeat;
  background-position: right -20px top 200px;
}

.collaborator01 {
  width: 120px;
  mix-blend-mode: multiply;
  margin: 0 20px;
}

.collaborator02 {
  width: 120px;
  margin: 0 20px;
}

.collaboratorLogos {
  margin: 0 auto;
  width: 320px;
}

.documentation {
  margin-left: 4rem;
  font-style: italic;
}
.documentation p.details {
  font-style: italic;
  margin-bottom: 1rem;
}
.documentation h6 {
  margin-top: 2rem;
}

.heading {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  color: #383b41;
  letter-spacing: 0.2px;
  line-height: 5rem;
}

section {
  max-width: 90rem;
  margin: 0 auto;
}

section.myTimeline2 {
  padding: 5rem 0;
}

.smsIcon {
  display: inline-block;
  width: 19px;
  height: 16px;
  background-image: url(f3c49579ae3acf9d4402281e5fb4b06f.png);
  background-repeat: no-repeat;
  margin: 0 !important;
  position: relative;
  top: 3px;
  left: 1px;
}

.hamburger {
  border: 0;
  background-color: white;
  font-size: 1.5rem;
  outline: none;
}

button:focus {
  outline: none;
}

body {
  background: white;
}

.animationContainer {
  height: 500vh;
}

canvas#animation01 {
  border: 1px solid red;
  padding-left: 250px;
  left: 50%;
  top: 50%;
  max-height: 65vh;
  transform: translate(-50%, -50%);
}

.researchSections {
  background-color: #fafafa;
}

.panelBox .content {
  width: 480px;
  border-radius: 25px;
  background-color: white;
  padding: 60px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.2);
}

.panelBox .surgeonPhoto {
  width: 520px;
  height: 330px;
  background-image: url(5a27142ccf65bc2aa9d0b52dec2c3049.png);
  background-repeat: no-repeat;
  border-radius: 25px;
}

.patientContent ul,
.healthprofContent ul {
  margin-top: 2rem;
  max-width: 620px;
  line-height: 1.33rem;
  list-style: none;
}
.patientContent ul li,
.healthprofContent ul li {
  margin: 1rem 0;
  list-style-position: inside;
}
.patientContent ul li::before,
.healthprofContent ul li::before {
  content: "• ";
  color: #364c6f;
  font-size: 2rem;
  position: relative;
  top: 3px;
}

.patientContent ul.secondaryBulletColor li::before,
.healthprofContent ul.secondaryBulletColor li::before {
  color: #941621;
}

.patientContent h2.alignRight,
.healthprofContent h2.alignRight {
  text-align: right;
}

.patientContent ul.twoColumn,
.healthprofContent ul.twoColumn {
  width: 100%;
  max-width: none;
}
.patientContent ul.twoColumn .ulLeft,
.healthprofContent ul.twoColumn .ulLeft {
  width: 46%;
  float: left;
}
.patientContent ul.twoColumn .ulRight,
.healthprofContent ul.twoColumn .ulRight {
  width: 47%;
  float: right;
}

.patientContent ul.twoColumn:after,
.healthprofContent ul.twoColumn:after {
  content: "";
  display: table;
  clear: both;
}

.patientContent p,
.healthprofContent p {
  margin: 1rem 0 2rem 0;
}
.patientContent p span,
.healthprofContent p span {
  font-weight: 700;
}
.patientContent p span.secondary,
.healthprofContent p span.secondary {
  font-weight: 100;
  font-size: 0.75rem;
}

.nurseImage {
  height: 535px;
  background-image: url(710557b9377caa1d379fb3d85a93c0f5.jpg);
  background-size: cover;
}

.faqSection {
  padding-bottom: 8rem;
  /* Style the buttons that are used to open and close the accordion panel */
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  /* Style the accordion panel. Note: hidden by default */
}
.faqSection p {
  margin: 2rem 0 !important;
}
.faqSection .accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 1.8rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  /**transition: 0.4s;**/
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
}
.faqSection .accordion.accTop {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.faqSection .accordion.accBot {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.faqSection .accordion.accBot.active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.faqSection .active,
.faqSection .accordion:hover {
  background-color: #fff;
}
.faqSection .panel {
  /**box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15);
**/
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.faqSection .panel.lastPanel {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.faqSection .accordion:after {
  content: "\02795";
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}
.faqSection .active:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
}

.about.container {
  margin-top: 12rem;
}

.patientsP {
  font-weight: 700;
  width: 75%;
}

section.myTimelineResponsive {
  display: none;
}

#history {
  position: relative;
}

#history2 {
  margin-left: 2rem;
}

.multipleBrochures {
  overflow: hidden;
}
.multipleBrochures .brochure {
  float: left;
  width: 33%;
  box-sizing: border-box;
}
.multipleBrochures p {
  padding: 1rem;
}

.loadingGif {
  background-image: url(43e97ff732081ec773ae153799adf9f7.gif);
  background-size: cover;
  width: 180px;
  height: 201px;
  width: 119px;
  height: 132px;
  z-index: 4;
  margin: auto;
  position: fixed;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.8;
}

.errorMessage {
  cursor: pointer;
  font-weight: 800;
  position: absolute;
  left: 2%;
  bottom: 3%;
  font-size: 0.75rem;
  font-weight: 400;
  font-size: 0.85rem;
  width: 20%;
}
.errorMessage p {
  font-size: 0.85rem;
  line-height: 1.1rem;
  font-weight: 700;
  background-image: url(db0c75e6335b84a075c8818a2b186f18.png);
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: left bottom;
  padding-bottom: 26px;
}
.errorMessage a {
  font-size: 0.85rem !important;
  color: #555;
}

.scrollDown p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  position: absolute;
  right: 1%;
  top: 30%;
  background-image: url(8aed4f12f842ea91e98f4b4ff681d017.gif);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  background-position: 50% bottom;
  background-repeat: no-repeat;
  padding-bottom: 3.5rem;
}

.scrollUp p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  position: absolute;
  left: 1%;
  top: 4%;
  background-image: none;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  background-position: 50% top;
  background-repeat: no-repeat;
  padding-top: 3.5rem;
}

section.tvLinks {
  margin-top: 12rem;
  padding-bottom: 12rem;
}

#ourTeam {
  margin-top: -6rem;
}

section.masonry {
  margin-top: 10rem;
  padding-bottom: 12rem;
}

.scrollDown,
.scrollUp,
.errorMessage {
  display: none;
}

html {
  scroll-behavior: smooth;
}

.masonry__item {
  overflow: hidden;
}

section.research h2 {
  margin-left: 3rem;
}

/* medium display only */
@media (max-width: 1145px) {
  section.research h2 {
    margin-left: 0;
  }
  .beaumontHospitalLogoTop {
    width: 58px;
    top: 8px;
  }
}

@media (max-width: 1040px) {
  section.team .top {
    justify-content: center;
    grid-template-columns: none;
  }
  section.team .top .teamCard {
    min-width: 500px;
    max-width: 700px;
    margin-bottom: 3rem;
  }
  section.team .top .teamCard#director {
    order: -1;
  }
}

@media (max-width: 992px) {
  footer .footerContact .footerLogoGroup {
    left: 0 !important;
  }
  .healthprofContent {
    margin-top: 3rem;
  }
  .aboutList {
    margin-top: 0 !important;
  }
  #history {
    display: none;
  }
  .myTimelineResponsive h2 {
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 72px 30px;
  }
  .myTimelineResponsive h2.heading {
    background-image: none;
  }
  h1 {
    margin-left: 2rem;
  }
  .healthprofContent .audiogramImage {
    position: static;
    text-align: center;
  }
  .audiogram {
    text-align: center;
  }
  .aboutImage {
    flex: none;
    width: 90%;
  }
  .aboutImage.playing {
    width: 75%;
  }
  section.myTimelineResponsive {
    display: block;
  }
  section.myTimeline2 {
    display: none;
  }
  .teamCard {
    min-width: 0 !important;
  }
  .staffGroup p {
    width: 80% !important;
    margin: 0 auto !important;
    margin-top: 4rem !important;
    text-align: center;
    float: none !important;
  }
  .staffGroup .staffGroupImage {
    margin: 0 auto !important;
    float: none !important;
    text-align: center;
  }
  .eventContainerResponsive {
    text-align: center;
  }
  .eventContainerResponsive h2 {
    margin-bottom: 0;
  }
  .eventContainerResponsive p {
    width: 75%;
    margin: 0 auto;
    line-height: 1.5rem;
  }
  .eventContainerResponsive img {
    border-radius: 20px;
    margin-top: 2rem;
  }
  section.team {
    clear: both;
  }
  .beaumontHospitalLogoTop {
    left: 132px;
    top: 12px;
  }
  .homeIntro h1 {
    width: 90%;
  }
  .homeContent .intro {
    display: block;
    width: 90%;
  }
  .homeContent .intro .rightColumn .infographic {
    margin: 0 auto;
    position: static;
    margin-top: 2rem;
    background-position: 50% 50%;
    width: 100%;
  }
  .mainContainer header nav {
    float: none;
  }
  .mainContainer header nav .hamburger {
    display: inline-block;
    float: right;
    margin: 1rem;
    cursor: pointer;
  }
  .mainContainer header nav .hamburger-inner {
    bottom: -5px;
    left: 12px;
  }
  .mainContainer header nav ul.headerNav {
    display: none;
    clear: both;
  }
  .mainContainer header nav ul.headerNav.active {
    display: block;
  }
  .mainContainer header nav ul li {
    float: none;
    width: 100%;
    line-height: 3rem;
    border-bottom: 1px solid #e9e9e9;
  }
  .wrappedContainer {
    width: 100%;
  }
  .homeContent .whatIsAnimation .imageSequence {
    width: 92.5%;
  }
  footer {
    padding-top: 12rem;
  }
  footer p {
    margin: 2.5rem 4rem;
  }
  footer .footerContact {
    margin-top: 0;
  }
  footer .footerContact h4 {
    margin-left: 0;
  }
  footer .footerContact .footerLogoGroup {
    flex: none;
    margin-top: 4rem;
  }
  footer .footerContact .footerLogoGroup .mainLogos {
    display: flex;
    justify-content: center;
  }
  footer .footerContact .footerLogoGroup .mainLogos .logoFooterImage {
    float: none;
    margin: 0 1rem;
  }
  footer .footerContact .footerLogoGroup .mainLogos .beaumontHospitalLogo {
    float: none;
    margin: 0 1rem;
  }
  footer .footerContact .footerLogoGroup .logoAffiliates {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 2rem;
  }
  footer .footerContact .footerLogoGroup .logoAffiliates .rcsiLogo {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    float: none;
    left: -31px;
    bottom: 31px;
  }
  footer .footerContact .footerLogoGroup .logoAffiliates .chiLogo {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    float: none;
    left: 6px;
    top: -21px;
  }
  footer .wrappedContainer > ul {
    display: block;
    text-align: center;
  }
  footer .wrappedContainer > ul li {
    margin-top: 3rem;
  }
  footer .contactDetails .firstColumn {
    float: none;
    width: 100%;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.25rem;
  }
  footer .contactDetails .secondColumn {
    float: none;
    display: inline-block;
    width: 100%;
    margin-bottom: 0.25rem;
    margin-top: 0rem;
  }
  footer .contactDetails .thirdColumn {
    float: none;
    display: inline-block;
    width: 100%;
    margin-top: 0;
  }
  .interactiveLink p {
    max-width: 100%;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 0;
    padding-top: 29rem;
  }
  .patientContent,
  .healthprofContent {
    padding: 2rem;
  }
  .patientContent h2,
  .healthprofContent h2 {
    line-height: 3rem;
  }
  .patientContent .assessmentImage,
  .healthprofContent .assessmentImage {
    display: none;
  }
  .faqSection button::after {
    opacity: 0.35;
  }
  .patientsTimeline ul.twoColumn .ulLeft,
  .patientsTimeline ul.twoColumn .ulRight {
    float: none;
    width: 90%;
  }
}

@media (max-width: 880px) {
  .collabLogos {
    flex-direction: column;
  }
  .collabLogos a {
    margin: 20px 20px;
  }
  .collabLogos .medCollab {
    top: 20px;
  }
  .collabLogos .abCollab {
    top: 20px;
  }
  .collabLogos .ottCollab {
    position: relative;
    left: -2px;
  }
  .patientsTimeline .stepContent {
    margin-bottom: 0 !important;
    text-align: center;
  }
  .patientsTimeline .stepContent p {
    width: 100% !important;
  }
  .patientsTimeline .firstStep {
    border: none !important;
  }
  .patientsTimeline .firstStep img {
    text-align: center !important;
    position: static !important;
  }
  .patientsTimeline .firstStep h6 {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .firstStep p {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .secondStep {
    border: none !important;
  }
  .patientsTimeline .secondStep img {
    text-align: center !important;
    position: static !important;
  }
  .patientsTimeline .secondStep h6 {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .secondStep p {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .thirdStep {
    border: none !important;
  }
  .patientsTimeline .thirdStep img {
    text-align: center !important;
    position: static !important;
  }
  .patientsTimeline .thirdStep h6 {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .thirdStep p {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .fourthStep {
    border: none !important;
  }
  .patientsTimeline .fourthStep img {
    text-align: center !important;
    position: static !important;
  }
  .patientsTimeline .fourthStep h6 {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .fourthStep p {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .fifthStep {
    border: none !important;
  }
  .patientsTimeline .fifthStep img {
    text-align: center !important;
    position: static !important;
  }
  .patientsTimeline .fifthStep h6 {
    position: static !important;
    text-align: center !important;
  }
  .patientsTimeline .fifthStep p {
    position: static !important;
    text-align: center !important;
  }
}

/* small display only */
@media (max-width: 780px) {
  .homeIntro h1 {
    width: 90%;
    margin-left: 1rem;
    line-height: 3.5rem;
  }
  .patientContent {
    background-image: none;
  }
}

@media (max-width: 660px) {
  .donateSection p {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  section.masonry {
    margin-top: 0 !important;
  }
  section {
    padding: 0;
  }
  section.team {
    padding: 10rem 1rem;
  }
  .aboutList {
    margin-top: 0 !important;
  }
  .errorMessage {
    width: 28%;
  }
  .multipleBrochures .brochure {
    float: none;
    width: 100%;
  }
  .multipleBrochures .fileDownload {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
  .audiogramImage {
    position: static !important;
    width: 80% !important;
  }
  .patientsP {
    width: 85%;
  }
  h1 {
    font-size: 44px;
  }
}

@media (max-width: 450px) {
  .scrollDown p {
    font-size: 0.4rem;
    background-size: 15px;
    padding-bottom: 1.2rem;
    right: 0;
  }
  .scrollUp p {
    font-size: 0.4rem;
    background-size: 15px;
    padding-top: 1.2rem;
    left: 0;
  }
  .errorMessage {
    width: 35%;
  }
  .interactiveLink p {
    padding-top: 20rem;
  }
}

@media (max-width: 325px) {
  h1 {
    font-size: 30px;
  }
}

.masonry h1 {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  padding: 2rem 0;
}

.masonry__container::after {
  content: "";
  display: block;
  clear: both;
}

.masonry__item,
.masonry__sizer {
  width: 24%;
}

.masonry .gutter-sizer {
  width: 1%;
}

.masonry__item {
  float: left;
  margin-bottom: 10px;
}
.masonry__item--width1 {
  width: 24%;
}
.masonry__item--width2 {
  width: 49%;
}
.masonry__item--width3 {
  width: 24%;
}
.masonry__item--height1 {
  height: 200px;
}
.masonry__item--height2 {
  height: 300px;
}
.masonry__item--height3 {
  height: 410px;
}
.masonry__item--height4 {
  height: 510px;
}
@media screen and (max-width: 767px) {
  .masonry__item {
    width: 100%;
  }
  .masonry__item--width1,
  .masonry__item--width2,
  .masonry__item--width3 {
    width: 100%;
  }
  .masonry__item--height1,
  .masonry__item--height2,
  .masonry__item--height3 {
    height: auto;
  }
}

.masonry img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.myTimeline2 {
  width: 100%;
  margin: 0;
  max-width: none;
  margin-top: -320px;
}
.myTimeline2 .eventContainer {
  padding-bottom: 0;
}
.myTimeline2 .eventContainer p {
  text-align: center;
}

.topTimeline,
.middleTimeline {
  display: flex;
  align-items: flex-end;
}
.topTimeline .eventContainer,
.middleTimeline .eventContainer {
  padding-top: 0;
}

.eventContainer {
  flex: 1;
  padding: 3rem;
  position: relative;
}
.eventContainer img {
  display: block;
  margin: 0 auto;
}
.eventContainer img.eventImage {
  opacity: 0;
  margin-bottom: 2rem;
  margin-top: 2rem;
  position: relative;
  text-align: center;
  border-radius: 20px;
  border: 2px solid white;
  box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.25);
}
.eventContainer h2 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0rem;
}

.timelineLine {
  height: 1px;
  border-top: 1px solid #999;
}

.eventContainer.img {
  padding-bottom: 0;
}

.middleTimeline.lower .eventContainer {
  padding-top: 0;
}

.topTimeline.lower {
  align-items: flex-start;
}
.topTimeline.lower h2 {
  margin-top: 0;
}
.topTimeline.lower .eventContainer {
  padding-top: 0rem;
}
.topTimeline.lower p {
  width: 55%;
  text-align: center;
  margin: 0 auto;
}

img.eventImage {
  width: 100%;
  max-width: 280px;
}

.team {
  color: #383b41;
}
.team .heading {
  text-align: right;
}

.teamCard {
  text-align: center;
  box-shadow: 0px 38px 38px -41px rgba(0, 0, 0, 0.11);
}

.teamImage {
  transform: translateY(20px);
  border-radius: 71%;
}

.teamText {
  box-sizing: border-box;
  padding: 1.5625rem;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.06);
  border-radius: 0.375rem;
  min-height: 6.25rem;
  font-size: 0.875rem;
}

.teamName {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.teamPosition {
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  font-style: italic;
}

.teamMembers {
  margin-top: 0.8125rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  column-gap: 1.1875rem;
  row-gap: 0.8125rem;
}

.teamName {
  font-size: 1.25rem;
}

.teamImage {
  transform: translateY(1.25rem);
  width: 7.75rem;
  height: 7.75rem;
}

.teamPosition {
  padding-top: 0.125rem;
}

.top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  column-gap: 1.25rem;
  padding-bottom: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .top {
    display: block;
    margin: 0 auto;
    place-items: center;
  }
}
@media screen and (max-width: 767px) {
  .top .teamCard {
    margin: 0 auto;
    max-width: 18.75rem;
  }
}
.top .teamName {
  font-size: 1.5rem;
  padding-bottom: 0.4375rem;
}
.top .teamImage {
  width: 12rem;
  height: 12rem;
}
.top .teamText {
  min-height: 6.5625rem;
}

.staffGroup {
  margin-top: 2rem;
  overflow: hidden;
}
.staffGroup .staffGroupImage {
  float: right;
  background-image: url(80efacf6b5cc2a3150339874c95817c4.png);
  background-size: cover;
  width: 303px;
  height: 405px;
  border-radius: 20px;
  margin-right: 4rem;
}
.staffGroup p {
  float: left;
  margin-left: 4rem;
  width: 50%;
  font-size: 1.4rem;
  line-height: 2.8rem;
  font-weight: 300;
  margin-top: 8rem;
  font-style: italic;
}

.publications blockquote {
  margin: 4rem 0 0 0;
}

.publications {
  color: #4a4a4a;
  max-width: 65rem;
}
.publications .heading {
  text-align: left;
  padding-bottom: 3.125rem;
  margin-top: 6rem;
}

.publicationList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28.75rem, 1fr));
  column-gap: 1.75rem;
  row-gap: 4.375rem;
  padding-bottom: 7.375rem;
}
@media screen and (max-width: 991px) {
  .publicationList {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.publicationItem {
  list-style: none;
}
.publicationItem .link {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}
.publicationItem .link:hover {
  color: #909090;
}
.publicationItem .headerText {
  display: flex;
  padding-bottom: 1.4375rem;
}

.publicationYear {
  color: #bfbfbf;
  font-size: 3rem;
  line-height: 5rem;
  text-align: right;
  padding-bottom: 1.75rem;
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.title {
  font-size: 1.3125rem;
  line-height: 1.5rem;
  margin-left: 1.6875rem;
  text-align: center;
  max-width: 375px;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 991px) {
  .title {
    max-width: unset;
  }
}

.collaborators {
  font-size: 0.875rem;
  line-height: 1.875rem;
}

.reference {
  line-height: 1.875rem;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.tvLinksList > * + * {
  padding-top: 7.75rem;
}
@media screen and (max-width: 767px) {
  .tvLinksList > * + * {
    padding-top: 4.8rem;
  }
}

.tvLinksItem {
  display: flex;
  gap: 1.625rem;
}
@media screen and (max-width: 767px) {
  .tvLinksItem {
    display: block;
  }
}

.tvLinksImages {
  flex: 1;
  position: relative;
}

.tvLinksPhoto {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 1.875rem;
  box-shadow: 0px 38px 38px -41px rgba(0, 0, 0, 0.26);
}

.tvLinksIcon {
  position: absolute;
  bottom: 0;
  left: -4.4375rem;
}
@media screen and (max-width: 767px) {
  .tvLinksIcon {
    left: unset;
    right: 1.1875rem;
    bottom: -1.75rem;
  }
}

.tvLinksDescription {
  color: #383b41;
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8rem;
  align-self: center;
}
@media screen and (min-width: 768px) and (max-width: 1011px) {
  .tvLinksDescription {
    font-size: 1.0625rem;
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  .tvLinksDescription {
    font-size: 1.125rem;
    line-height: 1.625rem;
    padding-bottom: 2.4375rem;
  }
}

.bold {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.inverted {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .inverted .tvLinksIcon {
    bottom: 0;
    left: unset;
    right: -5.1875rem;
  }
}

.testimonials {
  color: #585858;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: 0 auto;
  background-color: #fafafa;
  max-width: none;
  padding-bottom: 14rem;
}

@media screen and (max-width: 767px) {
  .swiper-container-multirow > .swiper-wrapper {
    flex-wrap: unset;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23bbbbbb'%2F%3E%3C%2Fsvg%3E") !important;
  width: 22px;
  height: 30px;
  background-size: cover;
  margin-top: 20px;
}

.swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23bbbbbb'%2F%3E%3C%2Fsvg%3E") !important;
  width: 22px;
  height: 30px;
  background-size: cover;
  margin-top: 20px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
}
.swiper-slide:nth-child(even) {
  transform: translateX(-19.125rem);
  padding-top: 6.2125rem;
}
@media screen and (max-width: 1199px) {
  .swiper-slide:nth-child(even) {
    transform: unset;
    padding-top: 0;
  }
}

.testimonial {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .testimonial {
    max-width: 34.375rem;
  }
}

.testimonialImg {
  width: 5.9375rem;
  height: 5.9375rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 2.6rem auto -3rem;
}

.testimonialText {
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 3.5rem 1.25rem 2.5rem;
  min-height: 16.625rem;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 1fr auto;
}
.testimonialText h4 {
  font-size: 1.125rem;
}
@media screen and (max-width: 900px) {
  .testimonialText {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .testimonialText {
    margin: 0 3vw 5vw;
    padding: 3.5rem 5vw 2.1875rem;
  }
}

.testimonialCite {
  padding-top: 1.125rem;
}

.testimonialName {
  font-family: proxima-nova, sans-serif;
  font-weight: 800;
  font-style: normal;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: baseline;
  padding-top: 2.75rem;
}

.testimonialDate {
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  font-style: italic;
  margin-left: 0.3125rem;
}

.quotesRed,
.quotesBlue,
.quotesGold {
  position: relative;
}
.quotesRed::after,
.quotesBlue::after,
.quotesGold::after {
  position: absolute;
  content: "";
  width: 4rem;
  height: 3rem;
  background-image: url(fonts/quotes-red.svg);
  background-repeat: no-repeat;
  top: 2.75rem;
  right: 0rem;
}
@media screen and (max-width: 991px) {
  .quotesRed::after,
  .quotesBlue::after,
  .quotesGold::after {
    top: 1.125rem;
    right: unset;
  }
}

.quotesBlue::after {
  background-image: url(fonts/quotes-blue.svg);
}

.quotesGold::after {
  background-image: url(fonts/quotes-gold.svg);
}

.patientsTimeline h6 {
  line-height: 3rem;
}

.patientsTimeline p {
  margin-bottom: 1rem !important;
}

.patientsTimeline .stepContent {
  margin-bottom: 5rem;
}

.patientsTimeline .firstStep {
  border: 2px dashed #bcbcbc;
  border-left: none;
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
}
.patientsTimeline .firstStep .stepContent {
  position: relative;
}
.patientsTimeline .firstStep .stepContent img {
  position: absolute;
  left: -20px;
  top: -25px;
}
.patientsTimeline .firstStep .stepContent h6 {
  text-align: left;
  font-size: 1.35rem;
  position: relative;
  right: 80px;
}
.patientsTimeline .firstStep .stepContent p {
  width: 75%;
  position: relative;
  left: -80px;
}

.patientsTimeline .secondStep {
  border: 2px dashed #bcbcbc;
  border-right: none;
  border-top: none;
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
}
.patientsTimeline .secondStep .stepContent {
  position: relative;
}
.patientsTimeline .secondStep .stepContent img {
  position: absolute;
  right: 306px;
  top: -25px;
}
.patientsTimeline .secondStep .stepContent h6 {
  text-align: right;
  font-size: 1.35rem;
  position: relative;
  right: 258px;
}
.patientsTimeline .secondStep .stepContent p {
  width: 75%;
  position: relative;
  right: -280px;
}

.patientsTimeline .thirdStep {
  border: 2px dashed #bcbcbc;
  border-left: none;
  border-top: none;
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
}
.patientsTimeline .thirdStep .stepContent {
  position: relative;
}
.patientsTimeline .thirdStep .stepContent img {
  position: absolute;
  left: 10px;
  top: -25px;
}
.patientsTimeline .thirdStep .stepContent h6 {
  text-align: left;
  font-size: 1.35rem;
  position: relative;
  left: -20px;
}
.patientsTimeline .thirdStep .stepContent p {
  width: 75%;
  position: relative;
  left: -21px;
}

.patientsTimeline .fourthStep {
  border: 2px dashed #bcbcbc;
  border-right: none;
  border-top: none;
  border-bottom: none;
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
}
.patientsTimeline .fourthStep .stepContent {
  position: relative;
}
.patientsTimeline .fourthStep .stepContent img {
  position: absolute;
  right: 239px;
  top: -25px;
}
.patientsTimeline .fourthStep .stepContent h6 {
  text-align: right;
  font-size: 1.35rem;
  position: relative;
  right: 132px;
}
.patientsTimeline .fourthStep .stepContent p {
  width: 75%;
  position: relative;
  right: -300px;
}

.patientsTimeline .fifthStep {
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
}
.patientsTimeline .fifthStep .stepContent {
  position: relative;
}
.patientsTimeline .fifthStep .stepContent img {
  position: absolute;
  left: -24px;
  top: -25px;
}
.patientsTimeline .fifthStep .stepContent h6 {
  text-align: left;
  font-size: 1.35rem;
  position: relative;
  left: -128px;
}
.patientsTimeline .fifthStep .stepContent p {
  width: 75%;
  position: relative;
  left: -128px;
}

@media screen and (max-width: 991px) {
  .about .container {
    padding: 0;
  }
}

.aboutList {
  color: #555;
  margin: 0 auto;
  margin-top: 12rem;
}
@media screen and (max-width: 991px) {
  .aboutList {
    max-width: 37rem;
  }
}
.aboutList > * + * {
  padding-top: 8rem;
}
@media screen and (max-width: 991px) {
  .aboutList > * + * {
    padding-top: 6rem;
  }
}

.aboutItem {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .aboutItem {
    flex-direction: column-reverse;
  }
}

#collaboratorsQuote {
  margin-top: 16rem;
  padding-bottom: 18rem;
  background-position: 28px 8px;
}

.aboutText {
  flex: 1;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.06);
  padding: 4.375rem 3.375rem;
  border-radius: 1.1625rem;
  background-color: white;
  max-width: 30rem;
}
@media screen and (max-width: 991px) {
  .aboutText {
    padding: 2.5rem 1.5rem;
    margin-top: -4rem;
    min-height: unset;
    position: relative;
    z-index: 2;
  }
}
.aboutText h3 {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.5rem;
}
@media screen and (max-width: 991px) {
  .aboutText h3 {
    font-size: 1.375rem;
  }
}
.aboutText p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  padding-top: 3rem;
}
@media screen and (max-width: 991px) {
  .aboutText p {
    line-height: 1.375rem;
    padding-top: 1.1875rem;
  }
}

.aboutImage {
  max-width: 32.5rem;
  height: auto;
  display: block;
  border-radius: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 991px) {
  .aboutImage {
    max-width: 100%;
  }
}

.flip {
  transform: scaleX(-1);
}

.playing {
  max-height: 34rem;
  max-width: 22.8125rem;
}
@media screen and (max-width: 991px) {
  .playing {
    max-width: 100%;
  }
}

.surgicalText {
  transform: translate(3.75rem, -6.875rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .surgicalText {
    transform: unset;
  }
}

.binaural,
.cognition {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .binaural,
  .cognition {
    flex-direction: column-reverse;
  }
}

.binauralText {
  transform: translateX(-2.75rem);
}
@media screen and (max-width: 991px) {
  .binauralText {
    transform: unset;
  }
}

.educationalText {
  transform: translateX(2rem);
}
@media screen and (max-width: 991px) {
  .educationalText {
    transform: unset;
    margin-top: -15rem;
  }
}

.cognitionText {
  transform: translate(-3.75rem, -6.875rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .cognitionText {
    transform: unset;
  }
}
