@charset "UTF-8";
/*!
 * 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;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          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: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

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

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

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
            transform: translate3d(0, -10px, 0) rotate(-45deg); }

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

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

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

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

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-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;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

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

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
            transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
            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 {
  -webkit-transition-property: none;
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    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;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    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), -webkit-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;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    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 {
    -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
          transform: translate3d(0, -10px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
    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;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    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), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    -webkit-transition: opacity 0.125s 0.275s ease;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
          transform: translate3d(0, 10px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
            transform: translate3d(0, -20px, 0) rotate(-270deg);
    -webkit-transition-delay: 0.075s;
            transition-delay: 0.075s; }

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

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
          transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
            transform: translate3d(0, -20px, 0) rotate(270deg);
    -webkit-transition-delay: 0.075s;
            transition-delay: 0.075s; }

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

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
            transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
            transform: translate3d(0, -20px, 0) rotate(-90deg); }

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

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
            transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
            transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    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), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
            transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    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), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
            transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    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);
    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), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
    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;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    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), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

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

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

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

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

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

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

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
          transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          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 {
    -webkit-transition-delay: 0s;
            transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

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

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          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 {
    -webkit-transition-delay: 0s;
            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;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(
:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
) {
  all: unset;
  display: revert; }

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert; }

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none; }

/* removes spacing between cells in tables */
table {
  border-collapse: collapse; }

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto; }

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert; }

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert; }

/* preformatted text - use only for this feature */
pre {
  all: revert; }

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset; }
::-moz-placeholder {
  color: unset; }
:-ms-input-placeholder {
  color: unset; }
::-ms-input-placeholder {
  color: unset; }
::placeholder {
  color: unset; }

/* remove default dot (•) sign */
::marker {
  content: ""; }

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none; }

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto; }

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element; }

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-Italic.woff2") format("woff2"), url("../../assets/fonts/GillSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-LightItalic.woff2") format("woff2"), url("../../assets/fonts/GillSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-SemiBoldItalic.woff2") format("woff2"), url("../../assets/fonts/GillSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-BoldItalic.woff2") format("woff2"), url("../../assets/fonts/GillSans-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-SemiBold.woff2") format("woff2"), url("../../assets/fonts/GillSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Arial";
  src: url("../../assets/fonts/ArialMT.woff2") format("woff2"), url("../../assets/fonts/ArialMT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-Light.woff2") format("woff2"), url("../../assets/fonts/GillSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans-Bold.woff2") format("woff2"), url("../../assets/fonts/GillSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Arial";
  src: url("../../assets/fonts/Arial-BoldMT.woff2") format("woff2"), url("../../assets/fonts/Arial-BoldMT.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Gill Sans";
  src: url("../../assets/fonts/GillSans.woff2") format("woff2"), url("../../assets/fonts/GillSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

body {
  font-family: "Gill Sans", Arial, sans-serif; }

h2,
h1 {
  text-transform: uppercase;
  font-size: 3.6rem;
  color: #1d3750;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 1599px) {
    h2,
    h1 {
      font-size: 3.4rem; } }
  @media screen and (max-width: 1439px) {
    h2,
    h1 {
      font-size: 3.2rem; } }
  @media screen and (max-width: 1023px) {
    h2,
    h1 {
      font-size: 2.8rem; } }
  @media screen and (max-width: 767px) {
    h2,
    h1 {
      font-size: 2.6rem; } }
  @media screen and (max-width: 639px) {
    h2,
    h1 {
      font-size: 2.4rem; } }
  @media screen and (max-width: 400px) {
    h2,
    h1 {
      font-size: 2.2rem; } }

h1 {
  font-weight: 600; }

p a {
  color: rgba(29, 55, 80, 0.8);
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  p a:hover {
    color: #007699; }

body,
html {
  font-size: 10px;
  max-width: 100vw;
  overflow-x: hidden; }
  @media screen and (max-width: 1023px) {
    body.lock,
    html.lock {
      overflow: hidden; } }

::root {
  --color: $navy; }

.container {
  max-width: 1440px;
  padding: 0 9rem;
  width: 100%;
  margin: 0 auto; }
  @media screen and (max-width: 1279px) {
    .container {
      padding: 0 5rem; } }
  @media screen and (max-width: 639px) {
    .container {
      padding: 0 3.5rem; } }

strong {
  font-weight: 600; }

.fade-in {
  opacity: 0;
  visibility: hidden; }

.fade-in-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem); }

.load-overlay {
  top: 0;
  left: 0;
  background: #1d3750;
  height: 100%;
  width: 100%;
  z-index: 100;
  position: fixed; }

@media screen and (max-width: 639px) {
  .page-body {
    padding-bottom: 1.5rem; } }

.page-body .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 1023px) {
    .page-body .container {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .page-body .container main {
    width: calc((7 / 12) * 100%);
    padding-right: 4.5rem;
    line-height: 1.25;
    padding-bottom: 12.5rem;
    font-size: 2.2rem;
    margin-bottom: 1.5em;
    margin-bottom: 0; }
    @media screen and (max-width: 1599px) {
      .page-body .container main {
        font-size: 2rem; } }
    @media screen and (max-width: 1279px) {
      .page-body .container main {
        font-size: 1.8rem; } }
    @media screen and (max-width: 639px) {
      .page-body .container main {
        font-size: 1.7rem; } }
    @media screen and (max-width: 500px) {
      .page-body .container main {
        font-size: 1.6rem;
        margin-bottom: 1.25em; } }
    @media screen and (max-width: 1599px) {
      .page-body .container main {
        padding-bottom: 10rem; } }
    @media screen and (max-width: 1279px) {
      .page-body .container main {
        padding-right: 3rem;
        padding-bottom: 8rem; } }
    @media screen and (max-width: 1023px) {
      .page-body .container main {
        width: 100%;
        padding-right: 0;
        padding-bottom: 1em; } }
    @media screen and (max-width: 500px) {
      .page-body .container main {
        padding-bottom: 0;
        margin-bottom: 0; } }
    .page-body .container main h1 {
      font-weight: 400;
      margin-bottom: 1.5em; }
      @media screen and (max-width: 1279px) {
        .page-body .container main h1 {
          margin-bottom: 1.25em; } }
    .page-body .container main time {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      display: block;
      font-size: 1.8rem;
      color: rgba(0, 118, 153, 0.8);
      font-weight: 600;
      margin-bottom: 2em;
      margin-top: -1em; }
      @media screen and (max-width: 1023px) {
        .page-body .container main time {
          margin-top: -0.5em; } }
      @media screen and (max-width: 767px) {
        .page-body .container main time {
          font-size: 1.6rem; } }
      @media screen and (max-width: 639px) {
        .page-body .container main time {
          margin-bottom: 1.75em; } }
      @media screen and (max-width: 500px) {
        .page-body .container main time {
          font-size: 1.5rem; } }
    .page-body .container main h2 {
      font-weight: 600;
      font-size: 1.1em;
      margin-bottom: 1.5em;
      margin-top: 1.5em; }
      @media screen and (max-width: 767px) {
        .page-body .container main h2 {
          margin-bottom: 1.25em; } }
      .page-body .container main h2:first-child {
        margin-top: 0; }
        @media screen and (max-width: 1023px) {
          .page-body .container main h2:first-child {
            margin-top: 0.5em; } }
    .page-body .container main h3 {
      color: #007699;
      font-weight: 600;
      letter-spacing: 0.1em;
      margin-bottom: 1.5em;
      text-transform: uppercase;
      margin-top: 2.45em;
      font-size: 2.4rem; }
      @media screen and (max-width: 1599px) {
        .page-body .container main h3 {
          font-size: 2.2rem; } }
      @media screen and (max-width: 1279px) {
        .page-body .container main h3 {
          font-size: 2rem; } }
      @media screen and (max-width: 639px) {
        .page-body .container main h3 {
          font-size: 1.8rem; } }
      @media screen and (max-width: 500px) {
        .page-body .container main h3 {
          font-size: 1.7rem; } }
      .page-body .container main h3:first-child {
        margin-top: 0; }
    .page-body .container main p {
      color: rgba(0, 0, 0, 0.8);
      font-weight: 300;
      font-size: 2.2rem;
      margin-bottom: 1.5em; }
      @media screen and (max-width: 1599px) {
        .page-body .container main p {
          font-size: 2rem; } }
      @media screen and (max-width: 1279px) {
        .page-body .container main p {
          font-size: 1.8rem; } }
      @media screen and (max-width: 639px) {
        .page-body .container main p {
          font-size: 1.7rem; } }
      @media screen and (max-width: 500px) {
        .page-body .container main p {
          font-size: 1.6rem;
          margin-bottom: 1.25em; } }
      .page-body .container main p em {
        font-style: italic; }
    .page-body .container main ul {
      margin-bottom: 1.5em; }
      .page-body .container main ul:last-child {
        margin-bottom: 0; }
      .page-body .container main ul li {
        font-weight: 300;
        color: rgba(0, 0, 0, 0.8);
        margin-bottom: 1em;
        line-height: 1.3;
        padding-left: 1em;
        position: relative; }
        .page-body .container main ul li::before {
          content: "■";
          color: #007699;
          position: absolute;
          top: 0;
          left: 0; }
        .page-body .container main ul li strong {
          font-weight: 600;
          color: #1d3750; }
    .page-body .container main ul.accordion {
      margin-top: 7rem; }
      @media screen and (max-width: 1439px) {
        .page-body .container main ul.accordion {
          margin-top: 5.5rem; } }
      @media screen and (max-width: 1279px) {
        .page-body .container main ul.accordion {
          margin-top: 4.5rem; } }
      @media screen and (max-width: 500px) {
        .page-body .container main ul.accordion {
          margin-top: 3.5rem; } }
      .page-body .container main ul.accordion li {
        padding-left: 0; }
        .page-body .container main ul.accordion li::before {
          content: none; }
        .page-body .container main ul.accordion li.always-open > h2,
        .page-body .container main ul.accordion li.always-open > h3 {
          cursor: default; }
        .page-body .container main ul.accordion li.always-open > .accordion-content {
          display: block; }
        .page-body .container main ul.accordion li:last-child > .accordion-content {
          padding-bottom: 0; }
        .page-body .container main ul.accordion li h2,
        .page-body .container main ul.accordion li h3 {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          border-top: 0.1rem solid #1d3750;
          padding-top: 1rem;
          margin-bottom: 2em;
          font-size: 2.4rem;
          font-weight: 600;
          letter-spacing: 0.1em;
          color: #1d3750;
          cursor: pointer; }
          @media screen and (max-width: 1599px) {
            .page-body .container main ul.accordion li h2,
            .page-body .container main ul.accordion li h3 {
              font-size: 2.2rem; } }
          @media screen and (max-width: 1279px) {
            .page-body .container main ul.accordion li h2,
            .page-body .container main ul.accordion li h3 {
              font-size: 2rem; } }
          @media screen and (max-width: 639px) {
            .page-body .container main ul.accordion li h2,
            .page-body .container main ul.accordion li h3 {
              font-size: 1.8rem;
              margin-bottom: 1.5em; } }
          @media screen and (max-width: 500px) {
            .page-body .container main ul.accordion li h2,
            .page-body .container main ul.accordion li h3 {
              font-size: 1.7rem;
              margin-bottom: 1.25em; } }
          .page-body .container main ul.accordion li h2:hover svg path, .page-body .container main ul.accordion li h2.active svg path,
          .page-body .container main ul.accordion li h3:hover svg path,
          .page-body .container main ul.accordion li h3.active svg path {
            fill: #1d3750; }
          .page-body .container main ul.accordion li h2.active svg,
          .page-body .container main ul.accordion li h3.active svg {
            -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg); }
          .page-body .container main ul.accordion li h2 span,
          .page-body .container main ul.accordion li h3 span {
            width: 66.666666%; }
          .page-body .container main ul.accordion li h2 svg,
          .page-body .container main ul.accordion li h3 svg {
            width: 1.4rem;
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            -webkit-transition: -webkit-transform 0.3s ease;
            transition: -webkit-transform 0.3s ease;
            transition: transform 0.3s ease;
            transition: transform 0.3s ease, -webkit-transform 0.3s ease;
            margin-right: 0.2rem; }
            @media screen and (max-width: 1279px) {
              .page-body .container main ul.accordion li h2 svg,
              .page-body .container main ul.accordion li h3 svg {
                width: 1.1rem; } }
            @media screen and (max-width: 500px) {
              .page-body .container main ul.accordion li h2 svg,
              .page-body .container main ul.accordion li h3 svg {
                width: 0.9rem; } }
            .page-body .container main ul.accordion li h2 svg path,
            .page-body .container main ul.accordion li h3 svg path {
              -webkit-transition: fill 0.3s ease;
              transition: fill 0.3s ease;
              fill: rgba(29, 55, 80, 0.4); }
        .page-body .container main ul.accordion li h3 {
          font-size: 2.2rem;
          color: #007699;
          border-top: 0.05rem solid #007699; }
          .page-body .container main ul.accordion li h3.no-text {
            cursor: unset; }
          @media screen and (max-width: 1599px) {
            .page-body .container main ul.accordion li h3 {
              font-size: 2rem; } }
          @media screen and (max-width: 1279px) {
            .page-body .container main ul.accordion li h3 {
              font-size: 1.8rem; } }
          @media screen and (max-width: 639px) {
            .page-body .container main ul.accordion li h3 {
              font-size: 1.7rem; } }
          @media screen and (max-width: 500px) {
            .page-body .container main ul.accordion li h3 {
              font-size: 1.5rem; } }
          .page-body .container main ul.accordion li h3:hover svg path {
            fill: #007699; }
          .page-body .container main ul.accordion li h3 svg path {
            fill: rgba(0, 118, 153, 0.4); }
        .page-body .container main ul.accordion li .accordion-content {
          display: none;
          padding-bottom: 7rem; }
          @media screen and (max-width: 1279px) {
            .page-body .container main ul.accordion li .accordion-content {
              padding-bottom: 5.5rem; } }
          @media screen and (max-width: 639px) {
            .page-body .container main ul.accordion li .accordion-content {
              padding-bottom: 4rem; } }
          .page-body .container main ul.accordion li .accordion-content > :last-child {
            margin-bottom: 0; }
  .page-body .container aside {
    width: calc((5 / 12) * 100%);
    padding-left: 1.5rem; }
    @media screen and (max-width: 1023px) {
      .page-body .container aside {
        width: 100%;
        padding-left: 0;
        margin-top: 4rem; } }

.page-body.search-page main {
  width: 100%; }
  .page-body.search-page main h3 {
    margin-top: 1.5em;
    padding-top: 1em;
    border-top: 1px solid #1d3750; }
    .page-body.search-page main h3:first-child {
      margin-top: 1.5em; }
  .page-body.search-page main ul li {
    padding-left: 0;
    padding-bottom: 0.75em;
    border-bottom: 1px solid rgba(0, 118, 153, 0.4); }
    .page-body.search-page main ul li:before {
      content: ''; }
    .page-body.search-page main ul li:last-child {
      border-bottom: none; }

.page-body.intranet-page .container {
  display: block; }
  .page-body.intranet-page .container .document-listing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    border-top: 0.1rem solid #1d3750;
    width: 100%; }
    .page-body.intranet-page .container .document-listing h2 {
      color: inherit;
      font-size: 2.4rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.5em;
      margin-top: 1em;
      width: 100%; }
    .page-body.intranet-page .container .document-listing .download-document {
      width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
      margin: 0 -1.5rem 3rem;
      padding: 0 1.5rem; }
      @media screen and (max-width: 1023px) {
        .page-body.intranet-page .container .document-listing .download-document {
          width: 33.3333%; } }
      @media screen and (max-width: 639px) {
        .page-body.intranet-page .container .document-listing .download-document {
          width: 50%; } }
      .page-body.intranet-page .container .document-listing .download-document #download-icon {
        width: 50px;
        margin-bottom: 1em; }
      .page-body.intranet-page .container .document-listing .download-document h4 {
        font-size: 1.8rem;
        margin-bottom: .5rem;
        font-weight: 500; }
      .page-body.intranet-page .container .document-listing .download-document time {
        color: #333333;
        font-size: 1.4rem;
        font-weight: 300;
        margin-bottom: 1rem;
        display: block; }
      .page-body.intranet-page .container .document-listing .download-document span {
        font-size: 1.5rem;
        font-weight: 500; }
        .page-body.intranet-page .container .document-listing .download-document span svg {
          width: 10px;
          margin-left: 20px;
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg); }
  .page-body.intranet-page .container .document-listing.policy {
    border-top: none; }
  .page-body.intranet-page .container .document-listing#management-committee {
    color: #1d3750; }
    .page-body.intranet-page .container .document-listing#management-committee svg path, .page-body.intranet-page .container .document-listing#management-committee svg rect {
      fill: #1d3750; }
  .page-body.intranet-page .container .document-listing#mbd-committee {
    color: #007699; }
    .page-body.intranet-page .container .document-listing#mbd-committee svg path, .page-body.intranet-page .container .document-listing#mbd-committee svg rect {
      fill: #007699; }
  .page-body.intranet-page .container .document-listing#ed-committee {
    color: #7f4253; }
    .page-body.intranet-page .container .document-listing#ed-committee svg path, .page-body.intranet-page .container .document-listing#ed-committee svg rect {
      fill: #7f4253; }
  .page-body.intranet-page .container .document-listing#agm-egm {
    color: #51646e; }
    .page-body.intranet-page .container .document-listing#agm-egm svg path, .page-body.intranet-page .container .document-listing#agm-egm svg rect {
      fill: #51646e; }
  .page-body.intranet-page .container .document-listing#pupillage-committee {
    color: #966a37; }
    .page-body.intranet-page .container .document-listing#pupillage-committee svg path, .page-body.intranet-page .container .document-listing#pupillage-committee svg rect {
      fill: #966a37; }
  .page-body.intranet-page .container .document-listing#useful-links {
    color: #007699;
    margin-bottom: 7rem;
    display: block; }
    .page-body.intranet-page .container .document-listing#useful-links p {
      color: #1d3750;
      font-size: 1.8rem; }
    .page-body.intranet-page .container .document-listing#useful-links svg path, .page-body.intranet-page .container .document-listing#useful-links svg rect {
      fill: #007699; }
    .page-body.intranet-page .container .document-listing#useful-links ul {
      list-style: none;
      margin-top: 1em; }
      .page-body.intranet-page .container .document-listing#useful-links ul li {
        margin-bottom: 1em; }
        .page-body.intranet-page .container .document-listing#useful-links ul li a {
          color: #1d3750;
          font-size: 1.8rem; }
          .page-body.intranet-page .container .document-listing#useful-links ul li a svg {
            width: 8px;
            margin-right: 20px;
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

aside .quote-slider-wrapper {
  background: #7f4253;
  padding: 3rem 3.5rem 10rem;
  margin-bottom: 5rem; }
  @media screen and (max-width: 1599px) {
    aside .quote-slider-wrapper {
      padding-bottom: 8rem; } }
  @media screen and (max-width: 1279px) {
    aside .quote-slider-wrapper {
      margin-bottom: 4rem; } }
  @media screen and (max-width: 500px) {
    aside .quote-slider-wrapper {
      margin-bottom: 3.5rem;
      padding: 2.5rem 3rem 8rem; } }
  aside .quote-slider-wrapper .quote-slider {
    margin-bottom: 0; }
    aside .quote-slider-wrapper .quote-slider .slick-dots {
      bottom: -8rem;
      text-align: left; }
      @media screen and (max-width: 1599px) {
        aside .quote-slider-wrapper .quote-slider .slick-dots {
          bottom: -6.5rem; } }
      @media screen and (max-width: 1279px) {
        aside .quote-slider-wrapper .quote-slider .slick-dots {
          bottom: -6rem; } }
      @media screen and (max-width: 500px) {
        aside .quote-slider-wrapper .quote-slider .slick-dots {
          bottom: -5.75rem;
          -webkit-transform: scale(0.9);
                  transform: scale(0.9);
          -webkit-transform-origin: left center;
                  transform-origin: left center; } }
      aside .quote-slider-wrapper .quote-slider .slick-dots li {
        width: 1rem;
        height: 1rem;
        margin-right: 1rem; }
        aside .quote-slider-wrapper .quote-slider .slick-dots li.slick-active button::before {
          background: white; }
        aside .quote-slider-wrapper .quote-slider .slick-dots li button {
          height: 100%;
          width: 100%; }
          aside .quote-slider-wrapper .quote-slider .slick-dots li button::before {
            height: 100%;
            width: 100%;
            content: "";
            border: 0.1rem solid white;
            opacity: 1;
            border-radius: 100%;
            background: transparent;
            -webkit-transition: background 0.3s ease;
            transition: background 0.3s ease; }
    aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
      color: white;
      font-size: 2.2rem;
      line-height: 1.25; }
      @media screen and (max-width: 1599px) {
        aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
          font-size: 2rem; } }
      @media screen and (max-width: 1279px) {
        aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
          font-size: 1.8rem; } }
      @media screen and (max-width: 1023px) {
        aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
          font-size: 2rem; } }
      @media screen and (max-width: 639px) {
        aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
          font-size: 1.8rem; } }
      @media screen and (max-width: 500px) {
        aside .quote-slider-wrapper .quote-slider .quote-slide blockquote {
          font-size: 1.6rem; } }
      aside .quote-slider-wrapper .quote-slider .quote-slide blockquote cite {
        display: block;
        text-transform: uppercase;
        font-size: 0.7em;
        font-weight: 600;
        margin-top: 1em;
        line-height: 1.4; }

aside h2 {
  font-size: 2.4rem;
  font-weight: 600;
  border-top: 0.1rem solid #1d3750;
  margin-bottom: 1.25em;
  padding-top: 0.35em; }
  @media screen and (max-width: 1599px) {
    aside h2 {
      font-size: 2.2rem; } }
  @media screen and (max-width: 1279px) {
    aside h2 {
      font-size: 2rem; } }
  @media screen and (max-width: 1023px) {
    aside h2 {
      font-size: 2.2rem; } }
  @media screen and (max-width: 639px) {
    aside h2 {
      font-size: 2rem; } }
  @media screen and (max-width: 500px) {
    aside h2 {
      font-size: 1.8rem; } }
  aside h2:first-child {
    border-top: none;
    padding-top: 0; }

aside p {
  line-height: 1.25;
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 1.5em; }
  @media screen and (max-width: 1599px) {
    aside p {
      font-size: 2rem; } }
  @media screen and (max-width: 1279px) {
    aside p {
      font-size: 1.8rem; } }
  @media screen and (max-width: 639px) {
    aside p {
      font-size: 1.7rem; } }
  @media screen and (max-width: 500px) {
    aside p {
      font-size: 1.6rem;
      margin-bottom: 1.25em; } }

aside section {
  margin-bottom: 5rem; }
  @media screen and (max-width: 1279px) {
    aside section {
      margin-bottom: 4rem; } }
  @media screen and (max-width: 500px) {
    aside section {
      margin-bottom: 3.5rem; } }

aside img {
  width: 100%;
  margin-bottom: 4rem; }
  @media screen and (max-width: 1279px) {
    aside img {
      margin-bottom: 3rem; } }

aside a.aside-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 3.5rem 2.5rem 1.5rem;
  margin-bottom: 3rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease; }
  @media screen and (max-width: 500px) {
    aside a.aside-button {
      padding: 2.25rem 2.5rem; } }
  aside a.aside-button.show-arrow svg {
    display: block; }
  aside a.aside-button.show-arrow h3,
  aside a.aside-button.show-arrow span {
    padding-left: 1.5rem; }
  aside a.aside-button.back {
    padding-top: 2rem;
    padding-bottom: 2rem; }
    @media screen and (max-width: 1279px) {
      aside a.aside-button.back {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem; } }
    @media screen and (max-width: 1023px) {
      aside a.aside-button.back {
        margin-bottom: 6.5rem; } }
    @media screen and (max-width: 639px) {
      aside a.aside-button.back {
        margin-bottom: 4rem; } }
    @media screen and (max-width: 500px) {
      aside a.aside-button.back {
        margin-bottom: 2.5rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem; } }
    aside a.aside-button.back svg {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      display: block; }
      aside a.aside-button.back svg path {
        fill: #ccb3ba; }
    aside a.aside-button.back h3,
    aside a.aside-button.back span {
      padding-left: 1.5rem; }
  aside a.aside-button.slate {
    background: #51646e; }
    aside a.aside-button.slate:hover {
      background: rgba(81, 100, 110, 0.8); }
    aside a.aside-button.slate.tint {
      background: rgba(81, 100, 110, 0.6); }
      aside a.aside-button.slate.tint:hover {
        background: rgba(81, 100, 110, 0.8); }
  aside a.aside-button.neptune {
    background: #007699; }
    aside a.aside-button.neptune:hover {
      background: rgba(0, 118, 153, 0.8); }
    aside a.aside-button.neptune.tint {
      background: rgba(0, 118, 153, 0.6); }
      aside a.aside-button.neptune.tint:hover {
        background: rgba(81, 100, 110, 0.8); }
  aside a.aside-button.navy {
    background: #1d3750; }
    aside a.aside-button.navy:hover {
      background: rgba(29, 55, 80, 0.8); }
    aside a.aside-button.navy.tint {
      background: rgba(29, 55, 80, 0.6); }
      aside a.aside-button.navy.tint:hover {
        background: rgba(29, 55, 80, 0.8); }
  aside a.aside-button.grape {
    background: #7f4253; }
    aside a.aside-button.grape:hover {
      background: rgba(127, 66, 83, 0.8); }
    aside a.aside-button.grape.tint {
      background: rgba(127, 66, 83, 0.6); }
      aside a.aside-button.grape.tint:hover {
        background: rgba(127, 66, 83, 0.8); }
  aside a.aside-button h3,
  aside a.aside-button span {
    width: calc(100% - 1.4rem);
    padding-left: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    line-height: 1.3; }
    @media screen and (max-width: 1599px) {
      aside a.aside-button h3,
      aside a.aside-button span {
        font-size: 1.6rem; } }
    @media screen and (max-width: 1279px) {
      aside a.aside-button h3,
      aside a.aside-button span {
        font-size: 1.4rem; } }
    @media screen and (max-width: 1023px) {
      aside a.aside-button h3,
      aside a.aside-button span {
        font-size: 1.5rem; } }
    @media screen and (max-width: 639px) {
      aside a.aside-button h3,
      aside a.aside-button span {
        font-size: 1.4rem; } }
    @media screen and (max-width: 500px) {
      aside a.aside-button h3,
      aside a.aside-button span {
        padding-left: 0;
        font-size: 1.4rem;
        width: 100%; } }
  aside a.aside-button svg {
    width: 1.4rem; }
    @media screen and (max-width: 639px) {
      aside a.aside-button svg {
        width: 1.2rem; } }
    @media screen and (max-width: 500px) {
      aside a.aside-button svg {
        display: none; } }
    aside a.aside-button svg path {
      fill: white; }

aside ul li {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1em;
  line-height: 1.3;
  font-size: 2.2rem;
  margin-bottom: 1.5em; }
  @media screen and (max-width: 1599px) {
    aside ul li {
      font-size: 2rem; } }
  @media screen and (max-width: 1279px) {
    aside ul li {
      font-size: 1.8rem; } }
  @media screen and (max-width: 639px) {
    aside ul li {
      font-size: 1.7rem; } }
  @media screen and (max-width: 500px) {
    aside ul li {
      font-size: 1.6rem;
      margin-bottom: 1.25em; } }

aside .aside-block {
  background: rgba(0, 118, 153, 0.2);
  padding: 3rem;
  margin-bottom: 3rem; }
  @media screen and (max-width: 639px) {
    aside .aside-block {
      padding-top: 2.5rem;
      padding-bottom: 1.5rem; } }
  @media screen and (max-width: 500px) {
    aside .aside-block {
      padding-left: 2.5rem;
      padding-right: 2.5rem; } }
  aside .aside-block:last-child {
    margin-bottom: 0; }
  aside .aside-block.mentor {
    margin-bottom: 12.5rem; }
    @media screen and (max-width: 1023px) {
      aside .aside-block.mentor {
        margin-bottom: 5rem; } }
    @media screen and (max-width: 539px) {
      aside .aside-block.mentor {
        margin-bottom: 3rem; } }
    aside .aside-block.mentor p:first-child {
      color: #1d3750;
      font-weight: 400; }
    aside .aside-block.mentor p + ul {
      margin-top: -1.5em; }
  aside .aside-block h2 {
    border: none;
    padding-top: 0; }
  aside .aside-block h3 {
    margin-bottom: 0.4em;
    font-size: 1.8rem;
    color: rgba(0, 118, 153, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em; }
    @media screen and (max-width: 1279px) {
      aside .aside-block h3 {
        font-size: 1.6rem; } }
    @media screen and (max-width: 639px) {
      aside .aside-block h3 {
        font-size: 1.5rem;
        margin-bottom: 0.3em; } }
    @media screen and (max-width: 500px) {
      aside .aside-block h3 {
        font-size: 1.4rem; } }
  aside .aside-block p:last-child {
    margin-bottom: 0.5em; }
  aside .aside-block h4 {
    color: #1d3750;
    letter-spacing: 0em;
    font-size: 2.2rem;
    text-transform: none;
    font-weight: 400; }
    @media screen and (max-width: 1279px) {
      aside .aside-block h4 {
        font-size: 2rem; } }
    @media screen and (max-width: 639px) {
      aside .aside-block h4 {
        font-size: 1.8rem; } }
    @media screen and (max-width: 500px) {
      aside .aside-block h4 {
        font-size: 1.7rem; } }
    aside .aside-block h4 a {
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease;
      word-wrap: break-word; }
      aside .aside-block h4 a:hover {
        color: #007699; }
  aside .aside-block ul {
    margin-bottom: 1.5em; }
    aside .aside-block ul:last-child {
      margin-bottom: 0; }
    aside .aside-block ul li {
      font-weight: 300;
      color: rgba(0, 0, 0, 0.8);
      margin-bottom: 1em;
      line-height: 1.3;
      padding-left: 1em;
      position: relative; }
      aside .aside-block ul li:last-child {
        margin-bottom: 0; }
      aside .aside-block ul li::before {
        content: "■";
        color: #007699;
        position: absolute;
        top: 0;
        left: 0; }
      aside .aside-block ul li strong {
        font-weight: 600;
        font-style: italic;
        color: #1d3750; }
  aside .aside-block section {
    border-top: 0.1rem solid white;
    padding-top: 2rem;
    margin-bottom: 3.5rem; }
    @media screen and (max-width: 1919px) {
      aside .aside-block section {
        margin-bottom: 2.5rem; } }
    @media screen and (max-width: 1279px) {
      aside .aside-block section {
        margin-bottom: 2rem; } }
    @media screen and (max-width: 500px) {
      aside .aside-block section {
        margin-bottom: 1.5rem; } }
    aside .aside-block section:first-child, aside .aside-block section:first-of-type {
      padding-top: 0;
      border-top: 0;
      margin-top: 0; }
    aside .aside-block section:last-child {
      margin-bottom: 2rem; }
    aside .aside-block section:only-of-type {
      margin-bottom: 3.5rem; }
      aside .aside-block section:only-of-type:last-child {
        margin-bottom: 0; }

header {
  background: #1d3750;
  padding: 5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99; }
  @media screen and (max-width: 1279px) {
    header {
      padding: 4rem 0; } }
  @media screen and (max-width: 1023px) {
    header {
      padding: 3.5rem 0; } }
  @media screen and (max-width: 767px) {
    header {
      padding: 3rem 0; } }
  @media screen and (max-width: 639px) {
    header {
      padding: 2.25rem 0 2rem; } }
  header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    header .container a.logo {
      width: 25rem;
      display: inline-block; }
      @media screen and (max-width: 1439px) {
        header .container a.logo {
          width: 22.5rem; } }
      @media screen and (max-width: 1279px) {
        header .container a.logo {
          width: 21.5rem; } }
      @media screen and (max-width: 1023px) {
        header .container a.logo {
          width: 19rem; } }
      @media screen and (max-width: 500px) {
        header .container a.logo {
          width: 15rem; } }
      header .container a.logo path {
        fill: white; }
    header .container .links {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media screen and (max-width: 500px) {
        header .container .links {
          -webkit-transform: translateY(-5%);
                  transform: translateY(-5%); } }
      header .container .links a {
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        header .container .links a:hover {
          color: #007699; }
      header .container .links li {
        color: white;
        font-size: 1.8rem;
        margin-left: 3.5rem; }
        @media screen and (max-width: 1279px) {
          header .container .links li {
            font-size: 1.7rem;
            margin-left: 3rem; } }
        @media screen and (max-width: 1023px) {
          header .container .links li {
            font-size: 1.6rem;
            margin-left: 2.5rem; } }
        @media screen and (max-width: 767px) {
          header .container .links li {
            display: none; } }
        @media screen and (max-width: 639px) {
          header .container .links li {
            margin-left: 2rem; } }
        header .container .links li:first-child, header .container .links li:last-child {
          display: block; }
        header .container .links li .search {
          cursor: pointer;
          -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease; }
          header .container .links li .search.active, header .container .links li .search:hover {
            color: #007699; }
          header .container .links li .search svg {
            font-size: 1.6rem; }
            @media screen and (max-width: 767px) {
              header .container .links li .search svg {
                font-size: 2.1rem; } }
            @media screen and (max-width: 500px) {
              header .container .links li .search svg {
                font-size: 2rem; } }
        header .container .links li .menu {
          -webkit-transition: -webkit-transform 0.3s ease;
          transition: -webkit-transform 0.3s ease;
          transition: transform 0.3s ease;
          transition: transform 0.3s ease, -webkit-transform 0.3s ease;
          -webkit-transform-origin: center;
                  transform-origin: center;
          cursor: pointer; }
          header .container .links li .menu.active {
            -webkit-transform: rotate(45deg);
                    transform: rotate(45deg); }
          header .container .links li .menu svg {
            font-size: 2.6rem; }
            @media screen and (max-width: 1023px) {
              header .container .links li .menu svg {
                font-size: 2.4rem; } }
            @media screen and (max-width: 500px) {
              header .container .links li .menu svg {
                font-size: 2.2rem; } }
  header nav {
    padding: 4.5rem 0 14rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1d3750; }
    @media screen and (max-width: 1599px) {
      header nav {
        padding: 2rem 0 7.5rem; } }
    @media screen and (max-width: 1279px) {
      header nav {
        padding: 1rem 0 5rem; } }
    @media screen and (max-width: 1023px) {
      header nav {
        padding-bottom: 1rem;
        overflow-y: auto; } }
    @media screen and (max-width: 639px) {
      header nav {
        height: 100vh;
        padding: 3rem 0 0; } }
    header nav .container .nav-wrapper {
      margin: 0 -1.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      @media screen and (max-width: 1023px) {
        header nav .container .nav-wrapper {
          display: block;
          margin: 0;
          width: 100%; } }
      header nav .container .nav-wrapper > ul {
        padding: 0 1.5rem;
        width: calc((2 / 12) * 100%); }
        @media screen and (max-width: 1023px) {
          header nav .container .nav-wrapper > ul {
            padding: 0;
            width: 100%; } }
        header nav .container .nav-wrapper > ul li {
          color: #66adc2;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          font-size: 1.8rem;
          margin-bottom: 1.5em;
          -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease;
          opacity: 0;
          visibility: hidden;
          -webkit-transform: translateY(1rem);
                  transform: translateY(1rem); }
          @media screen and (max-width: 1279px) {
            header nav .container .nav-wrapper > ul li {
              font-size: 1.5rem; } }
          @media screen and (max-width: 1023px) {
            header nav .container .nav-wrapper > ul li {
              font-size: 1.8rem;
              position: relative; } }
          @media screen and (max-width: 639px) {
            header nav .container .nav-wrapper > ul li {
              font-size: 1.7rem; } }
          @media screen and (max-width: 500px) {
            header nav .container .nav-wrapper > ul li {
              font-size: 1.6rem; } }
          @media screen and (max-width: 1023px) {
            header nav .container .nav-wrapper > ul li.active {
              color: white; }
              header nav .container .nav-wrapper > ul li.active a {
                color: white; }
              header nav .container .nav-wrapper > ul li.active svg {
                -webkit-transform: rotate(-90deg);
                        transform: rotate(-90deg); }
                header nav .container .nav-wrapper > ul li.active svg path {
                  fill: white; } }
          header nav .container .nav-wrapper > ul li a:hover {
            color: white; }
          @media screen and (max-width: 1023px) {
            header nav .container .nav-wrapper > ul li.no-link {
              cursor: pointer; } }
          @media screen and (max-width: 1023px) {
            header nav .container .nav-wrapper > ul li.no-link:hover {
              color: white; } }
          header nav .container .nav-wrapper > ul li svg {
            display: none;
            position: absolute;
            right: 0;
            width: 1.3rem;
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            top: 0.25rem;
            cursor: pointer;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease; }
            @media screen and (max-width: 1023px) {
              header nav .container .nav-wrapper > ul li svg {
                display: block; } }
            @media screen and (max-width: 639px) {
              header nav .container .nav-wrapper > ul li svg {
                right: 0.25rem;
                width: 1.1rem;
                top: 0.1rem; } }
            @media screen and (max-width: 500px) {
              header nav .container .nav-wrapper > ul li svg {
                right: 0.33em; } }
            header nav .container .nav-wrapper > ul li svg path {
              -webkit-transition: all 0.3s ease;
              transition: all 0.3s ease;
              fill: #66adc2; }
            header nav .container .nav-wrapper > ul li svg:hover path {
              fill: white; }
          header nav .container .nav-wrapper > ul li a {
            -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease; }
          header nav .container .nav-wrapper > ul li:first-child > a,
          header nav .container .nav-wrapper > ul li:first-child span {
            display: inline-block;
            height: 4rem; }
            @media screen and (max-width: 1279px) {
              header nav .container .nav-wrapper > ul li:first-child > a,
              header nav .container .nav-wrapper > ul li:first-child span {
                height: 3.5rem; } }
            @media screen and (max-width: 1023px) {
              header nav .container .nav-wrapper > ul li:first-child > a,
              header nav .container .nav-wrapper > ul li:first-child span {
                height: auto; } }
          header nav .container .nav-wrapper > ul li:last-child {
            margin-bottom: 0; }
            @media screen and (max-width: 1023px) {
              header nav .container .nav-wrapper > ul li:last-child {
                margin-bottom: 1.5em; } }
          header nav .container .nav-wrapper > ul li ul {
            margin-top: 1.5em;
            padding: 0;
            width: 100%; }
            @media screen and (max-width: 1023px) {
              header nav .container .nav-wrapper > ul li ul {
                display: none;
                margin-bottom: 0rem;
                overflow: hidden; } }
            header nav .container .nav-wrapper > ul li ul li {
              color: white;
              line-height: 1.2;
              margin-bottom: 1em;
              text-transform: none;
              letter-spacing: 0; }
              @media screen and (max-width: 1599px) {
                header nav .container .nav-wrapper > ul li ul li {
                  font-size: 1.7rem; } }
              @media screen and (max-width: 1279px) {
                header nav .container .nav-wrapper > ul li ul li {
                  font-size: 1.4rem; } }
              @media screen and (max-width: 1023px) {
                header nav .container .nav-wrapper > ul li ul li {
                  font-size: 1.6rem;
                  margin-bottom: 1em; } }
              @media screen and (max-width: 639px) {
                header nav .container .nav-wrapper > ul li ul li {
                  font-size: 1.5rem; } }
              header nav .container .nav-wrapper > ul li ul li:first-child a {
                height: auto; }
              @media screen and (max-width: 1023px) {
                header nav .container .nav-wrapper > ul li ul li:last-child {
                  margin-bottom: 0; } }
              header nav .container .nav-wrapper > ul li ul li a:hover {
                color: #007699; }
  header .search-bar {
    padding: 1.5rem 0 5rem;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1d3750;
    display: none; }
    @media screen and (max-width: 1599px) {
      header .search-bar {
        padding: 1rem 0 4rem; } }
    @media screen and (max-width: 1023px) {
      header .search-bar {
        padding: 1rem 0 3.5rem; } }
    @media screen and (max-width: 767px) {
      header .search-bar {
        padding: 0.5rem 0 3rem; } }
    @media screen and (max-width: 639px) {
      header .search-bar {
        padding-top: 1rem; } }
    header .search-bar .search-wrapper {
      position: relative;
      width: 100%; }
      header .search-bar .search-wrapper button {
        position: absolute;
        color: white;
        font-size: 2.4rem;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-80%);
                transform: translateY(-80%);
        cursor: pointer;
        z-index: 2;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media screen and (max-width: 767px) {
          header .search-bar .search-wrapper button {
            font-size: 2.1rem; } }
        @media screen and (max-width: 500px) {
          header .search-bar .search-wrapper button {
            font-size: 1.8rem; } }
        header .search-bar .search-wrapper button:hover {
          color: #007699; }
      header .search-bar .search-wrapper form {
        position: relative; }
        header .search-bar .search-wrapper form button {
          right: unset;
          left: 0;
          font-size: 2.1rem;
          -webkit-transform: translateY(-100%);
                  transform: translateY(-100%); }
          @media screen and (max-width: 767px) {
            header .search-bar .search-wrapper form button {
              font-size: 1.8rem; } }
          @media screen and (max-width: 500px) {
            header .search-bar .search-wrapper form button {
              font-size: 1.6rem; } }
        header .search-bar .search-wrapper form input {
          width: 100%;
          color: white;
          border-bottom: 0.1rem solid white;
          font-size: 2.1rem;
          color: white;
          padding-bottom: 1em;
          padding-left: 2em; }
          @media screen and (max-width: 767px) {
            header .search-bar .search-wrapper form input {
              font-size: 1.8rem; } }
          @media screen and (max-width: 500px) {
            header .search-bar .search-wrapper form input {
              font-size: 1.6rem; } }
          header .search-bar .search-wrapper form input::-webkit-input-placeholder {
            opacity: 0.5; }
          header .search-bar .search-wrapper form input::-moz-placeholder {
            opacity: 0.5; }
          header .search-bar .search-wrapper form input:-ms-input-placeholder {
            opacity: 0.5; }
          header .search-bar .search-wrapper form input::-ms-input-placeholder {
            opacity: 0.5; }
          header .search-bar .search-wrapper form input::placeholder {
            opacity: 0.5; }

footer {
  background: #1d3750;
  padding: 5rem 0; }
  @media screen and (max-width: 1599px) {
    footer {
      padding: 4rem 0; } }
  @media screen and (max-width: 767px) {
    footer {
      padding: 3.5rem 0; } }
  footer .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media screen and (max-width: 1279px) {
      footer .container {
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
    @media screen and (max-width: 500px) {
      footer .container {
        display: block; } }
  footer .intranet-footer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    footer .intranet-footer .contact {
      width: calc(75%);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
      margin-bottom: 5rem; }
      @media screen and (max-width: 1023px) {
        footer .intranet-footer .contact {
          width: 65%; } }
      @media screen and (max-width: 767px) {
        footer .intranet-footer .contact {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          margin-bottom: 1rem;
          width: 50%; } }
      footer .intranet-footer .contact p {
        width: 33.3333%; }
        @media screen and (max-width: 767px) {
          footer .intranet-footer .contact p {
            width: 100%; } }
        footer .intranet-footer .contact p a svg {
          font-size: 2.4rem; }
    footer .intranet-footer .footer-awards {
      width: 25%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 5rem; }
      @media screen and (max-width: 1023px) {
        footer .intranet-footer .footer-awards {
          width: 35%; } }
      @media screen and (max-width: 767px) {
        footer .intranet-footer .footer-awards {
          width: 50%; } }
      footer .intranet-footer .footer-awards img {
        max-width: 130px; }
        @media screen and (max-width: 767px) {
          footer .intranet-footer .footer-awards img {
            max-width: 100px; } }
  footer p,
  footer a, footer li.no-link {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    @media screen and (max-width: 639px) {
      footer p,
      footer a, footer li.no-link {
        font-size: 1.1rem; } }
  footer a:hover {
    color: #007699; }
  footer .link-bar {
    margin-bottom: 6rem; }
    @media screen and (max-width: 1599px) {
      footer .link-bar {
        margin-bottom: 4.5rem; } }
    @media screen and (max-width: 1439px) {
      footer .link-bar {
        margin-bottom: 4rem; } }
    @media screen and (max-width: 1023px) {
      footer .link-bar {
        margin-bottom: 3rem; } }
    @media screen and (max-width: 767px) {
      footer .link-bar {
        margin-bottom: 3.5rem; } }
    @media screen and (max-width: 500px) {
      footer .link-bar {
        margin-bottom: 2.5rem; } }
    footer .link-bar .container {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    footer .link-bar a.logo svg {
      width: 29rem; }
      @media screen and (max-width: 1599px) {
        footer .link-bar a.logo svg {
          width: 25rem; } }
      @media screen and (max-width: 1439px) {
        footer .link-bar a.logo svg {
          width: 23.5rem; } }
      @media screen and (max-width: 1279px) {
        footer .link-bar a.logo svg {
          width: 21.5rem; } }
      @media screen and (max-width: 1023px) {
        footer .link-bar a.logo svg {
          width: 20rem; } }
      @media screen and (max-width: 639px) {
        footer .link-bar a.logo svg {
          width: 17.5rem; } }
      @media screen and (max-width: 500px) {
        footer .link-bar a.logo svg {
          width: 15rem; } }
      footer .link-bar a.logo svg path {
        fill: white; }
    footer .link-bar a:last-child {
      color: #007699;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 1.8rem;
      font-family: "Gill Sans", Arial, sans-serif;
      width: 18rem; }
      @media screen and (max-width: 1439px) {
        footer .link-bar a:last-child {
          font-size: 1.6rem; } }
      @media screen and (max-width: 1279px) {
        footer .link-bar a:last-child {
          width: auto; } }
      @media screen and (max-width: 1023px) {
        footer .link-bar a:last-child {
          font-size: 1.5rem; } }
      @media screen and (max-width: 500px) {
        footer .link-bar a:last-child {
          font-size: 1.4rem; } }
      footer .link-bar a:last-child:hover {
        color: white; }
      footer .link-bar a:last-child svg {
        color: white;
        font-size: 2.4rem;
        margin-right: 1rem; }
        @media screen and (max-width: 1439px) {
          footer .link-bar a:last-child svg {
            font-size: 2.1rem; } }
        @media screen and (max-width: 1023px) {
          footer .link-bar a:last-child svg {
            font-size: 1.8rem; } }
        @media screen and (max-width: 500px) {
          footer .link-bar a:last-child svg {
            margin-right: 0.5rem; } }
  footer nav {
    width: calc((9.5 / 12) * 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 5rem; }
    @media screen and (max-width: 1439px) {
      footer nav {
        margin-bottom: 4.5rem; } }
    @media screen and (max-width: 1279px) {
      footer nav {
        width: 100%;
        margin-bottom: 2rem; } }
    @media screen and (max-width: 1023px) {
      footer nav {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-bottom: 1rem; } }
    @media screen and (max-width: 767px) {
      footer nav {
        margin-bottom: 0; } }
    @media screen and (max-width: 500px) {
      footer nav {
        display: block; } }
    @media screen and (max-width: 1279px) {
      footer nav ul {
        width: 20%;
        padding-right: 3rem; } }
    @media screen and (max-width: 1023px) {
      footer nav ul {
        width: 33.3333333333333%;
        margin-bottom: 3rem; } }
    @media screen and (max-width: 767px) {
      footer nav ul {
        width: 50%; } }
    @media screen and (max-width: 500px) {
      footer nav ul {
        width: 100%;
        margin-bottom: 2rem; } }
    footer nav ul:last-child {
      padding-right: 0; }
    footer nav ul li {
      font-weight: 700;
      margin-bottom: 2em;
      line-height: 1.2; }
      @media screen and (max-width: 639px) {
        footer nav ul li {
          margin-bottom: 1.5em; } }
      footer nav ul li:last-child {
        margin-bottom: 0; }
      footer nav ul li ul {
        margin-top: 0.6em;
        width: 100%;
        margin-bottom: 0; }
        footer nav ul li ul li {
          font-weight: 400;
          margin-bottom: 0.5em; }
  @media screen and (max-width: 1279px) {
    footer .contact {
      margin-bottom: 3rem;
      width: 40%; } }
  @media screen and (max-width: 1023px) {
    footer .contact {
      width: 33.33333333%; } }
  @media screen and (max-width: 767px) {
    footer .contact {
      width: 50%; } }
  @media screen and (max-width: 500px) {
    footer .contact {
      margin-bottom: 2rem; } }
  footer .contact p {
    line-height: 1.5;
    margin-bottom: 0; }
  footer .intranet {
    width: 100%;
    margin-bottom: 5rem; }
    @media screen and (max-width: 1279px) {
      footer .intranet {
        width: 60%;
        margin-bottom: 3.5rem; } }
    @media screen and (max-width: 767px) {
      footer .intranet {
        width: 50%; } }
    @media screen and (max-width: 639px) {
      footer .intranet {
        margin-bottom: 3rem; } }
    @media screen and (max-width: 500px) {
      footer .intranet {
        margin: 3rem 0 3rem;
        width: 100%; } }
    footer .intranet a {
      color: #007699;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 1.5rem;
      font-family: "Gill Sans", Arial, sans-serif;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media screen and (max-width: 1279px) {
        footer .intranet a {
          font-size: 1.4rem; } }
      @media screen and (max-width: 767px) {
        footer .intranet a {
          font-size: 1.3rem; } }
      @media screen and (max-width: 500px) {
        footer .intranet a {
          font-size: 1.2rem; } }
      footer .intranet a:hover {
        color: white; }
      footer .intranet a img {
        width: 3rem;
        margin-right: 2.5rem; }
        @media screen and (max-width: 1023px) {
          footer .intranet a img {
            width: 2.5rem;
            margin-right: 2rem; } }
        @media screen and (max-width: 500px) {
          footer .intranet a img {
            margin-right: 1.5rem; } }
  footer .compliance {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 1279px) {
      footer .compliance {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        width: 100%;
        padding-left: 0;
        margin-bottom: 3rem; } }
    @media screen and (max-width: 1023px) {
      footer .compliance {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    @media screen and (max-width: 767px) {
      footer .compliance {
        width: 100%; } }
    @media screen and (max-width: 500px) {
      footer .compliance {
        margin-bottom: 2rem; } }
    footer .compliance > * {
      margin-right: 3rem; }
      @media screen and (max-width: 1279px) {
        footer .compliance > * {
          margin-right: 2rem;
          white-space: nowrap;
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; } }
      @media screen and (max-width: 1023px) {
        footer .compliance > * {
          white-space: normal;
          line-height: 1.3;
          margin-bottom: 1.5rem; } }
      @media screen and (max-width: 1279px) {
        footer .compliance > *:nth-child(2) {
          margin-right: 0; } }
      footer .compliance > *:last-child {
        margin-right: 0;
        margin-bottom: 0; }
    footer .compliance ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media screen and (max-width: 1023px) {
        footer .compliance ul {
          width: 100%;
          margin-bottom: 0; } }
      footer .compliance ul li {
        border-right: 0.1rem solid white;
        line-height: 1;
        padding: 0 0.5em; }
        footer .compliance ul li:first-child {
          padding-left: 0; }
        footer .compliance ul li:last-child {
          border-right: 0;
          padding-right: 0; }
    footer .compliance + a {
      width: 18rem; }

.home-slider-wrapper {
  position: relative; }
  .home-slider-wrapper::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #1d3750;
    bottom: 9.5rem;
    position: absolute; }
    @media screen and (max-width: 767px) {
      .home-slider-wrapper::before {
        bottom: 7.5rem; } }
    @media screen and (max-width: 639px) {
      .home-slider-wrapper::before {
        bottom: 7rem; } }
  .home-slider-wrapper .home-slider {
    margin-bottom: 0; }
    @media screen and (max-width: 639px) {
      .home-slider-wrapper .home-slider {
        margin-left: -3.5rem;
        width: 100vw !important; } }
    .home-slider-wrapper .home-slider .slick-dots {
      bottom: 4rem;
      left: 9.5rem;
      z-index: 2;
      text-align: left; }
      @media screen and (max-width: 1439px) {
        .home-slider-wrapper .home-slider .slick-dots {
          left: 7.5rem; } }
      @media screen and (max-width: 1279px) {
        .home-slider-wrapper .home-slider .slick-dots {
          left: 5rem; } }
      @media screen and (max-width: 1023px) {
        .home-slider-wrapper .home-slider .slick-dots {
          left: 4rem;
          bottom: 7rem; } }
      @media screen and (max-width: 767px) {
        .home-slider-wrapper .home-slider .slick-dots {
          bottom: 6.5rem; } }
      @media screen and (max-width: 639px) {
        .home-slider-wrapper .home-slider .slick-dots {
          left: 3rem;
          -webkit-transform: scale(0.9);
                  transform: scale(0.9);
          -webkit-transform-origin: left center;
                  transform-origin: left center; } }
      @media screen and (max-width: 500px) {
        .home-slider-wrapper .home-slider .slick-dots {
          left: 3.5rem;
          bottom: 6rem; } }
      .home-slider-wrapper .home-slider .slick-dots li {
        width: 1rem;
        height: 1rem;
        margin-right: 1rem; }
        .home-slider-wrapper .home-slider .slick-dots li.slick-active button::before {
          background: #1d3750; }
        .home-slider-wrapper .home-slider .slick-dots li button {
          height: 100%;
          width: 100%; }
          .home-slider-wrapper .home-slider .slick-dots li button::before {
            height: 100%;
            width: 100%;
            content: "";
            border: 0.1rem solid #1d3750;
            opacity: 1;
            border-radius: 100%;
            background: transparent;
            -webkit-transition: background 0.3s ease;
            transition: background 0.3s ease; }
    .home-slider-wrapper .home-slider .home-slide {
      min-height: 413px;
      position: relative; }
      .home-slider-wrapper .home-slider .home-slide img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center bottom;
           object-position: center bottom;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1; }
      .home-slider-wrapper .home-slider .home-slide::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 80%;
        height: 100%;
        z-index: 2;
        background: -webkit-gradient(linear, left top, right top, from(#ebeaf1), to(rgba(235, 234, 241, 0)));
        background: linear-gradient(to right, #ebeaf1 0%, rgba(235, 234, 241, 0) 100%); }
        @media screen and (max-width: 639px) {
          .home-slider-wrapper .home-slider .home-slide::before {
            width: 100%;
            opacity: 0.8;
            background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ebeaf1), to(rgba(235, 234, 241, 0)));
            background: linear-gradient(to right, #ebeaf1 50%, rgba(235, 234, 241, 0) 100%); } }
      .home-slider-wrapper .home-slider .home-slide .content {
        z-index: 3;
        width: 50rem;
        position: absolute;
        bottom: 9.5rem;
        left: 9.5rem; }
        @media screen and (max-width: 1439px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            left: 7.5rem; } }
        @media screen and (max-width: 1279px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            bottom: 8rem;
            left: 5rem; } }
        @media screen and (max-width: 1023px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            width: 70%;
            bottom: 11rem;
            left: 4rem; } }
        @media screen and (max-width: 767px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            left: 4rem;
            bottom: 10rem;
            width: auto;
            right: 5rem; } }
        @media screen and (max-width: 639px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            left: 3rem; } }
        @media screen and (max-width: 500px) {
          .home-slider-wrapper .home-slider .home-slide .content {
            bottom: 9rem;
            left: 3.5rem;
            right: 3.5rem; } }
        .home-slider-wrapper .home-slider .home-slide .content blockquote {
          color: #1d3750;
          text-transform: uppercase;
          font-size: 4.2rem;
          line-height: 1.2;
          letter-spacing: 0.1em; }
          @media screen and (max-width: 1599px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 3.6rem; } }
          @media screen and (max-width: 1279px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 3.2rem; } }
          @media screen and (max-width: 1023px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 3rem; } }
          @media screen and (max-width: 767px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 2.8rem; } }
          @media screen and (max-width: 639px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 2.6rem; } }
          @media screen and (max-width: 500px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote {
              font-size: 2.2rem; } }
          @media screen and (max-width: 767px) {
            .home-slider-wrapper .home-slider .home-slide .content blockquote br {
              display: none; } }
          .home-slider-wrapper .home-slider .home-slide .content blockquote > * {
            visibility: hidden;
            display: block;
            opacity: 0;
            visibility: hidden;
            -webkit-transform: translateY(1.5rem);
                    transform: translateY(1.5rem); }
          .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
            color: #007699;
            font-size: 2.4rem;
            font-weight: 600;
            margin-top: 0.65em; }
            @media screen and (max-width: 1599px) {
              .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
                font-size: 2.1rem; } }
            @media screen and (max-width: 1279px) {
              .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
                font-size: 1.8rem; } }
            @media screen and (max-width: 767px) {
              .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
                font-size: 1.6rem; } }
            @media screen and (max-width: 639px) {
              .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
                font-size: 1.5rem; } }
            @media screen and (max-width: 500px) {
              .home-slider-wrapper .home-slider .home-slide .content blockquote cite {
                font-size: 1.4rem; } }

.button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -3rem;
  position: relative;
  margin: -3.3rem 0 8.5rem;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem; }
  @media screen and (max-width: 1599px) {
    .button-row {
      margin-bottom: 7.5rem; } }
  @media screen and (max-width: 1439px) {
    .button-row {
      margin-top: -3rem; } }
  @media screen and (max-width: 1279px) {
    .button-row {
      margin-bottom: 6.5rem; } }
  @media screen and (max-width: 1023px) {
    .button-row {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 0 0 0 4rem;
      -webkit-column-gap: 0;
         -moz-column-gap: 0;
              column-gap: 0; } }
  @media screen and (max-width: 767px) {
    .button-row {
      margin-bottom: 5rem; } }
  @media screen and (max-width: 639px) {
    .button-row {
      padding-left: 3rem;
      margin-bottom: 3.5rem; } }
  @media screen and (max-width: 500px) {
    .button-row {
      padding-left: 0;
      margin-top: -2.25rem;
      margin-bottom: 3rem; } }
  .button-row a {
    display: block;
    font-size: 2.4rem;
    color: white;
    width: calc(25% - 2.25rem);
    text-align: center;
    padding: 0.75em 0 0.875em;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease; }
    @media screen and (max-width: 1439px) {
      .button-row a {
        font-size: 2.2rem; } }
    @media screen and (max-width: 1279px) {
      .button-row a {
        font-size: 2.1rem; } }
    @media screen and (max-width: 1023px) {
      .button-row a {
        width: calc(50% - 1.5rem); } }
    @media screen and (max-width: 767px) {
      .button-row a {
        font-size: 1.9rem; } }
    @media screen and (max-width: 500px) {
      .button-row a {
        font-size: 1.7rem; } }
    .button-row a:first-child {
      margin-left: 0; }
    .button-row a.grape {
      background: #7f4253; }
      .button-row a.grape:hover {
        background: #58354b; }
    .button-row a.neptune {
      background: #007699; }
      .button-row a.neptune:hover {
        background: #51646e; }

.login-form-row {
  background: #007699;
  position: relative;
  margin: -12rem 0 8.5rem 6rem;
  z-index: 9;
  padding: 3rem; }
  @media screen and (max-width: 1599px) {
    .login-form-row {
      margin-bottom: 7.5rem; } }
  @media screen and (max-width: 1439px) {
    .login-form-row {
      margin-left: 5rem; } }
  @media screen and (max-width: 1279px) {
    .login-form-row {
      margin-bottom: 6.5rem;
      margin-left: 4rem; } }
  @media screen and (max-width: 1023px) {
    .login-form-row {
      margin-left: 3.5rem; } }
  @media screen and (max-width: 639px) {
    .login-form-row {
      margin-top: -8rem; } }
  .login-form-row a {
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer; }
  .login-form-row .field-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    margin-bottom: 1.5rem; }
    .login-form-row .field-wrap input {
      background: #ffffff;
      width: calc(33.333% - 2.25rem);
      font-size: 1.4rem;
      height: 3em;
      padding: 0 1.3em;
      color: #1d3750; }
      @media screen and (max-width: 768px) {
        .login-form-row .field-wrap input {
          height: 2.3em;
          font-size: 1.2rem; } }
    .login-form-row .field-wrap .submit-btn {
      background: #7f4253;
      width: calc(20% - 2.25rem);
      font-size: 1.4rem;
      height: 3em;
      padding: 0 1.3em;
      color: #ffffff;
      text-align: center;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease;
      cursor: pointer;
      text-transform: uppercase; }
      @media screen and (max-width: 1023px) {
        .login-form-row .field-wrap .submit-btn {
          width: calc(33.333% - 2.25rem); } }
      @media screen and (max-width: 768px) {
        .login-form-row .field-wrap .submit-btn {
          height: 2.3em;
          font-size: 1.2rem; } }
      .login-form-row .field-wrap .submit-btn:hover {
        background: rgba(29, 55, 80, 0.8); }

.intro-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative; }
  .intro-text .text {
    width: 50%;
    padding-left: 1.5rem;
    margin-left: 50%; }
    @media screen and (max-width: 1023px) {
      .intro-text .text {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .intro-text .text h2 {
      color: #1d3750;
      text-transform: uppercase;
      font-size: 2.5rem;
      line-height: 1.4;
      margin-bottom: 2em;
      letter-spacing: 0; }
      @media screen and (max-width: 1439px) {
        .intro-text .text h2 {
          font-size: 2.2rem;
          margin-bottom: 1.8em; } }
      @media screen and (max-width: 1279px) {
        .intro-text .text h2 {
          font-size: 2rem; } }
      @media screen and (max-width: 1023px) {
        .intro-text .text h2 {
          width: 100%;
          font-size: 2.1rem;
          margin-bottom: 9rem; } }
      @media screen and (max-width: 767px) {
        .intro-text .text h2 {
          font-size: 1.9rem;
          margin-bottom: 7.5rem; } }
      @media screen and (max-width: 639px) {
        .intro-text .text h2 {
          margin-bottom: 3rem; } }
      @media screen and (max-width: 500px) {
        .intro-text .text h2 {
          font-size: 1.8rem;
          margin-bottom: 2.5rem; } }
    .intro-text .text .img {
      width: 50%;
      position: absolute;
      z-index: 2;
      left: 0;
      height: 100%;
      top: 0; }
      @media screen and (max-width: 1023px) {
        .intro-text .text .img {
          position: relative;
          height: auto;
          width: calc(50% - 3rem);
          -webkit-transform: translateY(-5rem);
                  transform: translateY(-5rem); } }
      @media screen and (max-width: 767px) {
        .intro-text .text .img {
          width: calc(50% - 1.5rem);
          -webkit-transform: translateY(-4rem);
                  transform: translateY(-4rem); } }
      @media screen and (max-width: 639px) {
        .intro-text .text .img {
          width: 100%;
          -webkit-transform: translateY(0);
                  transform: translateY(0);
          padding-bottom: 75%; } }
      .intro-text .text .img img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: red;
        top: 0;
        left: 0;
        width: calc(100% - 5rem);
        height: calc(100% - 8.5rem); }
        @media screen and (max-width: 1439px) {
          .intro-text .text .img img {
            height: calc(100% - 7rem); } }
        @media screen and (max-width: 1279px) {
          .intro-text .text .img img {
            width: calc(100% - 4rem);
            height: calc(100% - 6rem); } }
        @media screen and (max-width: 1023px) {
          .intro-text .text .img img {
            height: 100%;
            width: 100%; } }
    .intro-text .text .body-text {
      position: relative;
      padding: 5rem 7.5rem 14rem 0; }
      @media screen and (max-width: 1439px) {
        .intro-text .text .body-text {
          padding: 4rem 5rem 10rem 0; } }
      @media screen and (max-width: 1279px) {
        .intro-text .text .body-text {
          padding-top: 3rem;
          padding-bottom: 6rem; } }
      @media screen and (max-width: 1023px) {
        .intro-text .text .body-text {
          width: 50%;
          margin-left: 0;
          padding-bottom: 5rem;
          padding-left: 1.5rem;
          margin-top: 0; } }
      @media screen and (max-width: 767px) {
        .intro-text .text .body-text {
          padding-bottom: 4rem; } }
      @media screen and (max-width: 639px) {
        .intro-text .text .body-text {
          width: 100%;
          padding-top: 10rem;
          margin-top: -7.5rem;
          padding-left: 0;
          padding-right: 3.5rem; } }
      @media screen and (max-width: 500px) {
        .intro-text .text .body-text {
          padding-right: 0;
          padding-bottom: 3.5rem; } }
      .intro-text .text .body-text::before {
        background: #007699;
        top: 0;
        right: 0;
        height: 100%;
        content: "";
        width: 100vw;
        position: absolute; }
        @media screen and (max-width: 500px) {
          .intro-text .text .body-text::before {
            left: -3.5rem; } }
      .intro-text .text .body-text div {
        -webkit-column-gap: 3rem;
           -moz-column-gap: 3rem;
                column-gap: 3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media screen and (max-width: 1023px) {
          .intro-text .text .body-text div {
            display: block; } }
        .intro-text .text .body-text div p {
          position: relative;
          color: #fff;
          font-size: 2rem;
          line-height: 1.2;
          font-weight: 300;
          margin-bottom: 0; }
          @media screen and (max-width: 1439px) {
            .intro-text .text .body-text div p {
              font-size: 1.9rem; } }
          @media screen and (max-width: 1279px) {
            .intro-text .text .body-text div p {
              font-size: 1.7rem; } }
          @media screen and (max-width: 1023px) {
            .intro-text .text .body-text div p {
              font-size: 1.8rem;
              margin-bottom: 1.5rem; } }
          @media screen and (max-width: 767px) {
            .intro-text .text .body-text div p {
              font-size: 1.6rem; } }
          @media screen and (max-width: 639px) {
            .intro-text .text .body-text div p {
              font-size: 1.7rem; } }
          @media screen and (max-width: 500px) {
            .intro-text .text .body-text div p {
              font-size: 1.6rem; } }
          .intro-text .text .body-text div p:last-child {
            margin-bottom: 0; }

.expertise-listing {
  padding-top: 25rem;
  margin-top: -17rem;
  background-color: #ebeaf1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 10rem; }
  @media screen and (max-width: 1599px) {
    .expertise-listing {
      padding: 22.5rem 0 7rem; } }
  @media screen and (max-width: 1439px) {
    .expertise-listing {
      padding: 22rem 0 5rem; } }
  @media screen and (max-width: 1279px) {
    .expertise-listing {
      margin-top: -10rem;
      padding: 16rem 0 3rem; } }
  @media screen and (max-width: 639px) {
    .expertise-listing {
      padding: 15rem 0 3rem; } }
  @media screen and (max-width: 500px) {
    .expertise-listing {
      margin-top: 0;
      padding: 5rem 0 1.5rem; } }
  .expertise-listing .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 6rem;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem; }
    @media screen and (max-width: 1279px) {
      .expertise-listing .grid {
        margin-top: 5rem; } }
    @media screen and (max-width: 1023px) {
      .expertise-listing .grid {
        margin-top: 4.5rem; } }
    @media screen and (max-width: 500px) {
      .expertise-listing .grid {
        margin-top: 3.5rem; } }
    .expertise-listing .grid .grid-item {
      width: calc(33.333333333333333% - 2rem);
      background: white;
      margin-bottom: 3rem;
      padding: 3rem 3.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
      @media screen and (max-width: 1279px) {
        .expertise-listing .grid .grid-item {
          width: calc(50% - 1.5rem); } }
      @media screen and (max-width: 767px) {
        .expertise-listing .grid .grid-item {
          padding: 3rem; } }
      @media screen and (max-width: 639px) {
        .expertise-listing .grid .grid-item {
          width: 100%; } }
      .expertise-listing .grid .grid-item:hover {
        background: #7f4253; }
        .expertise-listing .grid .grid-item:hover * {
          color: white; }
        .expertise-listing .grid .grid-item:hover p.more {
          color: white; }
          .expertise-listing .grid .grid-item:hover p.more svg path {
            fill: white; }
      .expertise-listing .grid .grid-item div {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
      .expertise-listing .grid .grid-item * {
        -webkit-transition: color 0.3s ease, fill 0.3s ease;
        transition: color 0.3s ease, fill 0.3s ease; }
      .expertise-listing .grid .grid-item h3 {
        color: #007699;
        text-transform: uppercase;
        font-size: 2.6rem;
        line-height: 1.15;
        letter-spacing: 0.1em;
        margin-bottom: 1em; }
        @media screen and (max-width: 1599px) {
          .expertise-listing .grid .grid-item h3 {
            font-size: 2.4rem; } }
        @media screen and (max-width: 1023px) {
          .expertise-listing .grid .grid-item h3 {
            font-size: 2.2rem; } }
        @media screen and (max-width: 767px) {
          .expertise-listing .grid .grid-item h3 {
            font-size: 2rem; } }
        @media screen and (max-width: 639px) {
          .expertise-listing .grid .grid-item h3 {
            font-size: 2.2rem; } }
        @media screen and (max-width: 500px) {
          .expertise-listing .grid .grid-item h3 {
            font-size: 2rem; } }
      .expertise-listing .grid .grid-item p {
        line-height: 1.25;
        font-weight: 300;
        font-size: 2rem;
        color: #333333;
        margin-bottom: 1.5em; }
        @media screen and (max-width: 1023px) {
          .expertise-listing .grid .grid-item p {
            font-size: 1.8rem; } }
        @media screen and (max-width: 767px) {
          .expertise-listing .grid .grid-item p {
            font-size: 1.7rem; } }
        @media screen and (max-width: 639px) {
          .expertise-listing .grid .grid-item p {
            font-size: 1.8rem; } }
        @media screen and (max-width: 500px) {
          .expertise-listing .grid .grid-item p {
            font-size: 1.6rem; } }
        .expertise-listing .grid .grid-item p.more {
          color: #007699;
          letter-spacing: 0.1em;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          font-weight: 600;
          font-size: 1.8rem;
          line-height: 1;
          margin-bottom: 0; }
          @media screen and (max-width: 1599px) {
            .expertise-listing .grid .grid-item p.more {
              font-size: 1.7rem; } }
          @media screen and (max-width: 1023px) {
            .expertise-listing .grid .grid-item p.more {
              font-size: 1.6rem; } }
          @media screen and (max-width: 767px) {
            .expertise-listing .grid .grid-item p.more {
              font-size: 1.5rem; } }
          @media screen and (max-width: 639px) {
            .expertise-listing .grid .grid-item p.more {
              font-size: 1.6rem; } }
          @media screen and (max-width: 500px) {
            .expertise-listing .grid .grid-item p.more {
              font-size: 1.5rem; } }
          .expertise-listing .grid .grid-item p.more svg {
            width: 1.5rem; }
            @media screen and (max-width: 1599px) {
              .expertise-listing .grid .grid-item p.more svg {
                width: 1.25rem; } }
            @media screen and (max-width: 500px) {
              .expertise-listing .grid .grid-item p.more svg {
                width: 1.1rem; } }
            .expertise-listing .grid .grid-item p.more svg path {
              fill: #007699; }

.news-listing {
  background: #1d3750;
  padding: 9rem 0 8rem; }
  @media screen and (max-width: 1599px) {
    .news-listing {
      padding: 7rem 0 5rem; } }
  @media screen and (max-width: 1439px) {
    .news-listing {
      padding-top: 6rem; } }
  @media screen and (max-width: 1279px) {
    .news-listing {
      padding: 5rem 0 3.5rem; } }
  @media screen and (max-width: 1023px) {
    .news-listing {
      padding: 4.5rem 0 3rem; } }
  @media screen and (max-width: 767px) {
    .news-listing {
      padding-bottom: 2rem; } }
  @media screen and (max-width: 639px) {
    .news-listing {
      padding-bottom: 1.5rem; } }
  @media screen and (max-width: 500px) {
    .news-listing {
      padding-top: 4rem; } }
  .news-listing .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 767px) {
      .news-listing .title {
        display: block; } }
    .news-listing .title h2 {
      color: white; }
      @media screen and (max-width: 767px) {
        .news-listing .title h2 {
          margin-bottom: 0.75em; } }
    .news-listing .title a {
      color: white;
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media screen and (max-width: 1279px) {
        .news-listing .title a {
          font-size: 1.6rem; } }
      @media screen and (max-width: 1023px) {
        .news-listing .title a {
          font-size: 1.5rem; } }
      @media screen and (max-width: 639px) {
        .news-listing .title a {
          font-size: 1.4rem; } }
      @media screen and (max-width: 500px) {
        .news-listing .title a {
          font-size: 1.2rem; } }
      .news-listing .title a:hover {
        color: #007699; }
      .news-listing .title a svg {
        width: 1.5rem;
        margin-left: 2rem; }
        @media screen and (max-width: 1599px) {
          .news-listing .title a svg {
            width: 1.25rem; } }
        @media screen and (max-width: 639px) {
          .news-listing .title a svg {
            width: 1.1rem;
            margin-left: 1rem; } }
        @media screen and (max-width: 500px) {
          .news-listing .title a svg {
            width: 0.9rem; } }
        .news-listing .title a svg path {
          fill: white;
          -webkit-transition: fill 0.3s ease;
          transition: fill 0.3s ease; }

.news-grid {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 1439px) {
    .news-grid {
      margin-top: 6rem; } }
  @media screen and (max-width: 1279px) {
    .news-grid {
      margin-top: 5rem; } }
  @media screen and (max-width: 1023px) {
    .news-grid {
      margin-top: 4rem; } }
  .news-grid .news-item {
    width: calc(33.333333333333333% - 2rem);
    margin-bottom: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (max-width: 1279px) {
      .news-grid .news-item {
        width: calc(50% - 1.5rem); } }
    @media screen and (max-width: 639px) {
      .news-grid .news-item {
        width: 100%; } }
    .news-grid .news-item:hover .news-img img {
      -webkit-transform: scale(1.1);
              transform: scale(1.1); }
    .news-grid .news-item:hover .news-text {
      background: white; }
      .news-grid .news-item:hover .news-text h3,
      .news-grid .news-item:hover .news-text p {
        color: #1d3750; }
    .news-grid .news-item .news-img {
      position: relative;
      padding-bottom: 60%;
      overflow: hidden; }
      .news-grid .news-item .news-img img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .news-grid .news-item .news-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      border: 0.1rem solid #007699;
      border-top: none;
      padding: 3rem 3.5rem;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
      @media screen and (max-width: 767px) {
        .news-grid .news-item .news-text {
          padding: 3rem 2.75rem; } }
      @media screen and (max-width: 500px) {
        .news-grid .news-item .news-text {
          padding: 2.5rem 3rem; } }
      .news-grid .news-item .news-text div {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1; }
      .news-grid .news-item .news-text time {
        text-transform: uppercase;
        font-size: 1.8rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-bottom: 1em;
        color: #007699; }
        @media screen and (max-width: 1439px) {
          .news-grid .news-item .news-text time {
            font-size: 1.6rem; } }
        @media screen and (max-width: 1279px) {
          .news-grid .news-item .news-text time {
            font-size: 1.8rem; } }
        @media screen and (max-width: 1023px) {
          .news-grid .news-item .news-text time {
            font-size: 1.8rem; } }
        @media screen and (max-width: 767px) {
          .news-grid .news-item .news-text time {
            font-size: 1.6rem; } }
        @media screen and (max-width: 639px) {
          .news-grid .news-item .news-text time {
            font-size: 1.7rem; } }
        @media screen and (max-width: 500px) {
          .news-grid .news-item .news-text time {
            font-size: 1.6rem; } }
        .news-grid .news-item .news-text time::before {
          display: inline-block;
          width: 5rem;
          height: 0.1rem;
          content: "";
          background: #007699;
          margin-right: 1rem; }
          @media screen and (max-width: 1439px) {
            .news-grid .news-item .news-text time::before {
              width: 3.5rem; } }
          @media screen and (max-width: 1279px) {
            .news-grid .news-item .news-text time::before {
              width: 5rem; } }
          @media screen and (max-width: 1023px) {
            .news-grid .news-item .news-text time::before {
              width: 3.5rem; } }
          @media screen and (max-width: 639px) {
            .news-grid .news-item .news-text time::before {
              width: 5rem; } }
          @media screen and (max-width: 500px) {
            .news-grid .news-item .news-text time::before {
              width: 3.5rem; } }
      .news-grid .news-item .news-text h3 {
        color: white;
        font-size: 2.6rem;
        line-height: 1.15;
        margin-bottom: 0.875em;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media screen and (max-width: 1599px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2.4rem; } }
        @media screen and (max-width: 1439px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2.2rem; } }
        @media screen and (max-width: 1279px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2.4rem; } }
        @media screen and (max-width: 1023px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2.2rem;
            margin-bottom: 0.75em; } }
        @media screen and (max-width: 767px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2rem; } }
        @media screen and (max-width: 639px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2.2rem; } }
        @media screen and (max-width: 500px) {
          .news-grid .news-item .news-text h3 {
            font-size: 2rem; } }
      .news-grid .news-item .news-text p {
        color: white;
        font-size: 2rem;
        font-weight: 300;
        margin-bottom: 2em;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        @media screen and (max-width: 1439px) {
          .news-grid .news-item .news-text p {
            font-size: 1.8rem;
            margin-bottom: 1.5em; } }
        @media screen and (max-width: 1279px) {
          .news-grid .news-item .news-text p {
            font-size: 2rem;
            margin-bottom: 2em; } }
        @media screen and (max-width: 1023px) {
          .news-grid .news-item .news-text p {
            font-size: 1.8rem; } }
        @media screen and (max-width: 767px) {
          .news-grid .news-item .news-text p {
            font-size: 1.6rem; } }
        @media screen and (max-width: 639px) {
          .news-grid .news-item .news-text p {
            font-size: 1.9rem; } }
        @media screen and (max-width: 500px) {
          .news-grid .news-item .news-text p {
            font-size: 1.6rem; } }
        .news-grid .news-item .news-text p.more {
          color: #007699;
          letter-spacing: 0.1em;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          font-weight: 600;
          font-size: 1.8rem;
          line-height: 1;
          margin-bottom: 0; }
          @media screen and (max-width: 1599px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.7rem; } }
          @media screen and (max-width: 1439px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.6rem; } }
          @media screen and (max-width: 1279px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.8rem; } }
          @media screen and (max-width: 1023px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.6rem; } }
          @media screen and (max-width: 767px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.4rem; } }
          @media screen and (max-width: 639px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.7rem; } }
          @media screen and (max-width: 500px) {
            .news-grid .news-item .news-text p.more {
              font-size: 1.4rem; } }
          .news-grid .news-item .news-text p.more svg {
            width: 1.5rem; }
            @media screen and (max-width: 1599px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1.25rem; } }
            @media screen and (max-width: 1279px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1.5rem; } }
            @media screen and (max-width: 1023px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1.25rem; } }
            @media screen and (max-width: 767px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1.1rem; } }
            @media screen and (max-width: 639px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1.25rem; } }
            @media screen and (max-width: 500px) {
              .news-grid .news-item .news-text p.more svg {
                width: 1rem; } }
            .news-grid .news-item .news-text p.more svg path {
              fill: #007699; }

.quote-bar {
  background: #007699;
  font-size: 4rem;
  text-align: center;
  padding: 2em 0 1.75em;
  color: white; }
  @media screen and (max-width: 1599px) {
    .quote-bar {
      font-size: 3.8rem; } }
  @media screen and (max-width: 1279px) {
    .quote-bar {
      font-size: 3.6rem; } }
  @media screen and (max-width: 1023px) {
    .quote-bar {
      font-size: 3.2rem;
      padding-top: 1.75em; } }
  @media screen and (max-width: 767px) {
    .quote-bar {
      font-size: 2.8rem;
      padding: 1.65em 0 1.85em; } }
  @media screen and (max-width: 639px) {
    .quote-bar {
      font-size: 2.6rem;
      padding-bottom: 1.75em; } }
  @media screen and (max-width: 500px) {
    .quote-bar {
      font-size: 2.1rem;
      padding: 1.65em 0 1.85em; } }
  .quote-bar blockquote {
    width: 66.66666666%;
    margin: 0 auto; }
    @media screen and (max-width: 1279px) {
      .quote-bar blockquote {
        width: 75%; } }
    @media screen and (max-width: 1023px) {
      .quote-bar blockquote {
        width: 95%; } }
    @media screen and (max-width: 767px) {
      .quote-bar blockquote {
        width: 100%; } }
    .quote-bar blockquote * {
      display: block; }
    .quote-bar blockquote cite {
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.5em;
      margin-top: 2em; }
      @media screen and (max-width: 767px) {
        .quote-bar blockquote cite {
          margin-top: 1.75em;
          font-size: 0.55em; } }
      @media screen and (max-width: 500px) {
        .quote-bar blockquote cite {
          font-size: 0.6em; } }

.awards {
  padding: 3rem 0 3.5rem; }
  @media screen and (max-width: 1279px) {
    .awards {
      padding: 2.5rem 0 3rem; } }
  @media screen and (max-width: 500px) {
    .awards {
      padding: 2.25rem 0 2.75rem; } }
  .awards .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .awards .container .award-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 1.5rem;
      width: 16.6666666666666%;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media screen and (max-width: 1023px) {
        .awards .container .award-wrapper {
          width: 13rem;
          -webkit-box-sizing: content-box;
                  box-sizing: content-box; } }
      @media screen and (max-width: 639px) {
        .awards .container .award-wrapper {
          width: 11.5rem;
          padding: 0 1rem; } }
      @media screen and (max-width: 500px) {
        .awards .container .award-wrapper {
          padding: 0 0.5rem; } }
      .awards .container .award-wrapper img {
        max-width: 15rem;
        max-height: 20rem; }
        @media screen and (max-width: 1599px) {
          .awards .container .award-wrapper img {
            max-height: 18rem;
            max-width: 14.5rem; } }
        @media screen and (max-width: 1439px) {
          .awards .container .award-wrapper img {
            max-height: 17rem;
            max-width: 14rem; } }
        @media screen and (max-width: 1279px) {
          .awards .container .award-wrapper img {
            max-height: 15rem;
            max-width: 13rem; } }
        @media screen and (max-width: 1023px) {
          .awards .container .award-wrapper img {
            max-width: 100%; } }
        @media screen and (max-width: 639px) {
          .awards .container .award-wrapper img {
            max-height: 13rem; } }

.people-listing-page h1 {
  margin: 2em 0 1.65em; }
  @media screen and (max-width: 1599px) {
    .people-listing-page h1 {
      margin-top: 1.75em; } }
  @media screen and (max-width: 1279px) {
    .people-listing-page h1 {
      margin: 1.65em 0 1.5em; } }
  @media screen and (max-width: 500px) {
    .people-listing-page h1 {
      margin: 1.5em 0 1.25em; } }

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2rem;
  position: relative;
  z-index: 2;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 1439px) {
    .filters {
      font-size: 1.9rem; } }
  @media screen and (max-width: 1279px) {
    .filters {
      font-size: 1.8rem; } }
  @media screen and (max-width: 639px) {
    .filters {
      font-size: 1.7rem; } }
  .filters > * {
    width: calc(33.33333333% - 2rem); }
  .filters form {
    position: relative;
    height: 2em; }
    @media screen and (max-width: 1439px) {
      .filters form {
        height: 2.5em; } }
    @media screen and (max-width: 1023px) {
      .filters form {
        width: 100%;
        margin-bottom: 3rem; } }
    @media screen and (max-width: 639px) {
      .filters form {
        margin-bottom: 2rem; } }
    .filters form input {
      background: #ebeaf1;
      width: 100%;
      height: 100%;
      color: #007699;
      padding-left: 1.25em;
      padding-bottom: 0.1em; }
      @media screen and (max-width: 1439px) {
        .filters form input {
          padding-left: 1em; } }
      .filters form input::-webkit-input-placeholder {
        opacity: 0.5; }
      .filters form input::-moz-placeholder {
        opacity: 0.5; }
      .filters form input:-ms-input-placeholder {
        opacity: 0.5; }
      .filters form input::-ms-input-placeholder {
        opacity: 0.5; }
      .filters form input::placeholder {
        opacity: 0.5; }
    .filters form button {
      position: absolute;
      right: 1.5rem;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      font-size: 0.8em;
      color: #007699;
      opacity: 0.5;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
      cursor: pointer; }
      .filters form button:hover {
        opacity: 1; }
  .filters .filter-dropdown {
    position: relative;
    z-index: 2; }
    @media screen and (max-width: 1023px) {
      .filters .filter-dropdown {
        width: calc(50% - 1.5rem); } }
    @media screen and (max-width: 639px) {
      .filters .filter-dropdown {
        width: calc(50% - 1rem); } }
    @media screen and (max-width: 500px) {
      .filters .filter-dropdown {
        width: 100%;
        margin-bottom: 2rem; } }
    .filters .filter-dropdown.active .label {
      color: white; }
    .filters .filter-dropdown.neptune {
      --color: $neptune; }
      .filters .filter-dropdown.neptune .label {
        background: #007699; }
      .filters .filter-dropdown.neptune ul {
        background: #99c8d6;
        color: #007699; }
        .filters .filter-dropdown.neptune ul li svg path {
          fill: #007699; }
        .filters .filter-dropdown.neptune ul li a.active {
          background: #007699; }
        .filters .filter-dropdown.neptune ul li:hover > a {
          background: #007699; }
          .filters .filter-dropdown.neptune ul li:hover > a svg path {
            fill: #99c8d6; }
        .filters .filter-dropdown.neptune ul li ul {
          background: #b3d6e0; }
          .filters .filter-dropdown.neptune ul li ul li a:hover,
          .filters .filter-dropdown.neptune ul li ul li a.active {
            background: #3391ad; }
    .filters .filter-dropdown.grape .label {
      background: #7f4253; }
    .filters .filter-dropdown.grape ul {
      background: #ccb3ba;
      color: #7f4253; }
      .filters .filter-dropdown.grape ul li svg path {
        fill: #7f4253; }
      .filters .filter-dropdown.grape ul li a:hover,
      .filters .filter-dropdown.grape ul li a.active {
        background: #7f4253; }
        .filters .filter-dropdown.grape ul li a:hover svg path,
        .filters .filter-dropdown.grape ul li a.active svg path {
          fill: #ccb3ba; }
      .filters .filter-dropdown.grape ul li ul {
        background: #d9c6cb; }
        .filters .filter-dropdown.grape ul li ul li a:hover,
        .filters .filter-dropdown.grape ul li ul li a.active {
          background: #996875; }
    .filters .filter-dropdown:hover {
      z-index: 3; }
      .filters .filter-dropdown:hover .label {
        color: white; }
        .filters .filter-dropdown:hover .label svg {
          -webkit-transform: rotate(-90deg);
                  transform: rotate(-90deg); }
          .filters .filter-dropdown:hover .label svg path {
            fill: white; }
      .filters .filter-dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
        -webkit-transition: visibility 0s linear, opacity 0.3s ease;
        transition: visibility 0s linear, opacity 0.3s ease;
        pointer-events: all; }
    .filters .filter-dropdown .label {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 2em;
      color: rgba(255, 255, 255, 0.5);
      padding: 0 0.75em 0.1em 1.25em;
      padding-bottom: 0.1em;
      cursor: pointer;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media screen and (max-width: 1439px) {
        .filters .filter-dropdown .label {
          height: 2.5em;
          padding-left: 1em; } }
      .filters .filter-dropdown .label span {
        overflow: hidden;
        white-space: nowrap;
        margin-right: 0.5em; }
      .filters .filter-dropdown .label svg {
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateY(5%) rotate(90deg);
                transform: translateY(5%) rotate(90deg);
        -webkit-transform-origin: center;
                transform-origin: center;
        width: 1.25rem; }
        @media screen and (max-width: 1439px) {
          .filters .filter-dropdown .label svg {
            width: 1.1rem; } }
        .filters .filter-dropdown .label svg path {
          fill: rgba(255, 255, 255, 0.5); }
    .filters .filter-dropdown ul {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s ease 0s;
      transition: visibility 0s linear 0.3s, opacity 0.3s ease 0s;
      pointer-events: none; }
      .filters .filter-dropdown ul > li {
        position: relative; }
        .filters .filter-dropdown ul > li:hover > a {
          color: white; }
        .filters .filter-dropdown ul > li:first-child a {
          padding-top: 0.66em; }
        .filters .filter-dropdown ul > li:last-child > a {
          padding-bottom: 0.66em; }
        .filters .filter-dropdown ul > li a {
          font-weight: 300;
          padding: 0.33em 1.25em;
          display: block;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
          cursor: pointer; }
          .filters .filter-dropdown ul > li a.active {
            color: white; }
          .filters .filter-dropdown ul > li a.has-dropdown {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            width: 100%;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                    justify-content: space-between; }
            .filters .filter-dropdown ul > li a.has-dropdown span {
              max-width: calc(100% - 1.3rem); }
              @media screen and (max-width: 1023px) {
                .filters .filter-dropdown ul > li a.has-dropdown span {
                  max-width: calc(100% - 1.1rem); } }
              @media screen and (max-width: 500px) {
                .filters .filter-dropdown ul > li a.has-dropdown span {
                  max-width: calc(100% - 1rem); } }
            .filters .filter-dropdown ul > li a.has-dropdown svg {
              width: 1.3rem; }
              @media screen and (max-width: 1023px) {
                .filters .filter-dropdown ul > li a.has-dropdown svg {
                  width: 1.1rem;
                  -webkit-transform: translateX(0.5rem);
                          transform: translateX(0.5rem); } }
              @media screen and (max-width: 639px) {
                .filters .filter-dropdown ul > li a.has-dropdown svg {
                  -webkit-transform: translateX(1rem);
                          transform: translateX(1rem); } }
              @media screen and (max-width: 500px) {
                .filters .filter-dropdown ul > li a.has-dropdown svg {
                  -webkit-transform: translateX(0.5rem) rotate(90deg);
                          transform: translateX(0.5rem) rotate(90deg);
                  width: 1rem; } }
              .filters .filter-dropdown ul > li a.has-dropdown svg path {
                -webkit-transition: fill 0.3s ease;
                transition: fill 0.3s ease; }
        .filters .filter-dropdown ul > li:hover ul {
          opacity: 1;
          visibility: visible;
          -webkit-transition: visibility 0s linear, opacity 0.3s ease;
          transition: visibility 0s linear, opacity 0.3s ease;
          pointer-events: all; }
        .filters .filter-dropdown ul > li ul {
          position: absolute;
          left: 100%;
          top: 0;
          width: 100%;
          opacity: 0;
          visibility: hidden; }
          @media screen and (max-width: 500px) {
            .filters .filter-dropdown ul > li ul {
              top: 100%;
              left: 0; } }
  .filters #order {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2.5rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
    color: #007699; }
    @media screen and (max-width: 639px) {
      .filters #order {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-top: 2.5rem; } }
    @media screen and (max-width: 500px) {
      .filters #order {
        margin-top: 0.5rem; } }
    .filters #order button {
      opacity: 0.6;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      cursor: pointer; }
      .filters #order button:hover, .filters #order button.active {
        opacity: 1; }

.listing-wrapper {
  margin-top: 11.5rem;
  padding-bottom: 2rem; }
  @media screen and (max-width: 1919px) {
    .listing-wrapper {
      margin-top: 7.5rem; } }
  @media screen and (max-width: 1599px) {
    .listing-wrapper {
      margin-top: 5.5rem; } }
  @media screen and (max-width: 1439px) {
    .listing-wrapper {
      margin-top: 4.5rem; } }
  @media screen and (max-width: 1279px) {
    .listing-wrapper {
      margin-top: 3.5rem; } }
  @media screen and (max-width: 1023px) {
    .listing-wrapper {
      margin-top: 2.5rem; } }
  @media screen and (max-width: 639px) {
    .listing-wrapper {
      margin-top: 4rem; } }
  @media screen and (max-width: 500px) {
    .listing-wrapper {
      padding-bottom: 1rem; } }
  .listing-wrapper section {
    margin-bottom: 6rem; }
    @media screen and (max-width: 1439px) {
      .listing-wrapper section {
        margin-bottom: 5rem; } }
    @media screen and (max-width: 1279px) {
      .listing-wrapper section {
        margin-bottom: 4rem; } }
    @media screen and (max-width: 767px) {
      .listing-wrapper section {
        margin-bottom: 3rem; } }
    @media screen and (max-width: 639px) {
      .listing-wrapper section {
        margin-bottom: 2rem; } }
    @media screen and (max-width: 500px) {
      .listing-wrapper section {
        margin-bottom: 1.5rem; } }
    .listing-wrapper section.note {
      margin-top: -3rem;
      margin-bottom: 12rem; }
      @media screen and (max-width: 1439px) {
        .listing-wrapper section.note {
          margin: -2rem 0 9rem; } }
      @media screen and (max-width: 1279px) {
        .listing-wrapper section.note {
          margin-bottom: 8rem; } }
      @media screen and (max-width: 1023px) {
        .listing-wrapper section.note {
          margin-bottom: 6.5rem; } }
      @media screen and (max-width: 767px) {
        .listing-wrapper section.note {
          margin-bottom: 5.5rem; } }
      @media screen and (max-width: 639px) {
        .listing-wrapper section.note {
          margin-bottom: 4rem; } }
      .listing-wrapper section.note p {
        color: #66adc2;
        font-weight: 300;
        font-size: 1.8rem; }
    .listing-wrapper section.no-results {
      display: none;
      margin-top: 0; }
    .listing-wrapper section h2 {
      color: #007699;
      margin-bottom: 2em; }
      @media screen and (max-width: 1599px) {
        .listing-wrapper section h2 {
          margin-bottom: 1.75em; } }
      @media screen and (max-width: 1279px) {
        .listing-wrapper section h2 {
          margin-bottom: 1.5em; } }
      @media screen and (max-width: 500px) {
        .listing-wrapper section h2 {
          margin-bottom: 1.25em; } }
      .listing-wrapper section h2.bold {
        font-weight: 600;
        color: #1d3750; }
    .listing-wrapper section .profile-listing {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -1.5rem; }
      .listing-wrapper section .profile-listing.three-col .profile-card {
        width: 33.333333%; }
        @media screen and (max-width: 1023px) {
          .listing-wrapper section .profile-listing.three-col .profile-card {
            width: 50%; } }
        @media screen and (max-width: 639px) {
          .listing-wrapper section .profile-listing.three-col .profile-card {
            width: 100%; } }
      .listing-wrapper section .profile-listing.text-only .profile-card {
        padding-bottom: 0.5rem;
        margin-bottom: 2rem; }
        .listing-wrapper section .profile-listing.text-only .profile-card .profile-text h3 {
          margin-bottom: 0; }
      .listing-wrapper section .profile-listing .profile-card {
        width: 25%;
        margin-bottom: 3rem;
        padding: 0 1.5rem; }
        @media screen and (max-width: 1279px) {
          .listing-wrapper section .profile-listing .profile-card {
            width: 33.333333333%; } }
        @media screen and (max-width: 1023px) {
          .listing-wrapper section .profile-listing .profile-card {
            width: 50%; } }
        @media screen and (max-width: 639px) {
          .listing-wrapper section .profile-listing .profile-card {
            width: 100%; } }

a.profile-card:hover .profile-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05); }

a.profile-card:hover .profile-text svg {
  opacity: 1; }

.profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .profile-card .profile-img {
    position: relative;
    padding-bottom: 50%;
    margin-bottom: 3rem;
    overflow: hidden;
    background: #ebeaf1; }
    .profile-card .profile-img img {
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
  .profile-card .profile-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-bottom: 0.1rem solid #007699;
    padding-bottom: 1rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative; }
    .profile-card .profile-text div {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      width: 100%; }
    .profile-card .profile-text h3,
    .profile-card .profile-text h4 {
      text-align: left;
      width: 100%;
      font-size: 1.8rem;
      margin-bottom: 0.5em; }
      @media screen and (max-width: 1439px) {
        .profile-card .profile-text h3,
        .profile-card .profile-text h4 {
          font-size: 1.7rem; } }
      @media screen and (max-width: 767px) {
        .profile-card .profile-text h3,
        .profile-card .profile-text h4 {
          font-size: 1.6rem; } }
      @media screen and (max-width: 639px) {
        .profile-card .profile-text h3,
        .profile-card .profile-text h4 {
          font-size: 1.8rem; } }
      @media screen and (max-width: 500px) {
        .profile-card .profile-text h3,
        .profile-card .profile-text h4 {
          font-size: 1.6rem; } }
    .profile-card .profile-text h3 {
      letter-spacing: 0.1em;
      font-weight: 600;
      text-transform: uppercase;
      color: #1d3750; }
    .profile-card .profile-text h4 {
      text-transform: uppercase;
      font-weight: 300;
      color: #007699; }
      .profile-card .profile-text h4 strong {
        font-weight: 400; }
        .profile-card .profile-text h4 strong:first-of-type {
          margin-right: 0.25em; }
        .profile-card .profile-text h4 strong:last-of-type {
          margin-right: 0; }
    .profile-card .profile-text svg {
      width: 1.4rem;
      opacity: 0.4;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
      .profile-card .profile-text svg path {
        fill: #007699; }

.cv-header {
  position: relative;
  margin-bottom: 7rem; }
  @media screen and (max-width: 1439px) {
    .cv-header {
      margin-bottom: 6rem; } }
  @media screen and (max-width: 1279px) {
    .cv-header {
      margin-bottom: 5rem; } }
  @media screen and (max-width: 1023px) {
    .cv-header {
      margin-bottom: 4rem; } }
  @media screen and (max-width: 639px) {
    .cv-header {
      margin-bottom: 3.5rem; } }
  @media screen and (max-width: 500px) {
    .cv-header {
      margin-bottom: 2.75rem; } }
  .cv-header::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #1d3750;
    bottom: 10rem;
    position: absolute;
    z-index: 1; }
    @media screen and (max-width: 767px) {
      .cv-header::before {
        top: 0;
        bottom: unset;
        height: 45vw; } }
  .cv-header .header-wrapper {
    position: relative; }
    .cv-header .header-wrapper .cv-bg {
      background: #ebeaf1;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      z-index: 1; }
      @media screen and (max-width: 767px) {
        .cv-header .header-wrapper .cv-bg {
          display: none; } }
    .cv-header .header-wrapper .img {
      position: absolute;
      z-index: 2;
      width: 45%;
      bottom: 0;
      height: 100%; }
      @media screen and (max-width: 767px) {
        .cv-header .header-wrapper .img {
          position: relative;
          width: 90%; } }
      .cv-header .header-wrapper .img::before {
        background: #ebeaf1;
        position: absolute;
        top: 0;
        left: 0;
        height: 99%;
        z-index: 1;
        width: 100vw; }
        @media screen and (max-width: 767px) {
          .cv-header .header-wrapper .img::before {
            content: ""; } }
      .cv-header .header-wrapper .img img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-position: center; }
        @media screen and (max-width: 767px) {
          .cv-header .header-wrapper .img img {
            position: relative;
            z-index: 2;
            height: auto;
            width: 100%;
            -o-object-fit: unset;
               object-fit: unset; } }
    .cv-header .header-wrapper .details {
      width: 50%;
      margin-left: 50%;
      position: relative;
      z-index: 2;
      padding: 7.5rem 0 6rem; }
      @media screen and (max-width: 1439px) {
        .cv-header .header-wrapper .details {
          padding: 6.5rem 0 5rem; } }
      @media screen and (max-width: 1279px) {
        .cv-header .header-wrapper .details {
          padding-bottom: 4rem;
          margin-left: 47.5%;
          width: 55%; } }
      @media screen and (max-width: 1023px) {
        .cv-header .header-wrapper .details {
          margin-left: 50%;
          width: 50%; } }
      @media screen and (max-width: 767px) {
        .cv-header .header-wrapper .details {
          margin-left: 0;
          width: 100%;
          padding: 0;
          margin: 3.5rem 0 0; } }
      @media screen and (max-width: 500px) {
        .cv-header .header-wrapper .details {
          margin-top: 2.75rem; } }
      .cv-header .header-wrapper .details h1 {
        font-weight: 400;
        margin-bottom: 0.65em; }
        @media screen and (max-width: 1279px) {
          .cv-header .header-wrapper .details h1 {
            margin-bottom: 0.5em; } }
        @media screen and (max-width: 500px) {
          .cv-header .header-wrapper .details h1 {
            font-size: 2.2rem;
            margin-bottom: 0.35em; } }
      .cv-header .header-wrapper .details h2 {
        font-size: 2rem;
        color: #007699;
        font-weight: 300;
        margin-bottom: 5em; }
        @media screen and (max-width: 1439px) {
          .cv-header .header-wrapper .details h2 {
            margin-bottom: 4em; } }
        @media screen and (max-width: 1279px) {
          .cv-header .header-wrapper .details h2 {
            margin-bottom: 3em; } }
        @media screen and (max-width: 1023px) {
          .cv-header .header-wrapper .details h2 {
            font-size: 1.8rem; } }
        @media screen and (max-width: 767px) {
          .cv-header .header-wrapper .details h2 {
            margin-bottom: 2em; } }
        @media screen and (max-width: 500px) {
          .cv-header .header-wrapper .details h2 {
            margin-bottom: 1.65em;
            font-size: 1.7rem; } }
        .cv-header .header-wrapper .details h2 strong {
          font-weight: 400; }
      .cv-header .header-wrapper .details ul li {
        font-size: 1.8rem;
        margin-bottom: 1.2em; }
        @media screen and (max-width: 1439px) {
          .cv-header .header-wrapper .details ul li {
            font-size: 1.6rem; } }
        @media screen and (max-width: 1023px) {
          .cv-header .header-wrapper .details ul li {
            font-size: 1.5rem; } }
        @media screen and (max-width: 500px) {
          .cv-header .header-wrapper .details ul li {
            font-size: 1.4rem; } }
        .cv-header .header-wrapper .details ul li:first-child a svg {
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg);
          width: 1.3rem; }
          @media screen and (max-width: 1023px) {
            .cv-header .header-wrapper .details ul li:first-child a svg {
              width: 1.1rem; } }
          .cv-header .header-wrapper .details ul li:first-child a svg path {
            fill: rgba(0, 118, 153, 0.6); }
        .cv-header .header-wrapper .details ul li a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          color: #007699;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease; }
          .cv-header .header-wrapper .details ul li a:hover {
            color: #1d3750; }
          .cv-header .header-wrapper .details ul li a .icon-wrap {
            width: 2.2rem;
            margin-right: 1em;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
        .cv-header .header-wrapper .details ul li svg {
          color: rgba(0, 118, 153, 0.6); }

.cv-header.clerk .header-wrapper .details ul li:first-child a svg {
  -webkit-transform: none;
          transform: none;
  width: unset; }

.page-body .container main.cv {
  padding-bottom: 0; }
  .page-body .container main.cv .accordion {
    margin-top: 0; }

.page-body .container main .cv-intro {
  margin-bottom: 7rem; }
  @media screen and (max-width: 1439px) {
    .page-body .container main .cv-intro {
      margin-bottom: 5.5rem; } }
  @media screen and (max-width: 1279px) {
    .page-body .container main .cv-intro {
      margin-bottom: 4.5rem; } }
  .page-body .container main .cv-intro > p:first-child {
    font-weight: 400;
    color: #1d3750; }
  .page-body .container main .cv-intro .more {
    display: none; }
    .page-body .container main .cv-intro .more + button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-bottom: 0.1rem solid #007699;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 1.8rem;
      font-weight: 600;
      color: rgba(0, 118, 153, 0.8);
      cursor: pointer;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media screen and (max-width: 1599px) {
        .page-body .container main .cv-intro .more + button {
          font-size: 1.6rem; } }
      @media screen and (max-width: 639px) {
        .page-body .container main .cv-intro .more + button {
          font-size: 1.5rem; } }
      @media screen and (max-width: 500px) {
        .page-body .container main .cv-intro .more + button {
          font-size: 1.4rem; } }
      .page-body .container main .cv-intro .more + button.active svg {
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg); }
      .page-body .container main .cv-intro .more + button:hover {
        color: #007699; }
        .page-body .container main .cv-intro .more + button:hover svg path {
          fill: #007699; }
      .page-body .container main .cv-intro .more + button svg {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        width: 1.4rem;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
        @media screen and (max-width: 1279px) {
          .page-body .container main .cv-intro .more + button svg {
            width: 1.1rem; } }
        @media screen and (max-width: 500px) {
          .page-body .container main .cv-intro .more + button svg {
            width: 0.9rem; } }
        .page-body .container main .cv-intro .more + button svg path {
          -webkit-transition: fill 0.3s ease;
          transition: fill 0.3s ease;
          fill: rgba(0, 118, 153, 0.6); }

.page-body .container main .expertise ul li {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1em;
  line-height: 1.3;
  padding-left: 1em;
  position: relative; }
  .page-body .container main .expertise ul li:last-child {
    margin-bottom: 0; }
  .page-body .container main .expertise ul li::before {
    content: "■";
    color: #007699;
    position: absolute;
    top: 0;
    left: 0; }
  .page-body .container main .expertise ul li strong {
    font-weight: 600;
    font-style: italic;
    color: #1d3750; }
  .page-body .container main .expertise ul li em {
    font-style: italic; }

.page-body .container main .cases p:first-child {
  color: #007699; }

.page-body .container main .cases ul li {
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1em;
  line-height: 1.3;
  padding-left: 1em;
  position: relative; }
  .page-body .container main .cases ul li:last-child {
    margin-bottom: 0; }
  .page-body .container main .cases ul li::before {
    content: "■";
    color: #007699;
    position: absolute;
    top: 0;
    left: 0; }
  .page-body .container main .cases ul li strong {
    font-weight: 600;
    font-style: italic;
    color: #1d3750; }

.page-body .container main .quotes blockquote {
  margin-bottom: 2.25em; }
  .page-body .container main .quotes blockquote cite {
    color: #1d3750;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    color: #1d3750;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.125em;
    display: block;
    line-height: 1.4; }
    .page-body .container main .quotes blockquote cite span {
      font-weight: 400;
      color: #007699; }
  .page-body .container main .quotes blockquote p {
    margin-bottom: 0; }
    .page-body .container main .quotes blockquote p em {
      font-style: italic; }

.awards-bar {
  margin: 6rem 0 3.5rem; }
  @media screen and (max-width: 1599px) {
    .awards-bar {
      margin: 5rem 0 2.5rem; } }
  @media screen and (max-width: 1279px) {
    .awards-bar {
      margin-bottom: 2rem; } }
  @media screen and (max-width: 1023px) {
    .awards-bar {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 1.5rem;
      margin-top: 2.5rem; } }
  @media screen and (max-width: 639px) {
    .awards-bar {
      margin: 1.5rem 0; } }
  @media screen and (max-width: 500px) {
    .awards-bar {
      margin: 0.5rem 0 1rem; } }
  .awards-bar h2 {
    font-size: 2.4rem;
    font-weight: 600;
    border-top: 0.1rem solid #1d3750;
    margin-bottom: 1.25em;
    padding-top: 0.35em; }
    @media screen and (max-width: 1279px) {
      .awards-bar h2 {
        font-size: 2.2rem; } }
    @media screen and (max-width: 500px) {
      .awards-bar h2 {
        font-size: 2rem; } }
  .awards-bar .awards-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .awards-bar .awards-container .award-box {
      width: calc(33.333333333% - 2rem);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-bottom: 4rem; }
      @media screen and (max-width: 1023px) {
        .awards-bar .awards-container .award-box {
          width: calc(50% - 1.5rem); } }
      @media screen and (max-width: 767px) {
        .awards-bar .awards-container .award-box {
          width: 100%; } }
      @media screen and (max-width: 500px) {
        .awards-bar .awards-container .award-box {
          margin-bottom: 3rem; } }
      .awards-bar .awards-container .award-box .award-wrapper {
        margin-bottom: 4rem;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; }
        @media screen and (max-width: 1439px) {
          .awards-bar .awards-container .award-box .award-wrapper {
            margin-bottom: 3.5rem; } }
        @media screen and (max-width: 1023px) {
          .awards-bar .awards-container .award-box .award-wrapper {
            margin-bottom: 2.5rem; } }
        @media screen and (max-width: 500px) {
          .awards-bar .awards-container .award-box .award-wrapper {
            margin-bottom: 2rem; } }
        .awards-bar .awards-container .award-box .award-wrapper img {
          max-width: 22.5rem; }
      .awards-bar .awards-container .award-box h3,
      .awards-bar .awards-container .award-box h4 {
        font-size: 2.2rem;
        font-weight: 400;
        color: #1d3750; }
        @media screen and (max-width: 1439px) {
          .awards-bar .awards-container .award-box h3,
          .awards-bar .awards-container .award-box h4 {
            font-size: 2rem; } }
        @media screen and (max-width: 1279px) {
          .awards-bar .awards-container .award-box h3,
          .awards-bar .awards-container .award-box h4 {
            font-size: 1.7rem; } }
      .awards-bar .awards-container .award-box h4 {
        font-weight: 300; }

.listing-wrapper section .clerks-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (max-width: 1023px) {
    .listing-wrapper section .clerks-wrapper {
      display: block; } }
  .listing-wrapper section .clerks-wrapper .clerks-block {
    width: 50%; }
    @media screen and (max-width: 1279px) {
      .listing-wrapper section .clerks-wrapper .clerks-block {
        width: 33.333333%; } }
    @media screen and (max-width: 1023px) {
      .listing-wrapper section .clerks-wrapper .clerks-block {
        width: 100%;
        margin-bottom: 4rem; } }
    @media screen and (max-width: 767px) {
      .listing-wrapper section .clerks-wrapper .clerks-block {
        margin-bottom: 3rem; } }
    @media screen and (max-width: 639px) {
      .listing-wrapper section .clerks-wrapper .clerks-block {
        margin-bottom: 2rem; } }
    @media screen and (max-width: 500px) {
      .listing-wrapper section .clerks-wrapper .clerks-block {
        margin-bottom: 1.5rem; } }
    .listing-wrapper section .clerks-wrapper .clerks-block:last-child {
      margin-bottom: 0; }
    .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing {
      margin-right: 0; }
      @media screen and (max-width: 1279px) {
        .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing {
          margin-right: 0.5rem; } }
      @media screen and (max-width: 1023px) {
        .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing {
          margin: 0 -1.5rem; } }
      .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing .profile-card.clerk {
        width: 50%; }
        @media screen and (max-width: 1279px) {
          .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing .profile-card.clerk {
            width: 100%; } }
        @media screen and (max-width: 1023px) {
          .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing .profile-card.clerk {
            width: 50%; } }
        @media screen and (max-width: 639px) {
          .listing-wrapper section .clerks-wrapper .clerks-block .profile-listing .profile-card.clerk {
            width: 100%; } }
    @media screen and (max-width: 1279px) {
      .listing-wrapper section .clerks-wrapper .clerks-block.double {
        width: 66.66666666666%; } }
    @media screen and (max-width: 1023px) {
      .listing-wrapper section .clerks-wrapper .clerks-block.double {
        width: 100%; } }
    .listing-wrapper section .clerks-wrapper .clerks-block.double h2 {
      padding-left: 1.5rem; }
      @media screen and (max-width: 1023px) {
        .listing-wrapper section .clerks-wrapper .clerks-block.double h2 {
          padding-left: 0; } }
    .listing-wrapper section .clerks-wrapper .clerks-block.double .profile-listing {
      margin-left: 0;
      margin-right: -1.5rem; }
      @media screen and (max-width: 1279px) {
        .listing-wrapper section .clerks-wrapper .clerks-block.double .profile-listing {
          margin-left: -0.5rem; } }
      @media screen and (max-width: 1023px) {
        .listing-wrapper section .clerks-wrapper .clerks-block.double .profile-listing {
          margin: 0 -1.5rem; } }
      .listing-wrapper section .clerks-wrapper .clerks-block.double .profile-listing .profile-card.clerk {
        width: 50%; }
        @media screen and (max-width: 639px) {
          .listing-wrapper section .clerks-wrapper .clerks-block.double .profile-listing .profile-card.clerk {
            width: 100%; } }

.listing-wrapper section .profile-listing .profile-card.clerk .profile-text h4 a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease; }
  .listing-wrapper section .profile-listing .profile-card.clerk .profile-text h4 a:hover {
    color: #1d3750; }

.listing-wrapper section .profile-listing .profile-card.clerk .profile-text h4.email {
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-top: 1em; }
  .listing-wrapper section .profile-listing .profile-card.clerk .profile-text h4.email:hover svg {
    opacity: 1; }
  .listing-wrapper section .profile-listing .profile-card.clerk .profile-text h4.email svg {
    width: auto;
    margin-right: 1rem; }

.page-header {
  position: relative;
  margin-bottom: 7rem; }
  @media screen and (max-width: 1599px) {
    .page-header {
      margin-bottom: 5.5rem; } }
  @media screen and (max-width: 1279px) {
    .page-header {
      margin-bottom: 4.4rem; } }
  @media screen and (max-width: 1023px) {
    .page-header {
      margin-bottom: 3.5rem; } }
  @media screen and (max-width: 500px) {
    .page-header {
      margin-bottom: 3rem; } }
  .page-header::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #1d3750;
    bottom: 10rem;
    position: absolute; }
    @media screen and (max-width: 1279px) {
      .page-header::before {
        bottom: 8rem; } }
    @media screen and (max-width: 767px) {
      .page-header::before {
        bottom: 7.5rem; } }
    @media screen and (max-width: 639px) {
      .page-header::before {
        bottom: 7rem; } }
  .page-header .header-image {
    position: relative;
    padding-bottom: 33%; }
    @media screen and (max-width: 1439px) {
      .page-header .header-image {
        padding-bottom: 36%; } }
    @media screen and (max-width: 1023px) {
      .page-header .header-image {
        padding-bottom: 41%; } }
    @media screen and (max-width: 767px) {
      .page-header .header-image {
        padding-bottom: 45%; } }
    @media screen and (max-width: 639px) {
      .page-header .header-image {
        padding-bottom: 55%; } }
    @media screen and (max-width: 500px) {
      .page-header .header-image {
        padding-bottom: 65%; } }
    .page-header .header-image::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 75%;
      height: 100%;
      z-index: 2;
      opacity: 0.9;
      background: -webkit-gradient(linear, left top, right top, from(#ebeaf1), to(rgba(235, 234, 241, 0)));
      background: linear-gradient(to right, #ebeaf1 0%, rgba(235, 234, 241, 0) 100%); }
      @media screen and (max-width: 639px) {
        .page-header .header-image::before {
          width: 100%;
          background: -webkit-gradient(linear, left top, right top, color-stop(20%, #ebeaf1), to(rgba(235, 234, 241, 0)));
          background: linear-gradient(to right, #ebeaf1 20%, rgba(235, 234, 241, 0) 100%); } }
    .page-header .header-image img {
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
    .page-header .header-image h1,
    .page-header .header-image h2 {
      font-weight: 400;
      position: absolute;
      top: 6rem;
      left: 6rem;
      z-index: 2; }
      @media screen and (max-width: 1439px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          top: 5rem;
          left: 5rem; } }
      @media screen and (max-width: 1279px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          top: 4rem;
          left: 4rem; } }
      @media screen and (max-width: 1023px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          top: 3.5rem;
          left: 3.5rem;
          font-size: 3.2rem; } }
      @media screen and (max-width: 767px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          font-size: 2.8rem;
          top: 3rem;
          left: 3rem; } }
      @media screen and (max-width: 639px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          font-size: 2.4rem; } }
      @media screen and (max-width: 500px) {
        .page-header .header-image h1,
        .page-header .header-image h2 {
          font-size: 2.2rem; } }

.page-intro {
  font-size: 2.6rem;
  margin-bottom: 2.5em;
  color: #1d3750;
  line-height: 1.25;
  width: 75%; }
  @media screen and (max-width: 1599px) {
    .page-intro {
      font-size: 2.4rem; } }
  @media screen and (max-width: 1279px) {
    .page-intro {
      margin-bottom: 2em;
      font-size: 2.2rem; } }
  @media screen and (max-width: 1023px) {
    .page-intro {
      width: 100%;
      font-size: 2rem;
      margin-bottom: 1.5em; } }
  @media screen and (max-width: 767px) {
    .page-intro {
      font-size: 1.9rem; } }
  @media screen and (max-width: 639px) {
    .page-intro {
      margin-bottom: 1.25em; } }
  @media screen and (max-width: 500px) {
    .page-intro {
      font-size: 1.8rem; } }
  .page-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.75em;
    font-weight: 600; }
    @media screen and (max-width: 1599px) {
      .page-intro h2 {
        font-size: 2.2rem; } }
    @media screen and (max-width: 1279px) {
      .page-intro h2 {
        font-size: 2rem;
        margin-bottom: 1.5em; } }
    @media screen and (max-width: 1023px) {
      .page-intro h2 {
        margin-bottom: 1.35em; } }
    @media screen and (max-width: 639px) {
      .page-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 1em; } }
    @media screen and (max-width: 500px) {
      .page-intro h2 {
        font-size: 1.7rem;
        margin-top: 0.9em; } }
  .page-intro p {
    font-size: 2.2rem;
    margin-bottom: 1.5em;
    font-weight: 300; }
    @media screen and (max-width: 1599px) {
      .page-intro p {
        font-size: 2rem; } }
    @media screen and (max-width: 1279px) {
      .page-intro p {
        font-size: 1.8rem; } }
    @media screen and (max-width: 639px) {
      .page-intro p {
        font-size: 1.7rem; } }
    @media screen and (max-width: 500px) {
      .page-intro p {
        font-size: 1.6rem;
        margin-bottom: 1.25em; } }
    .page-intro p:first-child {
      font-size: 1em;
      font-weight: 400; }
    .page-intro p:last-child {
      margin-bottom: 0; }

.page-body .container main.extra-margin {
  margin-top: 3rem; }
  @media screen and (max-width: 1023px) {
    .page-body .container main.extra-margin {
      margin-top: 0; } }

.page-body .container aside .aside-block.timeline h2,
.page-body .container aside .aside-block.timeline h3 {
  font-size: 2.4rem; }
  @media screen and (max-width: 1599px) {
    .page-body .container aside .aside-block.timeline h2,
    .page-body .container aside .aside-block.timeline h3 {
      font-size: 2.2rem; } }
  @media screen and (max-width: 1279px) {
    .page-body .container aside .aside-block.timeline h2,
    .page-body .container aside .aside-block.timeline h3 {
      font-size: 2rem; } }
  @media screen and (max-width: 1023px) {
    .page-body .container aside .aside-block.timeline h2,
    .page-body .container aside .aside-block.timeline h3 {
      font-size: 2.2rem; } }
  @media screen and (max-width: 639px) {
    .page-body .container aside .aside-block.timeline h2,
    .page-body .container aside .aside-block.timeline h3 {
      font-size: 2rem; } }
  @media screen and (max-width: 500px) {
    .page-body .container aside .aside-block.timeline h2,
    .page-body .container aside .aside-block.timeline h3 {
      font-size: 1.8rem; } }

.page-body .container aside .aside-block.timeline h2 {
  color: #1d3750;
  margin-bottom: 0.9em; }
  @media screen and (max-width: 1439px) {
    .page-body .container aside .aside-block.timeline h2 {
      margin-bottom: 0.75em; } }

.page-body .container aside .aside-block.timeline h3 {
  color: rgba(0, 118, 153, 0.8);
  letter-spacing: 0.1em;
  margin-bottom: 2em; }
  @media screen and (max-width: 1919px) {
    .page-body .container aside .aside-block.timeline h3 {
      margin-bottom: 1.5em; } }
  @media screen and (max-width: 1279px) {
    .page-body .container aside .aside-block.timeline h3 {
      margin-bottom: 1.25em; } }
  @media screen and (max-width: 1023px) {
    .page-body .container aside .aside-block.timeline h3 {
      margin-bottom: 1.5em; } }
  @media screen and (max-width: 500px) {
    .page-body .container aside .aside-block.timeline h3 {
      margin-bottom: 1.125em; } }

.page-body .container aside .aside-block.timeline h4,
.page-body .container aside .aside-block.timeline h5 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1d3750;
  line-height: 1.3; }
  @media screen and (max-width: 1599px) {
    .page-body .container aside .aside-block.timeline h4,
    .page-body .container aside .aside-block.timeline h5 {
      font-size: 2rem; } }
  @media screen and (max-width: 1279px) {
    .page-body .container aside .aside-block.timeline h4,
    .page-body .container aside .aside-block.timeline h5 {
      font-size: 1.8rem; } }
  @media screen and (max-width: 1023px) {
    .page-body .container aside .aside-block.timeline h4,
    .page-body .container aside .aside-block.timeline h5 {
      font-size: 2rem; } }
  @media screen and (max-width: 639px) {
    .page-body .container aside .aside-block.timeline h4,
    .page-body .container aside .aside-block.timeline h5 {
      font-size: 1.8rem; } }
  @media screen and (max-width: 500px) {
    .page-body .container aside .aside-block.timeline h4,
    .page-body .container aside .aside-block.timeline h5 {
      font-size: 1.6rem; } }

.page-body .container aside .aside-block.timeline h5 {
  color: rgba(0, 118, 153, 0.8);
  margin-bottom: 0.2em; }

.views {
  border-top: 0.1rem solid #1d3750;
  padding-top: 1rem; }
  @media screen and (max-width: 1023px) {
    .views {
      margin: 5rem 0 0; } }
  @media screen and (max-width: 639px) {
    .views {
      margin-top: 4rem; } }
  .views h2 {
    font-size: 2.4rem;
    font-weight: 600; }
    @media screen and (max-width: 639px) {
      .views h2 {
        font-size: 2.2rem; } }
    @media screen and (max-width: 500px) {
      .views h2 {
        font-size: 2rem; } }
  .views .view-slider {
    margin: 8rem 0 20rem; }
    @media screen and (max-width: 1919px) {
      .views .view-slider {
        margin: 6rem 0 15rem; } }
    @media screen and (max-width: 1439px) {
      .views .view-slider {
        margin: 5rem 0 11rem; } }
    @media screen and (max-width: 1023px) {
      .views .view-slider {
        margin-top: 4rem; } }
    @media screen and (max-width: 767px) {
      .views .view-slider {
        margin-bottom: 10rem; } }
    @media screen and (max-width: 639px) {
      .views .view-slider {
        margin-bottom: 9rem; } }
    @media screen and (max-width: 500px) {
      .views .view-slider {
        margin: 3rem 0 8rem; } }
    .views .view-slider .slick-dots {
      left: 25%;
      padding-left: 3rem;
      text-align: left;
      bottom: -8rem; }
      @media screen and (max-width: 1919px) {
        .views .view-slider .slick-dots {
          bottom: -6.5rem; } }
      @media screen and (max-width: 1439px) {
        .views .view-slider .slick-dots {
          bottom: -5rem; } }
      @media screen and (max-width: 1279px) {
        .views .view-slider .slick-dots {
          left: 33.33333333%; } }
      @media screen and (max-width: 1023px) {
        .views .view-slider .slick-dots {
          left: 0;
          padding-left: 0; } }
      @media screen and (max-width: 767px) {
        .views .view-slider .slick-dots {
          bottom: -4.5rem; } }
      @media screen and (max-width: 639px) {
        .views .view-slider .slick-dots {
          bottom: -4rem; } }
      @media screen and (max-width: 500px) {
        .views .view-slider .slick-dots {
          -webkit-transform: scale(0.9);
                  transform: scale(0.9);
          -webkit-transform-origin: left center;
                  transform-origin: left center; } }
      .views .view-slider .slick-dots li {
        width: 1rem;
        height: 1rem;
        margin-right: 1rem; }
        .views .view-slider .slick-dots li.slick-active button::before {
          background: #1d3750; }
        .views .view-slider .slick-dots li button {
          height: 100%;
          width: 100%; }
          .views .view-slider .slick-dots li button::before {
            height: 100%;
            width: 100%;
            content: "";
            border: 0.1rem solid #1d3750;
            opacity: 1;
            border-radius: 100%;
            background: transparent;
            -webkit-transition: background 0.3s ease;
            transition: background 0.3s ease; }
    .views .view-slider .view-slide {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 1023px) {
        .views .view-slider .view-slide {
          display: block; } }
      .views .view-slider .view-slide .profile-card {
        width: 25%;
        padding-right: 1.5rem;
        display: block; }
        @media screen and (max-width: 1279px) {
          .views .view-slider .view-slide .profile-card {
            width: 33.33333333%; } }
        @media screen and (max-width: 1023px) {
          .views .view-slider .view-slide .profile-card {
            width: 50%;
            margin-bottom: 4rem; } }
        @media screen and (max-width: 767px) {
          .views .view-slider .view-slide .profile-card {
            margin-bottom: 3.5rem; } }
        @media screen and (max-width: 639px) {
          .views .view-slider .view-slide .profile-card {
            width: 100%;
            padding-right: 0;
            margin-bottom: 3rem; } }
        @media screen and (max-width: 500px) {
          .views .view-slider .view-slide .profile-card {
            margin-bottom: 2.5rem; } }
      .views .view-slider .view-slide .text {
        width: 75%;
        padding-left: 3rem; }
        @media screen and (max-width: 1279px) {
          .views .view-slider .view-slide .text {
            width: 66.666666666%; } }
        @media screen and (max-width: 1023px) {
          .views .view-slider .view-slide .text {
            width: 100%;
            padding-left: 0; } }
        .views .view-slider .view-slide .text blockquote {
          color: #007699;
          font-weight: 600;
          font-style: italic;
          font-size: 2.6rem;
          margin-bottom: 1.4em; }
          @media screen and (max-width: 1599px) {
            .views .view-slider .view-slide .text blockquote {
              font-size: 2.4rem;
              margin-bottom: 1.25em; } }
          @media screen and (max-width: 1279px) {
            .views .view-slider .view-slide .text blockquote {
              font-size: 2.2rem; } }
          @media screen and (max-width: 1023px) {
            .views .view-slider .view-slide .text blockquote {
              font-size: 2.4rem;
              margin-bottom: 1.125em; } }
          @media screen and (max-width: 767px) {
            .views .view-slider .view-slide .text blockquote {
              font-size: 2.2rem; } }
          @media screen and (max-width: 500px) {
            .views .view-slider .view-slide .text blockquote {
              font-size: 2rem; } }
        .views .view-slider .view-slide .text p {
          font-weight: 300;
          line-height: 1.3;
          font-size: 2.2rem;
          margin-bottom: 1.5em; }
          @media screen and (max-width: 1599px) {
            .views .view-slider .view-slide .text p {
              font-size: 2rem; } }
          @media screen and (max-width: 1279px) {
            .views .view-slider .view-slide .text p {
              font-size: 1.8rem; } }
          @media screen and (max-width: 639px) {
            .views .view-slider .view-slide .text p {
              font-size: 1.7rem; } }
          @media screen and (max-width: 500px) {
            .views .view-slider .view-slide .text p {
              font-size: 1.6rem;
              margin-bottom: 1.25em; } }

.listing-page .filters {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
  margin: 8rem 0; }
  @media screen and (max-width: 1919px) {
    .listing-page .filters {
      margin: 7rem 0 8rem; } }
  @media screen and (max-width: 1439px) {
    .listing-page .filters {
      margin: 6rem 0; } }
  @media screen and (max-width: 1279px) {
    .listing-page .filters {
      margin: 4.5rem 0 5rem; } }
  @media screen and (max-width: 767px) {
    .listing-page .filters {
      margin: 3.5rem 0 4rem; } }
  @media screen and (max-width: 639px) {
    .listing-page .filters {
      margin-bottom: 1.5rem; } }
  @media screen and (max-width: 500px) {
    .listing-page .filters {
      margin: 3rem 0 1rem; } }
  @media screen and (max-width: 1279px) {
    .listing-page .filters > * {
      width: calc(50% - 1.5rem);
      margin-bottom: 0; } }
  @media screen and (max-width: 639px) {
    .listing-page .filters > * {
      width: 100%;
      margin-bottom: 2.5rem; } }

.listing-page .news-grid {
  padding-bottom: 4rem;
  margin: 0; }
  @media screen and (max-width: 1279px) {
    .listing-page .news-grid {
      padding-bottom: 3rem; } }
  @media screen and (max-width: 767px) {
    .listing-page .news-grid {
      padding-bottom: 2rem; } }
  @media screen and (max-width: 500px) {
    .listing-page .news-grid {
      padding-bottom: 1rem; } }
  .listing-page .news-grid .news-item:hover .news-text {
    background: #1d3750; }
    .listing-page .news-grid .news-item:hover .news-text h3,
    .listing-page .news-grid .news-item:hover .news-text p {
      color: white; }
  .listing-page .news-grid .news-item .news-text {
    border: 0.1rem solid #007699; }
    .listing-page .news-grid .news-item .news-text h3 {
      color: #1d3750; }
    .listing-page .news-grid .news-item .news-text p {
      color: rgba(0, 0, 0, 0.8); }
      .listing-page .news-grid .news-item .news-text p.more {
        color: #007699; }
        .listing-page .news-grid .news-item .news-text p.more path {
          fill: #007699; }
  .listing-page .news-grid .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 4.5rem;
    border-top: 0.1rem solid rgba(29, 55, 80, 0.75); }
    @media screen and (max-width: 1279px) {
      .listing-page .news-grid .pagination {
        padding-top: 3.5rem; } }
    @media screen and (max-width: 500px) {
      .listing-page .news-grid .pagination {
        padding-top: 3rem; } }
    .listing-page .news-grid .pagination li {
      font-size: 1.8rem;
      margin-right: 0.85em; }
      .listing-page .news-grid .pagination li:last-child {
        margin-right: 0; }
      @media screen and (max-width: 500px) {
        .listing-page .news-grid .pagination li {
          font-size: 1.7rem; } }
      .listing-page .news-grid .pagination li a {
        font-weight: 300; }
      .listing-page .news-grid .pagination li a.active {
        font-weight: 600; }

article.page-body .container main {
  width: 66.66666666%; }
  @media screen and (max-width: 1023px) {
    article.page-body .container main {
      width: 100%; } }

article.page-body .container aside {
  width: 33.33333333333%; }
  @media screen and (max-width: 1023px) {
    article.page-body .container aside {
      width: 100%; } }

.article-listing {
  padding-bottom: 10rem; }
  @media screen and (max-width: 1599px) {
    .article-listing {
      padding-bottom: 9rem; } }
  @media screen and (max-width: 1439px) {
    .article-listing {
      padding-bottom: 8rem; } }
  @media screen and (max-width: 1023px) {
    .article-listing {
      padding-bottom: 6rem; } }
  @media screen and (max-width: 639px) {
    .article-listing {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 500px) {
    .article-listing {
      padding-bottom: 4.5rem; } }
  .article-listing article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 7rem; }
    @media screen and (max-width: 1439px) {
      .article-listing article {
        margin-bottom: 6rem; } }
    @media screen and (max-width: 1279px) {
      .article-listing article {
        margin-bottom: 5rem; } }
    @media screen and (max-width: 1023px) {
      .article-listing article {
        display: block; } }
    @media screen and (max-width: 639px) {
      .article-listing article {
        margin-bottom: 4rem; } }
    @media screen and (max-width: 500px) {
      .article-listing article {
        margin-bottom: 3.5rem; } }
    .article-listing article:last-child {
      margin-bottom: 0; }
    .article-listing article .info {
      width: calc(66.6666666666% - 1.5rem);
      padding-right: 3rem;
      border-top: 0.1rem solid #1d3750;
      border-bottom: 0.1rem solid #007699;
      padding: 1rem 0 7rem; }
      @media screen and (max-width: 1023px) {
        .article-listing article .info {
          width: 100%;
          padding-right: 0;
          border-bottom: none;
          padding-bottom: 5rem; } }
      @media screen and (max-width: 639px) {
        .article-listing article .info {
          padding-bottom: 4rem; } }
      @media screen and (max-width: 500px) {
        .article-listing article .info {
          padding-bottom: 3rem; } }
      .article-listing article .info table {
        width: 100%;
        border: 0.1rem solid #007699; }
        .article-listing article .info table td {
          border-bottom: 0.1rem solid #007699;
          padding: 0.5rem;
          font-size: 1.5rem; }
      .article-listing article .info h2 {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1.5em; }
        @media screen and (max-width: 1279px) {
          .article-listing article .info h2 {
            font-size: 2.2rem; } }
        @media screen and (max-width: 767px) {
          .article-listing article .info h2 {
            font-size: 2rem; } }
        @media screen and (max-width: 639px) {
          .article-listing article .info h2 {
            font-size: 1.8rem; } }
        @media screen and (max-width: 500px) {
          .article-listing article .info h2 {
            font-size: 1.6rem;
            margin-bottom: 1.25em; } }
      .article-listing article .info p {
        font-weight: 300;
        font-size: 2.2rem;
        margin-bottom: 1.5em; }
        @media screen and (max-width: 1599px) {
          .article-listing article .info p {
            font-size: 2rem; } }
        @media screen and (max-width: 1279px) {
          .article-listing article .info p {
            font-size: 1.8rem; } }
        @media screen and (max-width: 639px) {
          .article-listing article .info p {
            font-size: 1.7rem; } }
        @media screen and (max-width: 500px) {
          .article-listing article .info p {
            font-size: 1.6rem;
            margin-bottom: 1.25em; } }
        .article-listing article .info p:last-child {
          margin-bottom: 0; }
      .article-listing article .info ul li {
        font-weight: 300;
        font-size: 2rem; }
    .article-listing article aside {
      width: 33.333333333%;
      padding-left: 2rem; }
      @media screen and (max-width: 1023px) {
        .article-listing article aside {
          width: 100%;
          padding-left: 0; } }
      .article-listing article aside .aside-block {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0; }
        .article-listing article aside .aside-block div {
          padding: 3rem; }
          @media screen and (max-width: 1023px) {
            .article-listing article aside .aside-block div {
              padding-bottom: 0; } }
          @media screen and (max-width: 639px) {
            .article-listing article aside .aside-block div {
              padding-top: 2.5rem; } }
          @media screen and (max-width: 500px) {
            .article-listing article aside .aside-block div {
              padding-left: 2.5rem;
              padding-right: 2.5rem;
              padding-top: 2rem; } }
        .article-listing article aside .aside-block section {
          margin-top: 5.5rem;
          margin-bottom: 0; }
          @media screen and (max-width: 1919px) {
            .article-listing article aside .aside-block section {
              margin-top: 4.5rem; } }
          @media screen and (max-width: 1279px) {
            .article-listing article aside .aside-block section {
              margin-top: 4rem; } }
          @media screen and (max-width: 500px) {
            .article-listing article aside .aside-block section {
              margin-top: 3rem; } }
          @media screen and (max-width: 1023px) {
            .article-listing article aside .aside-block section:last-child {
              margin-bottom: 4rem; } }
          @media screen and (max-width: 639px) {
            .article-listing article aside .aside-block section:last-child {
              margin-bottom: 3.5rem; } }
          @media screen and (max-width: 500px) {
            .article-listing article aside .aside-block section:last-child {
              margin-bottom: 3rem; } }
        .article-listing article aside .aside-block .aside-button {
          margin-bottom: 0;
          padding: 2rem 3rem; }
          @media screen and (max-width: 1279px) {
            .article-listing article aside .aside-block .aside-button {
              padding: 1.5rem 3rem; } }
          @media screen and (max-width: 500px) {
            .article-listing article aside .aside-block .aside-button {
              padding-left: 2.5rem;
              padding-right: 2.5rem; } }
          .article-listing article aside .aside-block .aside-button:hover svg path {
            fill: white; }
          .article-listing article aside .aside-block .aside-button svg {
            -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
            display: block; }
            .article-listing article aside .aside-block .aside-button svg path {
              fill: #97a2a8;
              -webkit-transition: fill 0.3s ease;
              transition: fill 0.3s ease; }
          .article-listing article aside .aside-block .aside-button span,
          .article-listing article aside .aside-block .aside-button h3 {
            padding-left: 0; }
  .article-listing .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 4.5rem;
    border-top: 0.1rem solid rgba(29, 55, 80, 0.75); }
    @media screen and (max-width: 1279px) {
      .article-listing .pagination {
        padding-top: 3.5rem; } }
    @media screen and (max-width: 500px) {
      .article-listing .pagination {
        padding-top: 3rem; } }
    .article-listing .pagination li {
      font-size: 1.8rem;
      margin-right: 0.85em; }
      .article-listing .pagination li:last-child {
        margin-right: 0; }
      @media screen and (max-width: 500px) {
        .article-listing .pagination li {
          font-size: 1.7rem; } }
      .article-listing .pagination li a {
        font-weight: 300; }
      .article-listing .pagination li a.active {
        font-weight: 600; }

.article-listing article .info.has-read-more {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media screen and (max-width: 1023px) {
    .article-listing article .info.has-read-more {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 500px) {
    .article-listing article .info.has-read-more {
      margin-bottom: 2rem; } }
  .article-listing article .info.has-read-more .text-wrap p:last-child {
    margin-bottom: 1.5em; }
    @media screen and (max-width: 500px) {
      .article-listing article .info.has-read-more .text-wrap p:last-child {
        margin-bottom: 1.25em; } }
  .article-listing article .info.has-read-more .more {
    display: none; }
    .article-listing article .info.has-read-more .more p {
      margin-bottom: 1.5em; }
      @media screen and (max-width: 500px) {
        .article-listing article .info.has-read-more .more p {
          margin-bottom: 1.25em; } }
    .article-listing article .info.has-read-more .more + button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 1.8rem;
      font-weight: 600;
      color: rgba(0, 118, 153, 0.8);
      cursor: pointer;
      -webkit-transition: color 0.3s ease;
      transition: color 0.3s ease; }
      @media screen and (max-width: 1599px) {
        .article-listing article .info.has-read-more .more + button {
          font-size: 1.6rem; } }
      @media screen and (max-width: 639px) {
        .article-listing article .info.has-read-more .more + button {
          font-size: 1.5rem; } }
      @media screen and (max-width: 500px) {
        .article-listing article .info.has-read-more .more + button {
          font-size: 1.4rem; } }
      .article-listing article .info.has-read-more .more + button.active svg {
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg); }
      .article-listing article .info.has-read-more .more + button:hover {
        color: #007699; }
        .article-listing article .info.has-read-more .more + button:hover svg path {
          fill: #007699; }
      .article-listing article .info.has-read-more .more + button svg {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        width: 1.2rem;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
        @media screen and (max-width: 1279px) {
          .article-listing article .info.has-read-more .more + button svg {
            width: 1.1rem; } }
        @media screen and (max-width: 500px) {
          .article-listing article .info.has-read-more .more + button svg {
            width: 0.9rem; } }
        .article-listing article .info.has-read-more .more + button svg path {
          -webkit-transition: fill 0.3s ease;
          transition: fill 0.3s ease;
          fill: rgba(0, 118, 153, 0.6); }

.listing-page.cases .filters > * {
  width: calc(33.3333333% - 2rem); }
  @media screen and (max-width: 1023px) {
    .listing-page.cases .filters > * {
      width: calc(50% - 1.5rem); } }
  @media screen and (max-width: 639px) {
    .listing-page.cases .filters > * {
      width: 100%; } }

@media screen and (max-width: 1023px) {
  .listing-page.cases .filters form {
    width: 100%;
    margin-bottom: 2.5rem; } }

.listing-page.cases .article-listing article .info h2 {
  margin-bottom: 1.25em; }

.listing-page.cases .article-listing article .info h3 {
  text-transform: uppercase;
  color: rgba(0, 118, 153, 0.8);
  font-size: 1.8rem;
  margin-bottom: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 1279px) {
    .listing-page.cases .article-listing article .info h3 {
      font-size: 1.6rem; } }
  @media screen and (max-width: 500px) {
    .listing-page.cases .article-listing article .info h3 {
      font-size: 1.5rem; } }

.listing-page.cases .article-listing article aside .aside-block .aside-button svg {
  -webkit-transform: none;
          transform: none; }
  .listing-page.cases .article-listing article aside .aside-block .aside-button svg path {
    fill: white; }

aside.case-detail {
  padding-bottom: 9rem; }
  @media screen and (max-width: 1279px) {
    aside.case-detail {
      padding-bottom: 6rem; } }
  @media screen and (max-width: 1023px) {
    aside.case-detail {
      padding-bottom: 0; } }

.page-body.seminars {
  padding-bottom: 9rem; }
  @media screen and (max-width: 1279px) {
    .page-body.seminars {
      padding-bottom: 6rem; } }
  @media screen and (max-width: 1023px) {
    .page-body.seminars {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 500px) {
    .page-body.seminars {
      padding-bottom: 4rem; } }
  .page-body.seminars main {
    width: calc((7 / 12) * 100%); }
    @media screen and (max-width: 1023px) {
      .page-body.seminars main {
        width: 100%; } }
  .page-body.seminars aside {
    width: calc((5 / 12) * 100%); }
    @media screen and (max-width: 1023px) {
      .page-body.seminars aside {
        width: 100%; } }
    .page-body.seminars aside .aside-block {
      padding-bottom: 3.5rem; }
      @media screen and (max-width: 1023px) {
        .page-body.seminars aside .aside-block {
          padding-bottom: 3rem; } }
      .page-body.seminars aside .aside-block p:last-child {
        margin-bottom: 0; }

.side-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 6rem 0 5rem; }
  @media screen and (max-width: 1279px) {
    .side-logos {
      margin-bottom: 3rem; } }
  @media screen and (max-width: 1023px) {
    .side-logos {
      margin-bottom: 2rem; } }
  @media screen and (max-width: 767px) {
    .side-logos {
      margin-bottom: 1rem; } }
  @media screen and (max-width: 639px) {
    .side-logos {
      display: block;
      margin-bottom: 0; } }
  @media screen and (max-width: 500px) {
    .side-logos {
      margin-top: 4rem; } }
  .side-logos li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3.5rem;
    border-bottom: 0.1rem solid #007699;
    padding-bottom: 3rem; }
    @media screen and (max-width: 1023px) {
      .side-logos li {
        width: calc(50% - 2rem);
        margin-bottom: 4rem; } }
    @media screen and (max-width: 639px) {
      .side-logos li {
        width: 100%; } }
    @media screen and (max-width: 500px) {
      .side-logos li {
        margin-bottom: 3.5rem; } }
    .side-logos li:first-child {
      border-top: 0.1rem solid #007699;
      padding-top: 3rem; }
    @media screen and (max-width: 1023px) {
      .side-logos li:nth-child(2) {
        border-top: 0.1rem solid #007699;
        padding-top: 3rem; } }
    @media screen and (max-width: 639px) {
      .side-logos li:nth-child(2) {
        padding-top: 0;
        border-top: none; } }
    .side-logos li .logo-wrapper {
      margin-bottom: 3rem; }
      .side-logos li .logo-wrapper img {
        max-width: 16rem;
        max-height: 16rem;
        width: auto;
        margin-bottom: 0;
        display: block; }
        @media screen and (max-width: 1279px) {
          .side-logos li .logo-wrapper img {
            max-height: 13rem;
            max-width: 13rem; } }
        @media screen and (max-width: 1023px) {
          .side-logos li .logo-wrapper img {
            max-height: 10rem;
            max-width: 10rem; } }
        @media screen and (max-width: 500px) {
          .side-logos li .logo-wrapper img {
            max-height: 9rem;
            max-width: 9rem; } }
    .side-logos li h3,
    .side-logos li h4 {
      font-size: 1.8rem; }
      @media screen and (max-width: 767px) {
        .side-logos li h3,
        .side-logos li h4 {
          font-size: 1.6rem; } }
    .side-logos li h3 {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
      color: #1d3750;
      margin-bottom: 0.2em; }
    .side-logos li h4 {
      font-weight: 400;
      color: rgba(0, 118, 153, 0.8); }

.contact-details {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2; }
  @media screen and (max-width: 639px) {
    .contact-details {
      -webkit-column-count: 1;
         -moz-column-count: 1;
              column-count: 1; } }

.map-wrapper {
  padding-bottom: 40%;
  position: relative;
  background: black;
  margin-top: 5rem; }
  @media screen and (max-width: 1279px) {
    .map-wrapper {
      padding-bottom: 50%;
      margin-top: 4rem; } }
  @media screen and (max-width: 1023px) {
    .map-wrapper {
      padding-bottom: 65%;
      margin-top: 3rem; } }
  @media screen and (max-width: 639px) {
    .map-wrapper {
      margin-top: 1rem; } }
  @media screen and (max-width: 500px) {
    .map-wrapper {
      padding-bottom: 85%;
      margin-top: 0; } }
  .map-wrapper #map {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }

.expertise-listing.internal {
  margin-top: 0;
  padding: 8rem 0 5rem; }
  @media screen and (max-width: 1439px) {
    .expertise-listing.internal {
      padding: 6rem 0 3rem; } }
  @media screen and (max-width: 1023px) {
    .expertise-listing.internal {
      padding: 4.5rem 0 2rem;
      margin-top: 4rem; } }
  @media screen and (max-width: 500px) {
    .expertise-listing.internal {
      padding: 3.5rem 0 1rem;
      margin-top: 3.5rem; } }
  .expertise-listing.internal .grid {
    margin-top: 0; }

.application-form {
  margin-bottom: 15rem; }
  @media screen and (max-width: 1559px) {
    .application-form {
      marging-bottom: 12.5rem; } }
  @media screen and (max-width: 1279px) {
    .application-form {
      margin-bottom: 10rem; } }
  @media screen and (max-width: 1023px) {
    .application-form {
      margin: 5rem 0 6rem; } }
  @media screen and (max-width: 639px) {
    .application-form {
      margin-bottom: 5rem; } }
  @media screen and (max-width: 500px) {
    .application-form {
      margin: 3rem 0 4.5rem; } }
  .application-form h2 {
    font-weight: 600;
    margin-bottom: 1.5em; }
  .application-form h3 {
    color: #007699;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 1.5em; }
    @media screen and (max-width: 1599px) {
      .application-form h3 {
        font-size: 2.2rem; } }
    @media screen and (max-width: 1439px) {
      .application-form h3 {
        margin-bottom: 1.25em; } }
    @media screen and (max-width: 1279px) {
      .application-form h3 {
        font-size: 2rem; } }
    @media screen and (max-width: 639px) {
      .application-form h3 {
        font-size: 1.8rem;
        margin-bottom: 1em; } }
    @media screen and (max-width: 500px) {
      .application-form h3 {
        font-size: 1.7rem; } }
  .application-form p {
    font-size: 2.2rem;
    margin-bottom: 1.5em;
    font-weight: 300;
    margin-bottom: 1.5em; }
    @media screen and (max-width: 1599px) {
      .application-form p {
        font-size: 2rem; } }
    @media screen and (max-width: 1279px) {
      .application-form p {
        font-size: 1.8rem; } }
    @media screen and (max-width: 639px) {
      .application-form p {
        font-size: 1.7rem; } }
    @media screen and (max-width: 500px) {
      .application-form p {
        font-size: 1.6rem;
        margin-bottom: 1.25em; } }
    .application-form p strong {
      font-weight: 600; }
  .application-form form section {
    margin-bottom: 7rem; }
    @media screen and (max-width: 1439px) {
      .application-form form section {
        margin-bottom: 6rem; } }
    @media screen and (max-width: 1279px) {
      .application-form form section {
        margin-bottom: 5rem; } }
    @media screen and (max-width: 767px) {
      .application-form form section {
        margin-bottom: 4.5rem; } }
    @media screen and (max-width: 639px) {
      .application-form form section {
        margin-bottom: 4rem; } }
    @media screen and (max-width: 500px) {
      .application-form form section {
        margin-bottom: 3.5rem; } }
  .application-form form input[type='text'],
  .application-form form input[type='email'],
  .application-form form textarea {
    background: #ebeaf1;
    width: 100%;
    font-size: 1.4rem;
    height: 3.5em;
    padding: 0 1.3em;
    color: #1d3750; }
    @media screen and (max-width: 500px) {
      .application-form form input[type='text'],
      .application-form form input[type='email'],
      .application-form form textarea {
        font-size: 1.3rem; } }
    .application-form form input[type='text']::-webkit-input-placeholder, .application-form form input[type='email']::-webkit-input-placeholder, .application-form form textarea::-webkit-input-placeholder {
      text-transform: uppercase;
      letter-spacing: 0.1em; }
    .application-form form input[type='text']::-moz-placeholder, .application-form form input[type='email']::-moz-placeholder, .application-form form textarea::-moz-placeholder {
      text-transform: uppercase;
      letter-spacing: 0.1em; }
    .application-form form input[type='text']:-ms-input-placeholder, .application-form form input[type='email']:-ms-input-placeholder, .application-form form textarea:-ms-input-placeholder {
      text-transform: uppercase;
      letter-spacing: 0.1em; }
    .application-form form input[type='text']::-ms-input-placeholder, .application-form form input[type='email']::-ms-input-placeholder, .application-form form textarea::-ms-input-placeholder {
      text-transform: uppercase;
      letter-spacing: 0.1em; }
    .application-form form input[type='text']::placeholder,
    .application-form form input[type='email']::placeholder,
    .application-form form textarea::placeholder {
      text-transform: uppercase;
      letter-spacing: 0.1em; }
  .application-form form label {
    font-size: 1.8rem;
    color: #1d3750;
    font-weight: 400;
    margin-bottom: .5rem;
    display: block; }
  .application-form form input[type='checkbox'] {
    background: #ebeaf1;
    /* remove browser chrome */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    /*add styling */
    position: relative;
    width: 2rem;
    height: 2rem;
    border: initial;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 6px 12px 0px 0px;
    cursor: pointer; }
    .application-form form input[type='checkbox']::before {
      content: '';
      color: #fff;
      position: absolute;
      top: 4px;
      right: 4px;
      bottom: 4px;
      left: 4px;
      background-color: transparent;
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      border-radius: 2px;
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transition: -webkit-transform 0.25s ease-in-out;
      transition: -webkit-transform 0.25s ease-in-out;
      transition: transform 0.25s ease-in-out;
      transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
      /* base64 encoded to make things easier to show 
        normally you would use an image or a font
      */
      background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjQ0OCIgaGVpZ2h0PSI0NDgiIHZpZXdCb3g9IjAgMCA0NDggNDQ4Ij4KPHRpdGxlPjwvdGl0bGU+CjxnIGlkPSJpY29tb29uLWlnbm9yZSI+CjwvZz4KPHBhdGggZD0iTTQxNy43NSAxNDEuNWMwIDYuMjUtMi41IDEyLjUtNyAxN2wtMjE1IDIxNWMtNC41IDQuNS0xMC43NSA3LTE3IDdzLTEyLjUtMi41LTE3LTdsLTEyNC41LTEyNC41Yy00LjUtNC41LTctMTAuNzUtNy0xN3MyLjUtMTIuNSA3LTE3bDM0LTM0YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsNzMuNSA3My43NSAxNjQtMTY0LjI1YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsMzQgMzRjNC41IDQuNSA3IDEwLjc1IDcgMTd6Ij48L3BhdGg+Cjwvc3ZnPgo="); }
    .application-form form input[type='checkbox']:checked::before {
      -webkit-transform: scale(1);
      transform: scale(1); }
  .application-form form input[type='radio'] {
    background: #ebeaf1;
    /* remove browser chrome */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    /*add styling */
    position: relative;
    width: 2rem;
    height: 2rem;
    border: initial;
    border-radius: 50%;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 6px 12px 0px 0px;
    cursor: pointer; }
    .application-form form input[type='radio']::before {
      content: '';
      color: #fff;
      position: absolute;
      top: 4px;
      right: 4px;
      bottom: 4px;
      left: 4px;
      background-color: transparent;
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat;
      border-radius: 2px;
      -webkit-transform: scale(0);
      transform: scale(0);
      -webkit-transition: -webkit-transform 0.25s ease-in-out;
      transition: -webkit-transform 0.25s ease-in-out;
      transition: transform 0.25s ease-in-out;
      transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
      /* base64 encoded to make things easier to show 
        normally you would use an image or a font
      */
      background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjQ0OCIgaGVpZ2h0PSI0NDgiIHZpZXdCb3g9IjAgMCA0NDggNDQ4Ij4KPHRpdGxlPjwvdGl0bGU+CjxnIGlkPSJpY29tb29uLWlnbm9yZSI+CjwvZz4KPHBhdGggZD0iTTQxNy43NSAxNDEuNWMwIDYuMjUtMi41IDEyLjUtNyAxN2wtMjE1IDIxNWMtNC41IDQuNS0xMC43NSA3LTE3IDdzLTEyLjUtMi41LTE3LTdsLTEyNC41LTEyNC41Yy00LjUtNC41LTctMTAuNzUtNy0xN3MyLjUtMTIuNSA3LTE3bDM0LTM0YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsNzMuNSA3My43NSAxNjQtMTY0LjI1YzQuNS00LjUgMTAuNzUtNyAxNy03czEyLjUgMi41IDE3IDdsMzQgMzRjNC41IDQuNSA3IDEwLjc1IDcgMTd6Ij48L3BhdGg+Cjwvc3ZnPgo="); }
    .application-form form input[type='radio']:checked::before {
      -webkit-transform: scale(1);
      transform: scale(1); }
  .application-form form textarea {
    height: auto;
    padding: 1.3em; }
  .application-form form .basic-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 4rem; }
    @media screen and (max-width: 767px) {
      .application-form form .basic-info {
        display: block; } }
    .application-form form .basic-info .field-wrap {
      width: calc(50% - 1.5rem); }
      @media screen and (max-width: 767px) {
        .application-form form .basic-info .field-wrap {
          width: 100%; } }
      .application-form form .basic-info .field-wrap input {
        display: block;
        width: 100%;
        margin-bottom: 2rem; }
        .application-form form .basic-info .field-wrap input:last-child {
          margin-bottom: 0; }
    .application-form form .basic-info textarea {
      width: calc(50% - 1.5rem);
      padding-top: 1.3em;
      height: auto; }
      @media screen and (max-width: 767px) {
        .application-form form .basic-info textarea {
          width: 100%;
          margin-top: 2rem;
          height: auto; } }
  .application-form form .input-table {
    margin-top: 4rem; }
    .application-form form .input-table p {
      display: none;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1d3750; }
      @media screen and (max-width: 1023px) {
        .application-form form .input-table p {
          display: block; } }
    .application-form form .input-table .table-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 0.2rem; }
      @media screen and (max-width: 1023px) {
        .application-form form .input-table .table-row {
          display: block;
          margin-bottom: 5rem; } }
      @media screen and (max-width: 767px) {
        .application-form form .input-table .table-row {
          margin-bottom: 4rem; } }
      @media screen and (max-width: 500px) {
        .application-form form .input-table .table-row {
          margin-bottom: 3rem; } }
      .application-form form .input-table .table-row.headings {
        margin-bottom: 0; }
        @media screen and (max-width: 1023px) {
          .application-form form .input-table .table-row.headings {
            display: none; } }
        .application-form form .input-table .table-row.headings .table-cell {
          background: #007699; }
        .application-form form .input-table .table-row.headings h4 {
          color: white;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          font-size: 1.4rem;
          padding: 1em 1.3em 1.3em; }
          @media screen and (max-width: 1279px) {
            .application-form form .input-table .table-row.headings h4 {
              font-size: 1.3rem; } }
          .application-form form .input-table .table-row.headings h4 span {
            display: block;
            text-transform: none;
            letter-spacing: 0; }
      .application-form form .input-table .table-row .table-cell {
        background: #ebeaf1; }
        @media screen and (max-width: 1023px) {
          .application-form form .input-table .table-row .table-cell {
            margin-bottom: 0.3rem; } }
        .application-form form .input-table .table-row .table-cell:nth-child(1) {
          width: 20%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(1) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell:nth-child(2) {
          width: 7.5%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(2) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell:nth-child(3) {
          width: 7.5%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(3) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell:nth-child(4) {
          width: 25%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(4) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell:nth-child(5) {
          width: 20%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(5) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell:nth-child(6) {
          width: 20%; }
          @media screen and (max-width: 1023px) {
            .application-form form .input-table .table-row .table-cell:nth-child(6) {
              width: 100%; } }
        .application-form form .input-table .table-row .table-cell textarea {
          padding: 1.3em;
          overflow-y: hidden;
          height: 3.5em; }
          .application-form form .input-table .table-row .table-cell textarea::-webkit-input-placeholder {
            color: #ebeaf1; }
          .application-form form .input-table .table-row .table-cell textarea::-moz-placeholder {
            color: #ebeaf1; }
          .application-form form .input-table .table-row .table-cell textarea:-ms-input-placeholder {
            color: #ebeaf1; }
          .application-form form .input-table .table-row .table-cell textarea::-ms-input-placeholder {
            color: #ebeaf1; }
          .application-form form .input-table .table-row .table-cell textarea::placeholder {
            color: #ebeaf1; }
            @media screen and (max-width: 1023px) {
              .application-form form .input-table .table-row .table-cell textarea::-webkit-input-placeholder {
                color: #1d3750; }
              .application-form form .input-table .table-row .table-cell textarea::-moz-placeholder {
                color: #1d3750; }
              .application-form form .input-table .table-row .table-cell textarea:-ms-input-placeholder {
                color: #1d3750; }
              .application-form form .input-table .table-row .table-cell textarea::-ms-input-placeholder {
                color: #1d3750; }
              .application-form form .input-table .table-row .table-cell textarea::placeholder {
                color: #1d3750; } }
  .application-form form .submit-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 767px) {
      .application-form form .submit-row {
        display: block; } }
    .application-form form .submit-row .captcha-wrap {
      width: calc(50% - 1.5rem);
      background: grey; }
      @media screen and (max-width: 767px) {
        .application-form form .submit-row .captcha-wrap {
          width: 100%;
          margin-bottom: 3.5rem;
          height: 4rem; } }
      @media screen and (max-width: 639px) {
        .application-form form .submit-row .captcha-wrap {
          margin-bottom: 3rem; } }
    .application-form form .submit-row .submit-btn {
      width: calc(((6 / 12) * 100%) - 1.5rem);
      background: #1d3750;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 1.25rem 3.5rem 1.25rem 1.5rem;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease;
      cursor: pointer; }
      @media screen and (max-width: 1023px) {
        .application-form form .submit-row .submit-btn {
          width: calc(50% - 1.5rem); } }
      @media screen and (max-width: 767px) {
        .application-form form .submit-row .submit-btn {
          width: 100%; } }
      .application-form form .submit-row .submit-btn:hover {
        background: rgba(29, 55, 80, 0.8); }
      .application-form form .submit-row .submit-btn button {
        width: calc(100% - 1.4rem);
        padding-left: 1.5rem;
        color: white;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 1.8rem;
        line-height: 1.3;
        cursor: pointer; }
        @media screen and (max-width: 1599px) {
          .application-form form .submit-row .submit-btn button {
            font-size: 1.6rem; } }
        @media screen and (max-width: 1279px) {
          .application-form form .submit-row .submit-btn button {
            font-size: 1.4rem; } }
        @media screen and (max-width: 1023px) {
          .application-form form .submit-row .submit-btn button {
            font-size: 1.5rem; } }
        @media screen and (max-width: 639px) {
          .application-form form .submit-row .submit-btn button {
            font-size: 1.4rem; } }
      .application-form form .submit-row .submit-btn svg {
        width: 1.4rem; }
        @media screen and (max-width: 639px) {
          .application-form form .submit-row .submit-btn svg {
            width: 1.2rem; } }
        .application-form form .submit-row .submit-btn svg path {
          fill: white; }

.application-form.submitted form input[type='text']:invalid,
.application-form.submitted form input[type='email']:invalid,
.application-form.submitted form textarea:invalid {
  border: 1px solid red !important;
  background: #facdda; }

.page-header.no-margin {
  margin-bottom: 0; }

.expertise-listing.internal.fields {
  padding-top: 18rem;
  margin-top: -10rem; }
  @media screen and (max-width: 1439px) {
    .expertise-listing.internal.fields {
      padding-top: 16rem; } }
  @media screen and (max-width: 1279px) {
    .expertise-listing.internal.fields {
      margin-top: -8rem;
      padding-top: 12rem; } }
  @media screen and (max-width: 767px) {
    .expertise-listing.internal.fields {
      margin-top: -7.5rem;
      padding-top: 11rem; } }
  @media screen and (max-width: 639px) {
    .expertise-listing.internal.fields {
      margin-top: -7rem; } }
  .expertise-listing.internal.fields .grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .expertise-listing.internal.fields .grid .grid-item h3 {
      color: #1d3750; }

.page-body.policy .container main {
  width: 75%;
  padding-right: 0; }
  @media screen and (max-width: 1023px) {
    .page-body.policy .container main {
      width: 100%; } }
  .page-body.policy .container main p:first-child {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.25; }
    @media screen and (max-width: 1599px) {
      .page-body.policy .container main p:first-child {
        font-size: 2.4rem; } }
    @media screen and (max-width: 1279px) {
      .page-body.policy .container main p:first-child {
        font-size: 2.2rem; } }
    @media screen and (max-width: 1023px) {
      .page-body.policy .container main p:first-child {
        font-size: 2rem; } }
    @media screen and (max-width: 767px) {
      .page-body.policy .container main p:first-child {
        font-size: 1.9rem; } }
    @media screen and (max-width: 500px) {
      .page-body.policy .container main p:first-child {
        font-size: 1.8rem; } }
  .page-body.policy .container main h2 {
    color: #007699; }
  .page-body.policy .container main ul {
    margin-bottom: 3em; }
    @media screen and (max-width: 767px) {
      .page-body.policy .container main ul {
        margin-bottom: 2em; } }
    .page-body.policy .container main ul li {
      margin-bottom: 0;
      margin-bottom: 0.2em; }
