/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7; }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-pulse > div:nth-child(0) {
  -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.ball-pulse > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); }
  66% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.ball-pulse-sync > div:nth-child(0) {
  -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(1) {
  -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(2) {
  -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; }

.ball-pulse-sync > div:nth-child(3) {
  -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
          animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }

.ball-pulse-sync > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
          animation: ball-scale 1s 0s ease-in-out infinite; }

@keyframes ball-scale {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  height: 60px;
  width: 60px;
  -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
          animation: ball-scale 1s 0s ease-in-out infinite; }

.ball-scale-random {
  width: 37px;
  height: 40px; }
  .ball-scale-random > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    display: inline-block;
    height: 30px;
    width: 30px;
    -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
            animation: ball-scale 1s 0s ease-in-out infinite; }
    .ball-scale-random > div:nth-child(1) {
      margin-left: -7px;
      -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
              animation: ball-scale 1s 0.2s ease-in-out infinite; }
    .ball-scale-random > div:nth-child(3) {
      margin-left: -2px;
      margin-top: 9px;
      -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
              animation: ball-scale 1s 0.5s ease-in-out infinite; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.ball-rotate {
  position: relative; }
  .ball-rotate > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: relative; }
    .ball-rotate > div:first-child {
      -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
              animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; }
    .ball-rotate > div:before, .ball-rotate > div:after {
      background-color: #fff;
      width: 15px;
      height: 15px;
      border-radius: 100%;
      margin: 2px;
      content: "";
      position: absolute;
      opacity: 0.8; }
    .ball-rotate > div:before {
      top: 0px;
      left: -28px; }
    .ball-rotate > div:after {
      top: 0px;
      left: 25px; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

.ball-clip-rotate > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  border: 2px solid #fff;
  border-bottom-color: transparent;
  height: 25px;
  width: 25px;
  background: transparent !important;
  display: inline-block;
  -webkit-animation: rotate 0.75s 0s linear infinite;
          animation: rotate 0.75s 0s linear infinite; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

@keyframes scale {
  30% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-clip-rotate-pulse {
  position: relative;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px); }
  .ball-clip-rotate-pulse > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 100%; }
    .ball-clip-rotate-pulse > div:first-child {
      background: #fff;
      height: 16px;
      width: 16px;
      top: 7px;
      left: -7px;
      -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
              animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }
    .ball-clip-rotate-pulse > div:last-child {
      position: absolute;
      border: 2px solid #fff;
      width: 30px;
      height: 30px;
      left: -16px;
      top: -2px;
      background: transparent;
      border: 2px solid;
      border-color: #fff transparent #fff transparent;
      -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
              animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
      -webkit-animation-duration: 1s;
              animation-duration: 1s; }

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1); }
  50% {
    -webkit-transform: rotate(180deg) scale(0.6);
            transform: rotate(180deg) scale(0.6); }
  100% {
    -webkit-transform: rotate(360deg) scale(1);
            transform: rotate(360deg) scale(1); } }

.ball-clip-rotate-multiple {
  position: relative; }
  .ball-clip-rotate-multiple > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    left: -20px;
    top: -20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    -webkit-animation: rotate 1s 0s ease-in-out infinite;
            animation: rotate 1s 0s ease-in-out infinite; }
    .ball-clip-rotate-multiple > div:last-child {
      display: inline-block;
      top: -10px;
      left: -10px;
      width: 15px;
      height: 15px;
      -webkit-animation-duration: 0.5s;
              animation-duration: 0.5s;
      border-color: #fff transparent #fff transparent;
      -webkit-animation-direction: reverse;
              animation-direction: reverse; }

@-webkit-keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
          animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

@keyframes ball-scale-ripple-multiple {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 1; }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.7; }
  100% {
    opacity: 0.0; } }

.ball-scale-ripple-multiple {
  position: relative;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px); }
  .ball-scale-ripple-multiple > div:nth-child(0) {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
  .ball-scale-ripple-multiple > div:nth-child(1) {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
  .ball-scale-ripple-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .ball-scale-ripple-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .ball-scale-ripple-multiple > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    top: -2px;
    left: -26px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid #fff;
    -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
            animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }

@-webkit-keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-beat {
  50% {
    opacity: 0.2;
    -webkit-transform: scale(0.75);
            transform: scale(0.75); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-beat > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: ball-beat 0.7s 0s infinite linear;
          animation: ball-beat 0.7s 0s infinite linear; }
  .ball-beat > div:nth-child(2n-1) {
    -webkit-animation-delay: -0.35s !important;
            animation-delay: -0.35s !important; }

@-webkit-keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes ball-scale-multiple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0; }
  5% {
    opacity: 1; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

.ball-scale-multiple {
  position: relative;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px); }
  .ball-scale-multiple > div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
  .ball-scale-multiple > div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
  .ball-scale-multiple > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    left: -30px;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
            animation: ball-scale-multiple 1s 0s linear infinite; }

@-webkit-keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
            transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
            transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-1 {
  33% {
    -webkit-transform: translate(25px, -50px);
            transform: translate(25px, -50px); }
  66% {
    -webkit-transform: translate(50px, 0px);
            transform: translate(50px, 0px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
            transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
            transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-2 {
  33% {
    -webkit-transform: translate(25px, 50px);
            transform: translate(25px, 50px); }
  66% {
    -webkit-transform: translate(-25px, 50px);
            transform: translate(-25px, 50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@-webkit-keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
            transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
            transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

@keyframes ball-triangle-path-3 {
  33% {
    -webkit-transform: translate(-50px, 0px);
            transform: translate(-50px, 0px); }
  66% {
    -webkit-transform: translate(-25px, -50px);
            transform: translate(-25px, -50px); }
  100% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px); } }

.ball-triangle-path {
  position: relative;
  -webkit-transform: translate(-29.994px, -37.50938px);
          transform: translate(-29.994px, -37.50938px); }
  .ball-triangle-path > div:nth-child(1) {
    -webkit-animation-name: ball-triangle-path-1;
            animation-name: ball-triangle-path-1;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div:nth-child(2) {
    -webkit-animation-name: ball-triangle-path-2;
            animation-name: ball-triangle-path-2;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div:nth-child(3) {
    -webkit-animation-name: ball-triangle-path-3;
            animation-name: ball-triangle-path-3;
    -webkit-animation-delay: 0;
            animation-delay: 0;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  .ball-triangle-path > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #fff; }
    .ball-triangle-path > div:nth-of-type(1) {
      top: 50px; }
    .ball-triangle-path > div:nth-of-type(2) {
      left: 25px; }
    .ball-triangle-path > div:nth-of-type(3) {
      top: 50px;
      left: 50px; }

@-webkit-keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-pulse-rise-even {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  75% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1);
            transform: scale(1); } }

@-webkit-keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(0.75);
            transform: scale(0.75); } }

@keyframes ball-pulse-rise-odd {
  0% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  25% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px); }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1); }
  75% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(0.75);
            transform: scale(0.75); } }

.ball-pulse-rise > div {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
          animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0; }
  .ball-pulse-rise > div:nth-child(2n) {
    -webkit-animation-name: ball-pulse-rise-even;
            animation-name: ball-pulse-rise-even; }
  .ball-pulse-rise > div:nth-child(2n-1) {
    -webkit-animation-name: ball-pulse-rise-odd;
            animation-name: ball-pulse-rise-odd; }

@-webkit-keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

@keyframes ball-grid-beat {
  50% {
    opacity: 0.7; }
  100% {
    opacity: 1; } }

.ball-grid-beat {
  width: 57px; }
  .ball-grid-beat > div:nth-child(1) {
    -webkit-animation-delay: 0.44s;
            animation-delay: 0.44s;
    -webkit-animation-duration: 1.27s;
            animation-duration: 1.27s; }
  .ball-grid-beat > div:nth-child(2) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
    -webkit-animation-duration: 1.52s;
            animation-duration: 1.52s; }
  .ball-grid-beat > div:nth-child(3) {
    -webkit-animation-delay: 0.14s;
            animation-delay: 0.14s;
    -webkit-animation-duration: 0.61s;
            animation-duration: 0.61s; }
  .ball-grid-beat > div:nth-child(4) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
    -webkit-animation-duration: 0.82s;
            animation-duration: 0.82s; }
  .ball-grid-beat > div:nth-child(5) {
    -webkit-animation-delay: -0.01s;
            animation-delay: -0.01s;
    -webkit-animation-duration: 1.24s;
            animation-duration: 1.24s; }
  .ball-grid-beat > div:nth-child(6) {
    -webkit-animation-delay: -0.07s;
            animation-delay: -0.07s;
    -webkit-animation-duration: 1.35s;
            animation-duration: 1.35s; }
  .ball-grid-beat > div:nth-child(7) {
    -webkit-animation-delay: 0.29s;
            animation-delay: 0.29s;
    -webkit-animation-duration: 1.44s;
            animation-duration: 1.44s; }
  .ball-grid-beat > div:nth-child(8) {
    -webkit-animation-delay: 0.63s;
            animation-delay: 0.63s;
    -webkit-animation-duration: 1.19s;
            animation-duration: 1.19s; }
  .ball-grid-beat > div:nth-child(9) {
    -webkit-animation-delay: -0.18s;
            animation-delay: -0.18s;
    -webkit-animation-duration: 1.48s;
            animation-duration: 1.48s; }
  .ball-grid-beat > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block;
    float: left;
    -webkit-animation-name: ball-grid-beat;
            animation-name: ball-grid-beat;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
            animation-delay: 0; }

@-webkit-keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

@keyframes ball-grid-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0.7; }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; } }

.ball-grid-pulse {
  width: 57px; }
  .ball-grid-pulse > div:nth-child(1) {
    -webkit-animation-delay: 0.58s;
            animation-delay: 0.58s;
    -webkit-animation-duration: 0.9s;
            animation-duration: 0.9s; }
  .ball-grid-pulse > div:nth-child(2) {
    -webkit-animation-delay: 0.01s;
            animation-delay: 0.01s;
    -webkit-animation-duration: 0.94s;
            animation-duration: 0.94s; }
  .ball-grid-pulse > div:nth-child(3) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
    -webkit-animation-duration: 1.43s;
            animation-duration: 1.43s; }
  .ball-grid-pulse > div:nth-child(4) {
    -webkit-animation-delay: -0.03s;
            animation-delay: -0.03s;
    -webkit-animation-duration: 0.74s;
            animation-duration: 0.74s; }
  .ball-grid-pulse > div:nth-child(5) {
    -webkit-animation-delay: 0.21s;
            animation-delay: 0.21s;
    -webkit-animation-duration: 0.68s;
            animation-duration: 0.68s; }
  .ball-grid-pulse > div:nth-child(6) {
    -webkit-animation-delay: 0.25s;
            animation-delay: 0.25s;
    -webkit-animation-duration: 1.17s;
            animation-duration: 1.17s; }
  .ball-grid-pulse > div:nth-child(7) {
    -webkit-animation-delay: 0.46s;
            animation-delay: 0.46s;
    -webkit-animation-duration: 1.41s;
            animation-duration: 1.41s; }
  .ball-grid-pulse > div:nth-child(8) {
    -webkit-animation-delay: 0.02s;
            animation-delay: 0.02s;
    -webkit-animation-duration: 1.56s;
            animation-duration: 1.56s; }
  .ball-grid-pulse > div:nth-child(9) {
    -webkit-animation-delay: 0.13s;
            animation-delay: 0.13s;
    -webkit-animation-duration: 0.78s;
            animation-duration: 0.78s; }
  .ball-grid-pulse > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    display: inline-block;
    float: left;
    -webkit-animation-name: ball-grid-pulse;
            animation-name: ball-grid-pulse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 0;
            animation-delay: 0; }

@-webkit-keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes ball-spin-fade-loader {
  50% {
    opacity: 0.3;
    -webkit-transform: scale(0.4);
            transform: scale(0.4); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); } }

.ball-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -10px; }
  .ball-spin-fade-loader > div:nth-child(1) {
    top: 25px;
    left: 0;
    -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
            animation: ball-spin-fade-loader 1s -0.96s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(2) {
    top: 17.04545px;
    left: 17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
            animation: ball-spin-fade-loader 1s -0.84s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(3) {
    top: 0;
    left: 25px;
    -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
            animation: ball-spin-fade-loader 1s -0.72s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(4) {
    top: -17.04545px;
    left: 17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
            animation: ball-spin-fade-loader 1s -0.6s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(5) {
    top: -25px;
    left: 0;
    -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
            animation: ball-spin-fade-loader 1s -0.48s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(6) {
    top: -17.04545px;
    left: -17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
            animation: ball-spin-fade-loader 1s -0.36s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(7) {
    top: 0;
    left: -25px;
    -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
            animation: ball-spin-fade-loader 1s -0.24s infinite linear; }
  .ball-spin-fade-loader > div:nth-child(8) {
    top: 17.04545px;
    left: -17.04545px;
    -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
            animation: ball-spin-fade-loader 1s -0.12s infinite linear; }
  .ball-spin-fade-loader > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute; }

@-webkit-keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

@keyframes ball-spin-loader {
  75% {
    opacity: 0.2; }
  100% {
    opacity: 1; } }

.ball-spin-loader {
  position: relative; }
  .ball-spin-loader > span:nth-child(1) {
    top: 45px;
    left: 0;
    -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
            animation: ball-spin-loader 2s 0.9s infinite linear; }
  .ball-spin-loader > span:nth-child(2) {
    top: 30.68182px;
    left: 30.68182px;
    -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
            animation: ball-spin-loader 2s 1.8s infinite linear; }
  .ball-spin-loader > span:nth-child(3) {
    top: 0;
    left: 45px;
    -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
            animation: ball-spin-loader 2s 2.7s infinite linear; }
  .ball-spin-loader > span:nth-child(4) {
    top: -30.68182px;
    left: 30.68182px;
    -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
            animation: ball-spin-loader 2s 3.6s infinite linear; }
  .ball-spin-loader > span:nth-child(5) {
    top: -45px;
    left: 0;
    -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
            animation: ball-spin-loader 2s 4.5s infinite linear; }
  .ball-spin-loader > span:nth-child(6) {
    top: -30.68182px;
    left: -30.68182px;
    -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
            animation: ball-spin-loader 2s 5.4s infinite linear; }
  .ball-spin-loader > span:nth-child(7) {
    top: 0;
    left: -45px;
    -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
            animation: ball-spin-loader 2s 6.3s infinite linear; }
  .ball-spin-loader > span:nth-child(8) {
    top: 30.68182px;
    left: -30.68182px;
    -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
            animation: ball-spin-loader 2s 7.2s infinite linear; }
  .ball-spin-loader > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: green; }

@-webkit-keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zig {
  33% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  66% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zag {
  33% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  66% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.ball-zig-zag {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
          transform: translate(-15px, -15px); }
  .ball-zig-zag > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    margin-left: 15px;
    top: 4px;
    left: -7px; }
    .ball-zig-zag > div:first-child {
      -webkit-animation: ball-zig 0.7s 0s infinite linear;
              animation: ball-zig 0.7s 0s infinite linear; }
    .ball-zig-zag > div:last-child {
      -webkit-animation: ball-zag 0.7s 0s infinite linear;
              animation: ball-zag 0.7s 0s infinite linear; }

@-webkit-keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zig-deflect {
  17% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  34% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px); }
  84% {
    -webkit-transform: translate(-15px, -30px);
            transform: translate(-15px, -30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes ball-zag-deflect {
  17% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  34% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  67% {
    -webkit-transform: translate(-15px, 30px);
            transform: translate(-15px, 30px); }
  84% {
    -webkit-transform: translate(15px, 30px);
            transform: translate(15px, 30px); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.ball-zig-zag-deflect {
  position: relative;
  -webkit-transform: translate(-15px, -15px);
          transform: translate(-15px, -15px); }
  .ball-zig-zag-deflect > div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    margin-left: 15px;
    top: 4px;
    left: -7px; }
    .ball-zig-zag-deflect > div:first-child {
      -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
              animation: ball-zig-deflect 1.5s 0s infinite linear; }
    .ball-zig-zag-deflect > div:last-child {
      -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
              animation: ball-zag-deflect 1.5s 0s infinite linear; }

/**
 * Lines
 */
@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

@-webkit-keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes line-scale-party {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.line-scale-party > div:nth-child(1) {
  -webkit-animation-delay: -0.09s;
          animation-delay: -0.09s;
  -webkit-animation-duration: 0.83s;
          animation-duration: 0.83s; }

.line-scale-party > div:nth-child(2) {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
  -webkit-animation-duration: 0.64s;
          animation-duration: 0.64s; }

.line-scale-party > div:nth-child(3) {
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
  -webkit-animation-duration: 0.39s;
          animation-duration: 0.39s; }

.line-scale-party > div:nth-child(4) {
  -webkit-animation-delay: 0.47s;
          animation-delay: 0.47s;
  -webkit-animation-duration: 0.52s;
          animation-duration: 0.52s; }

.line-scale-party > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation-name: line-scale-party;
          animation-name: line-scale-party;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 0;
          animation-delay: 0; }

@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
          animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
  .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
    -webkit-animation-delay: -0.4s !important;
            animation-delay: -0.4s !important; }
  .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
    -webkit-animation-delay: -0.2s !important;
            animation-delay: -0.2s !important; }

@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out-rapid > div {
  background-color: #fff;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
          animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); }
  .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
    -webkit-animation-delay: -0.25s !important;
            animation-delay: -0.25s !important; }
  .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important; }

@-webkit-keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

@keyframes line-spin-fade-loader {
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1; } }

.line-spin-fade-loader {
  position: relative;
  top: -10px;
  left: -4px; }
  .line-spin-fade-loader > div:nth-child(1) {
    top: 20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(2) {
    top: 13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(3) {
    top: 0;
    left: 20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(4) {
    top: -13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(5) {
    top: -20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(6) {
    top: -13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(7) {
    top: 0;
    left: -20px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; }
  .line-spin-fade-loader > div:nth-child(8) {
    top: 13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
            animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; }
  .line-spin-fade-loader > div {
    background-color: #fff;
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    position: absolute;
    width: 5px;
    height: 15px; }

/**
 * Misc
 */
@-webkit-keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }
@keyframes triangle-skew-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

.triangle-skew-spin > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #fff;
  -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
          animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

@keyframes square-spin {
  25% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
            transform: perspective(100px) rotateX(180deg) rotateY(0); }
  50% {
    -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
            transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  75% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
            transform: perspective(100px) rotateX(0) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
            transform: perspective(100px) rotateX(0) rotateY(0); } }

.square-spin > div {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid red;
  -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
          animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }

@-webkit-keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@keyframes rotate_pacman_half_up {
  0% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); } }

@-webkit-keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes rotate_pacman_half_down {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@-webkit-keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
            transform: translate(-100px, -6.25px); } }

@keyframes pacman-balls {
  75% {
    opacity: 0.7; }
  100% {
    -webkit-transform: translate(-100px, -6.25px);
            transform: translate(-100px, -6.25px); } }

.pacman {
  position: relative; }
  .pacman > div:nth-child(2) {
    -webkit-animation: pacman-balls 1s -0.99s infinite linear;
            animation: pacman-balls 1s -0.99s infinite linear; }
  .pacman > div:nth-child(3) {
    -webkit-animation: pacman-balls 1s -0.66s infinite linear;
            animation: pacman-balls 1s -0.66s infinite linear; }
  .pacman > div:nth-child(4) {
    -webkit-animation: pacman-balls 1s -0.33s infinite linear;
            animation: pacman-balls 1s -0.33s infinite linear; }
  .pacman > div:nth-child(5) {
    -webkit-animation: pacman-balls 1s 0s infinite linear;
            animation: pacman-balls 1s 0s infinite linear; }
  .pacman > div:first-of-type {
    width: 0px;
    height: 0px;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
            animation: rotate_pacman_half_up 0.5s 0s infinite;
    position: relative;
    left: -30px; }
  .pacman > div:nth-child(2) {
    width: 0px;
    height: 0px;
    border-right: 25px solid transparent;
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-radius: 25px;
    -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
            animation: rotate_pacman_half_down 0.5s 0s infinite;
    margin-top: -50px;
    position: relative;
    left: -30px; }
  .pacman > div:nth-child(3),
  .pacman > div:nth-child(4),
  .pacman > div:nth-child(5),
  .pacman > div:nth-child(6) {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    width: 10px;
    height: 10px;
    position: absolute;
    -webkit-transform: translate(0, -6.25px);
            transform: translate(0, -6.25px);
    top: 25px;
    left: 70px; }

@-webkit-keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
            transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
            transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
            transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

@keyframes cube-transition {
  25% {
    -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
            transform: translateX(50px) scale(0.5) rotate(-90deg); }
  50% {
    -webkit-transform: translate(50px, 50px) rotate(-180deg);
            transform: translate(50px, 50px) rotate(-180deg); }
  75% {
    -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
            transform: translateY(50px) scale(0.5) rotate(-270deg); }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg); } }

.cube-transition {
  position: relative;
  -webkit-transform: translate(-25px, -25px);
          transform: translate(-25px, -25px); }
  .cube-transition > div {
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    width: 10px;
    height: 10px;
    position: absolute;
    top: -5px;
    left: -5px;
    background-color: #fff;
    -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
            animation: cube-transition 1.6s 0s infinite ease-in-out; }
    .cube-transition > div:last-child {
      -webkit-animation-delay: -0.8s;
              animation-delay: -0.8s; }

@-webkit-keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes spin-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.semi-circle-spin {
  position: relative;
  width: 35px;
  height: 35px;
  overflow: hidden; }
  .semi-circle-spin > div {
    position: absolute;
    border-width: 0px;
    border-radius: 100%;
    -webkit-animation: spin-rotate 0.6s 0s infinite linear;
            animation: spin-rotate 0.6s 0s infinite linear;
    background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
    width: 100%;
    height: 100%; }

@-webkit-keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
            transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; } }

@keyframes bar-progress {
  0% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; }
  25% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  50% {
    -webkit-transform: translateX(20%) scaleY(20%);
            transform: translateX(20%) scaleY(20%);
    opacity: 1; }
  75% {
    -webkit-transform: translateX(6%) scaleY(10%);
            transform: translateX(6%) scaleY(10%);
    opacity: 0.7; }
  100% {
    -webkit-transform: scaleY(20%);
            transform: scaleY(20%);
    opacity: 1; } }

.bar-progress {
  width: 30%;
  height: 12px; }
  .bar-progress > div {
    position: relative;
    width: 20%;
    height: 12px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
            animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
    opacity: 1; }

@-webkit-keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

@keyframes bar-swing {
  0% {
    left: 0; }
  50% {
    left: 70%; }
  100% {
    left: 0; } }

.bar-swing {
  width: 30%;
  height: 8px; }
  .bar-swing > div {
    position: relative;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-swing 1.5s infinite;
            animation: bar-swing 1.5s infinite; }

@-webkit-keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes bar-swing-container {
  0% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  50% {
    left: 70%;
    -webkit-transform: translateX(-4px);
            transform: translateX(-4px); }
  100% {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

.bar-swing-container {
  width: 20%;
  height: 8px;
  position: relative; }
  .bar-swing-container div:nth-child(1) {
    position: absolute;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    height: 12px;
    border-radius: 10px; }
  .bar-swing-container div:nth-child(2) {
    position: absolute;
    width: 30%;
    height: 8px;
    border-radius: 10px;
    background-color: #fff;
    -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
            animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
    margin: 2px 2px 0; }
body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: rgb(30, 30, 30);
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
            animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0;
            transform-origin: 0;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */

.fancybox-caption {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .3) 50%,
        rgba(0, 0, 0, .15) 65%,
        rgba(0, 0, 0, .075) 75.5%,
        rgba(0, 0, 0, .037) 82.85%,
        rgba(0, 0, 0, .019) 88%,
        rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */

.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
            animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

/* Transition effects */

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
            transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5, .5, .5);
            transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
            transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
            transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
            transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
            transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
            transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }

    .fancybox-slide--image {
        padding: 6px 0;
    }

    .fancybox-close-small {
        right: -6px;
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }

    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}
/* Share */

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}
/* Thumbs */

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
@charset "UTF-8";
input,
textarea,
button,
select,
label,
a,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container {
  height: 50px;
  display: block;
  z-index: 5;
}
.select2-container .selection {
  position: relative;
}
.select2-selection {
  display: flex !important;
  width: 100%;
  height: 100%;
  align-items: center;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  padding: 13px;
  cursor: pointer;
  justify-content: space-between;
  background-color: #F7F7F7;
  color: #555555;
  border: 2px solid #DDDDDD;
}
.select2-selection__arrow {
  width: 4px;
  position: relative;
  height: 4px;
}
.select2-selection__arrow b {
  border-color: black transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.intro .select2-selection__arrow b {
  border-color: black transparent transparent transparent;
}
.select2-results {
  display: block;
}
.select2-results__options {
  position: relative;
  overflow-y: auto;
  max-height: 200px;
}
.select2-results__option {
  padding: 12px 16px;
  cursor: pointer;
  color: #555555;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}
.select2-results__option:hover {
  color: #353535;
}
.select2-search {
  display: none;
}
.select2-dropdown {
  border: 1px solid #EEEEEE;
  border-top: none;
  display: block;
  background-color: white;
}

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

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

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

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

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

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

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

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

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

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

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

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

td,
th {
  padding: 0;
  text-align: left;
}

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

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

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

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 36px;
          perspective: 36px;
}
.hamburger--3dx .hamburger-inner {
  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 {
  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;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 36px;
          perspective: 36px;
}
.hamburger--3dx-r .hamburger-inner {
  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 {
  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;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 36px;
          perspective: 36px;
}
.hamburger--3dy .hamburger-inner {
  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 {
  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;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 36px;
          perspective: 36px;
}
.hamburger--3dy-r .hamburger-inner {
  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 {
  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;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 36px;
          perspective: 36px;
}
.hamburger--3dxy .hamburger-inner {
  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 {
  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;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
}

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

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

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

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  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 {
  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(-3.6px, -4.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-3.6px, -4.5px, 0) rotate(-45deg) scale(0.7, 1);
  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(-3.6px, 4.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-3.6px, 4.5px, 0) rotate(45deg) scale(0.7, 1);
  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 {
  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 {
  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(3.6px, -4.5px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(3.6px, -4.5px, 0) rotate(45deg) scale(0.7, 1);
  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(3.6px, 4.5px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(3.6px, 4.5px, 0) rotate(-45deg) scale(0.7, 1);
  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 {
  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;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -10px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -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, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  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;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -10px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -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, -5px, 0) rotate(45deg);
          transform: translate3d(0, -5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  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: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 5px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 10px;
  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, 5px, 0) rotate(135deg);
          transform: translate3d(0, 5px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-270deg);
          transform: translate3d(0, -10px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

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

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: 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: 5px;
  right: 0;
  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 {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -36px;
  top: -36px;
  -webkit-transform: translate3d(36px, 36px, 0) rotate(45deg);
          transform: translate3d(36px, 36px, 0) rotate(45deg);
  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: -36px;
  top: -36px;
  -webkit-transform: translate3d(-36px, 36px, 0) rotate(-45deg);
          transform: translate3d(-36px, 36px, 0) rotate(-45deg);
  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 {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  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: 5px;
  right: 0;
  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 {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -36px;
  top: 36px;
  -webkit-transform: translate3d(36px, -36px, 0) rotate(-45deg);
          transform: translate3d(36px, -36px, 0) rotate(-45deg);
  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: -36px;
  top: 36px;
  -webkit-transform: translate3d(-36px, -36px, 0) rotate(45deg);
          transform: translate3d(-36px, -36px, 0) rotate(45deg);
  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 {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

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

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

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, -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);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  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 {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, -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);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  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: 1px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 5px;
  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: 10px;
  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 {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  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, 5px, 0) rotate(45deg);
          transform: translate3d(0, 5px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -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, 5px, 0) rotate(-45deg);
          transform: translate3d(0, 5px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -10px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -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, -5px, 0) rotate(-45deg);
          transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  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 {
  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 {
  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 {
  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;
  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);
  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);
  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 {
  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 {
  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 {
  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;
  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);
  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);
  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 {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, -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);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  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 {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, -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);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

pre, code {
  overflow: auto;
  position: relative;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

@font-face {
  font-family: "HK Grotesk Pro";
  src: url("../font/HKGroteskPro-Medium.woff2") format("woff2"), url("../font/HKGroteskPro-Medium.woff") format("woff");
}
@font-face {
  font-family: "HK Grotesk Pro";
  src: url("../font/HKGroteskPro-Bold.woff2") format("woff2"), url("../font/HKGroteskPro-Bold.woff") format("woff");
  font-weight: bold;
}
[data-balloon]:after {
  font-size: 12px !important;
  line-height: 20px !important;
  border-radius: 0;
  font-family: "Cerebri Sans", sans-serif !important;
  letter-spacing: 0px !important;
  padding: 16px;
}

body:not(.wp-admin) {
  font-family: "HK Grotesk Pro", sans-serif;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  overflow-x: hidden;
}
body.is-drawer {
  height: 100%;
  overflow-y: hidden;
}
body.is-drawer .body__before {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
}

.content blockquote, body#tinymce.wp-editor blockquote, .editor-styles-wrapper blockquote {
  padding-left: 36px;
  border-left: 4px solid #107AB7;
  margin-bottom: 24px;
}
.content blockquote p, body#tinymce.wp-editor blockquote p, .editor-styles-wrapper blockquote p {
  font-size: 19px;
  font-weight: bold;
  line-height: 32px;
  color: #161616;
  margin-bottom: 16px;
}
.content blockquote p *, body#tinymce.wp-editor blockquote p *, .editor-styles-wrapper blockquote p * {
  font-weight: bold;
}
.content blockquote cite, body#tinymce.wp-editor blockquote cite, .editor-styles-wrapper blockquote cite {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
.content iframe, body#tinymce.wp-editor iframe, .editor-styles-wrapper iframe {
  width: 100%;
  height: 459px;
}
.content .g-recaptcha iframe, body#tinymce.wp-editor .g-recaptcha iframe, .editor-styles-wrapper .g-recaptcha iframe {
  height: 78px !important;
}
.content a, body#tinymce.wp-editor a, .editor-styles-wrapper a {
  border-bottom: 1px solid #107AB7;
  color: #107AB7;
}
.content a:hover, body#tinymce.wp-editor a:hover, .editor-styles-wrapper a:hover {
  opacity: 0.5;
}
.content hr, body#tinymce.wp-editor hr, .editor-styles-wrapper hr {
  border: 1px solid #F7F7F7;
  margin-bottom: 32px;
}
.content img, body#tinymce.wp-editor img, .editor-styles-wrapper img {
  max-width: 100%;
  height: auto;
}
.content figure, body#tinymce.wp-editor figure, .editor-styles-wrapper figure {
  width: auto !important;
}
.content .aligncenter, body#tinymce.wp-editor .aligncenter, .editor-styles-wrapper .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.content .alignleft, body#tinymce.wp-editor .alignleft, .editor-styles-wrapper .alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .content .alignleft, body#tinymce.wp-editor .alignleft, .editor-styles-wrapper .alignleft {
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
.content .alignright, body#tinymce.wp-editor .alignright, .editor-styles-wrapper .alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .content .alignright, body#tinymce.wp-editor .alignright, .editor-styles-wrapper .alignright {
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
.content p, .content ul, .content ol, .content dd, body#tinymce.wp-editor p, body#tinymce.wp-editor ul, body#tinymce.wp-editor ol, body#tinymce.wp-editor dd, .editor-styles-wrapper p, .editor-styles-wrapper ul, .editor-styles-wrapper ol, .editor-styles-wrapper dd {
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.content dt, body#tinymce.wp-editor dt, .editor-styles-wrapper dt {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .content dt, body#tinymce.wp-editor dt, .editor-styles-wrapper dt {
    font-size: 18px;
    line-height: 24px;
  }
}
.content h1:not(:last-child), .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content h6:not(:last-child), .content table:not(:last-child), .content dd:not(:last-child), .content ul:not(:last-child), .content ol:not(:last-child), .content address:not(:last-child), .content pre:not(:last-child), .content hr:not(:last-child), body#tinymce.wp-editor h1:not(:last-child), body#tinymce.wp-editor h2:not(:last-child), body#tinymce.wp-editor h3:not(:last-child), body#tinymce.wp-editor h4:not(:last-child), body#tinymce.wp-editor h5:not(:last-child), body#tinymce.wp-editor h6:not(:last-child), body#tinymce.wp-editor table:not(:last-child), body#tinymce.wp-editor dd:not(:last-child), body#tinymce.wp-editor ul:not(:last-child), body#tinymce.wp-editor ol:not(:last-child), body#tinymce.wp-editor address:not(:last-child), body#tinymce.wp-editor pre:not(:last-child), body#tinymce.wp-editor hr:not(:last-child), .editor-styles-wrapper h1:not(:last-child), .editor-styles-wrapper h2:not(:last-child), .editor-styles-wrapper h3:not(:last-child), .editor-styles-wrapper h4:not(:last-child), .editor-styles-wrapper h5:not(:last-child), .editor-styles-wrapper h6:not(:last-child), .editor-styles-wrapper table:not(:last-child), .editor-styles-wrapper dd:not(:last-child), .editor-styles-wrapper ul:not(:last-child), .editor-styles-wrapper ol:not(:last-child), .editor-styles-wrapper address:not(:last-child), .editor-styles-wrapper pre:not(:last-child), .editor-styles-wrapper hr:not(:last-child) {
  margin-bottom: 16px;
}
.content p:not(:last-child), body#tinymce.wp-editor p:not(:last-child), .editor-styles-wrapper p:not(:last-child) {
  margin-bottom: 24px;
}
.content p + h1, .content p + h2, .content p + h3, .content p + h4, .content p + h5, .content p + h6,
.content p + figure,
.content figure + h1, .content figure + h2, .content figure + h3, .content figure + h4, .content figure + h5, .content figure + h6,
.content blockquote + h1, .content blockquote + h2, .content blockquote + h3, .content blockquote + h4, .content blockquote + h5, .content blockquote + h6, body#tinymce.wp-editor p + h1, body#tinymce.wp-editor p + h2, body#tinymce.wp-editor p + h3, body#tinymce.wp-editor p + h4, body#tinymce.wp-editor p + h5, body#tinymce.wp-editor p + h6,
body#tinymce.wp-editor p + figure,
body#tinymce.wp-editor figure + h1, body#tinymce.wp-editor figure + h2, body#tinymce.wp-editor figure + h3, body#tinymce.wp-editor figure + h4, body#tinymce.wp-editor figure + h5, body#tinymce.wp-editor figure + h6,
body#tinymce.wp-editor blockquote + h1, body#tinymce.wp-editor blockquote + h2, body#tinymce.wp-editor blockquote + h3, body#tinymce.wp-editor blockquote + h4, body#tinymce.wp-editor blockquote + h5, body#tinymce.wp-editor blockquote + h6, .editor-styles-wrapper p + h1, .editor-styles-wrapper p + h2, .editor-styles-wrapper p + h3, .editor-styles-wrapper p + h4, .editor-styles-wrapper p + h5, .editor-styles-wrapper p + h6,
.editor-styles-wrapper p + figure,
.editor-styles-wrapper figure + h1, .editor-styles-wrapper figure + h2, .editor-styles-wrapper figure + h3, .editor-styles-wrapper figure + h4, .editor-styles-wrapper figure + h5, .editor-styles-wrapper figure + h6,
.editor-styles-wrapper blockquote + h1, .editor-styles-wrapper blockquote + h2, .editor-styles-wrapper blockquote + h3, .editor-styles-wrapper blockquote + h4, .editor-styles-wrapper blockquote + h5, .editor-styles-wrapper blockquote + h6 {
  padding-top: 16px;
}
.content figure:not(:last-child), body#tinymce.wp-editor figure:not(:last-child), .editor-styles-wrapper figure:not(:last-child) {
  margin-bottom: 40px;
}
.content figure figcaption, body#tinymce.wp-editor figure figcaption, .editor-styles-wrapper figure figcaption {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #777777;
  margin-top: 16px;
  margin-bottom: 0;
  text-align: left;
}
.content .wp-block-image, body#tinymce.wp-editor .wp-block-image, .editor-styles-wrapper .wp-block-image {
  margin-bottom: 0;
}
.content .wp-block-column, body#tinymce.wp-editor .wp-block-column, .editor-styles-wrapper .wp-block-column {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .content .wp-block-column:not(:first-child), body#tinymce.wp-editor .wp-block-column:not(:first-child), .editor-styles-wrapper .wp-block-column:not(:first-child) {
    margin-left: 40px;
  }
}
.content ul, body#tinymce.wp-editor ul, .editor-styles-wrapper ul {
  list-style-type: disc;
}
.content ol, body#tinymce.wp-editor ol, .editor-styles-wrapper ol {
  list-style-type: decimal;
}
.content ul, .content ol, body#tinymce.wp-editor ul, body#tinymce.wp-editor ol, .editor-styles-wrapper ul, .editor-styles-wrapper ol {
  list-style-position: outside;
  padding-left: 1em;
}
.content ul ul, .content ul ol, .content ol ul, .content ol ol, body#tinymce.wp-editor ul ul, body#tinymce.wp-editor ul ol, body#tinymce.wp-editor ol ul, body#tinymce.wp-editor ol ol, .editor-styles-wrapper ul ul, .editor-styles-wrapper ul ol, .editor-styles-wrapper ol ul, .editor-styles-wrapper ol ol {
  padding-left: 2em;
  margin-bottom: 0;
}
.content .wp-caption-text, body#tinymce.wp-editor .wp-caption-text, .editor-styles-wrapper .wp-caption-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  margin-top: 16px;
  color: #777777;
}
.content table, body#tinymce.wp-editor table, .editor-styles-wrapper table {
  font-size: 17px;
  line-height: 26px;
  width: 100%;
  color: #555555;
  font-weight: 500;
}
.content table a, body#tinymce.wp-editor table a, .editor-styles-wrapper table a {
  color: inherit;
}
.content table th, body#tinymce.wp-editor table th, .editor-styles-wrapper table th {
  text-align: left;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 11px;
  line-height: 16px;
  color: #353535;
  text-transform: uppercase;
}
.content table td, body#tinymce.wp-editor table td, .editor-styles-wrapper table td {
  padding-top: 16px;
  padding-bottom: 16px;
}
.content table td, .content table th, body#tinymce.wp-editor table td, body#tinymce.wp-editor table th, .editor-styles-wrapper table td, .editor-styles-wrapper table th {
  border-bottom: 2px solid #EEEEEE;
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6, body#tinymce.wp-editor h1, body#tinymce.wp-editor h2, body#tinymce.wp-editor h3, body#tinymce.wp-editor h4, body#tinymce.wp-editor h5, body#tinymce.wp-editor h6, .editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6 {
  color: #353535;
}
.content h1, body#tinymce.wp-editor h1, .editor-styles-wrapper h1 {
  font-size: 23px;
  line-height: 32px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .content h1, body#tinymce.wp-editor h1, .editor-styles-wrapper h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.content h2, body#tinymce.wp-editor h2, .editor-styles-wrapper h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .content h2, body#tinymce.wp-editor h2, .editor-styles-wrapper h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.content h3, body#tinymce.wp-editor h3, .editor-styles-wrapper h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .content h3, body#tinymce.wp-editor h3, .editor-styles-wrapper h3 {
    font-size: 23px;
    line-height: 32px;
  }
}
.content h4, body#tinymce.wp-editor h4, .editor-styles-wrapper h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .content h4, body#tinymce.wp-editor h4, .editor-styles-wrapper h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.content h5, body#tinymce.wp-editor h5, .editor-styles-wrapper h5 {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .content h5, body#tinymce.wp-editor h5, .editor-styles-wrapper h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
.content h6, body#tinymce.wp-editor h6, .editor-styles-wrapper h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}

.content ul {
  list-style: none;
}
.content ul li:before {
  content: "\2022";
  color: #107AB7;
  display: inline-block;
  width: 0.8em;
  margin-left: -0.8em;
}

.fxp:not(:last-child) {
  margin-bottom: 64px;
}
.fxp-end .fxp {
  margin-top: 16px;
  margin-bottom: 16px;
}

.edac-button, .wp-block-button {
  display: flex;
  margin-bottom: 40px;
}
.edac-button a, .edac-button__link, .wp-block-button a, .wp-block-button__link {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  background-color: #107AB7;
  text-transform: uppercase;
  padding-left: 39px;
  padding-right: 39px;
  border-radius: 20px;
}
.edac-button a:hover, .edac-button__link:hover, .wp-block-button a:hover, .wp-block-button__link:hover {
  opacity: 0.8;
}
.edac-button--center, .wp-block-button--center {
  justify-content: center;
}
.edac-button--right, .wp-block-button--right {
  justify-content: flex-end;
}

.content .tab__sections, .content .mortar-tabs__sections, .block-editor .tab__sections, .block-editor .mortar-tabs__sections {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: rgba(53, 53, 53, 0.6);
  margin-bottom: 40px;
}
.content .tab__list, .content .mortar-tabs__list, .block-editor .tab__list, .block-editor .mortar-tabs__list {
  list-style-position: inside;
  padding-left: 0;
  list-style-type: none;
  border-left: 2px solid #DDDDDD;
}
@media (min-width: 768px) {
  .content .tab__list, .content .mortar-tabs__list, .block-editor .tab__list, .block-editor .mortar-tabs__list {
    display: flex;
    border-left: none;
    border-bottom: 2px solid #DDDDDD;
  }
}
.content .tab__item, .content .mortar-tabs__item, .block-editor .tab__item, .block-editor .mortar-tabs__item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .content .tab__item, .content .mortar-tabs__item, .block-editor .tab__item, .block-editor .mortar-tabs__item {
    padding-bottom: 18px;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.content .tab__item:before, .content .mortar-tabs__item:before, .block-editor .tab__item:before, .block-editor .mortar-tabs__item:before {
  display: none;
}
.content .tab__item:not(:last-child), .content .mortar-tabs__item:not(:last-child), .block-editor .tab__item:not(:last-child), .block-editor .mortar-tabs__item:not(:last-child) {
  margin-right: 24px;
}
@media (max-width: 767px) {
  .content .tab__item.selected span, .content .mortar-tabs__item.selected span, .block-editor .tab__item.selected span, .block-editor .mortar-tabs__item.selected span {
    border-bottom: 1px solid #107AB7;
    padding-bottom: 4px;
  }
}
.content .tab__item.selected:after, .content .mortar-tabs__item.selected:after, .block-editor .tab__item.selected:after, .block-editor .mortar-tabs__item.selected:after {
  content: "";
  border-right: 2px solid #107AB7;
  position: absolute;
  left: -2px;
  height: 100%;
}
@media (max-width: 767px) {
  .content .tab__item.selected:after, .content .mortar-tabs__item.selected:after, .block-editor .tab__item.selected:after, .block-editor .mortar-tabs__item.selected:after {
    display: none;
  }
}
@media (min-width: 768px) {
  .content .tab__item.selected:after, .content .mortar-tabs__item.selected:after, .block-editor .tab__item.selected:after, .block-editor .mortar-tabs__item.selected:after {
    height: 0;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #107AB7;
    bottom: -2px;
  }
}
.content .tab__item.selected:before, .content .mortar-tabs__item.selected:before, .block-editor .tab__item.selected:before, .block-editor .mortar-tabs__item.selected:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #107AB7;
  display: block;
  position: absolute;
  top: 7px;
}
@media (max-width: 767px) {
  .content .tab__item.selected:before, .content .mortar-tabs__item.selected:before, .block-editor .tab__item.selected:before, .block-editor .mortar-tabs__item.selected:before {
    display: none;
  }
}
@media (min-width: 768px) {
  .content .tab__item.selected:before, .content .mortar-tabs__item.selected:before, .block-editor .tab__item.selected:before, .block-editor .mortar-tabs__item.selected:before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #107AB7;
    bottom: -1px;
    top: auto;
    left: calc(50% + 12px);
    -webkit-transform: transformX(-50%);
            transform: transformX(-50%);
  }
}
.content .tab__anchor, .content .mortar-tabs__anchor, .block-editor .tab__anchor, .block-editor .mortar-tabs__anchor {
  border-bottom: none;
  text-decoration: none;
  color: inherit;
}
.content .tab__anchor.selected, .content .mortar-tabs__anchor.selected, .block-editor .tab__anchor.selected, .block-editor .mortar-tabs__anchor.selected {
  color: #107AB7;
}
.content .tab__anchor:hover, .content .mortar-tabs__anchor:hover, .block-editor .tab__anchor:hover, .block-editor .mortar-tabs__anchor:hover {
  border-bottom: 1px solid currentColor;
}
.content .tab__content:not(:first-child), .content .mortar-tabs__content:not(:first-child), .block-editor .tab__content:not(:first-child), .block-editor .mortar-tabs__content:not(:first-child) {
  display: none;
}
.content .mortar-tabs a:hover, .block-editor .mortar-tabs a:hover {
  opacity: 1;
  border-bottom: 0;
  color: #107AB7;
}
.content .mortar-tabs__list, .block-editor .mortar-tabs__list {
  font-family: "HK Grotesk Pro", sans-serif;
  padding-left: 0px;
  list-style-type: none;
  border: 1px solid #DDDDDD;
  background: white;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 0 !important;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-width: 2px;
}
@media (min-width: 768px) {
  .content .mortar-tabs__list, .block-editor .mortar-tabs__list {
    display: flex;
  }
}
.content .mortar-tabs__item, .block-editor .mortar-tabs__item {
  position: relative;
  margin-bottom: 0;
}
.content .mortar-tabs__item:before, .block-editor .mortar-tabs__item:before {
  display: none;
}
.content .mortar-tabs__item a, .block-editor .mortar-tabs__item a {
  display: block;
  padding: 24px;
  margin-bottom: 0px;
  color: #353535;
  cursor: pointer;
  text-decoration: none;
  border-bottom: none;
}
.content .mortar-tabs__item a:hover, .block-editor .mortar-tabs__item a:hover {
  text-decoration: none;
}
.content .mortar-tabs__item a.selected, .block-editor .mortar-tabs__item a.selected {
  color: #107AB7;
}
.content .mortar-tabs__item a.selected:hover, .block-editor .mortar-tabs__item a.selected:hover {
  opacity: 1;
}
.content .mortar-tabs__item a.selected::after, .block-editor .mortar-tabs__item a.selected::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #107AB7;
  top: 1px;
  left: 0;
}
@media (max-width: 767px) {
  .content .mortar-tabs__item a.selected::after, .block-editor .mortar-tabs__item a.selected::after {
    display: none;
  }
}
.content .mortar-tabs__content:not(:first-child), .block-editor .mortar-tabs__content:not(:first-child) {
  display: none;
}
.content .mortar-tabs__parts, .block-editor .mortar-tabs__parts {
  padding: 16px;
  border: 1px solid #DDDDDD;
  border-top: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 768px) {
  .content .mortar-tabs__parts, .block-editor .mortar-tabs__parts {
    padding: 24px;
  }
}
.content .mortar-tabs__parts div[data-type="mortar/tab"]:nth-child(n+2), .block-editor .mortar-tabs__parts div[data-type="mortar/tab"]:nth-child(n+2) {
  display: none;
}
.content .mortar-accordion, .block-editor .mortar-accordion {
  margin-bottom: 8px;
}
.content .mortar-accordion__title, .block-editor .mortar-accordion__title {
  font-family: "HK Grotesk Pro", sans-serif;
  padding-right: 24px;
  color: #353535;
  font-size: 20px;
  line-height: 28px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}
.content .mortar-accordion__title a, .block-editor .mortar-accordion__title a {
  padding: 20px 16px 20px 24px;
  border-bottom: none;
  padding-right: 12%;
  color: inherit;
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.content .mortar-accordion__title a:hover, .block-editor .mortar-accordion__title a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  -webkit-text-decoration-color: #107AB7;
          text-decoration-color: #107AB7;
  text-decoration-thickness: 1px;
}
.content .mortar-accordion__title.open, .block-editor .mortar-accordion__title.open {
  background: #107AB7;
}
.content .mortar-accordion__title.open a, .block-editor .mortar-accordion__title.open a {
  color: white;
}
.content .mortar-accordion__title.open .mortar-accordion__state svg:first-child, .block-editor .mortar-accordion__title.open .mortar-accordion__state svg:first-child {
  display: none;
}
.content .mortar-accordion__title.open .mortar-accordion__state svg:last-child, .block-editor .mortar-accordion__title.open .mortar-accordion__state svg:last-child {
  display: block;
}
.content .mortar-accordion__title.open .mortar-accordion__state svg:last-child path, .block-editor .mortar-accordion__title.open .mortar-accordion__state svg:last-child path {
  fill: white;
}
.content .mortar-accordion__title.open + .mortar-accordion__content, .block-editor .mortar-accordion__title.open + .mortar-accordion__content {
  display: block;
}
.content .mortar-accordion__title:hover, .block-editor .mortar-accordion__title:hover {
  border-color: #107AB7;
}
.content .mortar-accordion__state, .block-editor .mortar-accordion__state {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.content .mortar-accordion__state svg, .block-editor .mortar-accordion__state svg {
  width: 14px;
}
.content .mortar-accordion__state svg path, .block-editor .mortar-accordion__state svg path {
  fill: black;
}
.content .mortar-accordion__state svg:last-child, .block-editor .mortar-accordion__state svg:last-child {
  display: none;
}
.content .mortar-accordion__holder, .block-editor .mortar-accordion__holder {
  max-width: 792px;
  margin-right: auto;
  margin-left: auto;
}
.content .mortar-accordion__caption, .block-editor .mortar-accordion__caption {
  color: black;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
}
.content .mortar-accordion__caption:not(:first-child), .block-editor .mortar-accordion__caption:not(:first-child) {
  margin-top: 80px;
}
.content .mortar-accordion__content, .block-editor .mortar-accordion__content {
  display: none;
  padding: 24px;
  transition: all 0.4s ease;
}
.content .mortar-cta, .block-editor .mortar-cta {
  background-color: #107AB7;
  padding: 16px;
}
@media (min-width: 768px) {
  .content .mortar-cta, .block-editor .mortar-cta {
    padding: 40px;
  }
}
.content .mortar-cta .wp-block-button, .block-editor .mortar-cta .wp-block-button {
  margin-bottom: 0;
}
.content .mortar-cta:not(:last-child), .block-editor .mortar-cta:not(:last-child) {
  margin-bottom: 40px;
}
.content .accordion__title, .block-editor .accordion__title {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 24px;
  padding-top: 24px;
  color: #353535;
  border-bottom: 2px solid #EEEEEE;
  transition: all 0.5s ease;
}
@media (min-width: 640px) {
  .content .accordion__title, .block-editor .accordion__title {
    font-size: 18px;
    line-height: 24px;
  }
}
.content .accordion__title a, .block-editor .accordion__title a {
  border-bottom: none;
  padding-right: 12%;
  color: inherit;
  display: block;
  position: relative;
  outline: 0;
}
.content .accordion__title a:hover, .block-editor .accordion__title a:hover {
  color: #107AB7;
}
.content .accordion__title a:hover svg path, .block-editor .accordion__title a:hover svg path {
  stroke: #107AB7;
}
.content .accordion__title.open, .block-editor .accordion__title.open {
  color: #107AB7;
  margin-bottom: 16px;
}
.content .accordion__state, .block-editor .accordion__state {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.content .accordion__state svg, .block-editor .accordion__state svg {
  width: 16px;
  height: auto;
}
.content .accordion__state svg:first-child .content .accordion, .block-editor .accordion__title.open .content .accordion__state svg:first-child, .block-editor .accordion__state svg:first-child .content .accordion, .block-editor .accordion__title.open .block-editor .accordion__state svg:first-child {
  display: none;
}
.content .accordion__state svg:last-child, .block-editor .accordion__state svg:last-child {
  display: none;
}
.content .accordion__state svg:last-child .content .accordion, .block-editor .accordion__title.open .content .accordion__state svg:last-child, .block-editor .accordion__state svg:last-child .content .accordion, .block-editor .accordion__title.open .block-editor .accordion__state svg:last-child {
  display: block;
}
.content .accordion__state svg:last-child path, .block-editor .accordion__state svg:last-child path {
  stroke: #107AB7;
}
.content .accordion__holder, .block-editor .accordion__holder {
  max-width: 792px;
  margin-right: auto;
  margin-left: auto;
}
.content .accordion__caption, .block-editor .accordion__caption {
  color: #14406C;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 24px;
}
.content .accordion__caption:not(:first-child), .block-editor .accordion__caption:not(:first-child) {
  margin-top: 80px;
}
.content .accordion__content, .block-editor .accordion__content {
  padding-bottom: 0px;
  display: none;
  border-bottom: 2px solid #EEEEEE;
  padding-bottom: 16px;
}

.cta {
  background-color: #F7F7F7;
  padding: 32px;
}
@media (min-width: 768px) {
  .cta {
    padding: 64px;
  }
}
.cta__title {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.cta__title:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.cta__info {
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
  color: #353535;
  overflow-wrap: break-word;
}
.cta__info a {
  color: inherit;
  border-bottom: 2px solid #14406C;
}
.cta__info a:hover {
  color: #14406C;
}
.cta__button {
  margin-top: 24px;
  margin-bottom: 0;
}
.cta__button a {
  min-width: 140px;
}

.bbp-header:before, .bbp-footer:before, .bbp-body:before {
  display: none !important;
}
.bbp-header ul li:before, .bbp-footer ul li:before, .bbp-body ul li:before {
  content: "";
}
.bbp-template-notice ul li {
  padding: 10px;
}
.bbp-search-form {
  width: 100%;
}
.bbp-search-form #bbp_search {
  display: block;
  border: 2px solid #DDDDDD;
  transition: all 0.25s linear;
  margin-bottom: 40px;
  position: relative;
  width: calc(100% - 200px) !important;
  outline: none;
  height: 48px;
  background: white;
  width: 100%;
  padding: 0 16px;
  color: #555555;
  font-family: "HK Grotesk Pro", sans-serif;
  font-size: 16px;
}
.bbp-search-form .button {
  background: #14406C;
  height: 40px;
  display: block;
  margin: 4px 10px 0 0;
  float: right;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background-color: #107AB7;
  text-transform: uppercase;
  padding-left: 39px;
  padding-right: 39px;
  border-radius: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}
.bbp-search-form .button:hover {
  background: #14406C;
}
.bbp-submit-wrapper {
  float: left !important;
  width: 100%;
  margin-bottom: 15px;
}
.bbp-submit-wrapper .button {
  background: #14406C;
  height: 40px;
  display: block;
  margin: 4px 10px 0 0;
  width: 100%;
  float: right;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background-color: #107AB7;
  text-transform: uppercase;
  padding-left: 39px;
  padding-right: 39px;
  border-radius: 20px;
  border: none;
  outline: none;
  cursor: pointer;
}
.bbp-submit-wrapper .button:hover {
  background: #14406C;
}

.bbpress-wrapper ul li:before {
  content: "";
}
.bbpress-wrapper label {
  font-size: 16px;
  display: inline-block;
  line-height: 1.3;
  clear: both;
  font-weight: 700;
}
.bbpress-wrapper input[type=text] {
  margin: 8px 0 0;
  padding: 5px 4px;
  letter-spacing: normal;
  border: 2px solid #ddd;
  height: 48px !important;
  display: block;
  width: 100%;
  padding-left: 16px !important;
  padding-right: 16px !important;
  font-size: 17px !important;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
.bbpress .breadcrumbs {
  display: none;
}
@media (min-width: 1280px) {
  .bbpress .breadcrumbs ~ h1 {
    padding-top: 110px;
  }
}

span.select2-selection.select2-selection--single {
  outline: none;
}

.um-form .um-button, .um-form input[type=submit].um-button, .um-form input[type=submit].um-button:focus {
  height: 40px !important;
  margin: 4px 10px 0 0 !important;
  font-size: 13px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
  background-color: #107AB7 !important;
  text-transform: uppercase !important;
  border-radius: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 39px 0 39px !important;
  font-size: 13px;
}
.um-form .um-button:hover, .um-form input[type=submit].um-button:hover, .um-form input[type=submit].um-button:focus:hover {
  background: #14406C !important;
}
.um-form ul li:before {
  content: "";
  display: none;
}
.um-account-meta a {
  border: none;
}
.um-profile-photo a:hover {
  opacity: 1;
}

ul, ol {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.hamburger-toggle {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-toggle button {
  outline: none !important;
}

.drawer {
  background: #14406C;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  height: 100%;
  transition: all 0.25s linear;
}
@media (min-width: 768px) {
  .drawer {
    max-width: 320px;
  }
}
@media (max-width: 1280px) {
  .drawer {
    visibility: hidden;
    z-index: 10;
  }
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #107AB7;
  height: 160px;
}
@media (min-width: 768px) {
  .drawer__header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .drawer__header {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1280px) {
  .drawer__header {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.drawer__content {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding-bottom: 40px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}
body.is-drawer .drawer {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
}
.drawer__main {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.drawer__main .hamburger-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  height: 40px;
  width: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}
@media (min-width: 1281px) {
  .drawer__main .hamburger-toggle {
    visibility: hidden;
  }
}
.drawer__search {
  position: relative;
  background-color: #161616;
}
.drawer__search form {
  display: flex;
}
.drawer__search button {
  width: 48px;
  height: 48px;
  background-color: #152F49;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.drawer__search button svg {
  width: 18px;
  height: 18px;
}
.drawer__search button svg * {
  stroke: white;
}
.drawer__search input[type=text],
.drawer__search input[type=search] {
  display: block;
  border: none;
  outline: none;
  height: 48px;
  background: #152F49;
  width: 100%;
  padding: 0 24px;
  color: white;
  font-family: "HK Grotesk Pro", sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
}
.drawer__search button svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
}
.drawer__footer {
  height: 90px;
  margin-bottom: 24px;
  margin-top: 24px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .drawer__footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .drawer__footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1280px) {
  .drawer__footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.drawer__footer:before {
  display: block;
  position: absolute;
  content: "";
  height: 80px;
  left: 0;
  top: -80px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.drawer__footer iframe {
  display: block;
  width: 290px !important;
}
.drawer__nav {
  font-size: 13px;
  font-weight: bold;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 40px;
}
.drawer__nav a {
  text-decoration: none;
  color: inherit;
}
.drawer__nav a:hover {
  opacity: 0.5;
}
.drawer__nav li {
  position: relative;
  border-bottom: 1px solid rgba(17, 131, 198, 0.2);
  padding: 16px 24px;
}
@media (min-width: 1024px) {
  .drawer__nav li.small-screens {
    display: none;
  }
}
.drawer__nav li.open {
  border-bottom: none;
  padding-bottom: 0;
}
.drawer__nav li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.drawer__nav li > div .toggle {
  margin-left: auto;
}
.drawer__nav li > div:not(.open) svg:last-child {
  display: none;
}
.drawer__nav li > div.open svg {
  display: none;
}
.drawer__nav li > div.open svg:last-child {
  display: block;
}
.drawer__nav li > div svg {
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .drawer__nav li > div svg {
    width: 12px;
    height: 12px;
  }
}
.drawer__nav li > div svg * {
  stroke: #14406C;
}
.drawer__nav li > ul {
  background-color: rgba(17, 131, 198, 0.2);
  padding: 16px 40px;
  display: none;
  margin-top: 16px;
  font-weight: bold;
  margin-left: -40px;
  margin-right: -40px;
  text-transform: uppercase;
}
.drawer__nav li > ul li {
  padding: 0;
  padding-left: 16px;
  border-bottom: 0;
}
.drawer__nav li > ul li:not(:last-child) {
  margin-bottom: 12px;
}
.drawer__nav li > ul .current-menu-item a:before {
  position: absolute;
  top: -6px;
  left: -24px;
  height: 28px;
  width: 4px;
  background-color: white;
  content: " ";
}
.drawer__nav li ul.sub-menu .sub-menu {
  background-color: inherit;
  padding-top: 0;
  padding-left: 52px;
  padding-bottom: 0;
}
.drawer__nav li ul.sub-menu .sub-menu li a {
  color: rgba(255, 255, 255, 0.6);
}
.drawer__nav li ul.sub-menu .sub-menu li a:hover {
  opacity: 1;
  color: white;
}
.drawer__nav li ul.sub-menu .sub-menu .current-menu-item a:before {
  position: absolute;
  top: -6px;
  left: -52px;
  height: 28px;
  width: 4px;
  background-color: white;
  content: " ";
}
.drawer__social {
  margin-top: auto;
}
.drawer__social .menu-item__ico {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(17, 131, 198, 0.2);
}
.drawer__social .menu-item__ico svg {
  width: 16px;
  height: 16px;
  width: auto;
}
.drawer__social .menu-item__ico svg * {
  fill: white;
}
.drawer__social .menu-item__title {
  display: none;
}
.drawer__social ul {
  display: flex;
  padding-left: 16px;
}
.drawer__social li {
  border-radius: 50%;
  border: 2px solid #14406C;
  position: relative;
  overflow: hidden;
}
.drawer__social li:hover {
  border-color: white;
}
.drawer__social li:hover .menu-item__ico {
  background-color: #14406C;
}
.drawer__social li:hover .menu-item__ico svg * {
  fill: white;
}
.drawer__social li:not(:last-child) {
  margin-right: 8px;
}

#layout {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  overflow-x: hidden !important;
}
@media (min-width: 1281px) {
  #layout {
    grid-template-columns: 320px 1fr;
  }
}
#layout__content {
  width: 100%;
  position: relative;
}

.header {
  width: 100%;
  height: 88px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #14406C;
  transition: all 0.25s linear;
  z-index: 9;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .header {
    height: 112px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1281px) {
  .header {
    visibility: hidden;
    height: 0;
  }
}
.header__menu-label {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: white;
  margin-left: 8px;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 768px) {
  .header__menu-label {
    display: inline-block;
  }
}
.header .hamburger-toggle {
  height: 40px;
  width: 40px;
  background-color: #107AB7;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .header .hamburger-toggle {
    padding-left: 16px;
    padding-right: 16px;
    width: auto;
  }
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header__logo svg {
  height: 56px;
}
@media (min-width: 768px) {
  .header__logo svg {
    height: 77px;
  }
}

.vh {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  background-color: white;
  color: #000;
  padding: 12px;
  display: block;
  height: auto;
  left: 6px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}
.skip-link:focus {
  top: 7px;
  transition: top 0s;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.wrapper {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: calc(960px + (2 * 16px));
}
@media (min-width: 768px) {
  .wrapper {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(960px + (2 * 24px));
  }
}
@media (min-width: 1024px) {
  .wrapper {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(960px + (2 * 32px));
  }
}
@media (min-width: 1280px) {
  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(960px + (2 * 40px));
  }
}

.splash {
  background-color: #888888;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  width: 100%;
  height: 100vh;
}
@media (max-width: 767px) {
  .splash {
    max-height: 568px;
  }
}
@media (min-width: 768px) {
  .splash {
    height: 100vh;
  }
}
@media (min-width: 1024px) {
  .splash {
    height: 80vh;
  }
}
@media (min-width: 1280px) {
  .splash {
    height: 100vh;
  }
}
.splash:after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  content: "";
  height: 90%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
@media (min-width: 768px) {
  .splash:after {
    height: 80%;
  }
}
.splash__content {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  max-width: calc(960px + (2 * 16px));
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  margin-top: 90px;
}
@media (min-width: 768px) {
  .splash__content {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(960px + (2 * 24px));
  }
}
@media (min-width: 1024px) {
  .splash__content {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(960px + (2 * 32px));
  }
}
@media (min-width: 1280px) {
  .splash__content {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(960px + (2 * 40px));
  }
}
@media (min-width: 768px) {
  .splash__content {
    margin-top: 180px;
  }
}
.splash__title {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 21px;
}
.splash__title:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.splash__title:after {
  border-color: white;
}
.splash__caption {
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  max-width: 792px;
  margin-bottom: 8x;
}
@media (min-width: 640px) {
  .splash__caption {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .splash__caption {
    font-size: 64px;
    line-height: 76px;
  }
}
.splash__description {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 792px;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 768px) {
  .splash__description {
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 96px;
  }
}
@media (min-width: 1024px) {
  .splash__description {
    margin-bottom: 24px;
  }
}
.splash__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.splash__action {
  margin-bottom: 16px;
  margin-right: 5px;
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.splash__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.splash__action a {
  border: 2px solid white;
  max-width: 300px;
}
.splash__action a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .splash__action:first-child {
    margin-right: 24px;
  }
}
.splash__holder {
  position: relative;
}
.splash__holder .flickity-page-dots {
  text-align: left;
  left: 16px;
  bottom: 24px;
}
@media (min-width: 768px) {
  .splash__holder .flickity-page-dots {
    left: 24px;
    bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .splash__holder .flickity-page-dots {
    width: 960px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 1280px) and (max-width: 1365px) {
  .splash__holder .flickity-page-dots {
    position: relative !important;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
    max-width: calc(960px + (2 * 16px));
    width: 100%;
  }
}
@media (min-width: 1280px) and (max-width: 1365px) and (min-width: 768px) {
  .splash__holder .flickity-page-dots {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(960px + (2 * 24px));
  }
}
@media (min-width: 1280px) and (max-width: 1365px) and (min-width: 1024px) {
  .splash__holder .flickity-page-dots {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(960px + (2 * 32px));
  }
}
@media (min-width: 1280px) and (max-width: 1365px) and (min-width: 1280px) {
  .splash__holder .flickity-page-dots {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(960px + (2 * 40px));
  }
}
.splash__holder .flickity-page-dots .dot {
  background: white;
  width: 24px;
  height: 2px;
  border-radius: 0;
}
.splash__holder .flickity-page-dots .dot:first-child {
  margin-left: 0;
}
.splash__holder .flickity-prev-next-button {
  display: none !important;
}
.splash__video, .splash__figure {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  bottom: 0;
}
.splash__video video, .splash__video iframe, .splash__figure video, .splash__figure iframe {
  max-width: none !important;
}
.splash__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.splash .footer {
  color: white;
}

.footer {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 48px;
  padding-bottom: 40px;
}
.footer__holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__nav {
  margin-bottom: 8px;
}
.footer__nav ul {
  display: flex;
}
.footer__nav li:not(:last-child) {
  margin-right: 8px;
}
.footer__nav li:not(:last-child):after {
  margin-left: 8px;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #107AB7;
  vertical-align: middle;
}
.footer__nav a {
  color: #161616;
}
.footer__nav a:hover {
  border-bottom: 1px solid currentColor;
}
.footer__copyright {
  color: #888888;
  text-align: center;
}

.logo-bar {
  background-color: white;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .logo-bar {
    padding-top: 80px;
  }
}
.logo-bar .logo-bar__caption {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.logo-bar .logo-bar__caption:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.logo-bar img {
  display: block;
  width: 160px;
  height: auto;
}
.logo-bar .partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: calc(50% - 6px);
  margin-right: 12px;
  border: 2px solid #EEEEEE;
}
@media (min-width: 768px) {
  .logo-bar .partner-logo {
    height: 120px;
    width: calc(33% - 14px);
    margin-right: 24px;
  }
}
@media (min-width: 1024px) {
  .logo-bar .partner-logo {
    width: calc(25% - 18px);
  }
}
.logo-bar svg {
  width: 100%;
  max-height: 74px;
}
@media (min-width: 768px) {
  .logo-bar svg {
    max-height: 120px;
  }
}
.logo-bar img {
  width: 100%;
  max-width: 88px;
}
@media (min-width: 768px) {
  .logo-bar img {
    max-width: 120px;
  }
}
.logo-bar .flickity-prev-next-button {
  top: 60px;
  border-radius: 20px;
  background-color: #107AB7;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .logo-bar .flickity-prev-next-button {
    top: 95px;
  }
}
.logo-bar .flickity-prev-next-button.next {
  right: 16px;
}
@media (min-width: 768px) {
  .logo-bar .flickity-prev-next-button.next {
    right: 32px;
  }
}
@media (min-width: 1280px) {
  .logo-bar .flickity-prev-next-button.next {
    right: 40px;
  }
}
.logo-bar .flickity-prev-next-button.previous {
  left: auto;
  right: 52px;
}
@media (min-width: 768px) {
  .logo-bar .flickity-prev-next-button.previous {
    right: 72px;
  }
}
@media (min-width: 1280px) {
  .logo-bar .flickity-prev-next-button.previous {
    right: 80px;
  }
}
.logo-bar .flickity-prev-next-button .flickity-button-icon {
  color: white;
}

.block {
  width: 100%;
  margin-bottom: 40px;
  transition: all 0.25s ease-out;
}
@media (min-width: 768px) {
  .block {
    width: 31%;
  }
}
.block__holder {
  display: flex;
}
.block__bottom {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  padding-bottom: 16px;
}
.block__date {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #107AB7;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
.block__date svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.block__date svg * {
  fill: #107AB7;
}
.block__category {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #888888;
}
.block__category a {
  color: #888888;
  padding-top: 3px;
}
.block__category li {
  display: flex;
  align-items: center;
}
.block__category li:before {
  content: "";
  margin-right: 8px;
  display: none;
  height: 10px;
  width: 8px;
  vertical-align: middle;
}
.block__category__resources li:before {
  display: inline-block;
  background-color: #161616;
}
.block__category__careers li:before {
  display: inline-block;
  background-color: #107AB7;
}
.block__category__rfps li:before {
  display: inline-block;
  background-color: #818991;
}
.block__info {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
.block__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .block__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.block__title a {
  color: #353535;
}
.block__title a:hover {
  color: #107AB7;
}
.block__content {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  height: auto;
  text-align: left;
  position: relative;
  color: #555555;
  display: flex;
  flex-direction: column;
}
.block__ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #107AB7;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block__ico svg {
  display: block;
}
.block__ico--gallery {
  top: 16px;
  right: 16px;
}
.block__ico--gallery svg {
  width: 18px;
  height: 16px;
}
.block__ico--gallery svg * {
  stroke-width: 2;
}
.block__ico--video {
  top: 16px;
  right: 16px;
}
.block__ico--video svg {
  width: 20px;
  height: 20px;
  position: relative;
  left: 3px;
}
.block__ico--video svg * {
  stroke-width: 2;
  fill: white;
}
.block__action {
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: bold;
  max-width: 80px;
  margin-top: 24px;
}
.block__action a {
  border-bottom: 2px solid #107AB7;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: inline-block;
  color: #107AB7;
}
.block__action a:hover {
  opacity: 0.5;
}
.block__placeholder {
  height: 0;
}

.news-archive {
  padding-bottom: 16px;
}
.news-archive h1 {
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  color: #353535;
  font-weight: bold;
  margin-bottom: 16px;
  max-width: 796px;
}
@media (min-width: 640px) {
  .news-archive h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .news-archive h1 {
    font-size: 64px;
    line-height: 76px;
  }
}
.news-archive .block__holder {
  display: block;
}
@media (min-width: 768px) {
  .news-archive .block__holder {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
    flex-wrap: wrap;
  }
  .news-archive .block__holder .block {
    padding: 0 15px;
  }
  .news-archive .block__holder .block:nth-child(1), .news-archive .block__holder .block:nth-child(2) {
    width: 48%;
  }
  .news-archive .block__holder .block:nth-child(1) .block__title, .news-archive .block__holder .block:nth-child(2) .block__title {
    font-size: 26px;
    line-height: 32px;
  }
}
.news-archive .block {
  margin-bottom: 32px;
  width: 100%;
}
.news-archive .block__figure {
  max-height: 216px;
}
@media (min-width: 768px) {
  .news-archive .block {
    width: 47%;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .news-archive .block {
    width: 32%;
    margin-bottom: 64px;
  }
}

.load-more {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.load-more a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.load-more a {
  background-color: #107AB7;
}

.post-navigation {
  background-color: #F7F7F7;
}
@media (min-width: 768px) {
  .post-navigation {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.post-navigation .nav-links {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  max-width: calc(1200px + (2 * 16px));
}
@media (min-width: 768px) {
  .post-navigation .nav-links {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(1200px + (2 * 24px));
  }
}
@media (min-width: 1024px) {
  .post-navigation .nav-links {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(1200px + (2 * 32px));
  }
}
@media (min-width: 1280px) {
  .post-navigation .nav-links {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(1200px + (2 * 40px));
  }
}
@media (max-width: 767px) {
  .post-navigation .nav-links:before {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #DDDDDD;
    display: block;
    content: "";
  }
}
.post-navigation a {
  display: flex;
  flex-direction: column;
  color: inherit;
}
.post-navigation a:hover .post-navigation__title {
  color: #14406C;
}
.post-navigation .nav-next {
  text-align: right;
  margin-left: auto;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  max-width: 50%;
}
@media (max-width: 767px) {
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    width: 50%;
    text-align: center;
  }
  .post-navigation .nav-previous a,
  .post-navigation .nav-next a {
    padding: 24px;
  }
}
.post-navigation__label {
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #14406C;
}
@media (min-width: 768px) {
  .post-navigation__label {
    margin-bottom: 8px;
  }
}
.post-navigation__title {
  font-size: 19px;
  line-height: 26px;
  font-weight: 800;
  color: #353535;
}
@media (max-width: 767px) {
  .post-navigation__title {
    display: none;
  }
}

.news {
  padding-top: 80px;
  position: relative;
}
.news h1 {
  font-size: 23px;
  line-height: 32px;
  font-weight: bold;
  color: #353535;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .news h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .news h1 {
    padding-bottom: 16px;
  }
}
.news hr {
  border: none;
  border-top: 1px solid #EEEEEE;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .news hr {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 1024px) {
  .news hr {
    position: absolute;
    left: -500px;
    bottom: 0;
    width: 200vw;
    margin-bottom: 0;
  }
}
.news__wrapper {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news__wrapper {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .news__wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.news__aside .news__sidebar {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news__aside .news__sidebar {
    margin-top: 64px;
  }
}
@media (min-width: 1024px) {
  .news__sidebar {
    max-width: 278px;
    width: 100%;
    margin-left: 65px;
  }
}
.news__category {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
}
.news__category a {
  color: #888888;
  padding-top: 3px;
}
.news__category li {
  display: flex;
  align-items: center;
}
.news__category li:before {
  content: "";
  margin-right: 8px;
  display: none;
  height: 10px;
  width: 8px;
  vertical-align: middle;
}
.news__category__resources li:before {
  display: inline-block;
  background-color: #161616;
}
.news__category__careers li:before {
  display: inline-block;
  background-color: #107AB7;
}
.news__category__rfps li:before {
  display: inline-block;
  background-color: #818991;
}
.news__date {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.news__tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #161616;
  margin-top: 40px;
}
.news__tags a {
  margin-left: 8px;
  color: #107AB7;
}
.news__tags a:hover {
  border-bottom: 1px solid currentColor;
}
.news__author {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #107AB7;
  margin-bottom: 8px;
}
.news__author span {
  color: #161616;
}
.news__social {
  margin-top: 40px;
}
.news__social__caption {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.news__social__caption:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.news__main {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 1024px) {
  .news__main {
    max-width: 632px;
  }
}
@media (min-width: 1280px) {
  .news__main {
    max-width: 816px;
  }
}
.news__extra {
  font-size: 17px;
  line-height: 26px;
}
.news__extra ul {
  font-weight: 500;
  color: #555555;
}
.news__extra ul span {
  font-weight: bold;
}
.news__extra__margin {
  margin-bottom: 24px;
}
.news__extra__heading {
  font-weight: bold;
  color: #555555;
}
.news__extra div:not(:last-child) {
  margin-bottom: 24px;
}
.news__top {
  position: relative;
}
.news .block__date {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  height: 32px;
  max-width: 297px;
  background-color: #107AB7;
  color: white;
  border-radius: 16px;
}
.news__winner {
  display: flex;
  align-items: center;
  width: 100px;
  height: 32px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: white;
  background-color: #107AB7;
  border-radius: 16px;
  text-transform: uppercase;
  padding-left: 9px;
  padding-right: 9px;
  padding-top: 2px;
  margin-right: 16px;
}
.news__winner svg {
  width: 16px;
  margin-right: 6px;
  margin-top: -2px;
}
.news__winner svg * {
  fill: white;
}
.news__winner__wrap {
  display: flex;
}
.news__submitter {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #161616;
  text-transform: uppercase;
  align-self: center;
}
.news__submitter span {
  margin-left: 8px;
  color: #888888;
}
.news__back {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  border: 2px solid rgba(42, 42, 42, 0.1);
  border-radius: 20px;
  width: 170px;
}
.news__back a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.news__back a {
  color: #107AB7;
}
.news__back a:before {
  content: "";
  border: solid #107AB7;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-right: 8px;
  margin-top: -2px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.news-search {
  border: 2px solid #DDDDDD;
  transition: all 0.25s linear;
  margin-bottom: 40px;
  position: relative;
}
.news-search--active {
  border: 2px solid #14406C;
}
.news-search form {
  display: flex;
}
.news-search button {
  width: 48px;
  height: 48px;
  background-color: white;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.news-search button svg {
  width: 20px;
  height: 20px;
}
.news-search button svg * {
  stroke: #14406C;
}
.news-search input[type=text],
.news-search input[type=search] {
  display: block;
  border: none;
  outline: none;
  height: 48px;
  background: white;
  width: 100%;
  padding: 0 16px;
  color: #555555;
  font-family: "HK Grotesk Pro", sans-serif;
  font-size: 16px;
}

.news-list {
  counter-reset: section;
  margin-bottom: 48px;
}
.news-list a {
  color: inherit;
  display: block;
}
.news-list a:hover .news-list__title {
  color: #14406C;
}
.news-list li {
  padding-top: 16px;
  padding-bottom: 16px;
}
.news-list li:not(:last-child) {
  border-bottom: 1px solid #DDDDDD;
}
.news-list__date {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 18px;
  color: #F7F7F7;
  margin-bottom: 8px;
}
.news-list__title {
  font-weight: 800;
  font-size: 19px;
  line-height: 26px;
  color: #353535;
}
.news-list__info {
  counter-increment: section;
  position: relative;
}
.news-list span {
  display: block;
}
.news-list__figure {
  margin-bottom: 24px;
  position: relative;
}
.news-list__figure img {
  width: 100%;
  height: auto;
}

.awards-template-default .news__figure {
  margin-bottom: 64px;
  padding-top: 16px;
}
@media (max-width: 640px) {
  .awards-template-default .news__figure {
    margin-bottom: 41px;
  }
}

.news-promo {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.news-promo ul {
  max-width: 300px;
}
.news-promo__card > a {
  display: block;
}
.news-promo__card > a > img {
  width: 100%;
  height: auto;
  display: block;
}
.news-promo li {
  display: none;
}

.infinite-scroll-request {
  margin-bottom: 72px;
}

.ball-pulse {
  display: flex;
  justify-content: center;
}

.ball-pulse > div {
  background-color: #14406C;
}

.recent-news {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .recent-news {
    margin-bottom: 20px;
  }
}
.recent-news .block {
  width: 100%;
}
@media (min-width: 768px) {
  .recent-news .block {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .recent-news .block:nth-child(4) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .recent-news .block:nth-child(4) {
    display: none;
  }
}
@media (min-width: 640px) {
  .recent-news__holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .recent-news__holder .block {
    width: calc(48% - 18px);
    margin-right: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recent-news__holder .block:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .recent-news__holder .block {
    width: calc(33% - 18px);
    margin-right: 24px;
  }
  .recent-news__holder .block:nth-child(3n) {
    margin-right: 0;
  }
}
.recent-news__caption {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  text-transform: none;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #107AB7;
  margin-bottom: 40px;
}
.recent-news__caption:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.recent-news__caption:after {
  width: 80px;
}
@media (min-width: 640px) {
  .recent-news__caption {
    font-size: 26px;
    line-height: 32px;
  }
}
.recent-news__caption:after {
  border-color: #107AB7;
}
@media (min-width: 768px) {
  .recent-news__head {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .recent-news__head .recent-news__action {
    display: none;
  }
}
.recent-news__action {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.recent-news__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .recent-news__action {
    width: 100%;
  }
}
.recent-news__action a {
  color: #107AB7;
  border: 2px solid rgba(42, 42, 42, 0.1);
}
.recent-news__action a:hover {
  color: white;
  border: none;
  background-color: #107AB7;
}
@media (min-width: 768px) {
  .recent-news__action--bottom {
    display: none;
  }
}

.first-nav {
  display: flex;
  font-size: 13px;
  line-height: 16px;
  color: #888888;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
  width: 100%;
}
.first-nav__holder {
  width: 100%;
  margin-bottom: 64px;
}
.first-nav a {
  color: inherit;
}
.first-nav a:hover {
  color: #161616;
}
.first-nav .current_page_item span,
.first-nav .current_page_ancestor span {
  border-bottom: 1px solid currentColor;
}
.first-nav .current_page_item a,
.first-nav .current_page_ancestor a {
  color: #161616;
}
.first-nav ul {
  display: flex;
  justify-content: center;
}
.first-nav ul li:not(:last-child) {
  margin-right: 16px;
}

.fourth-nav {
  display: flex;
  justify-content: center;
  font-size: 13px;
  line-height: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #14406C;
  margin-top: 24px;
  text-align: center;
}
.fourth-nav__holder {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1025px) {
  .fourth-nav__holder {
    margin-bottom: 80px;
  }
}
.fourth-nav span {
  display: block;
  position: relative;
}
.fourth-nav em {
  font-style: normal;
}
@media (max-width: 767px) {
  .fourth-nav em {
    display: none;
  }
}
.fourth-nav a {
  display: block;
  padding: 23px 32px;
  color: inherit;
}
.fourth-nav a:hover span {
  border-bottom: 1px solid currentColor;
}
.fourth-nav .current_page_item a {
  background-color: rgba(138, 173, 191, 0.1);
}
.fourth-nav .current_page_item span {
  border-bottom: 1px solid currentColor;
}
.fourth-nav ul {
  display: flex;
}

.nav-dropdown, .nav-dropdown-scores {
  padding-top: 30px;
}
.intro .nav-dropdown, .intro .nav-dropdown-scores {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .nav-dropdown, .nav-dropdown-scores {
    position: absolute !important;
    left: -99999px !important;
  }
}

@media (max-width: 1023px) {
  .nav-dropdown-desktop {
    display: none;
  }
}

.gform_wrapper {
  max-width: 792px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
  text-align: center;
}
.gform_wrapper__title {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 32px;
  color: #353535;
}
@media (min-width: 640px) {
  .gform_wrapper__title {
    font-size: 23px;
    line-height: 32px;
  }
}
.gform_wrapper__description {
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 80px;
  color: #555555;
}
.gform_wrapper .validation_error {
  display: none;
}
.gform_wrapper input[type=text],
.gform_wrapper input[type=email],
.gform_wrapper textarea {
  border: 2px solid #DDDDDD;
  height: 48px;
  display: block;
  width: 100%;
  padding-left: 16px !important;
  padding-right: 16px !important;
  font-size: 17px !important;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper textarea:focus {
  border-color: #107AB7;
}
.gform_wrapper textarea {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gform_wrapper .validation_message {
  margin-top: 8px;
  color: #14406C;
  font-size: 12px;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox input {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li:not(:last-child) {
  margin-bottom: 8px;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li > label {
  display: flex;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li > label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #DDDDDD;
  margin-right: 8px;
  flex-shrink: 0;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li input:checked + label {
  font-weight: normal;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li input:checked + label:before {
  border-color: #107AB7;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_checkbox li input:checked + label:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 7px;
  height: 15px;
  border: solid #107AB7;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio input {
  display: none;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li:not(:last-child) {
  margin-bottom: 8px;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li > label {
  display: flex;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}
@media (max-width: 767px) {
  .gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li > label {
    max-width: 100%;
    width: 100%;
  }
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li > label:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #DDDDDD;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li input:checked + label {
  font-weight: normal;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li input:checked + label:before {
  border-color: #107AB7;
}
.gform_wrapper .gform_body ul.gform_fields ul.gfield_radio li input:checked + label:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 6px;
  height: 6px;
  border: 2px solid #107AB7;
  background-color: #107AB7;
  border-radius: 50%;
  margin-top: 4px;
}
.gform_wrapper .gform_body ul.gform_fields .gsection, .gform_wrapper .gform_body ul.gform_fields .gfield_html {
  border: none;
}
.gform_wrapper .gform_body ul.gform_fields .gsection h1, .gform_wrapper .gform_body ul.gform_fields .gfield_html h1 {
  font-size: 23px;
  line-height: 32px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields .gsection h1, .gform_wrapper .gform_body ul.gform_fields .gfield_html h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
.gform_wrapper .gform_body ul.gform_fields .gsection h2, .gform_wrapper .gform_body ul.gform_fields .gfield_html h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields .gsection h2, .gform_wrapper .gform_body ul.gform_fields .gfield_html h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.gform_wrapper .gform_body ul.gform_fields .gsection h3, .gform_wrapper .gform_body ul.gform_fields .gfield_html h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields .gsection h3, .gform_wrapper .gform_body ul.gform_fields .gfield_html h3 {
    font-size: 23px;
    line-height: 32px;
  }
}
.gform_wrapper .gform_body ul.gform_fields .gsection h4, .gform_wrapper .gform_body ul.gform_fields .gfield_html h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields .gsection h4, .gform_wrapper .gform_body ul.gform_fields .gfield_html h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.gform_wrapper .gform_body ul.gform_fields .gsection h5, .gform_wrapper .gform_body ul.gform_fields .gfield_html h5 {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
}
@media (min-width: 640px) {
  .gform_wrapper .gform_body ul.gform_fields .gsection h5, .gform_wrapper .gform_body ul.gform_fields .gfield_html h5 {
    font-size: 18px;
    line-height: 24px;
  }
}
.gform_wrapper .gform_body ul.gform_fields .gsection h6, .gform_wrapper .gform_body ul.gform_fields .gfield_html h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
}
.gform_wrapper .gform_body ul.gform_fields .gsection h1, .gform_wrapper .gform_body ul.gform_fields .gsection h2, .gform_wrapper .gform_body ul.gform_fields .gsection h3, .gform_wrapper .gform_body ul.gform_fields .gsection h4, .gform_wrapper .gform_body ul.gform_fields .gsection h5, .gform_wrapper .gform_body ul.gform_fields .gsection h6, .gform_wrapper .gform_body ul.gform_fields .gfield_html h1, .gform_wrapper .gform_body ul.gform_fields .gfield_html h2, .gform_wrapper .gform_body ul.gform_fields .gfield_html h3, .gform_wrapper .gform_body ul.gform_fields .gfield_html h4, .gform_wrapper .gform_body ul.gform_fields .gfield_html h5, .gform_wrapper .gform_body ul.gform_fields .gfield_html h6 {
  color: #353535;
}
.gform_wrapper .gform_body ul.gform_fields .gsection h1:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gsection h2:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gsection h3:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gsection h4:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gsection h5:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gsection h6:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h1:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h2:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h3:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h4:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h5:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html h6:not(:last-child) {
  margin-bottom: 16px !important;
}
.gform_wrapper .gform_body ul.gform_fields .gsection p, .gform_wrapper .gform_body ul.gform_fields .gfield_html p {
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.gform_wrapper .gform_body ul.gform_fields .gsection p:not(:last-child), .gform_wrapper .gform_body ul.gform_fields .gfield_html p:not(:last-child) {
  margin-bottom: 24px !important;
}
.gform_wrapper .gform_body ul.gform_fields .gsection a, .gform_wrapper .gform_body ul.gform_fields .gfield_html a {
  border-bottom: 1px solid #107AB7;
  color: #107AB7;
}
.gform_wrapper .gform_body ul.gform_fields .gsection a:hover, .gform_wrapper .gform_body ul.gform_fields .gfield_html a:hover {
  opacity: 0.5;
}
.gform_wrapper .gfield {
  width: 100%;
}
.gform_wrapper .gfield > .gfield_label {
  font-size: 16px;
  line-height: 24px;
  display: block;
  font-weight: bold;
  color: #353535;
}
.gform_wrapper .gfield_required {
  color: #353535 !important;
}
.gform_wrapper .ginput_container_product_calculation {
  background-color: #F7F7F7;
  padding: 11px 16px;
}
.gform_wrapper .ginput_container_product_calculation span, .gform_wrapper .ginput_container_product_calculation span.ginput_product_price {
  color: #DC0000;
  font-weight: bold;
}
@media (max-width: 767px) {
  .gform_wrapper .ginput_container_product_calculation span, .gform_wrapper .ginput_container_product_calculation span.ginput_product_price {
    display: inline-block !important;
  }
}
.gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gpnf-add-entry {
  font-family: "HK Grotesk Pro", sans-serif;
  height: 40px;
  font-size: 13px !important;
  line-height: 16px;
  font-weight: bold;
  color: white;
  background-color: #107AB7;
  text-transform: uppercase;
  padding-left: 40px;
  padding-right: 40px;
  border: none;
  border-radius: 20px;
  width: 100%;
  cursor: pointer;
}
.gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gpnf-add-entry:hover {
  opacity: 0.8;
}
.gform_wrapper .gpnf-add-entry {
  width: auto;
}
.gform_wrapper .gpnf-nested-entries {
  border-top: 2px solid #EEEEEE;
}
.gform_wrapper .gpnf-nested-entries th {
  padding-left: 0;
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #107AB7;
  background-color: transparent;
}
.gform_wrapper .gpnf-nested-entries tr.gpnf-no-entries td {
  width: 100%;
  max-width: 100%;
}
.gform_wrapper .gpnf-nested-entries td {
  padding-left: 0;
  word-break: break-word;
}
.gform_wrapper .gpnf-nested-entries td:first-child {
  font-weight: 700;
  max-width: 300px;
}
@media (min-width: 768px) {
  .gform_wrapper .gpnf-nested-entries td:first-child {
    max-width: 468px;
  }
}
.gform_wrapper .gpnf-nested-entries td:not(:first-child) {
  vertical-align: top;
}
@media (max-width: 479px) {
  .gform_wrapper .gpnf-nested-entries td:last-child {
    width: 50px;
  }
}
.gform_wrapper .gpnf-nested-entries .gpnf-row-actions {
  text-align: right;
  padding-right: 0;
}
.gform_wrapper .gpnf-nested-entries .gpnf-row-actions a {
  color: #107AB7;
}
.gform_wrapper .gpnf-nested-entries .gpnf-row-actions ul {
  padding-left: 0;
}
.gform_wrapper .gpnf-nested-entries .gpnf-row-actions li:not(:last-child) {
  margin-right: 8px;
}
.gform_wrapper .gpnf-nested-entries-container {
  margin-bottom: 64px;
}
.gform_wrapper .gpnf-no-entries td {
  font-weight: normal !important;
  text-align: left;
}
.gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
@media (min-width: 768px) {
  .gform_wrapper ul.gform_fields li.gf_left_half {
    padding-right: 16px;
  }
}
.gform_wrapper .ginput_recaptcha div:first-child {
  margin: 0 auto;
}
.gform_wrapper .gform_delete {
  width: 20px;
  height: 20px;
  line-height: 24px;
  margin-right: 6px;
  margin-left: 16px;
}
.gform_wrapper .gform_delete:before, .gform_wrapper .gform_delete:after {
  margin-top: 4px;
  position: absolute;
  content: " ";
  height: 16px;
  width: 2px;
  background-color: red;
}
.gform_wrapper .gform_delete:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gform_wrapper .gform_delete:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.gform_wrapper .ginput_preview {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.gform_wrapper .ginput_preview strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  .gform_wrapper .ginput_preview strong {
    width: 215px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.gform_wrapper .ginput_preview a {
  border-bottom: 0;
}
@media (max-width: 767px) {
  .gform_wrapper .ginput_preview span {
    width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.gform_wrapper li.gfield.gfield_error {
  background-color: transparent !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
}
.gform_wrapper li.gfield.gfield_error label {
  margin-top: 0 !important;
  color: #FF0000;
}
.gform_wrapper li.gfield.gfield_error label .gfield_required {
  color: #FF0000 !important;
}
.gform_wrapper li.gfield.gfield_error input[type=text],
.gform_wrapper li.gfield.gfield_error input[type=email],
.gform_wrapper li.gfield.gfield_error textarea {
  border-color: #FF0000 !important;
}
.gform_wrapper li.gfield.gfield_error .select2-selection {
  border-color: #FF0000;
  color: #FF0000;
}
.gform_wrapper .field_description_below .gfield_description {
  padding-top: 0 !important;
}
.gform_wrapper .validation_message {
  color: #FF0000 !important;
  font-size: 14px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
}

.gform_validation_container {
  display: none !important;
}

.gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}

.gpnf-dialog .ui-dialog-titlebar {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  font-weight: 700 !important;
}
@media (min-width: 640px) {
  .gpnf-dialog .ui-dialog-titlebar {
    font-size: 23px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .gpnf-dialog {
    width: 100% !important;
  }
}

.gform_wrapper .ginput_container.ginput_recaptcha div:first-child {
  margin: 0px;
}

@media (max-width: 1024px) {
  #gform_fields_25 td:first-child,
  #gform_fields_15 td:first-child {
    width: 100% !important;
    max-width: unset !important;
  }
}

.page-template-badging-portal .intro__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-template-badging-portal .intro__logout-button {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  font-family: "HK Grotesk Pro", sans-serif;
  color: #353535;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .page-template-badging-portal .intro__logout-button {
    font-size: 20px;
    line-height: 24px;
  }
}
.page-template-badging-portal .intro__logout-button:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.page-template-badging-portal .intro__caption {
  margin-bottom: 24px;
  color: white;
}
.page-template-badging-portal .intro__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.page-template-badging-portal .intro__action {
  margin-right: 16px;
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.page-template-badging-portal .intro__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.page-template-badging-portal .intro__action a {
  border: 2px solid white;
  max-width: 300px;
}
.page-template-badging-portal .intro__action a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .page-template-badging-portal .intro__action:first-child {
    margin-right: 24px;
  }
}
.page-template-badging-portal .intro--with-image:after {
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgb(0, 0, 0));
}

.um-page-password-reset .um-center .um-button {
  width: 100% !important;
  margin: 0 !important;
}

.um-page-login .um-field-password .um-field-error {
  display: none;
}
.um-page-login .um-error-code-recaptcha {
  display: none;
}
.um-page-login .content {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.um-page-login .um-center .um-button {
  width: 100% !important;
  margin: 0 !important;
}

.um-page-register .content {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.um-page-register .content p {
  margin-bottom: 0;
}
.um-page-register .content figure {
  padding-top: 0;
}
.um-page-register .um-center .um-button {
  width: 100% !important;
  margin: 0 !important;
}

.register .breadcrumbs {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .register .breadcrumbs {
    margin-bottom: 80px;
  }
}
.register__wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .register__wrapper {
    padding-bottom: 64px;
  }
}
.register__title {
  font-family: "HK Grotesk Pro", sans-serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .register__title {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .register__title {
    font-size: 64px;
    line-height: 76px;
  }
}
.register__content {
  font-size: 17px;
  line-height: 26px;
  color: #555555;
  margin-bottom: 9px;
}
.register__form .um .um-button {
  width: 100% !important;
}
.register__form a.um-link-alt {
  color: #555555 !important;
}
.register__already {
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 15px;
  line-height: 22px;
  color: #555555;
}
.register__already a {
  font-size: 15px;
  line-height: 22px;
  margin-left: 8px;
  color: #107AB7;
  text-decoration: underline;
}
.register__already a:hover {
  opacity: 0.5;
}

.badges__holder {
  margin-bottom: 40px;
}
.badges__caption {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.badges__empty {
  margin-bottom: 64px;
}
.badges__empty p {
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.badges__empty p a {
  color: #14406C;
}
.badges__empty p a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.badges hr {
  border: 1px solid #EEEEEE;
}

.badge {
  border: 2px solid #EEEEEE;
  padding: 24px;
  margin-bottom: 24px;
}
.badge:hover {
  box-shadow: -1px 10px 19px -4px rgba(0, 0, 0, 0.14);
}
.badge:hover h2 {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .badge {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.badge img {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .badge img {
    width: 240px;
  }
}
@media (min-width: 768px) {
  .badge img {
    margin-right: 24px;
  }
}
.badge h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  font-family: "HK Grotesk Pro", sans-serif;
  color: #353535;
}
@media (min-width: 640px) {
  .badge h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

.single-badge {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .single-badge {
    padding-top: 64px;
    padding-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.single-badge h1 {
  font-family: "HK Grotesk Pro", sans-serif;
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .single-badge h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .single-badge h1 {
    font-size: 64px;
    line-height: 76px;
  }
}
@media (min-width: 768px) {
  .single-badge__content {
    padding-left: 24px;
  }
}
@media (min-width: 1024px) {
  .single-badge__content {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .single-badge__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .single-badge__figure img {
    width: 100%;
  }
}
.single-badge__description {
  font-size: 17px;
  line-height: 26px;
  color: #555555;
}
.single-badge .social {
  margin-bottom: 16px;
}
.single-badge .social .social__el--email {
  display: none;
}
.single-badge svg {
  width: 17px;
  height: 17px;
}
.single-badge__download {
  font-family: "HK Grotesk Pro", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  color: #107AB7;
  border-radius: 16px;
  border: 2px solid #107AB7;
  max-width: 200px;
  height: 32px;
  line-height: 15px;
}
.single-badge__download:hover {
  background-color: #107AB7;
  color: white;
}
.single-badge__download:hover svg {
  fill: white;
}
.single-badge__download svg {
  margin-right: 8px;
  fill: #107AB7;
}

.single-badges hr, .page-template-login hr, .page-template-register hr {
  border: 1px solid #EEEEEE;
}

.single-badges:not(.logged-in) .news__social {
  display: none;
}

.grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .grid {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid.four .badge {
    flex-basis: calc(33.3333333333% - 16px);
    margin-right: 24px;
  }
  .grid.four .badge:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .grid.four .badge {
    flex-basis: calc(25% - 18px);
    margin-right: 24px;
  }
  .grid.four .badge:nth-child(4n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid.three .badge {
    flex-basis: calc(50% - 12px);
    margin-right: 24px;
  }
  .grid.three .badge:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .grid.three .badge {
    flex-basis: calc(33.3333333333% - 16px);
    margin-right: 24px;
  }
  .grid.three .badge:nth-child(3n) {
    margin-right: 0;
  }
}

.intro {
  display: flex;
  align-items: flex-end;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}
.intro__main {
  width: 100%;
  display: flex;
  align-items: flex-end;
  margin-top: auto;
}
.intro .nav-dropdown {
  width: 100%;
  position: relative;
  z-index: 4;
}
.intro--with-image {
  color: white;
  height: 384px;
  max-height: 348px;
}
@media (min-width: 768px) {
  .intro--with-image {
    height: 640px;
    max-height: 640px;
  }
}
.intro--with-image:after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  content: "";
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.intro--with-image .intro__title {
  color: white;
}
.intro--with-image .intro__main {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .intro--with-image .intro__main {
    margin-bottom: 80px;
  }
}
.intro__category {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  letter-spacing: 1px;
}
.intro__category a {
  text-decoration: none;
  color: inherit;
}
.intro__figure {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.intro__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.intro__title {
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  margin-bottom: 8px;
  color: white;
}
@media (min-width: 640px) {
  .intro__title {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .intro__title {
    font-size: 64px;
    line-height: 76px;
  }
}
.intro__caption {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) {
  .intro__caption {
    font-size: 19px;
    line-height: 32px;
  }
}
.intro__content {
  position: relative;
  z-index: 3;
}
.intro .breadcrumbs {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1025px) {
  .intro .breadcrumbs {
    padding-left: 16px;
    padding-right: 16px;
    max-width: calc(960px + (2 * 16px));
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (min-width: 1025px) and (min-width: 768px) {
  .intro .breadcrumbs {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(960px + (2 * 24px));
  }
}
@media (min-width: 1025px) and (min-width: 1024px) {
  .intro .breadcrumbs {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(960px + (2 * 32px));
  }
}
@media (min-width: 1025px) and (min-width: 1280px) {
  .intro .breadcrumbs {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(960px + (2 * 40px));
  }
}

.social__ico {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social__ico svg {
  height: 17px;
  width: auto;
  transition: all 0.2s ease-in-out;
}
.social__ico svg * {
  fill: #107AB7;
}
.social__label {
  display: none;
}
.social ul {
  display: flex;
}
.social li {
  border-radius: 50%;
  border: 2px solid #107AB7;
  position: relative;
  overflow: hidden;
}
.social li:hover {
  background-color: #107AB7;
}
.social li:hover svg * {
  fill: white;
}
.social li:not(:last-child) {
  margin-right: 6px;
}

.page-load-status {
  display: none;
}

.error404 .wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
}
.error404 .wrapper p {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
}

.search-res {
  max-width: 782px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}
@media (min-width: 1025px) {
  .search-res {
    margin-bottom: 160px;
  }
}
.search-res__el:not(:first-child) {
  padding-top: 32px;
}
.search-res__el:not(:last-child) {
  padding-bottom: 32px;
  border-bottom: 1px solid #F7F7F7;
}
.search-res h2 {
  font-size: 17px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #353535;
}
@media (min-width: 640px) {
  .search-res h2 {
    font-size: 18px;
    line-height: 24px;
  }
}
.search-res h2 a {
  color: inherit;
}
.search-res h2 a:hover {
  color: #14406C;
}
.search-res p {
  font-size: 16px;
  line-height: 26px;
  color: #555555;
}

.na {
  text-align: center;
  padding: 48px;
  margin-bottom: 24px;
}
.na__title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  color: #F7F7F7;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.na__info {
  font-size: 14px;
  color: #F7F7F7;
  line-height: 20px;
}
.na__info a {
  color: inherit;
  border-bottom: 1px solid #14406C;
}
.na__button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.na__button a {
  height: 32px;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  letter-spacing: 1px;
  color: inherit;
  padding: 9px 32px;
  display: inline-block;
  text-transform: uppercase;
}
.na__button a:hover {
  background-color: #14406C;
  border-color: #14406C;
  color: white;
}

@media (min-width: 768px) {
  .half {
    display: flex;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .half__figure, .half__content {
    width: 50%;
  }
}
.half__figure {
  position: relative;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .half__figure {
    margin-bottom: 24px;
  }
}
.half__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.half__figure:after {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  content: "";
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(27, 69, 132, 0.5));
  pointer-events: none;
}
.half__content {
  align-self: center;
}
@media (min-width: 768px) {
  .half__content {
    padding-left: 48px;
  }
}
.half:not(:last-child) {
  margin-bottom: 64px;
}
.half__type, .half__meta {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  color: #F7F7F7;
  line-height: 14px;
}
.half__type {
  margin-bottom: 16px;
}
.half__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .half__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.half__meta {
  border-top: 1px solid #F7F7F7;
  padding-top: 16px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .half__meta ul {
    display: flex;
  }
}
.half__meta li {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .half__meta li {
    margin-bottom: 16px;
  }
}
.half__meta li:not(:last-child) {
  margin-right: 12px;
}
.half__meta li span {
  padding-top: 4px;
}
.half__meta svg {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.half__meta svg * {
  fill: #14406C;
}
.half__info {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
}
.half__holder {
  margin-bottom: 64px;
}

.mission {
  position: relative;
  padding-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mission {
    background-color: #F7F7F7;
  }
}
@media (min-width: 768px) {
  .mission {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .mission {
    padding-top: 120px;
  }
}
.mission__holder {
  padding-left: 16px;
  padding-right: 16px;
  max-width: calc(1088px + (2 * 16px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 768px) {
  .mission__holder {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(1088px + (2 * 24px));
  }
}
@media (min-width: 1024px) {
  .mission__holder {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(1088px + (2 * 32px));
  }
}
@media (min-width: 1280px) {
  .mission__holder {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(1088px + (2 * 40px));
  }
}
@media (min-width: 768px) {
  .mission__holder {
    display: flex;
  }
}
.mission__figure {
  max-height: 274px;
}
@media (min-width: 768px) {
  .mission__figure {
    max-width: 348px;
    width: 348px;
    min-height: 331px;
    max-height: 331px;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .mission__figure {
    max-width: 569px;
    width: 569px;
    min-height: 468px;
    max-height: 468px;
  }
}
.mission__figure img {
  width: 100%;
  height: 274px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (min-width: 768px) {
  .mission__figure img {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .mission__content {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .mission__content {
    margin-left: 24px;
    max-width: 348px;
    order: 2;
  }
}
@media (min-width: 1024px) {
  .mission__content {
    margin-left: 58px;
    max-width: 404px;
  }
}
.mission__title {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #161616;
}
.mission__title:after {
  content: "";
  display: block;
  width: 32px;
  border: 1px solid #161616;
  margin-top: 16px;
}
.mission h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .mission h3 {
    font-size: 23px;
    line-height: 32px;
  }
}
.mission__description {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 24px;
}
.mission__action {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.mission__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.mission__action a {
  background-color: #107AB7;
  max-width: 300px;
}
.mission__action a:hover {
  opacity: 0.8;
}
.mission__bg__left {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #F7F7F7 75%, white 25%);
  z-index: -1;
}
.mission__bg__right {
  width: 60%;
  height: calc(100% + 200px);
  position: absolute;
  right: 0;
  top: -120px;
  background: #F7F7F7;
  z-index: -1;
}
@media (max-width: 767px) {
  .mission__bg__right {
    display: none;
  }
}
@media (min-width: 1280px) {
  .mission__bg__right {
    right: 40px;
  }
}

.featured-pages {
  background: linear-gradient(to bottom, white 0px, white 160px, #F7F7F7 160px, #F7F7F7 100%, white 100%);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .featured-pages {
    background: linear-gradient(to bottom, white 0px, white 160px, #F7F7F7 160px, #F7F7F7 calc(100% - 160px), white calc(100% - 160px));
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.featured-pages__holder {
  padding-left: 16px;
  padding-right: 16px;
  max-width: calc(1088px + (2 * 16px));
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .featured-pages__holder {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(1088px + (2 * 24px));
  }
}
@media (min-width: 1024px) {
  .featured-pages__holder {
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(1088px + (2 * 32px));
  }
}
@media (min-width: 1280px) {
  .featured-pages__holder {
    padding-left: 40px;
    padding-right: 40px;
    max-width: calc(1088px + (2 * 40px));
  }
}
@media (min-width: 768px) {
  .featured-pages__holder {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
.featured-pages__item {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .featured-pages__item {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .featured-pages__item {
    width: 48%;
  }
}
@media (min-width: 1280px) {
  .featured-pages__item {
    width: 49%;
  }
}
.featured-pages__item .featured-pages__figure {
  height: 144px;
  max-height: 144px;
}
@media (min-width: 768px) {
  .featured-pages__item .featured-pages__figure {
    max-width: 348px;
    height: 174px;
    max-height: 174px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item .featured-pages__figure {
    max-width: 618px;
    height: 468px;
    max-height: 468px;
  }
}
.featured-pages__item .featured-pages__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.featured-pages__item:first-child {
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-pages__item:first-child {
    display: flex;
  }
}
@media (min-width: 768px) {
  .featured-pages__item:first-child .featured-pages__figure {
    max-width: 374px;
    height: 374px;
    max-height: 374px;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:first-child .featured-pages__figure {
    max-width: 714px;
    height: 504px;
    max-height: 504px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-pages__item:first-child .featured-pages__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:first-child .featured-pages__content {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1280px) {
  .featured-pages__item:first-child .featured-pages__content {
    right: 64px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:nth-child(2) {
    margin-bottom: 196px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:nth-child(2) .featured-pages__content {
    position: absolute;
    right: 0;
    bottom: -172px;
  }
}
@media (min-width: 768px) {
  .featured-pages__item:nth-child(3) {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:nth-child(3) {
    margin-bottom: 196px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:nth-child(3) .featured-pages__content {
    position: absolute;
    left: 0;
    bottom: -172px;
  }
}
.featured-pages__item:last-child {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-pages__item:last-child {
    display: flex;
  }
}
@media (min-width: 768px) {
  .featured-pages__item:last-child .featured-pages__figure {
    max-width: 374px;
    height: 374px;
    max-height: 374px;
    flex-shrink: 0;
    order: 2;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:last-child .featured-pages__figure {
    float: right;
    max-width: 714px;
    height: 504px;
    max-height: 504px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .featured-pages__item:last-child .featured-pages__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .featured-pages__item:last-child .featured-pages__content {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1280px) {
  .featured-pages__item:last-child .featured-pages__content {
    left: 64px;
  }
}
.featured-pages__content {
  padding: 16px;
  background-color: white;
}
@media (min-width: 768px) {
  .featured-pages__content {
    padding: 24px;
  }
}
@media (min-width: 1024px) {
  .featured-pages__content {
    max-width: 468px;
    min-height: 320px;
    padding: 64px;
  }
}
.featured-pages h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .featured-pages h3 {
    font-size: 23px;
    line-height: 32px;
  }
}
.featured-pages__description {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 24px;
}
.featured-pages__action {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.featured-pages__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.featured-pages__action a {
  background-color: #107AB7;
}
.featured-pages__action a:hover {
  opacity: 0.8;
}
.featured-pages__bg {
  position: absolute;
  height: 160px;
  background-color: #F7F7F7;
}
.featured-pages__bg__top {
  width: 100%;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .featured-pages__bg__top {
    width: 60%;
    left: auto;
    right: 0;
  }
}
.featured-pages__bg__bottom {
  width: calc(100% - 320px);
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .featured-pages__bg__bottom {
    display: none;
  }
}

.page-content {
  padding-top: 40px;
}

.page-title {
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .page-title {
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .page-title {
    padding-bottom: 16px;
  }
}
.page-title--small {
  margin-bottom: 24px;
}
.page-title h1 {
  font-weight: bold;
  font-size: 26px;
  line-height: 40px;
  max-width: 796px;
  color: #353535;
}
@media (min-width: 640px) {
  .page-title h1 {
    font-size: 56px;
    line-height: 64px;
  }
}
@media (min-width: 1367px) {
  .page-title h1 {
    font-size: 64px;
    line-height: 76px;
  }
}
.page-title hr {
  border: none;
  border-top: 1px solid #EEEEEE;
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .page-title hr {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 1024px) {
  .page-title hr {
    position: absolute;
    left: -500px;
    bottom: 0;
    width: 200vw;
    margin-bottom: 0;
  }
}
.page-title .intro__caption {
  margin-top: 8px;
  color: #888888;
}
.page-title .breadcrumbs {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-title .breadcrumbs {
    margin-bottom: 80px;
  }
}

.breadcrumbs {
  background-color: #F7F7F7;
  font-size: 11px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #888888;
  padding: 16px;
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 768px) {
  .breadcrumbs {
    font-size: 13px;
    line-height: 16px;
    padding: 16px 24px;
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding: 16px 32px;
    margin-left: -32px;
    margin-right: -32px;
  }
}
@media (min-width: 1280px) {
  .breadcrumbs {
    padding: 16px 64px;
    margin-left: -64px;
    margin-right: -64px;
  }
}
.breadcrumbs a {
  color: #107AB7;
}

.staff h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .staff h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (min-width: 640px) {
  .staff__executive {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 640px) {
  .staff__executive .staff__item {
    flex-basis: calc(48% - 18px);
    margin-right: 24px;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .staff__executive .staff__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .staff__executive .staff__item {
    flex-basis: calc(33% - 18px);
    margin-right: 24px;
  }
  .staff__executive .staff__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .staff__directors {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .staff__directors .staff__item {
    width: calc(33% - 18px);
    margin-right: 24px;
  }
  .staff__directors .staff__item .staff__figure img {
    max-width: 224px;
    max-height: 224px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .staff__directors .staff__item:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .staff__directors .staff__item {
    width: calc(25% - 18px);
    margin-right: 24px;
  }
  .staff__directors .staff__item:nth-child(4n) {
    margin-right: 0;
  }
}
.staff__item {
  margin-bottom: 40px;
}
.staff__figure {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .staff__figure img {
    max-height: 348px;
    max-width: 348px;
  }
}
@media (min-width: 1024px) {
  .staff__figure img {
    max-height: 304px;
    max-width: 304px;
  }
}
.staff__position {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #107AB7;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.staff__name {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  margin-bottom: 7px;
}
.staff__info {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}

.award {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .award__holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .award__holder .award {
    flex-basis: calc(48% - 18px);
    margin-right: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .award__holder .award:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .award__holder .award {
    flex-basis: calc(33% - 18px);
    margin-right: 24px;
  }
  .award__holder .award:nth-child(3n) {
    margin-right: 0;
  }
}
.award__figure {
  position: relative;
  margin-bottom: 24px;
}
.award__figure img {
  height: 100%;
  max-height: 162px;
  height: 162px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (min-width: 768px) {
  .award__figure img {
    max-height: 196px;
    height: 196px;
  }
}
@media (min-width: 1024px) {
  .award__figure img {
    max-height: 171px;
    height: 171px;
  }
}
.award__decoration {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  width: 33px;
  background-color: white;
  border: 1px solid #EEEEEE;
  border-radius: 50%;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.25);
}
.award__decoration svg {
  width: 16px;
}
.award__decoration svg * {
  fill: #107AB7;
}
.award h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .award h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.award h4 a {
  color: #353535;
}
.award__author {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #888888;
}
.award__pagination {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.award__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 2px solid rgba(42, 42, 42, 0.1);
  border-radius: 50%;
  color: #888888;
  margin-right: 8px;
  cursor: pointer;
}
.award__pagination .page-numbers.current, .award__pagination .page-numbers:hover {
  color: white;
  background-color: #107AB7;
  border-color: #107AB7;
}
.award__winners {
  width: 100%;
  position: relative;
}
.award__winners input {
  display: none;
}
.award__winners a {
  color: #107AB7;
  margin-top: 15px;
  display: flex;
}
.award__winners a:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid #DDDDDD;
  margin-right: 8px;
  flex-shrink: 0;
  cursor: pointer;
}
.award__winners a:hover label {
  opacity: 0.6;
}
.award__winners label {
  pointer-events: none;
  border-bottom: 1px solid #107AB7;
}
.award__winners input:checked + a {
  font-weight: 700;
}
.award__winners input:checked + a:before {
  border-color: #107AB7;
}
.award__winners input:checked + a:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 3px;
  width: 7px;
  height: 15px;
  border: solid #107AB7;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
}
@media (min-width: 768px) {
  .award__winners input:checked + a:after {
    top: 17px;
  }
}

@media (min-width: 768px) {
  .searchwp-live-search-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .searchwp-live-search-results {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.searchwp-live-search-results h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  grid-column: 1/4;
}
@media (min-width: 640px) {
  .searchwp-live-search-results h3 {
    font-size: 23px;
    line-height: 32px;
  }
}

.searchwp-live-search-results-showing {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .searchwp-live-search-results-showing {
    margin-bottom: 64px;
  }
}

.page-filters {
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-filters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 64px;
  }
}
.page-filters .sort {
  width: 100%;
}
@media (max-width: 767px) {
  .page-filters .sort {
    margin-bottom: 16px;
  }
}
@media (min-width: 768px) {
  .page-filters .sort {
    width: calc(50% - 24px);
  }
}
@media (min-width: 1024px) {
  .page-filters .sort {
    max-width: 306px;
    width: 100%;
  }
}
.page-filters .search {
  position: relative;
}
@media (min-width: 768px) {
  .page-filters .search {
    margin-left: 24px;
    width: calc(50% - 24px);
  }
}
@media (min-width: 1024px) {
  .page-filters .search {
    max-width: 306px;
    width: 100%;
  }
}
.page-filters .search svg {
  position: absolute;
  right: 19px;
  top: 15px;
  width: 17px;
  height: 17px;
}
.page-filters .search svg * {
  stroke: #353535;
}
.page-filters .search input {
  height: 50px;
  font-size: 17px;
  color: #888888;
  border: 2px solid #DDDDDD;
  background-color: white;
  padding: 12px;
  padding-right: 48px;
  box-shadow: inset 0 -1px 0 0 rgba(119, 119, 119, 0.15);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}

.member {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
  max-width: 222px;
  margin-bottom: 40px;
}
.member__name {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  margin-bottom: 8px;
}
.member__website a {
  color: #107AB7;
  border-bottom: 1px solid currentColor;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .member__holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .member__holder {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.member__holder .unique {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  color: #353535;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .member__holder .unique {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .member__holder .unique {
    grid-column: 1/5;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 640px), (-ms-high-contrast: none) and (min-width: 640px) {
  .member__holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 640px), (-ms-high-contrast: none) and (min-width: 640px) {
  .member__holder .member {
    width: 48%;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), (-ms-high-contrast: none) and (min-width: 768px) {
  .member__holder .member {
    width: 33%;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 1024px), (-ms-high-contrast: none) and (min-width: 1024px) {
  .member__holder .member {
    width: 23%;
  }
}
.member__sort label {
  display: none;
}

.agenda__item h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #107AB7;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .agenda__item h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.agenda__event {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .agenda__event {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-column-gap: 24px;
    margin-bottom: 40px;
  }
}
.agenda__time {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #107AB7;
  text-transform: uppercase;
  border: 2px solid #107AB7;
  border-radius: 20px;
  padding-left: 8px;
  padding-right: 8px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
}
.agenda__time svg * {
  fill: #107AB7;
}
@media (min-width: 768px) {
  .agenda__time__wrapper {
    text-align: right;
  }
}
.agenda__content h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .agenda__content h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.agenda__description p {
  color: #777777;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}
.agenda__description p:not(:last-child) {
  margin-bottom: 8px;
}
.agenda__description h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  font-weight: 700;
}
.agenda__description a {
  border-bottom: 1px solid #107AB7;
  color: #107AB7;
}
.agenda__description a:hover {
  opacity: 0.5;
}
.agenda__location {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.agenda__location svg * {
  fill: #888888;
}
.agenda__track {
  font-size: 13px;
  line-height: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background-color: #107AB7;
  border: 2px solid #107AB7;
  border-radius: 16px;
  margin-bottom: 8px;
}
.agenda__track__holder {
  margin-bottom: 24px;
}
.agenda svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

@media (max-width: 767px) {
  .event {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .event__holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .event__holder .event {
    flex-basis: calc(48% - 18px);
    margin-right: 24px;
    margin-bottom: 64px;
  }
}
@media (min-width: 768px) {
  .event__holder .event:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .event__holder .event {
    flex-basis: calc(48% - 32px);
    margin-right: 64px;
  }
}
.event__category {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 17px;
}
.event__category a {
  color: #888888;
  padding-top: 3px;
}
.event__category li {
  display: flex;
  align-items: center;
}
.event__category li:before {
  content: "";
  margin-right: 8px;
  display: none;
  height: 10px;
  width: 8px;
  vertical-align: middle;
}
.event__category__resources li:before {
  display: inline-block;
  background-color: #161616;
}
.event__category__careers li:before {
  display: inline-block;
  background-color: #107AB7;
}
.event__category__rfps li:before {
  display: inline-block;
  background-color: #818991;
}
.event h3 {
  font-size: 19px;
  line-height: 24px;
  font-weight: bold;
  color: #353535;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .event h3 {
    font-size: 23px;
    line-height: 32px;
  }
}
.event h3 svg {
  width: 40px;
  height: 40px;
  margin-left: 17px;
  flex-shrink: 0;
}
.event h3 svg * {
  fill: #107AB7;
}
.event__date, .event__time {
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #161616;
  display: flex;
  align-items: center;
}
.event__date svg, .event__time svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.event__date svg *, .event__time svg * {
  fill: #107AB7;
}
.event__date {
  margin-bottom: 8px;
}
.event__time {
  margin-bottom: 24px;
}
.event__description {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 24px;
}
.event__action {
  width: 140px;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.event__action a {
  color: white;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.event__action a {
  color: #107AB7;
  border: 2px solid rgba(42, 42, 42, 0.1);
  border-radius: 20px;
}
.event__message {
  padding: 40px;
  border-left: 4px solid #107AB7;
  background-color: #F7F7F7;
  margin-bottom: 64px;
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: #555555;
}

.partners h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .partners h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
.partners h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (min-width: 640px) {
  .partners h4 {
    font-size: 20px;
    line-height: 24px;
  }
}
.partners__holder {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .partners__holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    margin-bottom: 104px;
  }
}
@media (min-width: 768px) {
  .partners__holder .partners__item {
    width: calc(33% - 18px);
    margin-right: 24px;
  }
  .partners__holder .partners__item:nth-child(3n) {
    margin-right: 0;
  }
}
.partners__item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #EEEEEE;
  margin-bottom: 24px;
  padding-top: 46px;
  padding-bottom: 46px;
}
@media (min-width: 768px) {
  .partners__item {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: none) {
  .partners__item {
    max-height: 170px;
    outline: 2px solid #EEEEEE;
    border: none;
  }
}
@media (max-width: 1023px) {
  .partners__item img {
    max-width: 145px;
  }
}
.partners__corporate {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .partners__corporate a {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .partners__corporate .partners__item img {
    max-width: 230px;
  }
}
@media (min-width: 768px) {
  .partners__links-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .partners__links-holder .partners__links-item {
    width: calc(48% - 18px);
    margin-right: 24px;
    margin-bottom: 64px;
  }
  .partners__links-holder .partners__links-item:nth-child(2n) {
    margin-right: 0;
  }
}

.wp-block {
  max-width: 1040px;
}

.editor-block-list__layout .editor-block-list__block,
.editor-block-list__layout .editor-block-list__block p {
  font-family: "HK Grotesk Pro", sans-serif;
}

.page-template-marketing-award-winners .content iframe {
  height: 100%;
  width: 100%;
  max-height: 459px;
}
@media (max-width: 768px) {
  .page-template-marketing-award-winners .content iframe {
    height: 261px;
  }
}
@media (max-width: 768px) {
  .page-template-marketing-award-winners .content .wp-block-column {
    margin-bottom: 8px;
  }
}
/*# sourceMappingURL=main.css.map*/