@import url(https://fast.fonts.net/t/1.css?apiType=css&projectid=c4751840-decf-445e-9488-920fa5dc29b9);
@-webkit-keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 0;
}
.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}
.plyr--full-ui {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.plyr__badge {
  background: var(--plyr-badge-background, #4a5464);
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}
.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}
.plyr__captions {
  -webkit-animation: plyr-fade-in 0.3s ease;
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}
.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}
.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}
.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.plyr__tab-focus {
  outline-color: var(
    --plyr-tab-focus-color,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}
a.plyr__control {
  text-decoration: none;
}
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
  display: none;
}
.plyr--full-ui ::-webkit-media-controls {
  display: none;
}
.plyr__controls {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}
.plyr [data-plyr="airplay"],
.plyr [data-plyr="captions"],
.plyr [data-plyr="fullscreen"],
.plyr [data-plyr="pip"],
.plyr__controls:empty {
  display: none;
}
.plyr--airplay-supported [data-plyr="airplay"],
.plyr--captions-enabled [data-plyr="captions"],
.plyr--fullscreen-enabled [data-plyr="fullscreen"],
.plyr--pip-supported [data-plyr="pip"] {
  display: inline-block;
}
.plyr__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded="true"] svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded="true"] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 4px;
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, #4a5464);
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container:after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(
    (
        (var(--plyr-control-icon-size, 18px) / 2) +
          (var(--plyr-control-spacing, 10px) * 0.7)
      ) - (var(--plyr-menu-arrow-size, 4px) / 2)
  );
  top: 100%;
  width: 0;
}
.plyr__menu__container [role="menu"] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role="menuitem"],
.plyr__menu__container [role="menuitemradio"] {
  margin-top: 2px;
}
.plyr__menu__container [role="menuitem"]:first-child,
.plyr__menu__container [role="menuitemradio"]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--plyr-menu-color, #4a5464);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc((var(--plyr-control-spacing, 10px) * 0.7) / 1.5)
    calc((var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
  -ms-flex-align: inherit;
  align-items: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control:after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc((var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward:after {
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: calc(
    ((var(--plyr-control-spacing, 10px) * 0.7) * 1.5) -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}
.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc((var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc((var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - ((var(--plyr-control-spacing, 10px) * 0.7) * 2));
}
.plyr__menu__container .plyr__control--back:after {
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: calc(
    ((var(--plyr-control-spacing, 10px) * 0.7) * 1.5) -
      var(--plyr-menu-item-arrow-size, 4px)
  );
}
.plyr__menu__container .plyr__control--back:before {
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc((var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role="menuitemradio"] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:after,
.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role="menuitemradio"]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  width: 6px;
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:before {
  background: var(
    --plyr-control-toggle-checked-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"][aria-checked="true"]:after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container
  .plyr__control[role="menuitemradio"].plyr__tab-focus:before,
.plyr__menu__container .plyr__control[role="menuitemradio"]:hover:before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: calc(((var(--plyr-control-spacing, 10px) * 0.7) - 2) * -1);
  overflow: hidden;
  padding-left: calc((var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}
.plyr--full-ui input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(
    --plyr-range-fill-background,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  display: block;
  height: calc(
    (var(--plyr-range-thumb-active-shadow-width, 3px) * 2) +
      var(--plyr-range-thumb-height, 13px)
  );
  margin: 0;
  min-width: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(currentColor),
    to(transparent)
  );
  background-image: linear-gradient(
    90deg,
    currentColor var(--value, 0),
    transparent var(--value, 0)
  );
}
.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
  margin-top: calc(
    (
        (
            var(--plyr-range-thumb-height, 13px) -
              var(--plyr-range-track-height, 5px)
          ) / 2
      ) * -1
  );
}
.plyr--full-ui input[type="range"]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -moz-user-select: none;
  user-select: none;
}
.plyr--full-ui input[type="range"]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type="range"]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type="range"]::-ms-track {
  color: transparent;
}
.plyr--full-ui input[type="range"]::-ms-fill-upper,
.plyr--full-ui input[type="range"]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
}
.plyr--full-ui input[type="range"]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type="range"]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(
    --plyr-range-thumb-shadow,
    0 1px 1px rgba(35, 40, 47, 0.15),
    0 0 0 1px rgba(35, 40, 47, 0.2)
  );
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type="range"]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type="range"]:focus {
  outline: 0;
}
.plyr--full-ui input[type="range"]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui
  input[type="range"].plyr__tab-focus::-webkit-slider-runnable-track {
  outline-color: var(
    --plyr-tab-focus-color,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}
.plyr--full-ui input[type="range"].plyr__tab-focus::-moz-range-track {
  outline-color: var(
    --plyr-tab-focus-color,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}
.plyr--full-ui input[type="range"].plyr__tab-focus::-ms-track {
  outline-color: var(
    --plyr-tab-focus-color,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  outline-offset: 2px;
  outline-style: dotted;
  outline-width: 3px;
}
.plyr__poster {
  background-color: var(
    --plyr-video-background,
    var(--plyr-video-background, #000)
  );
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}
.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}
.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}
.plyr__time + .plyr__time:before {
  content: "\2044";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: var(--plyr-tooltip-radius, 3px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc((var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2)
    calc((var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
  transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
  transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s,
    -webkit-transform 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip:before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%) scale(1);
  transform: translate(-50%) scale(1);
}
.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip {
  left: 0;
  -webkit-transform: translateY(10px) scale(0.8);
  transform: translateY(10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip:before,
.plyr__controls > .plyr__control:first-child .plyr__tooltip:before {
  left: calc(
    (var(--plyr-control-icon-size, 18px) / 2) +
      (var(--plyr-control-spacing, 10px) * 0.7)
  );
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translateY(10px) scale(0.8);
  transform: translateY(10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: calc(
    (var(--plyr-control-icon-size, 18px) / 2) +
      (var(--plyr-control-spacing, 10px) * 0.7)
  );
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control.plyr__tab-focus
  .plyr__tooltip,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control
  .plyr__tooltip--visible,
.plyr__controls
  > .plyr__control:first-child
  + .plyr__control:hover
  .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  -webkit-transform: translate(0) scale(1);
  transform: translate(0) scale(1);
}
.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress__buffer,
.plyr__progress input[type="range"] {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type="range"] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  left: 0;
}
.plyr__progress__buffer {
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc((var(--plyr-range-track-height, 5px) / 2) * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(
    -45deg,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%,
    transparent 0,
    transparent 50%,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 0,
    var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%,
    transparent 0,
    transparent
  );
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px)
    var(--plyr-progress-loading-size, 25px);
  color: transparent;
}
.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(
    --plyr-video-progress-buffered-background,
    hsla(0, 0%, 100%, 0.25)
  );
}
.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}
.plyr__volume {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}
.plyr__volume input[type="range"] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}
.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}
.plyr--audio {
  display: block;
}
.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: var(--plyr-control-spacing, 10px);
}
.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded="true"] {
  background: var(
    --plyr-audio-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  color: var(--plyr-audio-control-color-hover, #fff);
}
.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]::-ms-track {
  background-color: var(
    --plyr-audio-range-track-background,
    var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6))
  );
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
  -webkit-box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--audio .plyr__progress__buffer {
  color: var(
    --plyr-audio-progress-buffered-background,
    rgba(193, 200, 209, 0.6)
  );
}
.plyr--video {
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}
.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  left: 0;
  position: absolute;
  top: 0;
}
.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
  transform: translateY(-38.28125%);
}
.plyr--video .plyr__controls {
  background: var(
    --plyr-video-controls-background,
    linear-gradient(transparent, rgba(0, 0, 0, 0.75))
  );
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  color: var(--plyr-video-control-color-hover, #fff);
}
.plyr__control--overlaid {
  background: var(
    --plyr-video-control-background-hover,
    var(--plyr-color-main, var(--plyr-color-main, #00b3ff))
  );
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}
.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}
.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]::-ms-track {
  background-color: var(
    --plyr-video-range-track-background,
    var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25))
  );
}
.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
  -webkit-box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb {
  box-shadow: var(
      --plyr-range-thumb-shadow,
      0 1px 1px rgba(35, 40, 47, 0.15),
      0 0 0 1px rgba(35, 40, 47, 0.2)
    ),
    0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px)
      var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}
.plyr--video .plyr__progress__buffer {
  color: var(
    --plyr-video-progress-buffered-background,
    hsla(0, 0%, 100%, 0.25)
  );
}
.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-moz-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-moz-full-screen video {
  height: 100%;
}
.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:after:empty {
  display: none;
}
.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin: -var(--plyr-range-track-height, 5px) / 2 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}
.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 3px;
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc((var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: var(--plyr-tooltip-radius, 3px);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translateY(10px) scale(0.8);
  transform: translateY(10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
  transition: opacity 0.2s ease 0.1s, -webkit-transform 0.2s ease 0.1s;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s,
    -webkit-transform 0.2s ease 0.1s;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
  transform: translate(0) scale(1);
}
.plyr__preview-thumb:before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid
    var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: calc(var(--plyr-tooltip-radius, 3px) - 1px);
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
  padding: 3px 6px;
}
.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.plyr [hidden] {
  display: none !important;
}
@font-face {
  font-family: Avenir LT W01_35 Light1475496;
  src: url(/build/fonts/0078f486-8e52-42c0-ad81-3c8d3d43f48e.woff2?cbdc2473e3a0380400e032d5b8d03ebf)
      format("woff2"),
    url(/build/fonts/908c4810-64db-4b46-bb8e-823eb41f68c0.woff?f9d7be1e5d49f4fa412a4fb876392375)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_35 Light_1475502;
  src: url(/build/fonts/a59168c1-917d-4de9-a244-0316c057c357.woff2?c49b02ae36407841b6aa6b834f5daeec)
      format("woff2"),
    url(/build/fonts/6dc0e7d8-9284-44e1-8f05-984a41daa3a4.woff?43d92ea1f91a8c599eb22f57c97a2fad)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_45 Book1475508;
  src: url(/build/fonts/065a6b14-b2cc-446e-9428-271c570df0d9.woff2?5e2c05a9165f892b4fd7442e99f86d77)
      format("woff2"),
    url(/build/fonts/65d75eb0-2601-4da5-a9a4-9ee67a470a59.woff?edc05a13a301b3a6e023292eb0762d1c)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_45 Book O1475514;
  src: url(/build/fonts/476612d9-282d-4f76-95cd-b4dd31e7ed21.woff2?ff7eec89b4e805ce2dbbad5f4217d51c)
      format("woff2"),
    url(/build/fonts/f1ebae2b-5296-4244-8771-5f40e60a564a.woff?0b6032fd42b1431dd86ed2354298fe0c)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_65 Medium1475532;
  src: url(/build/fonts/17b90ef5-b63f-457b-a981-503bb7afe3c0.woff2?24ee2bf455a24c1c435fd5866fb71cc6)
      format("woff2"),
    url(/build/fonts/c9aeeabd-dd65-491d-b4be-3e0db9ae47a0.woff?8dd7d27bdda23a05ace8e70f1741030d)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_65 Medium1475538;
  src: url(/build/fonts/deb5e718-7abb-4df3-9365-edfa95317090.woff2?a6b85fe191aefae49813dd41b7ab4808)
      format("woff2"),
    url(/build/fonts/04801919-17ee-4c6b-8b17-eb1965cb3ed6.woff?2c37b0c09b2283e82627e98741ab29f1)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_85 Heavy1475544;
  src: url(/build/fonts/d513e15e-8f35-4129-ad05-481815e52625.woff2?289fbfeed5013eb4bb1638deea01cc65)
      format("woff2"),
    url(/build/fonts/61bd362e-7162-46bd-b67e-28f366c4afbe.woff?9de46e344e47c7432887c85c9583aafe)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_85 Heavy_1475550;
  src: url(/build/fonts/3c210c80-960f-4684-850b-25390b4d08af.woff2?e43e2e865251256c828c38f118bb800a)
      format("woff2"),
    url(/build/fonts/cb5c71ad-e582-4d00-929c-67fbfaeb1c27.woff?22fc65c0bc9d33b538518e92ec27f9f1)
      format("woff");
}
@font-face {
  font-family: Avenir LT W01_95 Black1475556;
  src: url(/build/fonts/c78eb7af-a1c8-4892-974b-52379646fef4.woff2?4b1e6a63a33bce0ff8029da2c3e356b9)
      format("woff2"),
    url(/build/fonts/75b36c58-2a02-4057-a537-09af0832ae46.woff?ba786d65ffb89a4032db131c710f6ff2)
      format("woff");
  font-display: swap;
}
@font-face {
  font-family: Avenir LT W01_95 Black_1475562;
  src: url(/build/fonts/a2477e08-09d9-4d4b-97a9-23a1e22cb44c.woff2?4f1b27f73f574ba777471d1c16cf9ef2)
      format("woff2"),
    url(/build/fonts/19d12bba-92b1-43ad-9bab-cd36a4195c2a.woff?56a2eff39d44282e4dc64f0b35203503)
      format("woff");
  font-display: swap;
}
@media print, screen and (min-width: 40em) {
  .reveal,
  .reveal.large,
  .reveal.small,
  .reveal.tiny {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[hidden],
template {
  display: none;
}
.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=87.5em&xxlarge=90em";
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 112.5%;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: Avenir LT W01_45 Book1475508, Helvetica, Roboto, Arial,
    sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #3c4e59;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}
textarea {
  height: auto;
  min-height: 50px;
  border-radius: 7px;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.map_canvas embed,
.map_canvas img,
.map_canvas object,
.mqa-display embed,
.mqa-display img,
.mqa-display object {
  max-width: none !important;
}
button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 7px;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput="mouse"] button {
  outline: 0;
}
pre {
  overflow: auto;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}
.is-visible {
  display: block !important;
}
.is-hidden {
  display: none !important;
}
[type="color"],
[type="date"],
[type="datetime-local"],
[type="datetime"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
textarea {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 2.66666667rem;
  margin: 0 0 1.22222222rem;
  padding: 0.61111111rem;
  border: 1px solid #171d1a;
  border-radius: 7px;
  background-color: #fff;
  -webkit-box-shadow: inset 0 1px 2px rgba(23, 29, 26, 0.05);
  box-shadow: inset 0 1px 2px rgba(23, 29, 26, 0.05);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #171d1a;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type="color"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="datetime"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="text"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="week"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #171d1a;
  background-color: #e6e6e6;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}
input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
[type="button"],
[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 7px;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-webkit-input-placeholder {
  color: #cacaca;
}
:-ms-input-placeholder,
::-ms-input-placeholder {
  color: #cacaca;
}
::placeholder {
  color: #cacaca;
}
[type="checkbox"],
[type="file"],
[type="radio"] {
  margin: 0 0 1.22222222rem;
}
[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.61111111rem;
  margin-right: 1.22222222rem;
  margin-bottom: 0;
}
[type="checkbox"] + label[for],
[type="radio"] + label[for] {
  cursor: pointer;
}
label > [type="checkbox"],
label > [type="radio"] {
  margin-right: 0.61111111rem;
}
[type="file"] {
  width: 100%;
}
label {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #171d1a;
}
label.middle {
  margin: 0 0 1.22222222rem;
  padding: 0.66666667rem 0;
}
.help-text {
  margin-top: -0.61111111rem;
  font-size: 0.72222222rem;
  font-style: italic;
  color: #171d1a;
}
.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1.22222222rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.input-group > :first-child,
.input-group > :first-child.input-group-button > * {
  border-radius: 7px 0 0 7px;
}
.input-group > :last-child,
.input-group > :last-child.input-group-button > * {
  border-radius: 0 7px 7px 0;
}
.input-group-button,
.input-group-button a,
.input-group-button button,
.input-group-button input,
.input-group-button label,
.input-group-field,
.input-group-label {
  margin: 0;
  white-space: nowrap;
}
.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #171d1a;
  text-align: center;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}
.input-group-field {
  border-radius: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  min-width: 0;
}
.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button button,
.input-group-button input,
.input-group-button label {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  max-width: 100%;
  margin-bottom: 0.61111111rem;
}
.fieldset {
  margin: 1rem 0;
  padding: 1.11111111rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.16666667rem;
  padding: 0 0.16666667rem;
}
select {
  height: 2.66666667rem;
  margin: 0 0 1.22222222rem;
  padding: 0.61111111rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #171d1a;
  border-radius: 7px;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #171d1a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.22222222rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.83333333rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #171d1a;
  background-color: #e6e6e6;
  -webkit-box-shadow: 0 0 5px #cacaca;
  box-shadow: 0 0 5px #cacaca;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out,
    -webkit-box-shadow 0.5s;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}
.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::-webkit-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus):-ms-input-placeholder,
.is-invalid-input:not(:focus)::-ms-input-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}
.form-error,
.is-invalid-label {
  color: #cc4b37;
}
.form-error {
  display: none;
  margin-top: -0.61111111rem;
  margin-bottom: 1.22222222rem;
  font-size: 0.66666667rem;
  font-weight: 700;
}
.form-error.is-visible {
  display: block;
}
blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 25px;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
em,
i {
  font-style: italic;
}
b,
em,
i,
strong {
  line-height: inherit;
}
b,
strong {
  font-weight: 700;
}
small {
  font-size: 80%;
  line-height: inherit;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Avenir LT W01_65 Medium1475532;
  font-style: normal;
  font-weight: 400;
  color: #171d1a;
  text-rendering: optimizeLegibility;
}
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #cacaca;
}
.h1,
h1 {
  font-size: 2.77777778rem;
}
.h1,
.h2,
h1,
h2 {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.h2,
h2 {
  font-size: 1.5rem;
}
.h3,
h3 {
  font-size: 1.22222222rem;
}
.h3,
.h4,
h3,
h4 {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.h4,
h4 {
  font-size: 1.05555556rem;
}
.h5,
h5 {
  font-size: 0.94444444rem;
}
.h5,
.h6,
h5,
h6 {
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.h6,
h6 {
  font-size: 0.88888889rem;
}
@media print, screen and (min-width: 40em) {
  .h1,
  h1 {
    font-size: 3.33333333rem;
  }
  .h2,
  h2 {
    font-size: 1.66666667rem;
  }
  .h3,
  h3 {
    font-size: 1.5rem;
  }
  .h4,
  h4 {
    font-size: 1rem;
  }
  .h5,
  h5 {
    font-size: 0.94444444rem;
  }
  .h6,
  h6 {
    font-size: 0.88888889rem;
  }
}
@media print, screen and (min-width: 64em) {
  .h1,
  h1 {
    font-size: 4.44444444rem;
  }
  .h2,
  h2 {
    font-size: 2.11111111rem;
  }
  .h3,
  h3 {
    font-size: 1.88888889rem;
  }
  .h4,
  h4 {
    font-size: 1.22222222rem;
  }
  .h5,
  h5 {
    font-size: 1.11111111rem;
  }
  .h6,
  h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #449ed8;
  text-decoration: none;
  cursor: pointer;
}
a:focus,
a:hover {
  color: #2a8bca;
}
a img {
  border: 0;
}
hr {
  clear: both;
  max-width: 88%;
  height: 0;
  margin: 1.11111111rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}
dl,
ol,
ul {
  margin-bottom: 25px;
  list-style-position: outside;
  line-height: 1.6;
}
li {
  font-size: inherit;
}
ul {
  list-style-type: disc;
}
ol,
ul {
  margin-left: 1.25rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-left: 1.25rem;
  margin-bottom: 0;
}
dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 700;
}
blockquote {
  margin: 0 0 25px;
  padding: 0.27777778rem 1.11111111rem 0.27777778rem 1.05555556rem;
  border-left: 5px solid #449ed8;
}
blockquote,
blockquote p {
  line-height: 1.6;
  color: #3c4e59;
}
abbr,
abbr[title] {
  border-bottom: 1px dotted #171d1a;
  cursor: help;
  text-decoration: none;
}
figure,
kbd {
  margin: 0;
}
kbd {
  padding: 0.11111111rem 0.22222222rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, Liberation Mono, Courier, monospace;
  color: #171d1a;
  border-radius: 7px;
}
.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #8a8a8a;
}
.lead {
  font-size: 22px;
  line-height: 1.6;
}
.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}
ol.no-bullet,
ul.no-bullet {
  margin-left: 0;
  list-style: none;
}
.cite-block,
cite {
  display: block;
  color: #8a8a8a;
  font-size: 0.72222222rem;
}
.cite-block:before,
cite:before {
  content: "\2014   ";
}
.code-inline,
code {
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.11111111rem 0.27777778rem 0.05555556rem;
}
.code-block,
.code-inline,
code {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, Liberation Mono, Courier, monospace;
  font-weight: 400;
  color: #171d1a;
}
.code-block {
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    color-adjust: economy;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print,
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  blockquote,
  pre {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 0.41666667rem;
  padding-left: 0.41666667rem;
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.83333333rem;
    padding-left: 0.83333333rem;
  }
}
.grid-container.fluid {
  padding-right: 0.41666667rem;
  padding-left: 0.41666667rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.83333333rem;
    padding-left: 0.83333333rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.cell {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.cell.shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .auto,
.grid-x > .shrink {
  width: auto;
}
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12,
.grid-x > .small-full,
.grid-x > .small-shrink {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12,
  .grid-x > .medium-full,
  .grid-x > .medium-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12,
  .grid-x > .large-full,
  .grid-x > .large-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 87.5em) {
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12,
  .grid-x > .xlarge-full,
  .grid-x > .xlarge-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-x > .small-1 {
  width: 8.33333333%;
}
.grid-x > .small-2 {
  width: 16.66666667%;
}
.grid-x > .small-3 {
  width: 25%;
}
.grid-x > .small-4 {
  width: 33.33333333%;
}
.grid-x > .small-5 {
  width: 41.66666667%;
}
.grid-x > .small-6 {
  width: 50%;
}
.grid-x > .small-7 {
  width: 58.33333333%;
}
.grid-x > .small-8 {
  width: 66.66666667%;
}
.grid-x > .small-9 {
  width: 75%;
}
.grid-x > .small-10 {
  width: 83.33333333%;
}
.grid-x > .small-11 {
  width: 91.66666667%;
}
.grid-x > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12,
  .grid-x > .medium-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.33333333%;
  }
  .grid-x > .medium-2 {
    width: 16.66666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.33333333%;
  }
  .grid-x > .medium-5 {
    width: 41.66666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.33333333%;
  }
  .grid-x > .medium-8 {
    width: 66.66666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.33333333%;
  }
  .grid-x > .medium-11 {
    width: 91.66666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12,
  .grid-x > .large-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.33333333%;
  }
  .grid-x > .large-2 {
    width: 16.66666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.33333333%;
  }
  .grid-x > .large-5 {
    width: 41.66666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.33333333%;
  }
  .grid-x > .large-8 {
    width: 66.66666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.33333333%;
  }
  .grid-x > .large-11 {
    width: 91.66666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .grid-x > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-1,
  .grid-x > .xlarge-2,
  .grid-x > .xlarge-3,
  .grid-x > .xlarge-4,
  .grid-x > .xlarge-5,
  .grid-x > .xlarge-6,
  .grid-x > .xlarge-7,
  .grid-x > .xlarge-8,
  .grid-x > .xlarge-9,
  .grid-x > .xlarge-10,
  .grid-x > .xlarge-11,
  .grid-x > .xlarge-12,
  .grid-x > .xlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-x > .xlarge-shrink {
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.33333333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.66666667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.33333333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.66666667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.33333333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.66666667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.33333333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.66666667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}
.grid-margin-x {
  margin-left: -0.41666667rem;
  margin-right: -0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.83333333rem;
    margin-right: -0.83333333rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 0.83333333rem);
  margin-left: 0.41666667rem;
  margin-right: 0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.66666667rem);
    margin-left: 0.83333333rem;
    margin-right: 0.83333333rem;
  }
}
.grid-margin-x > .auto,
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.33333333% - 0.83333333rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.66666667% - 0.83333333rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 0.83333333rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.33333333% - 0.83333333rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.66666667% - 0.83333333rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 0.83333333rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.33333333% - 0.83333333rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.66666667% - 0.83333333rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 0.83333333rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.33333333% - 0.83333333rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.66666667% - 0.83333333rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 0.83333333rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto,
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.66666667rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.66666667rem);
  }
  .grid-margin-x > .medium-auto,
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.66666667rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.66666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto,
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.66666667rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.66666667rem);
  }
}
@media screen and (min-width: 87.5em) {
  .grid-margin-x > .xlarge-auto,
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 1.66666667rem);
  }
}
.grid-padding-x .grid-padding-x {
  margin-right: -0.41666667rem;
  margin-left: -0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.83333333rem;
    margin-left: -0.83333333rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.41666667rem;
  margin-left: -0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.83333333rem;
    margin-left: -0.83333333rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.41666667rem;
  padding-left: 0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.83333333rem;
    padding-left: 0.83333333rem;
  }
}
.small-up-1 > .cell {
  width: 100%;
}
.small-up-2 > .cell {
  width: 50%;
}
.small-up-3 > .cell {
  width: 33.33333333%;
}
.small-up-4 > .cell {
  width: 25%;
}
.small-up-5 > .cell {
  width: 20%;
}
.small-up-6 > .cell {
  width: 16.66666667%;
}
.small-up-7 > .cell {
  width: 14.28571429%;
}
.small-up-8 > .cell {
  width: 12.5%;
}
@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.33333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.66666667%;
  }
  .medium-up-7 > .cell {
    width: 14.28571429%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.33333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.66666667%;
  }
  .large-up-7 > .cell {
    width: 14.28571429%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.33333333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.66666667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.28571429%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 0.83333333rem);
}
.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 0.83333333rem);
}
.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333333% - 0.83333333rem);
}
.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 0.83333333rem);
}
.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 0.83333333rem);
}
.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66666667% - 0.83333333rem);
}
.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571429% - 0.83333333rem);
}
.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 0.83333333rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.66666667rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.66666667rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571429% - 1.66666667rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571429% - 1.66666667rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.66666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.66666667rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.66666667rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571429% - 1.66666667rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.66666667rem);
  }
}
@media screen and (min-width: 87.5em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.28571429% - 1.66666667rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 1.66666667rem);
  }
}
.small-margin-collapse,
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.33333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.66666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.33333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.66666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.33333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.66666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.33333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.66666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.33333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.66666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.33333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.66666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.33333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.66666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.33333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.66666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.33333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.66666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.33333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.66666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.33333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.66666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.33333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.66666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.33333333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.66666667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.33333333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.66666667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.33333333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.66666667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.33333333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.66666667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse,
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.33333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.66666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.33333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.66666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.33333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.66666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.33333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.66666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.33333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.66666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.33333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.66666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.33333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.66666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.33333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.66666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.33333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.66666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.33333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.66666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.33333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.66666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.33333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.66666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.33333333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.66666667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.33333333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.66666667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.33333333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.66666667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.33333333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.66666667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse,
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.33333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.66666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.33333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.66666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.33333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.66666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.33333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.66666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.33333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.66666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.33333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.66666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.33333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.66666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.33333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.66666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.33333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.66666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.33333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.66666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.33333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.66666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.33333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.66666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.33333333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.66666667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.33333333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.66666667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.33333333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.66666667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.33333333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.66666667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse,
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse > .small-1 {
    width: 8.33333333%;
  }
  .xlarge-margin-collapse > .small-2 {
    width: 16.66666667%;
  }
  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .small-4 {
    width: 33.33333333%;
  }
  .xlarge-margin-collapse > .small-5 {
    width: 41.66666667%;
  }
  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .small-7 {
    width: 58.33333333%;
  }
  .xlarge-margin-collapse > .small-8 {
    width: 66.66666667%;
  }
  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .small-10 {
    width: 83.33333333%;
  }
  .xlarge-margin-collapse > .small-11 {
    width: 91.66666667%;
  }
  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse > .medium-1 {
    width: 8.33333333%;
  }
  .xlarge-margin-collapse > .medium-2 {
    width: 16.66666667%;
  }
  .xlarge-margin-collapse > .medium-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-4 {
    width: 33.33333333%;
  }
  .xlarge-margin-collapse > .medium-5 {
    width: 41.66666667%;
  }
  .xlarge-margin-collapse > .medium-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-7 {
    width: 58.33333333%;
  }
  .xlarge-margin-collapse > .medium-8 {
    width: 66.66666667%;
  }
  .xlarge-margin-collapse > .medium-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-10 {
    width: 83.33333333%;
  }
  .xlarge-margin-collapse > .medium-11 {
    width: 91.66666667%;
  }
  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse > .large-1 {
    width: 8.33333333%;
  }
  .xlarge-margin-collapse > .large-2 {
    width: 16.66666667%;
  }
  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .large-4 {
    width: 33.33333333%;
  }
  .xlarge-margin-collapse > .large-5 {
    width: 41.66666667%;
  }
  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .large-7 {
    width: 58.33333333%;
  }
  .xlarge-margin-collapse > .large-8 {
    width: 66.66666667%;
  }
  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .large-10 {
    width: 83.33333333%;
  }
  .xlarge-margin-collapse > .large-11 {
    width: 91.66666667%;
  }
  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.33333333%;
  }
  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.66666667%;
  }
  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.33333333%;
  }
  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.66666667%;
  }
  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.33333333%;
  }
  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.66666667%;
  }
  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.33333333%;
  }
  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.66666667%;
  }
  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}
.small-offset-0 {
  margin-left: 0;
}
.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.41666667rem);
}
.small-offset-1 {
  margin-left: 8.33333333%;
}
.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333333% + 0.41666667rem);
}
.small-offset-2 {
  margin-left: 16.66666667%;
}
.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.66666667% + 0.41666667rem);
}
.small-offset-3 {
  margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.41666667rem);
}
.small-offset-4 {
  margin-left: 33.33333333%;
}
.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.33333333% + 0.41666667rem);
}
.small-offset-5 {
  margin-left: 41.66666667%;
}
.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.66666667% + 0.41666667rem);
}
.small-offset-6 {
  margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.41666667rem);
}
.small-offset-7 {
  margin-left: 58.33333333%;
}
.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.33333333% + 0.41666667rem);
}
.small-offset-8 {
  margin-left: 66.66666667%;
}
.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.66666667% + 0.41666667rem);
}
.small-offset-9 {
  margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.41666667rem);
}
.small-offset-10 {
  margin-left: 83.33333333%;
}
.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.33333333% + 0.41666667rem);
}
.small-offset-11 {
  margin-left: 91.66666667%;
}
.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.66666667% + 0.41666667rem);
}
@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.83333333rem);
  }
  .medium-offset-1 {
    margin-left: 8.33333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333333% + 0.83333333rem);
  }
  .medium-offset-2 {
    margin-left: 16.66666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.66666667% + 0.83333333rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.83333333rem);
  }
  .medium-offset-4 {
    margin-left: 33.33333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333333% + 0.83333333rem);
  }
  .medium-offset-5 {
    margin-left: 41.66666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66666667% + 0.83333333rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.83333333rem);
  }
  .medium-offset-7 {
    margin-left: 58.33333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333333% + 0.83333333rem);
  }
  .medium-offset-8 {
    margin-left: 66.66666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66666667% + 0.83333333rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.83333333rem);
  }
  .medium-offset-10 {
    margin-left: 83.33333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333333% + 0.83333333rem);
  }
  .medium-offset-11 {
    margin-left: 91.66666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66666667% + 0.83333333rem);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.83333333rem);
  }
  .large-offset-1 {
    margin-left: 8.33333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333333% + 0.83333333rem);
  }
  .large-offset-2 {
    margin-left: 16.66666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66666667% + 0.83333333rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.83333333rem);
  }
  .large-offset-4 {
    margin-left: 33.33333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333333% + 0.83333333rem);
  }
  .large-offset-5 {
    margin-left: 41.66666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66666667% + 0.83333333rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.83333333rem);
  }
  .large-offset-7 {
    margin-left: 58.33333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333333% + 0.83333333rem);
  }
  .large-offset-8 {
    margin-left: 66.66666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66666667% + 0.83333333rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.83333333rem);
  }
  .large-offset-10 {
    margin-left: 83.33333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333333% + 0.83333333rem);
  }
  .large-offset-11 {
    margin-left: 91.66666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66666667% + 0.83333333rem);
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-offset-0 {
    margin-left: 0;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 0.83333333rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.33333333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.33333333% + 0.83333333rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.66666667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.66666667% + 0.83333333rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 0.83333333rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.33333333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.33333333% + 0.83333333rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.66666667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.66666667% + 0.83333333rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 0.83333333rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.33333333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.33333333% + 0.83333333rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.66666667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.66666667% + 0.83333333rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 0.83333333rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.33333333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.33333333% + 0.83333333rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.66666667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.66666667% + 0.83333333rem);
  }
}
.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto,
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12,
.grid-y > .small-full,
.grid-y > .small-shrink {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12,
  .grid-y > .medium-full,
  .grid-y > .medium-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12,
  .grid-y > .large-full,
  .grid-y > .large-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
@media screen and (min-width: 87.5em) {
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12,
  .grid-y > .xlarge-full,
  .grid-y > .xlarge-shrink {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.33333333%;
}
.grid-y > .small-2 {
  height: 16.66666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.33333333%;
}
.grid-y > .small-5 {
  height: 41.66666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.33333333%;
}
.grid-y > .small-8 {
  height: 66.66666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.33333333%;
}
.grid-y > .small-11 {
  height: 91.66666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12,
  .grid-y > .medium-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.33333333%;
  }
  .grid-y > .medium-2 {
    height: 16.66666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.33333333%;
  }
  .grid-y > .medium-5 {
    height: 41.66666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.33333333%;
  }
  .grid-y > .medium-8 {
    height: 66.66666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.33333333%;
  }
  .grid-y > .medium-11 {
    height: 91.66666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12,
  .grid-y > .large-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.33333333%;
  }
  .grid-y > .large-2 {
    height: 16.66666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.33333333%;
  }
  .grid-y > .large-5 {
    height: 41.66666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.33333333%;
  }
  .grid-y > .large-8 {
    height: 66.66666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.33333333%;
  }
  .grid-y > .large-11 {
    height: 91.66666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .grid-y > .xlarge-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xlarge-1,
  .grid-y > .xlarge-2,
  .grid-y > .xlarge-3,
  .grid-y > .xlarge-4,
  .grid-y > .xlarge-5,
  .grid-y > .xlarge-6,
  .grid-y > .xlarge-7,
  .grid-y > .xlarge-8,
  .grid-y > .xlarge-9,
  .grid-y > .xlarge-10,
  .grid-y > .xlarge-11,
  .grid-y > .xlarge-12,
  .grid-y > .xlarge-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.33333333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.66666667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.33333333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.66666667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.33333333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.66666667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.33333333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.66666667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}
.grid-padding-y .grid-padding-y {
  margin-top: -0.41666667rem;
  margin-bottom: -0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.83333333rem;
    margin-bottom: -0.83333333rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.41666667rem;
  padding-bottom: 0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.83333333rem;
    padding-bottom: 0.83333333rem;
  }
}
.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100vw;
}
.cell .grid-frame {
  width: 100%;
}
.cell-block {
  overflow-x: auto;
  max-width: 100%;
}
.cell-block,
.cell-block-y {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
}
.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: 100vh;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
@media screen and (min-width: 87.5em) {
  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
  }
}
.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}
@media screen and (min-width: 87.5em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}
.grid-margin-y {
  margin-top: -0.41666667rem;
  margin-bottom: -0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.83333333rem;
    margin-bottom: -0.83333333rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 0.83333333rem);
  margin-top: 0.41666667rem;
  margin-bottom: 0.41666667rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.66666667rem);
    margin-top: 0.83333333rem;
    margin-bottom: 0.83333333rem;
  }
}
.grid-margin-y > .auto,
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.33333333% - 0.83333333rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.66666667% - 0.83333333rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 0.83333333rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.33333333% - 0.83333333rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.66666667% - 0.83333333rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 0.83333333rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.33333333% - 0.83333333rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.66666667% - 0.83333333rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 0.83333333rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.33333333% - 0.83333333rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.66666667% - 0.83333333rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 0.83333333rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto,
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.66666667rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.66666667rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.66666667rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.66666667rem);
  }
  .grid-margin-y > .medium-auto,
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.66666667rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.66666667rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.66666667rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.66666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto,
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.66666667rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.66666667rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.66666667rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.66666667rem);
  }
}
@media screen and (min-width: 87.5em) {
  .grid-margin-y > .xlarge-auto,
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.33333333% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.66666667% - 1.66666667rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 1.66666667rem);
  }
}
.grid-frame.grid-margin-y {
  height: calc(100vh + 0.83333333rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.66666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.66666667rem);
  }
}
@media screen and (min-width: 87.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.66666667rem);
  }
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.66666667rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.66666667rem);
  }
}
@media screen and (min-width: 87.5em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 1.66666667rem);
  }
}
.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem;
  padding: 0.9em 1.5em;
  border: 2px solid transparent;
  border-radius: 7px;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out,
    border-color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out,
    border-color 0.25s ease-out;
  font-family: Avenir LT W01_95 Black1475556;
  font-size: 1rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput="mouse"] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button,
.button.disabled,
.button.disabled:focus,
.button.disabled:hover,
.button[disabled],
.button[disabled]:focus,
.button[disabled]:hover {
  background-color: #449ed8;
  color: #fff;
}
.button:focus,
.button:hover {
  background-color: #60adde;
  color: #fff;
}
.button.primary,
.button.primary.disabled,
.button.primary.disabled:focus,
.button.primary.disabled:hover,
.button.primary[disabled],
.button.primary[disabled]:focus,
.button.primary[disabled]:hover {
  background-color: #449ed8;
  color: #171d1a;
}
.button.primary:focus,
.button.primary:hover {
  background-color: #69b1e0;
  color: #171d1a;
}
.button.secondary,
.button.secondary.disabled,
.button.secondary.disabled:focus,
.button.secondary.disabled:hover,
.button.secondary[disabled],
.button.secondary[disabled]:focus,
.button.secondary[disabled]:hover {
  background-color: #767676;
  color: #fff;
}
.button.secondary:focus,
.button.secondary:hover {
  background-color: #919191;
  color: #fff;
}
.button.success,
.button.success.disabled,
.button.success.disabled:focus,
.button.success.disabled:hover,
.button.success[disabled],
.button.success[disabled]:focus,
.button.success[disabled]:hover {
  background-color: #3adb76;
  color: #171d1a;
}
.button.success:focus,
.button.success:hover {
  background-color: #61e291;
  color: #171d1a;
}
.button.warning,
.button.warning.disabled,
.button.warning.disabled:focus,
.button.warning.disabled:hover,
.button.warning[disabled],
.button.warning[disabled]:focus,
.button.warning[disabled]:hover {
  background-color: #ffae00;
  color: #171d1a;
}
.button.warning:focus,
.button.warning:hover {
  background-color: #ffbe33;
  color: #171d1a;
}
.button.alert,
.button.alert.disabled,
.button.alert.disabled:focus,
.button.alert.disabled:hover,
.button.alert[disabled],
.button.alert[disabled]:focus,
.button.alert[disabled]:hover {
  background-color: #cc4b37;
  color: #fff;
}
.button.alert:focus,
.button.alert:hover {
  background-color: #d66f5f;
  color: #fff;
}
.button.hollow,
.button.hollow.disabled,
.button.hollow.disabled:focus,
.button.hollow.disabled:hover,
.button.hollow:focus,
.button.hollow:hover,
.button.hollow[disabled],
.button.hollow[disabled]:focus,
.button.hollow[disabled]:hover {
  background-color: transparent;
}
.button.hollow,
.button.hollow.disabled,
.button.hollow.disabled:focus,
.button.hollow.disabled:hover,
.button.hollow[disabled],
.button.hollow[disabled]:focus,
.button.hollow[disabled]:hover {
  border: 2px solid #449ed8;
  color: #449ed8;
}
.button.hollow:focus,
.button.hollow:hover {
  border-color: #69b1e0;
  color: #69b1e0;
}
.button.hollow.primary,
.button.hollow.primary.disabled,
.button.hollow.primary.disabled:focus,
.button.hollow.primary.disabled:hover,
.button.hollow.primary[disabled],
.button.hollow.primary[disabled]:focus,
.button.hollow.primary[disabled]:hover {
  border: 2px solid #449ed8;
  color: #449ed8;
}
.button.hollow.primary:focus,
.button.hollow.primary:hover {
  border-color: #69b1e0;
  color: #69b1e0;
}
.button.hollow.secondary,
.button.hollow.secondary.disabled,
.button.hollow.secondary.disabled:focus,
.button.hollow.secondary.disabled:hover,
.button.hollow.secondary[disabled],
.button.hollow.secondary[disabled]:focus,
.button.hollow.secondary[disabled]:hover {
  border: 2px solid #767676;
  color: #767676;
}
.button.hollow.secondary:focus,
.button.hollow.secondary:hover {
  border-color: #919191;
  color: #919191;
}
.button.hollow.success,
.button.hollow.success.disabled,
.button.hollow.success.disabled:focus,
.button.hollow.success.disabled:hover,
.button.hollow.success[disabled],
.button.hollow.success[disabled]:focus,
.button.hollow.success[disabled]:hover {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:focus,
.button.hollow.success:hover {
  border-color: #61e291;
  color: #61e291;
}
.button.hollow.warning,
.button.hollow.warning.disabled,
.button.hollow.warning.disabled:focus,
.button.hollow.warning.disabled:hover,
.button.hollow.warning[disabled],
.button.hollow.warning[disabled]:focus,
.button.hollow.warning[disabled]:hover {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:focus,
.button.hollow.warning:hover {
  border-color: #ffbe33;
  color: #ffbe33;
}
.button.hollow.alert,
.button.hollow.alert.disabled,
.button.hollow.alert.disabled:focus,
.button.hollow.alert.disabled:hover,
.button.hollow.alert[disabled],
.button.hollow.alert[disabled]:focus,
.button.hollow.alert[disabled]:hover {
  border: 2px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:focus,
.button.hollow.alert:hover {
  border-color: #d66f5f;
  color: #d66f5f;
}
.button.clear,
.button.clear.disabled,
.button.clear.disabled:focus,
.button.clear.disabled:hover,
.button.clear:focus,
.button.clear:hover,
.button.clear[disabled],
.button.clear[disabled]:focus,
.button.clear[disabled]:hover {
  border-color: transparent;
  background-color: transparent;
}
.button.clear,
.button.clear.disabled,
.button.clear.disabled:focus,
.button.clear.disabled:hover,
.button.clear[disabled],
.button.clear[disabled]:focus,
.button.clear[disabled]:hover {
  color: #449ed8;
}
.button.clear:focus,
.button.clear:hover {
  color: #69b1e0;
}
.button.clear.primary,
.button.clear.primary.disabled,
.button.clear.primary.disabled:focus,
.button.clear.primary.disabled:hover,
.button.clear.primary[disabled],
.button.clear.primary[disabled]:focus,
.button.clear.primary[disabled]:hover {
  color: #449ed8;
}
.button.clear.primary:focus,
.button.clear.primary:hover {
  color: #69b1e0;
}
.button.clear.secondary,
.button.clear.secondary.disabled,
.button.clear.secondary.disabled:focus,
.button.clear.secondary.disabled:hover,
.button.clear.secondary[disabled],
.button.clear.secondary[disabled]:focus,
.button.clear.secondary[disabled]:hover {
  color: #767676;
}
.button.clear.secondary:focus,
.button.clear.secondary:hover {
  color: #919191;
}
.button.clear.success,
.button.clear.success.disabled,
.button.clear.success.disabled:focus,
.button.clear.success.disabled:hover,
.button.clear.success[disabled],
.button.clear.success[disabled]:focus,
.button.clear.success[disabled]:hover {
  color: #3adb76;
}
.button.clear.success:focus,
.button.clear.success:hover {
  color: #61e291;
}
.button.clear.warning,
.button.clear.warning.disabled,
.button.clear.warning.disabled:focus,
.button.clear.warning.disabled:hover,
.button.clear.warning[disabled],
.button.clear.warning[disabled]:focus,
.button.clear.warning[disabled]:hover {
  color: #ffae00;
}
.button.clear.warning:focus,
.button.clear.warning:hover {
  color: #ffbe33;
}
.button.clear.alert,
.button.clear.alert.disabled,
.button.clear.alert.disabled:focus,
.button.clear.alert.disabled:hover,
.button.clear.alert[disabled],
.button.clear.alert[disabled]:focus,
.button.clear.alert[disabled]:hover {
  color: #cc4b37;
}
.button.clear.alert:focus,
.button.clear.alert:hover {
  color: #d66f5f;
}
.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown:after {
  display: block;
  width: 0;
  height: 0;
  border: 0.4em inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1.5em;
}
.button.dropdown.clear.primary:after,
.button.dropdown.clear:after,
.button.dropdown.hollow.primary:after,
.button.dropdown.hollow:after {
  border-top-color: #449ed8;
}
.button.dropdown.clear.secondary:after,
.button.dropdown.hollow.secondary:after {
  border-top-color: #767676;
}
.button.dropdown.clear.success:after,
.button.dropdown.hollow.success:after {
  border-top-color: #3adb76;
}
.button.dropdown.clear.warning:after,
.button.dropdown.hollow.warning:after {
  border-top-color: #ffae00;
}
.button.dropdown.clear.alert:after,
.button.dropdown.hollow.alert:after {
  border-top-color: #cc4b37;
}
.button.arrow-only:after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}
a.button:focus,
a.button:hover {
  text-decoration: none;
}
.button-group {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.button-group:after,
.button-group:before {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.button-group:after {
  clear: both;
}
.button-group:after,
.button-group:before {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 1rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  margin-right: 0;
}
.button-group.primary .button,
.button-group.primary .button.disabled,
.button-group.primary .button.disabled:focus,
.button-group.primary .button.disabled:hover,
.button-group.primary .button[disabled],
.button-group.primary .button[disabled]:focus,
.button-group.primary .button[disabled]:hover {
  background-color: #449ed8;
  color: #171d1a;
}
.button-group.primary .button:focus,
.button-group.primary .button:hover {
  background-color: #69b1e0;
  color: #171d1a;
}
.button-group.secondary .button,
.button-group.secondary .button.disabled,
.button-group.secondary .button.disabled:focus,
.button-group.secondary .button.disabled:hover,
.button-group.secondary .button[disabled],
.button-group.secondary .button[disabled]:focus,
.button-group.secondary .button[disabled]:hover {
  background-color: #767676;
  color: #fff;
}
.button-group.secondary .button:focus,
.button-group.secondary .button:hover {
  background-color: #919191;
  color: #fff;
}
.button-group.success .button,
.button-group.success .button.disabled,
.button-group.success .button.disabled:focus,
.button-group.success .button.disabled:hover,
.button-group.success .button[disabled],
.button-group.success .button[disabled]:focus,
.button-group.success .button[disabled]:hover {
  background-color: #3adb76;
  color: #171d1a;
}
.button-group.success .button:focus,
.button-group.success .button:hover {
  background-color: #61e291;
  color: #171d1a;
}
.button-group.warning .button,
.button-group.warning .button.disabled,
.button-group.warning .button.disabled:focus,
.button-group.warning .button.disabled:hover,
.button-group.warning .button[disabled],
.button-group.warning .button[disabled]:focus,
.button-group.warning .button[disabled]:hover {
  background-color: #ffae00;
  color: #171d1a;
}
.button-group.warning .button:focus,
.button-group.warning .button:hover {
  background-color: #ffbe33;
  color: #171d1a;
}
.button-group.alert .button,
.button-group.alert .button.disabled,
.button-group.alert .button.disabled:focus,
.button-group.alert .button.disabled:hover,
.button-group.alert .button[disabled],
.button-group.alert .button[disabled]:focus,
.button-group.alert .button[disabled]:hover {
  background-color: #cc4b37;
  color: #fff;
}
.button-group.alert .button:focus,
.button-group.alert .button:hover {
  background-color: #d66f5f;
  color: #fff;
}
.button-group.hollow .button,
.button-group.hollow .button.disabled,
.button-group.hollow .button.disabled:focus,
.button-group.hollow .button.disabled:hover,
.button-group.hollow .button:focus,
.button-group.hollow .button:hover,
.button-group.hollow .button[disabled],
.button-group.hollow .button[disabled]:focus,
.button-group.hollow .button[disabled]:hover {
  background-color: transparent;
}
.button-group.hollow .button,
.button-group.hollow .button.disabled,
.button-group.hollow .button.disabled:focus,
.button-group.hollow .button.disabled:hover,
.button-group.hollow .button[disabled],
.button-group.hollow .button[disabled]:focus,
.button-group.hollow .button[disabled]:hover {
  border: 2px solid #449ed8;
  color: #449ed8;
}
.button-group.hollow .button:focus,
.button-group.hollow .button:hover {
  border-color: #69b1e0;
  color: #69b1e0;
}
.button-group.hollow .button.primary,
.button-group.hollow .button.primary.disabled,
.button-group.hollow .button.primary.disabled:focus,
.button-group.hollow .button.primary.disabled:hover,
.button-group.hollow .button.primary[disabled],
.button-group.hollow .button.primary[disabled]:focus,
.button-group.hollow .button.primary[disabled]:hover,
.button-group.hollow.primary .button,
.button-group.hollow.primary .button.disabled,
.button-group.hollow.primary .button.disabled:focus,
.button-group.hollow.primary .button.disabled:hover,
.button-group.hollow.primary .button[disabled],
.button-group.hollow.primary .button[disabled]:focus,
.button-group.hollow.primary .button[disabled]:hover {
  border: 2px solid #449ed8;
  color: #449ed8;
}
.button-group.hollow .button.primary:focus,
.button-group.hollow .button.primary:hover,
.button-group.hollow.primary .button:focus,
.button-group.hollow.primary .button:hover {
  border-color: #69b1e0;
  color: #69b1e0;
}
.button-group.hollow .button.secondary,
.button-group.hollow .button.secondary.disabled,
.button-group.hollow .button.secondary.disabled:focus,
.button-group.hollow .button.secondary.disabled:hover,
.button-group.hollow .button.secondary[disabled],
.button-group.hollow .button.secondary[disabled]:focus,
.button-group.hollow .button.secondary[disabled]:hover,
.button-group.hollow.secondary .button,
.button-group.hollow.secondary .button.disabled,
.button-group.hollow.secondary .button.disabled:focus,
.button-group.hollow.secondary .button.disabled:hover,
.button-group.hollow.secondary .button[disabled],
.button-group.hollow.secondary .button[disabled]:focus,
.button-group.hollow.secondary .button[disabled]:hover {
  border: 2px solid #767676;
  color: #767676;
}
.button-group.hollow .button.secondary:focus,
.button-group.hollow .button.secondary:hover,
.button-group.hollow.secondary .button:focus,
.button-group.hollow.secondary .button:hover {
  border-color: #919191;
  color: #919191;
}
.button-group.hollow .button.success,
.button-group.hollow .button.success.disabled,
.button-group.hollow .button.success.disabled:focus,
.button-group.hollow .button.success.disabled:hover,
.button-group.hollow .button.success[disabled],
.button-group.hollow .button.success[disabled]:focus,
.button-group.hollow .button.success[disabled]:hover,
.button-group.hollow.success .button,
.button-group.hollow.success .button.disabled,
.button-group.hollow.success .button.disabled:focus,
.button-group.hollow.success .button.disabled:hover,
.button-group.hollow.success .button[disabled],
.button-group.hollow.success .button[disabled]:focus,
.button-group.hollow.success .button[disabled]:hover {
  border: 2px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow .button.success:focus,
.button-group.hollow .button.success:hover,
.button-group.hollow.success .button:focus,
.button-group.hollow.success .button:hover {
  border-color: #61e291;
  color: #61e291;
}
.button-group.hollow .button.warning,
.button-group.hollow .button.warning.disabled,
.button-group.hollow .button.warning.disabled:focus,
.button-group.hollow .button.warning.disabled:hover,
.button-group.hollow .button.warning[disabled],
.button-group.hollow .button.warning[disabled]:focus,
.button-group.hollow .button.warning[disabled]:hover,
.button-group.hollow.warning .button,
.button-group.hollow.warning .button.disabled,
.button-group.hollow.warning .button.disabled:focus,
.button-group.hollow.warning .button.disabled:hover,
.button-group.hollow.warning .button[disabled],
.button-group.hollow.warning .button[disabled]:focus,
.button-group.hollow.warning .button[disabled]:hover {
  border: 2px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow .button.warning:focus,
.button-group.hollow .button.warning:hover,
.button-group.hollow.warning .button:focus,
.button-group.hollow.warning .button:hover {
  border-color: #ffbe33;
  color: #ffbe33;
}
.button-group.hollow.alert .button,
.button-group.hollow.alert .button.disabled,
.button-group.hollow.alert .button.disabled:focus,
.button-group.hollow.alert .button.disabled:hover,
.button-group.hollow.alert .button[disabled],
.button-group.hollow.alert .button[disabled]:focus,
.button-group.hollow.alert .button[disabled]:hover,
.button-group.hollow .button.alert,
.button-group.hollow .button.alert.disabled,
.button-group.hollow .button.alert.disabled:focus,
.button-group.hollow .button.alert.disabled:hover,
.button-group.hollow .button.alert[disabled],
.button-group.hollow .button.alert[disabled]:focus,
.button-group.hollow .button.alert[disabled]:hover {
  border: 2px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:focus,
.button-group.hollow.alert .button:hover,
.button-group.hollow .button.alert:focus,
.button-group.hollow .button.alert:hover {
  border-color: #d66f5f;
  color: #d66f5f;
}
.button-group.clear .button,
.button-group.clear .button.disabled,
.button-group.clear .button.disabled:focus,
.button-group.clear .button.disabled:hover,
.button-group.clear .button:focus,
.button-group.clear .button:hover,
.button-group.clear .button[disabled],
.button-group.clear .button[disabled]:focus,
.button-group.clear .button[disabled]:hover {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button,
.button-group.clear .button.disabled,
.button-group.clear .button.disabled:focus,
.button-group.clear .button.disabled:hover,
.button-group.clear .button[disabled],
.button-group.clear .button[disabled]:focus,
.button-group.clear .button[disabled]:hover {
  color: #449ed8;
}
.button-group.clear .button:focus,
.button-group.clear .button:hover {
  color: #69b1e0;
}
.button-group.clear .button.primary,
.button-group.clear .button.primary.disabled,
.button-group.clear .button.primary.disabled:focus,
.button-group.clear .button.primary.disabled:hover,
.button-group.clear .button.primary[disabled],
.button-group.clear .button.primary[disabled]:focus,
.button-group.clear .button.primary[disabled]:hover,
.button-group.clear.primary .button,
.button-group.clear.primary .button.disabled,
.button-group.clear.primary .button.disabled:focus,
.button-group.clear.primary .button.disabled:hover,
.button-group.clear.primary .button[disabled],
.button-group.clear.primary .button[disabled]:focus,
.button-group.clear.primary .button[disabled]:hover {
  color: #449ed8;
}
.button-group.clear .button.primary:focus,
.button-group.clear .button.primary:hover,
.button-group.clear.primary .button:focus,
.button-group.clear.primary .button:hover {
  color: #69b1e0;
}
.button-group.clear .button.secondary,
.button-group.clear .button.secondary.disabled,
.button-group.clear .button.secondary.disabled:focus,
.button-group.clear .button.secondary.disabled:hover,
.button-group.clear .button.secondary[disabled],
.button-group.clear .button.secondary[disabled]:focus,
.button-group.clear .button.secondary[disabled]:hover,
.button-group.clear.secondary .button,
.button-group.clear.secondary .button.disabled,
.button-group.clear.secondary .button.disabled:focus,
.button-group.clear.secondary .button.disabled:hover,
.button-group.clear.secondary .button[disabled],
.button-group.clear.secondary .button[disabled]:focus,
.button-group.clear.secondary .button[disabled]:hover {
  color: #767676;
}
.button-group.clear .button.secondary:focus,
.button-group.clear .button.secondary:hover,
.button-group.clear.secondary .button:focus,
.button-group.clear.secondary .button:hover {
  color: #919191;
}
.button-group.clear .button.success,
.button-group.clear .button.success.disabled,
.button-group.clear .button.success.disabled:focus,
.button-group.clear .button.success.disabled:hover,
.button-group.clear .button.success[disabled],
.button-group.clear .button.success[disabled]:focus,
.button-group.clear .button.success[disabled]:hover,
.button-group.clear.success .button,
.button-group.clear.success .button.disabled,
.button-group.clear.success .button.disabled:focus,
.button-group.clear.success .button.disabled:hover,
.button-group.clear.success .button[disabled],
.button-group.clear.success .button[disabled]:focus,
.button-group.clear.success .button[disabled]:hover {
  color: #3adb76;
}
.button-group.clear .button.success:focus,
.button-group.clear .button.success:hover,
.button-group.clear.success .button:focus,
.button-group.clear.success .button:hover {
  color: #61e291;
}
.button-group.clear .button.warning,
.button-group.clear .button.warning.disabled,
.button-group.clear .button.warning.disabled:focus,
.button-group.clear .button.warning.disabled:hover,
.button-group.clear .button.warning[disabled],
.button-group.clear .button.warning[disabled]:focus,
.button-group.clear .button.warning[disabled]:hover,
.button-group.clear.warning .button,
.button-group.clear.warning .button.disabled,
.button-group.clear.warning .button.disabled:focus,
.button-group.clear.warning .button.disabled:hover,
.button-group.clear.warning .button[disabled],
.button-group.clear.warning .button[disabled]:focus,
.button-group.clear.warning .button[disabled]:hover {
  color: #ffae00;
}
.button-group.clear .button.warning:focus,
.button-group.clear .button.warning:hover,
.button-group.clear.warning .button:focus,
.button-group.clear.warning .button:hover {
  color: #ffbe33;
}
.button-group.clear.alert .button,
.button-group.clear.alert .button.disabled,
.button-group.clear.alert .button.disabled:focus,
.button-group.clear.alert .button.disabled:hover,
.button-group.clear.alert .button[disabled],
.button-group.clear.alert .button[disabled]:focus,
.button-group.clear.alert .button[disabled]:hover,
.button-group.clear .button.alert,
.button-group.clear .button.alert.disabled,
.button-group.clear .button.alert.disabled:focus,
.button-group.clear .button.alert.disabled:hover,
.button-group.clear .button.alert[disabled],
.button-group.clear .button.alert[disabled]:focus,
.button-group.clear .button.alert[disabled]:hover {
  color: #cc4b37;
}
.button-group.clear.alert .button:focus,
.button-group.clear.alert .button:hover,
.button-group.clear .button.alert:focus,
.button-group.clear .button.alert:hover {
  color: #d66f5f;
}
.button-group.no-gaps .button {
  margin-right: -0.11111111rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked,
.button-group.stacked-for-medium,
.button-group.stacked-for-small {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.button-group.stacked-for-medium .button,
.button-group.stacked-for-small .button,
.button-group.stacked .button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.button-group.stacked-for-medium .button:last-child,
.button-group.stacked-for-small .button:last-child,
.button-group.stacked .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked-for-medium.expanded .button,
.button-group.stacked-for-small.expanded .button,
.button-group.stacked.expanded .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  margin-right: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}
.close-button {
  position: absolute;
  z-index: 10;
  color: #8a8a8a;
  cursor: pointer;
}
[data-whatinput="mouse"] .close-button {
  outline: 0;
}
.close-button:focus,
.close-button:hover {
  color: #171d1a;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button,
.close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}
.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 7px;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #449ed8;
  color: #fff;
}
.label.primary {
  background: #449ed8;
  color: #171d1a;
}
.label.secondary {
  background: #767676;
  color: #fff;
}
.label.success {
  background: #3adb76;
  color: #171d1a;
}
.label.warning {
  background: #ffae00;
  color: #171d1a;
}
.label.alert {
  background: #cc4b37;
  color: #fff;
}
.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 7px;
  background-color: #cacaca;
}
.progress.primary .progress-meter {
  background-color: #449ed8;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}
.progress-meter {
  position: relative;
  display: block;
  width: 0;
  height: 100%;
  background-color: #449ed8;
  border-radius: 7px;
}
.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  border-radius: 7px;
}
.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
}
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider-handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 7px;
  background-color: #449ed8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
[data-whatinput="mouse"] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #2a8ac8;
}
.slider-handle.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.77777778rem;
  font-weight: 700;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}
.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 7px;
  background: #cacaca;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle:after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border-radius: 7px;
  background: #fff;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #449ed8;
}
input:checked ~ .switch-paddle:after {
  left: 2.25rem;
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput="mouse"] input:focus ~ .switch-paddle {
  outline: 0;
}
.switch-active,
.switch-inactive {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}
.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}
.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.55555556rem;
}
.switch.tiny .switch-paddle:after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle:after {
  left: 1.75rem;
}
.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.66666667rem;
}
.switch.small .switch-paddle:after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle:after {
  left: 2rem;
}
.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 0.88888889rem;
}
.switch.large .switch-paddle:after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle:after {
  left: 2.75rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 7px;
}
tbody,
tfoot,
thead {
  border: 1px solid #f2f2f2;
  background-color: #fff;
}
caption {
  padding: 0.44444444rem 0.55555556rem 0.55555556rem;
  font-weight: 700;
}
thead {
  background: #f9f9f9;
}
tfoot,
thead {
  color: #3c4e59;
}
tfoot {
  background: #f2f2f2;
}
tfoot tr,
thead tr {
  background: transparent;
}
tfoot td,
tfoot th,
thead td,
thead th {
  font-weight: 700;
  text-align: left;
}
tbody td,
tbody th,
tfoot td,
tfoot th,
thead td,
thead th {
  padding: 0.44444444rem 0.55555556rem 0.55555556rem;
}
tbody tr:nth-child(2n) {
  border-bottom: 0;
  background-color: #f2f2f2;
}
table.unstriped tbody {
  background-color: #fff;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f2f2f2;
  background-color: #fff;
}
@media print, screen and (max-width: 63.99875em) {
  table.stack tfoot,
  table.stack thead {
    display: none;
  }
  table.stack td,
  table.stack th,
  table.stack tr {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}
table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}
table.hover thead tr:hover {
  background-color: #f4f4f4;
}
table.hover tfoot tr:hover {
  background-color: #ededed;
}
table.hover tbody tr:hover {
  background-color: #fafafa;
}
table.hover:not(.unstriped) tr:nth-of-type(2n):hover {
  background-color: #ededed;
}
.table-scroll {
  overflow-x: auto;
}
.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #449ed8;
  color: #fff;
}
.badge.primary {
  background: #449ed8;
  color: #171d1a;
}
.badge.secondary {
  background: #767676;
  color: #fff;
}
.badge.success {
  background: #3adb76;
  color: #171d1a;
}
.badge.warning {
  background: #ffae00;
  color: #171d1a;
}
.badge.alert {
  background: #cc4b37;
  color: #fff;
}
.breadcrumbs {
  margin: 0 0 1rem;
  list-style: none;
}
.breadcrumbs:after,
.breadcrumbs:before {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.breadcrumbs:after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.61111111rem;
  color: #171d1a;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child):after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cacaca;
}
.breadcrumbs a {
  color: #449ed8;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cacaca;
  cursor: not-allowed;
}
.callout {
  position: relative;
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(23, 29, 26, 0.25);
  border-radius: 7px;
  background-color: #fff;
  color: #3c4e59;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #e3f0f9;
  color: #3c4e59;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #3c4e59;
}
.callout.success {
  background-color: #e1faea;
  color: #3c4e59;
}
.callout.warning {
  background-color: #fff3d9;
  color: #3c4e59;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #3c4e59;
}
.callout.small {
  padding: 0.5rem;
}
.callout.large {
  padding: 3rem;
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 7px;
  background: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: hidden;
  color: #3c4e59;
}
.card > :last-child {
  margin-bottom: 0;
}
.card-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6;
}
.card-divider > :last-child {
  margin-bottom: 0;
}
.card-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}
.card-image {
  min-height: 1px;
}
.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 7px;
  background-color: #fff;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}
.dropdown-pane.tiny {
  width: 100px;
}
.dropdown-pane.small {
  width: 200px;
}
.dropdown-pane.large {
  width: 400px;
}
.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination:after,
.pagination:before {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.pagination:after {
  clear: both;
}
.pagination li {
  margin-right: 0.05555556rem;
  border-radius: 7px;
  font-size: 0.77777778rem;
  display: none;
}
.pagination li:first-child,
.pagination li:last-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.16666667rem 0.55555556rem;
  border-radius: 7px;
  color: #171d1a;
}
.pagination a:hover,
.pagination button:hover {
  background: #e6e6e6;
}
.pagination .current {
  padding: 0.16666667rem 0.55555556rem;
  background: #449ed8;
  color: #fff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.16666667rem 0.55555556rem;
  color: #cacaca;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis:after {
  padding: 0.16666667rem 0.55555556rem;
  content: "\2026";
  color: #171d1a;
}
.pagination-previous.disabled:before,
.pagination-previous a:before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "\AB";
}
.pagination-next.disabled:after,
.pagination-next a:after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "\BB";
}
.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: 0 dotted #8a8a8a;
  font-weight: 700;
  cursor: info;
}
.tooltip {
  top: calc(100% + 0.4995rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 7px;
  background-color: #3c4e59;
  font-size: 80%;
  color: #fff;
}
.tooltip,
.tooltip:before {
  position: absolute;
}
.tooltip.bottom:before {
  display: block;
  width: 0;
  height: 0;
  border: 0.75rem inset;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #3c4e59;
  bottom: 100%;
}
.tooltip.bottom.align-center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.top:before {
  display: block;
  width: 0;
  height: 0;
  border: 0.75rem inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #3c4e59 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tooltip.left:before {
  display: block;
  width: 0;
  height: 0;
  border: 0.75rem inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #3c4e59;
  left: 100%;
}
.tooltip.left.align-center:before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.right:before {
  display: block;
  width: 0;
  height: 0;
  border: 0.75rem inset;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #3c4e59 transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center:before {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.tooltip.align-top:before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom:before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left:before {
  left: 10%;
  right: auto;
}
.tooltip.align-right:before {
  left: auto;
  right: 10%;
}
.accordion {
  margin-left: 0;
  background: #fff;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}
.accordion-item:first-child > :first-child {
  border-radius: 7px 7px 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 7px 7px;
}
.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  font-size: 0.66666667rem;
  line-height: 1;
  color: #449ed8;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0 0 7px 7px;
}
.accordion-title:focus,
.accordion-title:hover {
  background-color: #e6e6e6;
}
.accordion-title:before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title:before {
  content: "\2013";
}
.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fff;
  color: #3c4e59;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.media-object {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.media-object-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.orbit,
.orbit-container {
  position: relative;
}
.orbit-container {
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.orbit-slide {
  width: 100%;
  position: absolute;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}
.orbit-figure {
  margin: 0;
}
.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(23, 29, 26, 0.5);
  color: #fff;
}
.orbit-next,
.orbit-previous {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fff;
}
[data-whatinput="mouse"] .orbit-next,
[data-whatinput="mouse"] .orbit-previous {
  outline: 0;
}
.orbit-next:active,
.orbit-next:focus,
.orbit-next:hover,
.orbit-previous:active,
.orbit-previous:focus,
.orbit-previous:hover {
  background-color: rgba(23, 29, 26, 0.5);
}
.orbit-previous {
  left: 0;
}
.orbit-next {
  left: auto;
  right: 0;
}
.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput="mouse"] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #cacaca;
}
.orbit-bullets button.is-active,
.orbit-bullets button:hover {
  background-color: #8a8a8a;
}
.flex-video,
.responsive-embed {
  position: relative;
  height: 0;
  margin-bottom: 0.88888889rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.flex-video embed,
.flex-video iframe,
.flex-video object,
.flex-video video,
.responsive-embed embed,
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-video.widescreen,
.responsive-embed.widescreen {
  padding-bottom: 56.25%;
}
.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fff;
  list-style-type: none;
}
.tabs:after,
.tabs:before {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.tabs:after {
  clear: both;
}
.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}
.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}
.tabs.primary {
  background: #449ed8;
}
.tabs.primary > li > a {
  color: #171d1a;
}
.tabs.primary > li > a:focus,
.tabs.primary > li > a:hover {
  background: #3898d6;
}
.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.66666667rem;
  line-height: 1;
  color: #449ed8;
}
[data-whatinput="mouse"] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #fff;
  color: #2a8bca;
}
.tabs-title > a:focus,
.tabs-title > a[aria-selected="true"] {
  background: #e6e6e6;
  color: #449ed8;
}
.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fff;
  color: #3c4e59;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0;
}
.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}
.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 0 1px rgba(23, 29, 26, 0.2);
  box-shadow: 0 0 0 1px rgba(23, 29, 26, 0.2);
  line-height: 0;
}
a.thumbnail {
  -webkit-transition: -webkit-box-shadow 0.2s ease-out;
  transition: -webkit-box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}
a.thumbnail:focus,
a.thumbnail:hover {
  -webkit-box-shadow: 0 0 6px 1px rgba(68, 158, 216, 0.5);
  box-shadow: 0 0 6px 1px rgba(68, 158, 216, 0.5);
}
a.thumbnail image {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
[data-whatinput="mouse"] .menu li {
  outline: 0;
}
.menu .button,
.menu a {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu a,
.menu button,
.menu input,
.menu select {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu,
.menu.horizontal {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.menu.vertical {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu.expanded li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.menu.simple {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.medium-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.medium-expanded li,
  .menu.medium-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.large-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.large-expanded li,
  .menu.large-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 87.5em) {
  .menu.xlarge-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .menu.xlarge-vertical {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu.xlarge-expanded li,
  .menu.xlarge-simple li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icon-bottom a,
.menu.icon-left a,
.menu.icon-right a,
.menu.icon-top a,
.menu.icons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu.icon-left li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-left li a i,
.menu.icon-left li a img,
.menu.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}
.menu.icon-right li a i,
.menu.icon-right li a img,
.menu.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-top li a i,
.menu.icon-top li a img,
.menu.icon-top li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
}
.menu.icon-bottom li a i,
.menu.icon-bottom li a img,
.menu.icon-bottom li a svg {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .active > a,
.menu .is-active > a {
  background: #449ed8;
  color: #171d1a;
}
.menu.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu.align-center li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
}
.menu-centered > .menu,
.menu-centered > .menu li {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.menu-centered > .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu-centered > .menu li .submenu li {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.no-js [data-responsive-menu] ul {
  display: none;
}
.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  content: "";
}
.menu-icon:hover:after {
  background: #cacaca;
  -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
  box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}
.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer;
}
.menu-icon.dark:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #171d1a;
  -webkit-box-shadow: 0 7px 0 #171d1a, 0 14px 0 #171d1a;
  box-shadow: 0 7px 0 #171d1a, 0 14px 0 #171d1a;
  content: "";
}
.menu-icon.dark:hover:after {
  background: #8a8a8a;
  -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
  box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}
.accordion-menu li {
  width: 100%;
}
.accordion-menu .is-accordion-submenu a,
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu
  .is-accordion-submenu-parent:not(.has-submenu-toggle)
  > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #449ed8 transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a:after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a:after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] > a:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.is-accordion-submenu-parent {
  position: relative;
}
.has-submenu-toggle > a {
  margin-right: 40px;
}
.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #449ed8 transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}
.submenu-toggle[aria-expanded="true"]:after {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}
.drilldown a {
  padding: 0.7rem 1rem;
  background: #fff;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a:after {
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
.drilldown.align-left .is-drilldown-submenu-parent > a:after,
.drilldown .is-drilldown-submenu-parent > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #449ed8;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a:after {
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a:after {
  display: block;
  right: auto;
  left: 1rem;
}
.drilldown.align-right .is-drilldown-submenu-parent > a:after,
.drilldown .js-drilldown-back > a:before {
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #449ed8 transparent transparent;
}
.drilldown .js-drilldown-back > a:before {
  display: block;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #449ed8 transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput="mouse"] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #449ed8;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a:after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #449ed8 transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #449ed8;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #449ed8 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a:after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #449ed8 transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #449ed8;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #449ed8 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a:after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #449ed8 transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #449ed8;
  }
}
@media screen and (min-width: 87.5em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #449ed8 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a:after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #449ed8 transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a:after {
    display: block;
    width: 0;
    height: 0;
    border: 6px inset;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #449ed8;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}
.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}
.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a:after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fff;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a:after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #449ed8 transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 6px inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #449ed8;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}
.is-off-canvas-open {
  overflow: hidden;
}
.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: hsla(0, 0%, 100%, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}
.off-canvas {
  position: fixed;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(23, 29, 26, 0.7);
  box-shadow: 0 0 10px rgba(23, 29, 26, 0.7);
}
.off-canvas.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #e6e6e6;
}
[data-whatinput="mouse"] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(23, 29, 26, 0.7);
  box-shadow: 0 0 10px rgba(23, 29, 26, 0.7);
}
.off-canvas-absolute.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
}
.off-canvas-content .off-canvas.position-left,
.position-left {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.off-canvas-content.is-open-left.has-transition-push {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.position-left.is-transition-push {
  -webkit-box-shadow: inset -13px 0 20px -13px rgba(23, 29, 26, 0.25);
  box-shadow: inset -13px 0 20px -13px rgba(23, 29, 26, 0.25);
}
.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
}
.off-canvas-content .off-canvas.position-right,
.position-right {
  -webkit-transform: translateX(250px);
  transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.off-canvas-content.is-open-right.has-transition-push {
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
.position-right.is-transition-push {
  -webkit-box-shadow: inset 13px 0 20px -13px rgba(23, 29, 26, 0.25);
  box-shadow: inset 13px 0 20px -13px rgba(23, 29, 26, 0.25);
}
.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
}
.off-canvas-content .off-canvas.position-top,
.position-top {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.off-canvas-content.is-open-top.has-transition-push {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.position-top.is-transition-push {
  -webkit-box-shadow: inset 0 -13px 20px -13px rgba(23, 29, 26, 0.25);
  box-shadow: inset 0 -13px 20px -13px rgba(23, 29, 26, 0.25);
}
.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
}
.off-canvas-content .off-canvas.position-bottom,
.position-bottom {
  -webkit-transform: translateY(250px);
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.off-canvas-content.is-open-bottom.has-transition-push {
  -webkit-transform: translateY(-250px);
  transform: translateY(-250px);
}
.position-bottom.is-transition-push {
  -webkit-box-shadow: inset 0 13px 20px -13px rgba(23, 29, 26, 0.25);
  box-shadow: inset 0 13px 20px -13px rgba(23, 29, 26, 0.25);
}
.off-canvas-content {
  -webkit-transform: none;
  transform: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap,
.off-canvas-content.has-transition-push {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.off-canvas-content.has-transition-push,
.off-canvas-content .off-canvas.is-open {
  -webkit-transform: translate(0);
  transform: translate(0);
}
@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left,
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right,
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top,
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom,
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left,
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right,
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top,
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom,
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 87.5em) {
  .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-left,
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-right,
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-top,
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
    z-index: 12;
    -webkit-transition: none;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-xlarge .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-xlarge {
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom,
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-bottom,
  .off-canvas.in-canvas-for-medium.position-left,
  .off-canvas.in-canvas-for-medium.position-right,
  .off-canvas.in-canvas-for-medium.position-top {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-bottom,
  .off-canvas.in-canvas-for-large.position-left,
  .off-canvas.in-canvas-for-large.position-right,
  .off-canvas.in-canvas-for-large.position-top {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
@media screen and (min-width: 87.5em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    -webkit-transition: none;
    transition: none;
  }
  .off-canvas.in-canvas-for-xlarge.position-bottom,
  .off-canvas.in-canvas-for-xlarge.position-left,
  .off-canvas.in-canvas-for-xlarge.position-right,
  .off-canvas.in-canvas-for-xlarge.position-top {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-xlarge .close-button {
    display: none;
  }
}
html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
}
html.is-reveal-open body {
  overflow-y: hidden;
}
.reveal-overlay {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  background-color: rgba(23, 29, 26, 0.45);
}
.reveal,
.reveal-overlay {
  display: none;
  overflow-y: auto;
}
.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 2vw;
  border: 1px solid #cacaca;
  border-radius: 7px;
  background-color: #fff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
}
[data-whatinput="mouse"] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 88%;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 88%;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 88%;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 88%;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}
.sticky,
.sticky-container {
  position: relative;
}
.sticky {
  z-index: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}
.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}
.title-bar {
  padding: 0.5rem;
  background: #171d1a;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.title-bar .menu-icon {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.title-bar-left,
.title-bar-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
.title-bar-right {
  text-align: right;
}
.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: 700;
}
.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .top-bar .top-bar-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: auto;
  }
  .top-bar .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: auto;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .top-bar.stacked-for-medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 87.49875em) {
  .top-bar.stacked-for-large {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (max-width: 89.99875em) {
  .top-bar.stacked-for-xlarge {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.top-bar-title {
  margin: 0.5rem 1rem 0.5rem 0;
}
.top-bar-left,
.top-bar-right,
.top-bar-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.clearfix:after,
.clearfix:before {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.clearfix:after {
  clear: both;
}
.align-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.align-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.align-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-spaced {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.align-left.vertical.menu > li > a {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.align-right.vertical.menu > li > a {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.align-center.vertical.menu > li > a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.align-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.align-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.align-self-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.align-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-self-middle {
  -ms-flex-item-align: center;
  align-self: center;
}
.align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.align-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.align-center-middle {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.small-order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.small-order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.small-order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.small-order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.small-order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.small-order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}
@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-child-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flex-child-grow {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.flex-child-shrink {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .medium-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .large-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 87.5em) {
  .xlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xlarge-flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}
.invisible {
  visibility: hidden;
}
@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}
@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}
@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}
@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}
@media print, screen and (min-width: 64em) and (max-width: 87.49875em) {
  .hide-for-large-only {
    display: none !important;
  }
}
@media screen and (max-width: 63.99875em), screen and (min-width: 87.5em) {
  .show-for-large-only {
    display: none !important;
  }
}
@media screen and (min-width: 87.5em) {
  .hide-for-xlarge {
    display: none !important;
  }
}
@media screen and (max-width: 87.49875em) {
  .show-for-xlarge {
    display: none !important;
  }
}
@media screen and (min-width: 87.5em) and (max-width: 89.99875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}
@media screen and (max-width: 87.49875em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}
.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}
.hide-for-portrait,
.show-for-landscape {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .hide-for-portrait,
  .show-for-landscape {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important;
  }
}
.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}
.slide-in-down.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-in-down.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.slide-in-left.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-in-left.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.slide-in-up.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-in-up.mui-enter.mui-enter-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.slide-in-right.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-in-right.mui-enter.mui-enter-active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.slide-out-down.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-out-down.mui-leave.mui-leave-active {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.slide-out-right.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-out-right.mui-leave.mui-leave-active {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.slide-out-up.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-out-up.mui-leave.mui-leave-active {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.slide-out-left.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide-out-left.mui-leave.mui-leave-active {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.fade-in.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}
.fade-out.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  opacity: 1;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}
.hinge-in-from-top.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-top.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-in-from-right.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-right.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-in-from-bottom.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-bottom.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-in-from-left.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-left.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-in-from-middle-x.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-in-from-middle-y.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.hinge-in-from-middle-y.mui-enter.mui-enter-active,
.hinge-out-from-top.mui-leave {
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}
.hinge-out-from-top.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.hinge-out-from-top.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}
.hinge-out-from-right.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.hinge-out-from-right.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}
.hinge-out-from-bottom.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.hinge-out-from-bottom.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(-90deg);
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}
.hinge-out-from-left.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.hinge-out-from-left.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(-90deg);
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}
.hinge-out-from-middle-x.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateX(90deg);
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}
.hinge-out-from-middle-y.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: perspective(2000px) rotate(0deg);
  transform: perspective(2000px) rotate(0deg);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  -webkit-transform: perspective(2000px) rotateY(90deg);
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}
.scale-in-up.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.scale-in-up.mui-enter.mui-enter-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.scale-in-down.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.scale-in-down.mui-enter.mui-enter-active,
.scale-out-up.mui-leave {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.scale-out-up.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.scale-out-up.mui-leave.mui-leave-active {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
.scale-out-down.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 1;
}
.scale-out-down.mui-leave.mui-leave-active {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.spin-in.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  opacity: 0;
}
.spin-in.mui-enter.mui-enter-active,
.spin-out.mui-leave {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}
.spin-out.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.spin-in-ccw.mui-enter,
.spin-out.mui-leave.mui-leave-active {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  opacity: 0;
}
.spin-in-ccw.mui-enter {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.spin-in-ccw.mui-enter.mui-enter-active,
.spin-out-ccw.mui-leave {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}
.spin-out-ccw.mui-leave {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.spin-out-ccw.mui-leave.mui-leave-active {
  -webkit-transform: rotate(-270deg);
  transform: rotate(-270deg);
  opacity: 0;
}
.slow {
  -webkit-transition-duration: 0.75s !important;
  transition-duration: 0.75s !important;
}
.fast {
  -webkit-transition-duration: 0.25s !important;
  transition-duration: 0.25s !important;
}
.linear {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.ease {
  -webkit-transition-timing-function: ease !important;
  transition-timing-function: ease !important;
}
.ease-in {
  -webkit-transition-timing-function: ease-in !important;
  transition-timing-function: ease-in !important;
}
.ease-out {
  -webkit-transition-timing-function: ease-out !important;
  transition-timing-function: ease-out !important;
}
.ease-in-out {
  -webkit-transition-timing-function: ease-in-out !important;
  transition-timing-function: ease-in-out !important;
}
.bounce-in {
  -webkit-transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.24,
    1.245
  ) !important;
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.24,
    1.245
  ) !important;
}
.bounce-out {
  -webkit-transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
  transition-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}
.bounce-in-out {
  -webkit-transition-timing-function: cubic-bezier(
    0.76,
    -0.245,
    0.24,
    1.245
  ) !important;
  transition-timing-function: cubic-bezier(
    0.76,
    -0.245,
    0.24,
    1.245
  ) !important;
}
.short-delay {
  -webkit-transition-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}
.long-delay {
  -webkit-transition-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}
.shake {
  -webkit-animation-name: shake-7;
  animation-name: shake-7;
}
@-webkit-keyframes shake-7 {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%);
  }
  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%);
  }
}
@keyframes shake-7 {
  0%,
  10%,
  20%,
  30%,
  40%,
  50%,
  60%,
  70%,
  80%,
  90% {
    -webkit-transform: translateX(7%);
    transform: translateX(7%);
  }
  5%,
  15%,
  25%,
  35%,
  45%,
  55%,
  65%,
  75%,
  85%,
  95% {
    -webkit-transform: translateX(-7%);
    transform: translateX(-7%);
  }
}
.spin-cw {
  -webkit-animation-name: spin-cw-1turn;
  animation-name: spin-cw-1turn;
}
@-webkit-keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes spin-cw-1turn {
  0% {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.spin-ccw {
  -webkit-animation-name: spin-ccw-1turn;
  animation-name: spin-ccw-1turn;
}
@-webkit-keyframes spin-ccw-1turn {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
@keyframes spin-ccw-1turn {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-1turn);
    transform: rotate(-1turn);
  }
}
.wiggle {
  -webkit-animation-name: wiggle-7deg;
  animation-name: wiggle-7deg;
}
@-webkit-keyframes wiggle-7deg {
  40%,
  50%,
  60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  35%,
  45%,
  55%,
  65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
  0%,
  30%,
  70%,
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes wiggle-7deg {
  40%,
  50%,
  60% {
    -webkit-transform: rotate(7deg);
    transform: rotate(7deg);
  }
  35%,
  45%,
  55%,
  65% {
    -webkit-transform: rotate(-7deg);
    transform: rotate(-7deg);
  }
  0%,
  30%,
  70%,
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.shake,
.spin-ccw,
.spin-cw,
.wiggle {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.slow {
  -webkit-animation-duration: 0.75s !important;
  animation-duration: 0.75s !important;
}
.fast {
  -webkit-animation-duration: 0.25s !important;
  animation-duration: 0.25s !important;
}
.linear {
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.ease {
  -webkit-animation-timing-function: ease !important;
  animation-timing-function: ease !important;
}
.ease-in {
  -webkit-animation-timing-function: ease-in !important;
  animation-timing-function: ease-in !important;
}
.ease-out {
  -webkit-animation-timing-function: ease-out !important;
  animation-timing-function: ease-out !important;
}
.ease-in-out {
  -webkit-animation-timing-function: ease-in-out !important;
  animation-timing-function: ease-in-out !important;
}
.bounce-in {
  -webkit-animation-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.24,
    1.245
  ) !important;
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}
.bounce-out {
  -webkit-animation-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
  animation-timing-function: cubic-bezier(
    0.485,
    0.155,
    0.515,
    0.845
  ) !important;
}
.bounce-in-out {
  -webkit-animation-timing-function: cubic-bezier(
    0.76,
    -0.245,
    0.24,
    1.245
  ) !important;
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}
.short-delay {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}
.long-delay {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  background-color: #fff !important;
  display: grid;
  place-content: center;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
* {
  outline: none;
}
html {
  scroll-behavior: smooth;
}
h1 {
  margin-bottom: 30px;
}
h3 {
  font-family: Avenir LT W01_85 Heavy1475544;
}
.lead {
  font-family: Avenir LT W01_35 Light1475496;
  margin-bottom: 50px;
}
.container-1410 {
  margin-inline: auto;
  max-width: 1450px;
  padding-left: 20px;
  padding-right: 20px;
}
.button,
button {
  font-family: Avenir LT W01_95 Black1475556;
}
.button.hollow,
button.hollow {
  background: none;
}
@media print, screen and (min-width: 64em) {
  .button.hollow:hover,
  button.hollow:hover {
    background: #60adde;
    border-color: #60adde;
    color: #fff;
  }
}
.button.white,
button.white {
  color: #449ed8;
  background: #fff;
}
@media print, screen and (min-width: 64em) {
  .button.white:hover,
  button.white:hover {
    background: #d9d9d9;
    border-color: #d9d9d9;
  }
}
ul,
ul li {
  margin-left: 0;
}
ul li {
  list-style: none;
  margin-bottom: 10px;
  position: relative;
  padding: 0 0 0 30px;
}
ul li:before {
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  background: url(/images/check-blue.svg?16b044ad9438901deb17af1a04ef1765) 0 0
    no-repeat;
  background-size: 100% 100%;
  width: 18px;
  height: 14px;
}
ul li a {
  font-family: Avenir LT W01_65 Medium1475532;
  text-decoration: underline;
}
@media print, screen and (min-width: 64em) {
  ul li a:hover {
    text-decoration: none;
  }
}
p a {
  font-family: Avenir LT W01_65 Medium1475532;
  text-decoration: underline;
}
@media print, screen and (min-width: 64em) {
  p a:hover {
    text-decoration: none;
  }
}
p strong {
  font-family: #171d1a;
  color: #171d1a;
}
p em {
  font-family: Avenir LT W01_45 Book O1475514;
}
blockquote {
  font-size: 22px;
  margin-left: 50px;
}
label {
  font-family: Avenir LT W01_85 Heavy1475544;
  margin-bottom: 7px;
}
label [type="color"],
label [type="date"],
label [type="datetime-local"],
label [type="datetime"],
label [type="email"],
label [type="month"],
label [type="number"],
label [type="password"],
label [type="search"],
label [type="tel"],
label [type="text"],
label [type="time"],
label [type="url"],
label [type="week"],
label textarea {
  margin-top: 6px;
  font-family: Avenir LT W01_45 Book1475508;
  margin-bottom: 0;
}
label textarea {
  height: 100px;
}
label.error {
  color: #eb5a5f;
}
label.error [type="color"],
label.error [type="date"],
label.error [type="datetime-local"],
label.error [type="datetime"],
label.error [type="email"],
label.error [type="month"],
label.error [type="number"],
label.error [type="password"],
label.error [type="search"],
label.error [type="tel"],
label.error [type="text"],
label.error [type="time"],
label.error [type="url"],
label.error [type="week"],
label.error textarea {
  border: 1px solid #eb5a5f;
}
label.error .text-help {
  color: #eb5a5f;
  font-size: 14px;
  font-family: Avenir LT W01_85 Heavy_1475550;
  margin-top: 7px;
}
@media print, screen and (max-width: 39.99875em) {
  h1 {
    margin-bottom: 10px;
  }
  .lead {
    margin-bottom: 25px;
    font-size: 19px;
  }
  p {
    margin-bottom: 20px;
  }
  li,
  p {
    font-size: 16px;
  }
  h2,
  h3,
  h4 {
    margin-bottom: 10px;
  }
  blockquote {
    font-size: 18px;
    margin-left: 0;
  }
  label,
  label [type="color"],
  label [type="date"],
  label [type="datetime-local"],
  label [type="datetime"],
  label [type="email"],
  label [type="month"],
  label [type="number"],
  label [type="password"],
  label [type="search"],
  label [type="tel"],
  label [type="text"],
  label [type="time"],
  label [type="url"],
  label [type="week"],
  label textarea {
    font-size: 16px;
  }
}
.case-study-block,
.cb-latest-news,
.content-block,
.copy-image-block,
.downloads-block,
.dynamic-insights,
.enquiry-block,
.event-block,
.featured-news-block,
.image-video-gallery-block,
.interactive-image-block,
.knowledge-centre-block,
.knowledge-centre-topics,
.logo-block,
.news-block,
.news-list-block,
.padding,
.profiles-block,
.quote-block,
.search-results-block,
.solutions-alt-block,
.solutions-block,
.step-block,
.support-block,
.usp-block,
footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
.no-top-padding {
  padding-top: 0;
}
.no-bottom-padding {
  padding-bottom: 0;
}
.no-top-margin {
  margin-top: 0;
}
.no-bottom-margin {
  margin-bottom: 0;
}
.box-shadow,
.card,
.cookie-notice .card {
  -webkit-box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
  box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
}
.card {
  padding: 37px 41px;
}
#country-notice button.close-button,
.cookie-notice .card button.close-button,
.dynamic-insights .slick-slider .slick-arrow,
.dynamic-insights .slick-slider .slick-slide,
.image-cta,
.image-cta .arrow,
.image-cta .content,
.image-cta.large .content .overflow,
.image-cta:before,
.knowledge-centre-block .card,
.news-block .slick-slider .slick-arrow,
.news-block .slick-slider .slick-slide,
.news-list-block article img,
.owl-carousel .owl-nav button,
.search-overlay .close-button,
.transition,
a,
button.close-button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media print, screen and (max-width: 63.99875em) {
  .case-study-block,
  .cb-latest-news,
  .content-block,
  .copy-image-block,
  .downloads-block,
  .dynamic-insights,
  .enquiry-block,
  .event-block,
  .featured-news-block,
  .image-video-gallery-block,
  .interactive-image-block,
  .knowledge-centre-block,
  .knowledge-centre-topics,
  .logo-block,
  .news-block,
  .news-list-block,
  .padding,
  .profiles-block,
  .quote-block,
  .search-results-block,
  .solutions-alt-block,
  .solutions-block,
  .step-block,
  .support-block,
  .usp-block,
  footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .case-study-block,
  .cb-latest-news,
  .content-block,
  .copy-image-block,
  .downloads-block,
  .dynamic-insights,
  .enquiry-block,
  .event-block,
  .featured-news-block,
  .image-video-gallery-block,
  .interactive-image-block,
  .knowledge-centre-block,
  .knowledge-centre-topics,
  .logo-block,
  .news-block,
  .news-list-block,
  .padding,
  .profiles-block,
  .quote-block,
  .search-results-block,
  .solutions-alt-block,
  .solutions-block,
  .step-block,
  .support-block,
  .usp-block,
  footer {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .card {
    padding: 25px 20px;
  }
}
.relative {
  position: relative;
}
@media screen and (max-width: 94.6875em) {
  .grid-container {
    max-width: 94%;
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-nav button {
  height: 52px;
  width: 52px;
  border: 2px solid #3c4e59 !important;
  background-color: none;
  content: "";
  border-radius: 10em;
  position: absolute;
  top: -7%;
  bottom: 0;
  margin: auto;
}
@media print, screen and (min-width: 64em) {
  .owl-carousel .owl-nav button:hover {
    background-color: #449ed8;
    border: 2px solid #449ed8 !important;
  }
}
.owl-carousel .owl-nav button.owl-prev {
  background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  background-position: 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: -100px;
}
@media print, screen and (min-width: 64em) {
  .owl-carousel .owl-nav button.owl-prev:hover {
    background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
  }
}
.owl-carousel .owl-nav button.owl-next {
  background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  background-position: 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  right: -100px;
}
@media print, screen and (min-width: 64em) {
  .owl-carousel .owl-nav button.owl-next:hover {
    background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
  }
}
.owl-carousel .owl-dots {
  padding: 50px 0 0;
  display: table;
  margin: 0 auto;
}
.owl-carousel .owl-dots .owl-dot {
  height: 5px;
  width: 32px;
  background: #449ed8;
  margin: 0 5px;
  border-radius: 0;
  opacity: 0.43;
}
.owl-carousel .owl-dots .owl-dot.active {
  opacity: 1;
}
@media print, screen and (max-width: 63.99875em) {
  .owl-carousel .solutions-block .column-text {
    margin-bottom: 40px;
  }
  .owl-carousel .enquiry-block .card {
    margin-top: 30px !important;
  }
  .owl-carousel .owl-nav {
    display: table;
    margin: 30px auto 0;
    position: relative;
    bottom: 17px;
  }
  .owl-carousel .owl-nav button {
    position: static;
    margin: 5px;
  }
  .owl-carousel .owl-dots {
    padding: 0;
  }
  .owl-carousel .owl-dots .owl-dot {
    height: 5px;
    width: 32px;
    background: #449ed8;
    margin: 0 5px;
    border-radius: 0;
    opacity: 0.43;
  }
  .owl-carousel .owl-dots .owl-dot.active {
    opacity: 1;
  }
}
form p.text-center {
  font-size: 14px;
}
.check-container {
  margin: 30px 0;
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #3c4e59;
  font-size: inherit;
  font-family: Avenir LT W01_45 Book1475508;
}
.check-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.check-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 7px;
}
.check-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check-container:hover input ~ .checkmark {
  border: 1px solid #171d1a;
}
.check-container input:checked ~ .checkmark {
  background-color: #171d1a;
  border: 1px solid #171d1a;
}
.check-container input:checked ~ .checkmark:after {
  display: block;
}
.check-container a {
  font-family: Avenir LT W01_65 Medium1475532;
  text-decoration: underline;
}
@media print, screen and (min-width: 64em) {
  .check-container a:hover {
    text-decoration: none;
  }
}
.image-cta {
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
  box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
}
.image-cta img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.image-cta:before {
  content: "";
  z-index: 2;
  top: 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(23, 29, 26, 0.1)),
    to(rgba(23, 29, 26, 0.9))
  );
  background-image: linear-gradient(
    180deg,
    rgba(23, 29, 26, 0.1),
    rgba(23, 29, 26, 0.9)
  );
  border-radius: 7px;
  opacity: 0.7;
}
.image-cta .content,
.image-cta:before {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}
.image-cta .content {
  z-index: 3;
  padding: 0 25px 30px;
}
.image-cta .content h2,
.image-cta .content h3,
.image-cta .content h4,
.image-cta .content p {
  color: #fff;
  width: 100%;
  max-width: 80%;
}
.image-cta .content h4 {
  font-family: Avenir LT W01_85 Heavy1475544;
  margin-bottom: 10px;
}
.image-cta .content p {
  margin-bottom: 0;
}
.image-cta .arrow {
  border: 1px solid #fff;
  width: 35px;
  height: 35px;
  border-radius: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 25px;
  z-index: 4;
}
.image-cta .arrow img {
  width: 19px;
}
@media print, screen and (min-width: 64em) {
  .image-cta:hover {
    -webkit-box-shadow: 0 0 28px -5px rgba(60, 78, 89, 0.78);
    box-shadow: 0 0 28px -5px rgba(60, 78, 89, 0.78);
  }
  .image-cta:hover:before {
    opacity: 1;
  }
  .image-cta:hover .content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 25px 35px;
  }
  .image-cta:hover .content h2,
  .image-cta:hover .content h3,
  .image-cta:hover .content h4,
  .image-cta:hover .content p {
    color: #fff;
    width: 100%;
    max-width: 80%;
  }
  .image-cta:hover .content h4 {
    text-decoration: underline;
  }
  .image-cta:hover .arrow {
    border-color: #449ed8;
    background: #449ed8;
  }
}
.image-cta.large img {
  border-radius: 0;
}
.image-cta.large .content {
  padding: 0 50px 40px;
  --lh: 1.8rem;
  line-height: var(--lh);
}
.image-cta.large .content .overflow {
  max-width: 80%;
  --max-lines: 2;
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
}
.image-cta.large .content .overflow p {
  max-width: 100%;
  width: 100%;
  font-size: 20px;
}
.image-cta.large .arrow {
  bottom: 50px;
  right: 50px;
}
@media print, screen and (min-width: 64em) {
  .image-cta.large.energy:hover .arrow {
    border-color: #eb5a5f;
    background: #eb5a5f;
  }
}
@media print, screen and (min-width: 64em) {
  .image-cta.large.rail:hover .arrow {
    border-color: #81cacb;
    background: #81cacb;
  }
}
@media print, screen and (min-width: 64em) {
  .image-cta.large:hover .content .overflow {
    --max-lines: 7;
    overflow: visible;
  }
}
@media screen and (max-width: 87.5em) {
  .image-cta.large .content {
    padding: 0 35px 30px;
    --lh: 1.7rem;
  }
  .image-cta.large .content .overflow p {
    font-size: 18px;
  }
  .image-cta.large .arrow {
    bottom: 35px;
    right: 30px;
  }
}
@media screen and (max-width: 75em) {
  .image-cta.large .content {
    padding: 0 30px 30px;
    --lh: 1.4rem;
  }
  .image-cta.large .content .overflow {
    max-width: 85%;
  }
  .image-cta.large .content .overflow p {
    font-size: 16px;
  }
  .image-cta.large .content h2 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .image-cta.large .arrow {
    bottom: 30px;
  }
}
@media screen and (max-width: 63.9375em) {
  .image-cta.large .content {
    padding: 0 30px 30px;
  }
  .image-cta.large .content .overflow {
    display: none;
  }
  .image-cta.large .content h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 47.9375em) {
  .image-cta.large:first-child {
    border-radius: 7px 0 0 7px;
  }
  .image-cta.large:nth-child(2) {
    border-radius: 0 7px 7px 0;
  }
  .image-cta.large .content {
    padding: 0 10px 10px;
  }
  .image-cta.large .content .overflow {
    display: none;
  }
  .image-cta.large .content h2 {
    font-size: 27px;
    margin-bottom: 0;
  }
  .image-cta.large .arrow {
    display: none;
  }
}
.image-wrapper,
img {
  border-radius: 7px;
}
.image-wrapper {
  height: 16rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 960px) {
  .image-wrapper {
    height: 20rem;
  }
}
a.play {
  display: block;
  position: relative;
}
a.play:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  width: 125px;
  height: 125px;
  background: url(/images/play-head.svg?9e7957dfcdd3b5c2937c3444f9f67d26) 50%
    no-repeat;
}
@media print, screen and (max-width: 39.99875em) {
  a.play:after {
    width: 80px;
    height: 80px;
    background-size: 100%;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 700;
}
.modal .close:focus,
.modal .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
header.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
button.close-button {
  background: url(/images/icons-close-grey.svg?0bdb92c74df4cdc184747537b226f99e)
    50% no-repeat !important;
  background-color: none;
  width: 40px;
  height: 40px;
  display: block;
  padding: 5px 10px;
  top: 20px;
  right: 20px;
}
@media print, screen and (min-width: 64em) {
  button.close-button:hover {
    background: url(/images/icons-close.svg?f18b40b79198b5ac60649107002a8f5e)
      50% no-repeat #e6e6e6;
  }
}
header {
  position: relative;
  z-index: 999;
}
header .flex,
header ul.navigation,
header ul.navigation > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 150px;
}
header ul.navigation {
  margin: 0;
  padding: 0;
}
header ul.navigation > li {
  margin: 0;
  padding: 0;
  position: static;
}
header ul.navigation > li:before {
  display: none;
}
header ul.navigation > li.dropdown.no-background {
  background: none !important;
}
header ul.navigation > li.dropdown > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transition: none;
  transition: none;
}
header ul.navigation > li.dropdown > a:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #449ed8;
  margin-left: 7px;
}
@media print, screen and (min-width: 64em) {
  header ul.navigation > li.dropdown.is-active > a {
    color: #fff;
  }
  header ul.navigation > li.dropdown.is-active > a:after {
    border-top: 5px solid #fff;
  }
  header ul.navigation > li.dropdown.is-active > div {
    display: block;
  }
  header ul.navigation > li.dropdown.is-active.energy-dd-trigger {
    background: #eb5a5f;
  }
  header ul.navigation > li.dropdown.is-active.rail-dd-trigger {
    background: #81cacb;
  }
  header ul.navigation > li.dropdown.is-active.about-dd-trigger,
  header ul.navigation > li.dropdown.is-active.support-dd-trigger {
    background: #449ed8;
  }
}
header ul.navigation > li.search {
  margin: 0 0 0 20px;
  padding: 0;
}
header ul.navigation > li > a {
  padding: 0 24px;
  font: normal 18px Avenir LT W01_85 Heavy1475544;
  color: #3c4e59;
  text-decoration: none;
  display: block;
  position: static;
}
header ul.navigation > li > a.large {
  font-size: 24px;
  color: #171d1a;
  margin-top: -5px;
}
header .no-dropdown-link:hover {
  text-decoration: underline;
}
header .about-dd,
header .dd,
header .energy-dd,
header .rail-dd,
header .support-dd {
  display: none;
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  width: 100%;
  background: #f2f2f2;
  border-top: 5px solid #449ed8;
}
header .about-dd .relative-wrap,
header .dd .relative-wrap,
header .energy-dd .relative-wrap,
header .rail-dd .relative-wrap,
header .support-dd .relative-wrap {
  padding: 93px 0;
  position: relative;
}
header .about-dd .lead,
header .dd .lead,
header .energy-dd .lead,
header .rail-dd .lead,
header .support-dd .lead {
  color: #3c4e59;
  margin-bottom: 110px;
  padding-top: 12px;
  display: block;
}
header .about-dd h2 a,
header .dd h2 a,
header .energy-dd h2 a,
header .rail-dd h2 a,
header .support-dd h2 a {
  color: #171d1a;
}
header .about-dd h3,
header .dd h3,
header .energy-dd h3,
header .rail-dd h3,
header .support-dd h3 {
  margin-bottom: 37px;
}
header .about-dd h3,
header .about-dd h3 a,
header .dd h3,
header .dd h3 a,
header .energy-dd h3,
header .energy-dd h3 a,
header .rail-dd h3,
header .rail-dd h3 a,
header .support-dd h3,
header .support-dd h3 a {
  font: normal 26px Avenir LT W01_65 Medium1475532;
  color: #171d1a;
}
header .about-dd ul,
header .dd ul,
header .energy-dd ul,
header .rail-dd ul,
header .support-dd ul {
  display: block;
  height: auto;
  margin: 0;
}
header .about-dd ul li,
header .dd ul li,
header .energy-dd ul li,
header .rail-dd ul li,
header .support-dd ul li {
  margin-bottom: 20px;
  padding: 0;
}
header .about-dd ul li:before,
header .dd ul li:before,
header .energy-dd ul li:before,
header .rail-dd ul li:before,
header .support-dd ul li:before {
  display: none;
}
header .about-dd ul li a,
header .dd ul li a,
header .energy-dd ul li a,
header .rail-dd ul li a,
header .support-dd ul li a {
  color: #3c4e59;
  font-family: Avenir LT W01_65 Medium1475532;
}
header .about-dd .image,
header .dd .image,
header .energy-dd .image,
header .rail-dd .image,
header .support-dd .image {
  width: 27%;
  height: 100%;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
header .energy-dd {
  border-top: 5px solid #eb5a5f;
}
header .rail-dd {
  border-top: 5px solid #81cacb;
}
header .menu img {
  border-radius: 0;
}
header .menu a {
  margin-right: -15px;
}
@media screen and (max-width: 94.6875em) {
  header .logo img {
    height: 60px;
  }
  header ul.navigation > li {
    margin: 0;
  }
  header ul.navigation > li > a {
    padding: 0 18px;
    font: normal 16px Avenir LT W01_85 Heavy1475544;
  }
  header ul.navigation > li > a.large {
    font-size: 20px;
  }
}
@media screen and (max-width: 75em) {
  header ul.navigation > li {
    margin: 0;
  }
  header ul.navigation > li > a {
    padding: 0 15px;
  }
  header ul.navigation > li > a.large {
    font-size: 18px;
  }
}
@media screen and (max-width: 70.625em) {
  header .flex,
  header ul.navigation,
  header ul.navigation > li {
    height: 90px;
  }
  header ul.navigation > li {
    display: none;
  }
  header ul.navigation > li.menu,
  header ul.navigation > li.search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header ul.navigation > li.menu a,
  header ul.navigation > li.search a {
    padding: 20px 15px;
  }
}
.search-overlay {
  background: url(/images/news-background.svg?6ad59d1a07b64ffa73be08ac8109a9dd)
    0 100% no-repeat #fff;
  opacity: 0;
  position: fixed;
  top: -999999px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: visible;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.search-overlay.overlay {
  top: 100px;
}
.search-overlay.active {
  top: 0;
  opacity: 1;
}
.search-overlay .small-12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: auto;
}
.search-overlay .grid-container {
  width: 100%;
}
.search-overlay label {
  position: relative;
  width: 100%;
  max-width: 568px;
  margin: 0;
  display: block;
}
.search-overlay label input {
  margin: 0;
}
.search-overlay button {
  position: absolute;
  display: block;
  right: 20px;
  height: 22px;
  margin: auto 0;
  top: 0;
  bottom: 0;
  background: none !important;
}
.search-overlay button img {
  height: 22px;
}
@media print, screen and (min-width: 64em) {
  .search-overlay button:hover {
    opacity: 0.7;
  }
}
.search-overlay .close-button {
  position: fixed;
  top: 20px;
  right: 30px;
  margin: 0;
  z-index: 9999;
  width: 20px;
  height: 20px;
}
@media (min-width: 1025px) {
  .search-overlay .close-button .close-button {
    top: 40px;
    right: 50px;
  }
}
.search-overlay > .grid-container {
  position: relative;
  bottom: 200px;
}
.mobile-menu {
  background: url(/images/icons-menu-c.svg?947f697d2779eb4e268e56c4574a9c1c) 0
    100% no-repeat #449ed8;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 9999;
}
@media screen and (min-width: 64em) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .close-button {
  position: absolute;
  top: 35px;
  right: 5%;
  z-index: 9999;
  width: 20px;
  height: 20px;
  background: url(/images/icons-close.svg?f18b40b79198b5ac60649107002a8f5e) 0 0
    no-repeat !important;
}
.mobile-menu h3 {
  color: #fff;
}
.mobile-menu ul,
.mobile-menu ul.menu {
  padding: 0;
  margin: 0;
  background: none;
  height: 100%;
}
.mobile-menu ul.menu li,
.mobile-menu ul li {
  margin: 0;
  background: none;
  position: static;
}
.mobile-menu ul.menu li:before,
.mobile-menu ul li:before {
  display: none;
}
.mobile-menu ul.menu li a,
.mobile-menu ul li a {
  color: #fff;
  background: none;
  margin: 0;
  padding: 0;
}
.mobile-menu ul.menu li a ul,
.mobile-menu ul.menu li a ul a,
.mobile-menu ul.menu li a ul li,
.mobile-menu ul li a ul,
.mobile-menu ul li a ul a,
.mobile-menu ul li a ul li {
  padding: 0;
  margin: 0;
}
.mobile-menu .is-drilldown {
  bottom: 0;
  height: 100%;
}
.mobile-menu .drilldown .is-drilldown-submenu {
  bottom: 0;
}
.mobile-menu .drilldown .is-drilldown-submenu-parent > a:after {
  display: block;
  width: 0;
  height: 0;
  border: 5px inset;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 1rem;
}
.mobile-menu ul.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 100px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.mobile-menu ul.main-menu > li {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-menu ul.main-menu > li > a {
  font: normal 20px Avenir LT W01_85 Heavy1475544;
  padding-right: 35px;
}
.mobile-menu ul.main-menu > li > a.large {
  font: normal 34px Avenir LT W01_85 Heavy1475544;
}
.mobile-menu .menu-header {
  padding-top: 100px;
  background-size: cover;
  background-position: 50%;
  position: relative;
  margin-bottom: 50px;
}
.mobile-menu .menu-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23, 29, 26, 0.53);
  z-index: 1;
}
.mobile-menu .menu-header .grid-container {
  position: relative;
  z-index: 2;
}
.mobile-menu ul.nested {
  background: url(/images/icons-menu-c.svg?947f697d2779eb4e268e56c4574a9c1c) 0
    100% no-repeat #449ed8;
  overflow: hidden;
  overflow-y: scroll;
}
.mobile-menu ul.nested .js-drilldown-back {
  position: absolute;
  top: 40px;
  left: 4%;
  z-index: 3;
}
.mobile-menu ul.nested .js-drilldown-back > a {
  font-size: 14px;
  font-family: Avenir LT W01_85 Heavy1475544;
}
.mobile-menu ul.nested .js-drilldown-back > a:before {
  border: 6px inset;
  border-color: transparent #449ed8 transparent transparent;
  margin-right: 7px;
}
.mobile-menu ul.nested .mobile-menu ul.main-menu {
  height: 100vh;
}
.mobile-menu ul.nested ul {
  height: auto;
  margin-bottom: 30px;
}
.mobile-menu ul.nested li {
  margin: 0 0 20px;
  padding: 0;
}
.mobile-menu ul.nested .lead,
.mobile-menu ul.nested h2 {
  color: #fff;
}
@media print, screen and (max-width: 63.99875em) {
  .mobile-menu ul.nested li a {
    font-size: 16px;
  }
  .mobile-menu ul.nested h2,
  .mobile-menu ul.nested h2 a {
    font-size: 34px;
  }
  .mobile-menu ul.nested h2 {
    margin-bottom: 10px;
  }
  .mobile-menu ul.nested h3,
  .mobile-menu ul.nested h3 a {
    font-size: 21px;
    line-height: 1.5em;
  }
  .mobile-menu ul.nested h2 a,
  .mobile-menu ul.nested h3 a,
  .mobile-menu ul.nested li a {
    text-decoration: underline;
  }
  .mobile-menu ul.nested h2 a:hover,
  .mobile-menu ul.nested h3 a:hover,
  .mobile-menu ul.nested li a:hover {
    text-decoration: none;
  }
  .mobile-menu ul.nested .lead {
    margin-bottom: 30px;
    font-size: 19px;
  }
}
.mobile-menu ul.nested.energy-menu {
  background: url(/images/icons-menu-c.svg?947f697d2779eb4e268e56c4574a9c1c) 0
    100% no-repeat #eb5a5f;
}
.mobile-menu ul.nested.energy-menu .js-drilldown-back > a:before {
  border-color: transparent #eb5a5f transparent transparent;
}
.mobile-menu ul.nested.rail-menu {
  background: url(/images/icons-menu-c.svg?947f697d2779eb4e268e56c4574a9c1c) 0
    100% no-repeat #81cacb;
}
.mobile-menu ul.nested.rail-menu .js-drilldown-back > a:before {
  border-color: transparent #81cacb transparent transparent;
}
ul.social {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
ul.social li {
  padding-right: 20px;
  padding-left: 0;
}
ul.social li:before {
  display: none;
}
ul.social li a {
  padding: 0;
}
ul.social li a img {
  border-radius: 0;
}
@media print, screen and (min-width: 64em) {
  ul.social li a:hover {
    opacity: 0.6;
  }
}
ul.social li:last-child {
  padding: 0;
}
footer {
  border-top: 1px solid #f4f4f4;
}
footer h3 {
  font: normal 34px Avenir LT W01_65 Medium1475532;
  margin-bottom: 30px;
}
footer ul {
  display: block;
  height: auto;
  margin: 0;
}
footer ul li {
  margin-bottom: 23px;
  padding: 0;
}
footer ul li:before {
  display: none;
}
footer ul li a {
  color: #3c4e59;
  font-family: Avenir LT W01_65 Medium1475532;
  font-size: 16px;
}
footer .large-2.cell > ul {
  margin-top: 70px;
}
footer .large-2.cell > a ~ ul {
  margin-top: 0;
}
footer p {
  font-size: 16px;
}
footer p a {
  font-size: 18px;
}
footer .button-group {
  border: 2px solid #3c4e59;
  background: #3c4e59;
  border-radius: 9px;
  overflow: hidden;
  display: table;
  margin: 30px 0 50px;
}
footer .button-group .button {
  background: none;
  color: #fff;
  margin: 0;
}
@media print, screen and (min-width: 64em) {
  footer .button-group .button:hover {
    opacity: 0.8;
  }
}
footer .button-group .button:first-child {
  border-radius: 7px 0 0 7px;
}
footer .button-group .button:nth-child(2) {
  border-radius: 0 7px 7px 0;
}
footer .button-group .button.active {
  background: #fff;
  color: #3c4e59;
}
footer .break {
  display: none;
}
@media print, screen and (max-width: 63.99875em) {
  footer {
    text-align: center;
  }
  footer .break {
    padding-bottom: 20px;
    display: block;
    clear: both;
    overflow: hidden;
  }
  footer .large-2 {
    display: none;
  }
  footer .button-group,
  footer ul.menu.social {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  footer .button-group {
    margin-bottom: 30px;
  }
  footer li {
    display: table-cell;
  }
}
.back {
  color: #3c4e59;
  font: normal 16px Avenir LT W01_95 Black1475556;
  position: relative;
}
.back:before {
  display: inline-block;
  width: 0;
  height: 0;
  border: 5px inset;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #449ed8 transparent transparent;
  margin-right: 7px;
}
@media print, screen and (min-width: 64em) {
  .back:hover {
    text-decoration: underline;
  }
}
.home-hero {
  overflow: hidden;
  padding-top: 214px !important;
  background: #fff !important;
  position: relative;
}
@media screen and (min-width: 47.9375em) {
  .home-hero {
    padding-bottom: 0 !important;
  }
  .home-hero:after {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0;
    padding-top: 8%;
    background: #3c4e59;
    content: "";
  }
  .home-hero.has-logos {
    padding-top: 14%;
  }
}
.home-hero video {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.5;
  background: #fff !important;
}
.home-hero .grid-container {
  position: relative;
  z-index: 3;
}
.home-hero p.lead {
  font: normal 22px/36px Avenir LT W01_65 Medium1475532;
  max-width: 1237px;
  width: 100%;
  margin-bottom: 40px;
}
.home-hero .watch {
  font-family: Avenir LT W01_85 Heavy1475544;
  text-decoration: underline;
  position: relative;
  padding-left: 30px;
}
.home-hero .watch:before {
  content: url(/images/icons-small-play.svg?e17d87226b0f917fa56ad75171569d67);
  top: 0;
  left: 0;
  position: absolute;
}
@media print, screen and (min-width: 64em) {
  .home-hero .watch:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .home-hero {
    padding-top: 100px !important;
  }
  .home-hero h1 {
    font-size: 40px;
  }
  .home-hero p.lead {
    font-size: 16px;
    line-height: 1.6em;
    margin-bottom: 20px;
  }
  .home-hero .watch {
    font-size: 16px;
  }
  .home-hero .watch:before {
    top: -2px;
  }
}
.home-hero .image-ctas {
  padding-top: 90px;
}
@media screen and (max-width: 47.9375em) {
  .home-hero .image-ctas {
    padding-top: 25px;
  }
}
.home-hero .image-ctas .large-12 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content;
  gap: 0 30px;
  grid-template-areas: ". .";
}
@media screen and (max-width: 47.9375em) {
  .home-hero .image-ctas .large-12 {
    gap: 2px;
  }
}
.end-button-component {
  padding-top: 50px;
}
.end-button-component .button {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .end-button-component {
    padding-top: 30px;
  }
}
.simple-header {
  background: url(/images/simple-header-background.jpg?d0ef4435306e8bf472f2d64f125fac12)
    top no-repeat;
  background-size: 100%;
  padding-top: 248px;
  padding-bottom: 30px;
}
.simple-header p {
  max-width: 814px;
  margin: 0;
}
.simple-header .back {
  margin-top: -56px;
  color: #3c4e59;
}
@media print, screen and (max-width: 63.99875em) {
  .simple-header {
    padding-top: 127px;
    padding-bottom: 30px;
    background-size: 200%;
  }
  .simple-header .back {
    margin-top: -25px;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 40em) {
  .legal h1 {
    font-size: 62px;
  }
}
.image-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 707px;
}
.image-header .image {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.image-header > div {
  width: 100%;
  z-index: 3;
  position: relative;
}
.image-header .lead,
.image-header h1 {
  color: #fff;
}
.image-header .lead {
  max-width: 814px;
}
.image-header:before {
  content: "";
  width: 100%;
  max-width: 707px;
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(23, 29, 26, 0)),
    to(rgba(23, 29, 26, 0.74))
  );
  background: linear-gradient(
    270deg,
    rgba(23, 29, 26, 0),
    rgba(23, 29, 26, 0.74)
  );
}
@media (max-width: 640px) {
  .image-header .back-position {
    position: absolute;
    left: 0;
    right: 0;
    top: 55px;
  }
}
.image-header .back {
  color: #fff;
}
@media screen and (max-width: 75em) {
  .image-header {
    height: 600px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .image-header {
    height: 500px;
  }
  .image-header .back {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .image-header {
    height: auto;
    display: block;
  }
  .image-header .back-position {
    top: 20px;
  }
  .image-header .image,
  .image-header:before {
    height: 219px;
  }
  .image-header .image {
    position: relative;
    width: 100%;
    display: block;
  }
  .image-header .content {
    display: block;
    background: #449ed8;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .image-header .content .lead {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .energy .image-header .content,
  .energyUk .image-header .content {
    background: #eb5a5f;
  }
  .rail .image-header .content {
    background: #81cacb;
  }
}
.copy-image-block {
  display: block;
}
.copy-image-block .grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media print, screen and (min-width: 40em) {
  .copy-image-block .button,
  .copy-image-block h2,
  .copy-image-block h3,
  .copy-image-block p,
  .copy-image-block ul {
    max-width: 95%;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .copy-image-block .cell:first-child {
    margin-bottom: 20px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .copy-image-block .button {
    width: 100%;
  }
}
.reveal {
  padding-top: 60px;
}
.reveal .close-button {
  right: 2vw;
}
@media print, screen and (max-width: 39.99875em) {
  .reveal {
    padding: 50px 4% 0;
  }
  .reveal .close-button {
    top: 15px;
    right: 4%;
  }
}
@media print, screen and (min-width: 64em) {
  .reverse .cell:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 40em) {
  .reverse .cell:first-child .button,
  .reverse .cell:first-child h2,
  .reverse .cell:first-child h3,
  .reverse .cell:first-child p,
  .reverse .cell:first-child ul {
    max-width: 95%;
    margin-left: 5%;
  }
}
@media print, screen and (min-width: 64em) {
  .reverse .cell:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.logo-block {
  padding-bottom: 50px;
  overflow: hidden;
}
.logo-block .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.logo-block .logos img {
  border-radius: 0;
  width: 16.66%;
  padding: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media print, screen and (max-width: 63.99875em) {
  .logo-block .grid-container {
    max-width: 100%;
  }
  .logo-block .logos {
    overflow-x: scroll;
  }
  .logo-block .logos img {
    width: 33.33%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .logo-block .logos img {
    width: 50%;
  }
}
.stats-block {
  padding-top: 50px;
  padding-bottom: 50px;
}
.stats-block p {
  margin-bottom: 0;
}
.stats-block p em {
  display: block;
  font-size: 52px;
  margin-bottom: 0;
  font-style: normal;
  font-family: Avenir LT W01_65 Medium1475532;
}
.stats-block .grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.stats-block .grid-x .cell {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 40em) {
  .stats-block .grid-x .cell:nth-child(3n + 1):nth-last-child(-n + 3),
  .stats-block .grid-x .cell:nth-child(3n + 1):nth-last-child(-n + 3) ~ .cell {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .stats-block .grid-x .cell {
    margin-bottom: 10px;
  }
  .stats-block .grid-x .cell:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .stats-block p em {
    font-size: 40px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .stats-block {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .stats-block p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .stats-block p em {
    margin-bottom: 0;
  }
}
.quote-block blockquote {
  padding: 20px 0 20px 50px;
  border-left: 5px solid #449ed8;
  color: #171d1a;
  font-size: 18px;
  font-family: Avenir LT W01_35 Light_1475502;
  margin: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .quote-block blockquote {
    padding: 0 0 0 30px;
    border-left: 5px solid #449ed8;
    color: #171d1a;
    font-size: 20px;
    font-family: Avenir LT W01_35 Light_1475502;
  }
  .quote-block small {
    margin-top: 30px;
  }
}
.quote-block small {
  display: block;
  font-size: 22px;
}
.quote-block small:last-of-type {
  margin-top: 20px;
}
.image-video-gallery-block {
  display: block;
}
.downloads-block .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}
.downloads-block .card:last-child {
  margin-bottom: 0;
}
.downloads-block .card h4 {
  margin: 0;
}
.downloads-block .card h4 .subheader {
  font-size: 16px;
  color: #3c4e59;
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 20px;
}
.downloads-block .card h4 .subheader:before {
  content: url(/images/icons-blue-brochure.svg?8fd7902a1850641f265fafedd67ccb1e);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .downloads-block .card {
    display: block;
  }
  .downloads-block .card h4 {
    margin-bottom: 20px;
  }
  .downloads-block .card h4 .subheader {
    font-size: 14px;
    padding: 0 0 0 30px;
    margin-bottom: 15px;
  }
  .downloads-block .card h4 .subheader:before {
    top: -2px;
  }
  .downloads-block .card .button {
    display: block;
  }
}
.profiles-block {
  text-align: center;
}
.profiles-block img {
  max-width: 178px;
  border-radius: 10em;
  margin-bottom: 30px;
}
.profiles-block .subheader {
  font-size: 18px;
  display: block;
}
.profiles-block a {
  font-family: Avenir LT W01_65 Medium1475532;
  text-decoration: underline;
}
@media print, screen and (min-width: 64em) {
  .profiles-block a:hover {
    color: #449ed8;
    text-decoration: none;
  }
}
.profiles-block .grid-x {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.profiles-block .large-3 {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 40em) {
  .profiles-block .large-3:nth-child(4n + 1):nth-last-child(-n + 4),
  .profiles-block .large-3:nth-child(4n + 1):nth-last-child(-n + 4) ~ .cell {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .profiles-block img {
    max-width: 122px;
    margin-bottom: 20px;
  }
  .profiles-block .subheader {
    font-size: 16px;
    display: block;
  }
}
.copy-image-block {
  position: relative;
}
.event-block .grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.event-block h3 {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 40em) {
  .event-block .button,
  .event-block h2,
  .event-block h3,
  .event-block p {
    max-width: 95%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .event-block h3 {
    margin-bottom: 25px;
  }
  .event-block .button {
    width: 100%;
    margin-bottom: 30px;
  }
}
.case-study-block .case-study-item {
  display: table;
}
@media (min-width: 960px) {
  .case-study-block .case-study-item {
    min-height: 100%;
  }
}
.case-study-block .case-study-item .card {
  display: table-cell;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 60%;
  border-radius: 7px 0 0 7px;
  border-right: 0;
}
.case-study-block .case-study-item .card h3 {
  color: #171d1a;
}
.case-study-block .case-study-item .card p {
  color: #3c4e59;
}
.case-study-block .case-study-item .right-image {
  width: 40%;
  display: table-cell;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 0 7px 7px 0;
}
.case-study-block .customer-logo {
  max-width: 200px;
  margin-bottom: 30px;
}
.case-study-block .owl-item {
  overflow: visible;
}
@media screen and (max-width: 56.25em) {
  .case-study-block .case-study-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .case-study-block .case-study-item .card {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: block;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    border-radius: 0 0 7px 7px;
    border-right: 1px solid #e6e6e6;
    border-top: 0;
    margin: 0;
  }
  .case-study-block .case-study-item .right-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    height: 350px;
    display: block;
    border-radius: 7px 7px 0 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .case-study-block .case-study-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .case-study-block .case-study-item .card .lead {
    font-size: 16px;
  }
  .case-study-block .case-study-item .right-image {
    height: 187px;
  }
  .case-study-block .case-study-item .button {
    width: 100%;
  }
  .case-study-block .customer-logo {
    max-width: 117px;
    margin-bottom: 20px;
  }
}
.knowledge-centre-block .articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: -webkit-min-content -webkit-min-content;
  grid-template-rows: min-content min-content;
  gap: 30px 30px;
  grid-template-areas: ". . ." ". . .";
}
@media print, screen and (min-width: 64em) {
  .knowledge-centre-block .articles {
    grid-template-columns: repeat(6, 1fr);
  }
  .knowledge-centre-block .articles .card:last-child:nth-child(3n - 1) {
    grid-column-end: -2;
  }
  .knowledge-centre-block .articles .card:nth-last-child(2):nth-child(3n + 1) {
    grid-column-end: 4;
  }
  .knowledge-centre-block .articles .card:last-child:nth-child(3n - 2) {
    grid-column-end: 5;
  }
}
.knowledge-centre-block .card {
  margin-bottom: 0;
  border-top: 5px solid #449ed8;
  padding: 22px 25px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media print, screen and (min-width: 64em) {
  .knowledge-centre-block .card {
    grid-column: span 2;
  }
  .knowledge-centre-block .card:hover {
    -webkit-box-shadow: 0 0 28px -5px rgba(60, 78, 89, 0.48);
    box-shadow: 0 0 28px -5px rgba(60, 78, 89, 0.48);
  }
}
.knowledge-centre-block .card a {
  color: #449ed8;
}
@media print, screen and (min-width: 64em) {
  .knowledge-centre-block .card a:hover {
    text-decoration: underline;
    color: #449ed8;
  }
}
.knowledge-centre-block .card.rail {
  border-top: 5px solid #81cacb;
}
.knowledge-centre-block .card.rail a {
  color: #81cacb;
}
.knowledge-centre-block .card.rail h4 a {
  color: #171d1a;
}
.knowledge-centre-block .card.rail .subheader img {
  -webkit-filter: invert(68%) sepia(20%) saturate(100%) hue-rotate(132deg)
    brightness(190%) contrast(65%);
  filter: invert(68%) sepia(20%) saturate(100%) hue-rotate(132deg)
    brightness(190%) contrast(65%);
}
.knowledge-centre-block .card.energy {
  border-top: 5px solid #eb5a5f;
}
.knowledge-centre-block .card.energy a {
  color: #eb5a5f;
}
.knowledge-centre-block .card.energy h4 a {
  color: #171d1a;
}
.knowledge-centre-block .card.energy .subheader img {
  -webkit-filter: invert(56%) sepia(62%) saturate(3781%) hue-rotate(332deg)
    brightness(100%) contrast(65%);
  filter: invert(56%) sepia(62%) saturate(3781%) hue-rotate(332deg)
    brightness(100%) contrast(65%);
}
.knowledge-centre-block .card:last-child {
  margin-bottom: 0;
}
.knowledge-centre-block .card h4 {
  margin: 0 0 20px;
  line-height: 1.4;
}
.knowledge-centre-block .card h4 .subheader {
  font-size: 16px;
  color: #3c4e59;
  font-family: Avenir LT W01_45 Book1475508;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
}
.knowledge-centre-block .card h4 .subheader img {
  margin-right: 7px;
  border-radius: 0;
}
.knowledge-centre-block .card h4 a {
  color: #171d1a;
}
.knowledge-centre-block .card .tags {
  font-size: 14px;
}
.knowledge-centre-block .card .tags a {
  text-decoration: underline;
}
@media print, screen and (min-width: 64em) {
  .knowledge-centre-block .card .tags a:hover {
    text-decoration: none;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .knowledge-centre-block .articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content;
    gap: 30px 30px;
    grid-template-areas: ". ." ". .";
  }
}
@media print, screen and (max-width: 39.99875em) {
  .knowledge-centre-block .articles {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: -webkit-min-content -webkit-min-content;
    grid-template-rows: min-content min-content;
    gap: 20px;
    grid-template-areas: "." ".";
  }
  .knowledge-centre-block .card h4 .subheader {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .knowledge-centre-block .card h4 .subheader:before {
    margin-right: 5px;
  }
}
.solutions-block img {
  margin-bottom: 30px;
}
.solutions-block ul li {
  padding: 0;
}
.solutions-block ul li:before {
  display: none;
}
.solutions-block a {
  text-decoration: underline;
  -webkit-text-decoration-color: #171d1a;
  text-decoration-color: #171d1a;
}
.solutions-block a:hover {
  text-decoration: none;
}
@media print, screen and (max-width: 39.99875em) {
  .large-4.medium-6.cell {
    padding-bottom: 40px;
  }
}
.solutions-block p a {
  -webkit-text-decoration-color: unset;
  text-decoration-color: unset;
}
.enquiry-block .logo-row {
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  grid-template-areas: ". . .";
}
.enquiry-block .logo-row img {
  width: 100%;
  max-width: 150px;
}
.enquiry-block textarea {
  margin-bottom: 0;
}
.enquiry-block .card {
  padding: 63px 61px;
  background-color: #f2f2f2;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  margin: 0;
}
.enquiry-block .xlarge-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media print, screen and (max-width: 63.99875em) {
  .enquiry-block .xlarge-4 {
    margin-bottom: 50px;
  }
  .enquiry-block .logo-row {
    padding-top: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .enquiry-block {
    padding-bottom: 0;
  }
  .enquiry-block .grid-container {
    padding: 0;
  }
  .enquiry-block .xlarge-4 {
    margin-bottom: 30px;
    padding-left: 0.83334rem;
    padding-right: 0.83334rem;
  }
  .enquiry-block .logo-row {
    padding-top: 0;
    gap: 20px;
  }
  .enquiry-block .card {
    margin-top: 30px;
    padding: 30px 20px;
    border-radius: 0;
    position: relative;
    margin-left: -0.41667rem;
    margin-right: -0.41667rem;
  }
  .enquiry-block .xlarge-5 {
    padding-left: 0;
    padding-right: 0;
  }
}
.interactive-image-block .relative-wrap {
  position: relative;
  display: block;
}
.interactive-image-block button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  background: #449ed8;
  border-radius: 10em;
  outline: 0;
}
.tippy-box[data-theme~="custom"] {
  background-color: #3c4e59;
  color: #fff;
  padding: 15px 20px 0 15px;
  width: 350px;
  -webkit-transform: scale(1) h6, h5;
  transform: scale(1) h6, h5;
  transform-color: #fff;
  transform-line-height: 0 !important;
  transform-margin-top: 10px;
  transform-margin-bottom: 0 !important;
  transform-padding: 0;
}
.tippy-box[data-theme~="custom"] * {
  color: #fff;
}
.tippy-box[data-theme~="custom"] p {
  margin: 0 !important;
  position: relative;
  bottom: 15px;
}
.tippy-box[data-theme~="custom"][data-placement^="bottom"]
  > .tippy-arrow:before {
  border-bottom-color: #3c4e59;
}
.tippy-box[data-theme~="custom"][data-placement^="top"] > .tippy-arrow:before {
  border-top-color: #3c4e59;
}
.interactive-image-block--alt button {
  cursor: pointer;
}
.interactive-image-block--alt button:hover {
  background-color: #5f6d77;
}
.interactive-image-block--alt [data-tippy-root] {
  pointer-events: unset !important;
}
.interactive-image-block--alt .tippy-box[data-theme~="custom"] {
  padding: 20px;
  width: unset;
  max-width: unset !important;
}
.interactive-image-block--alt .tippy-box[data-theme~="custom"] .tippy-close {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  right: 0;
  cursor: pointer;
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:after,
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  top: 50%;
  left: 50%;
  background-color: #fff;
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:hover:after,
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-close:hover:before {
  background-color: #449ed8;
}
.interactive-image-block--alt .tippy-box[data-theme~="custom"] .tippy-content {
  max-width: 80vw;
  max-height: 100vh;
}
@media (min-width: 1024px) {
  .interactive-image-block--alt
    .tippy-box[data-theme~="custom"]
    .tippy-content {
    max-width: 50vh;
  }
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-content
  figure {
  margin-top: 2.22222rem;
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-content
  figure
  figcaption {
  padding-top: 2rem;
  margin-bottom: -1rem;
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-content
  figure
  figcaption
  p:last-child {
  margin-bottom: 0;
}
.interactive-image-block--alt
  .tippy-box[data-theme~="custom"]
  .tippy-content
  h4
  ~ figure {
  margin-top: 0;
}
.heading-center h2 {
  text-align: center;
}
.usp-block h2 {
  margin-bottom: 2.4rem;
}
.usp-block img {
  width: 100%;
  max-width: 106px;
  margin-bottom: 50px;
}
.usp-block .grid-x.text-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.usp-block .grid-x.text-center .cell {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 64em) {
  .usp-block .grid-x.text-center .cell:nth-child(4n + 1):nth-last-child(-n + 4),
  .usp-block
    .grid-x.text-center
    .cell:nth-child(4n + 1):nth-last-child(-n + 4)
    ~ .cell {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .usp-block .grid-x.text-center .cell:nth-child(odd):nth-last-child(-n + 2),
  .usp-block
    .grid-x.text-center
    .cell:nth-child(odd):nth-last-child(-n + 2)
    ~ .cell {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .usp-block .grid-x.text-center img {
    margin-bottom: 20px;
  }
  .usp-block .grid-x.text-center .cell {
    margin-bottom: 30px;
  }
  .usp-block .grid-x.text-center .cell:last-child {
    margin-bottom: 0;
  }
}
.cta-block {
  padding-top: 150px;
  padding-bottom: 150px;
  background-size: cover;
  position: relative;
  background-position: 50%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.cta-block:before {
  z-index: 1;
  content: "";
  background: #3c4e59;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  opacity: 0.5;
}
.cta-block .grid-container {
  position: relative;
  z-index: 2;
}
.cta-block h2,
.cta-block p {
  color: #fff;
}
.step-block {
  overflow: hidden;
}
.step-block .step-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: nowrap;
  flex-flow: nowrap;
}
.step-block .step-line .cell {
  position: relative;
}
.step-block .step-line .cell:before {
  content: "";
  height: 1px;
  width: 50%;
  background: url(/images/dash.svg?e16957317cb49630a65d7a593667090e) 0 0
    repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 43px;
  bottom: 0;
  left: 0;
  right: -100%;
  margin: 0 auto;
}
.step-block .step-line .cell:nth-child(4n + 4):before {
  display: none;
}
.step-block .step {
  width: 87px;
  height: 87px;
  background: #449ed8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 50px;
  color: #fff;
  font: normal 24px Avenir LT W01_85 Heavy1475544;
  border-radius: 10em;
  position: relative;
}
@media print, screen and (max-width: 89.99875em) {
  .step-block .grid-container {
    max-width: 100%;
  }
  .step-block .step-line {
    overflow: hidden;
    overflow-x: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
  }
  .step-block .step-line .cell {
    position: relative;
    min-width: 300px;
  }
  .step-block .step-line .cell:before {
    content: "";
    height: 1px;
    width: 50%;
    background: url(/images/dash.svg?e16957317cb49630a65d7a593667090e) 0 0
      repeat-x;
    background-size: auto 100%;
    position: absolute;
    top: 43px;
    bottom: 0;
    left: 0;
    right: -100%;
    margin: 0 auto;
  }
  .step-block .step-line .cell:nth-child(4n + 4):before {
    display: none;
  }
  .step-block .step {
    width: 87px;
    height: 87px;
    background: #449ed8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 50px;
    color: #fff;
    font: normal 24px Avenir LT W01_85 Heavy1475544;
    border-radius: 10em;
    position: relative;
  }
}
.step-block .large-6 {
  max-width: 94%;
  margin: 0 auto;
}
@media print, screen and (max-width: 39.99875em) {
  .step-block .step-line {
    padding: 3%;
  }
}
.half-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
  grid-template-areas: ". .";
}
.half-content-block .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}
.half-content-block .content {
  min-height: 525px;
  padding: 50px 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 75em) {
  .half-content-block .content {
    padding: 40px 60px;
  }
}
@media screen and (max-width: 63.9375em) {
  .half-content-block {
    display: block;
  }
  .half-content-block .image {
    height: 300px;
  }
  .half-content-block .content {
    min-height: auto;
    padding-left: 0.83333rem;
    padding-right: 0.83333rem;
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .half-content-block {
    display: block;
  }
  .half-content-block .image {
    height: 205px;
  }
  .half-content-block .content {
    padding-left: 0.41667rem;
    padding-right: 0.41667rem;
    max-width: 94%;
  }
  .half-content-block .content :last-child {
    margin-bottom: 0;
  }
}
.solutions-alt-block .large-12 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px 30px;
}
.solutions-alt-block .large-12.has-1,
.solutions-alt-block .large-12.has-2,
.solutions-alt-block .large-12.has-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.solutions-alt-block .large-12.has-1 .image-cta,
.solutions-alt-block .large-12.has-2 .image-cta,
.solutions-alt-block .large-12.has-3 .image-cta {
  max-width: 363px;
}
.solutions-alt-block .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 50px 0 0;
}
@media screen and (max-width: 87.5em) {
  .solutions-alt-block .large-12 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: ". . ." ". . .";
  }
}
@media screen and (max-width: 62.5em) {
  .solutions-alt-block .large-12 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: ". ." ". .";
  }
}
@media screen and (max-width: 47.9375em) {
  .solutions-alt-block .large-12 {
    grid-template-columns: 1fr;
    grid-template-areas: "." ".";
  }
}
.dynamic-insights,
.news-block {
  overflow: hidden;
  background: url(/images/news-background.svg?6ad59d1a07b64ffa73be08ac8109a9dd)
    right 6% bottom no-repeat;
  padding-bottom: 50px;
  padding-top: 0;
}
.dynamic-insights .flex,
.dynamic-insights header ul.navigation,
.dynamic-insights header ul.navigation > li,
.news-block .flex,
.news-block header ul.navigation,
.news-block header ul.navigation > li,
header .dynamic-insights ul.navigation,
header .dynamic-insights ul.navigation > li,
header .news-block ul.navigation,
header .news-block ul.navigation > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.dynamic-insights .slick-slider,
.news-block .slick-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 64em) {
  .dynamic-insights .slick-slider .slick-list,
  .news-block .slick-slider .slick-list {
    overflow: visible !important;
  }
}
.dynamic-insights .slick-slider .slick-slide:first-child,
.news-block .slick-slider .slick-slide:first-child {
  opacity: 0 !important;
}
.dynamic-insights .slick-slider .slick-arrow,
.news-block .slick-slider .slick-arrow {
  bottom: 0;
  height: 52px;
  width: 52px;
  border: 2px solid #3c4e59 !important;
  background-color: none;
  content: "";
  border-radius: 10em;
  position: absolute;
  bottom: -100px;
  margin: auto;
  text-indent: -9999px;
}
@media print, screen and (min-width: 64em) {
  .dynamic-insights .slick-slider .slick-arrow:hover,
  .news-block .slick-slider .slick-arrow:hover {
    background-color: #449ed8;
    border: 2px solid #449ed8 !important;
    cursor: pointer;
  }
}
.dynamic-insights .slick-slider .slick-arrow.slick-prev,
.news-block .slick-slider .slick-arrow.slick-prev {
  background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  background-position: 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .dynamic-insights .slick-slider .slick-arrow.slick-prev:hover,
  .news-block .slick-slider .slick-arrow.slick-prev:hover {
    background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
  }
}
.dynamic-insights .slick-slider .slick-arrow.slick-next,
.news-block .slick-slider .slick-arrow.slick-next {
  background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  background-position: 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: 62px;
}
@media print, screen and (min-width: 64em) {
  .dynamic-insights .slick-slider .slick-arrow.slick-next:hover,
  .news-block .slick-slider .slick-arrow.slick-next:hover {
    background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
  }
}
@media print, screen and (min-width: 64em) {
  .dynamic-insights .slick-slider .slick-slide article,
  .news-block .slick-slider .slick-slide article {
    width: 100%;
    max-width: 700px;
    padding-right: 30px;
  }
  .dynamic-insights .slick-slider .slick-slide:hover,
  .news-block .slick-slider .slick-slide:hover {
    cursor: pointer;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  .dynamic-insights .slick-slider .slick-slide:hover h3 strong,
  .news-block .slick-slider .slick-slide:hover h3 strong {
    text-decoration: underline;
  }
  .dynamic-insights .slick-slider:hover .slick-slide,
  .news-block .slick-slider:hover .slick-slide {
    opacity: 0.5;
  }
  .dynamic-insights .slick-slider .slick-slide:hover,
  .news-block .slick-slider .slick-slide:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 63.9375em) {
  .dynamic-insights,
  .news-block {
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .dynamic-insights .slick-slider,
  .news-block .slick-slider {
    padding-bottom: 70px;
  }
  .dynamic-insights .slick-slider article h2,
  .news-block .slick-slider article h2 {
    text-decoration: underline;
  }
  .dynamic-insights .slick-slider .slick-arrow,
  .news-block .slick-slider .slick-arrow {
    bottom: 0;
    left: 0;
    right: 0;
  }
  .dynamic-insights .slick-slider .slick-arrow.slick-prev,
  .news-block .slick-slider .slick-arrow.slick-prev {
    left: -70px;
  }
  .dynamic-insights .slick-slider .slick-arrow.slick-next,
  .news-block .slick-slider .slick-arrow.slick-next {
    left: 55px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .dynamic-insights,
  .news-block {
    padding-top: 45px;
    padding-bottom: 45px;
    background: none;
  }
  .dynamic-insights .slick-slider article h3 .subheader,
  .news-block .slick-slider article h3 .subheader {
    font-size: 16px;
  }
}
.dynamic-insights img,
.news-block img {
  height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media print, screen and (min-width: 64em) {
  .dynamic-insights img,
  .news-block img {
    height: 348px;
    width: 100%;
  }
}
article img {
  margin-bottom: 30px;
}
article .subheader {
  display: block;
  font: normal 18px Avenir LT W01_45 Book1475508;
  color: #3c4e59;
}
@media print, screen and (min-width: 64em) {
  article .subheader a,
  article:hover h2 strong {
    text-decoration: underline;
  }
  article .subheader a:hover {
    text-decoration: none;
  }
}
@media print, screen and (max-width: 39.99875em) {
  article img {
    margin-bottom: 20px;
  }
}
#country-notice {
  background: rgba(0, 0, 0, 0.49);
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  color: #fff;
  display: none;
  font: normal 18px Avenir LT W01_85 Heavy1475544;
  z-index: 9999;
}
#country-notice.active {
  display: block;
}
#country-notice .grid-container,
#country-notice .grid-x {
  height: 100%;
}
#country-notice .noticeBox {
  width: 55%;
  margin: 0 auto;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #3c4e59;
  padding: 60px;
  text-align: center;
  position: relative;
}
#country-notice p {
  margin: 0;
  font-family: Avenir LT W01_45 Book1475508;
  font-size: 24px;
  line-height: 33px;
}
#country-notice p strong {
  color: #fff;
  font-weight: 700;
}
#country-notice .large-12 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#country-notice .button-group {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
#country-notice .button-group .button {
  margin: 0 5px;
}
#country-notice .text-link {
  color: #fff;
  font-family: Avenir LT W01_35 Light1475496;
  border-bottom: 1px solid #fff;
  font-size: 14px;
}
#country-notice button.close-button {
  background: url(/images/icons-close.svg?f18b40b79198b5ac60649107002a8f5e) 50%
    no-repeat !important;
  background-color: none;
  width: 20px;
  height: 20px;
  display: block;
  padding: 5px 10px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media print, screen and (min-width: 64em) {
  #country-notice button.close-button:hover {
    opacity: 0.5;
  }
}
@media print, screen and (max-width: 63.99875em) {
  #country-notice .noticeBox {
    width: 70%;
  }
  #country-notice p {
    font-size: 18px;
  }
}
@media screen and (max-width: 47.9375em) {
  #country-notice {
    height: 100%;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #country-notice.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #country-notice .noticeBox {
    width: 80%;
  }
  #country-notice .large-12 {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #country-notice p {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
  }
  #country-notice .button-group {
    width: 100%;
    max-width: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #country-notice .button-group .button {
    margin: 0 10px 0 0;
    font-size: 14px;
    padding: 0.7em 1em;
  }
}
@media screen and (max-width: 47.9375em) {
  #country-notice + header.overlay {
    top: 125px;
  }
}
.cookie-notice {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999999;
}
.cookie-notice .card {
  background: #fcd874;
  position: relative;
  border: 0;
  width: 100%;
  max-width: 331px;
  margin: 0;
  padding: 25px 20px;
}
.cookie-notice .card strong {
  color: #171d1a;
  margin-bottom: 5px;
  font-family: Avenir LT W01_85 Heavy1475544;
}
.cookie-notice .card p {
  line-height: 1.2;
}
.cookie-notice .card button.close-button {
  background: url(/images/icons-close-grey.svg?0bdb92c74df4cdc184747537b226f99e)
    50% no-repeat !important;
  width: 15px;
  height: 15px;
  background-size: 100% 100% !important;
  display: block;
  padding: 5px 10px;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media print, screen and (min-width: 64em) {
  .cookie-notice .card button.close-button:hover {
    opacity: 0.5;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .cookie-notice {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .cookie-notice .card {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
  }
  .cookie-notice .card strong {
    font-size: 16px;
  }
}
.knowledge-centre-categories {
  position: relative;
}
.knowledge-centre-categories .large-12 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 30px 30px;
}
@media screen and (min-width: 47.9375em) {
  .knowledge-centre-categories {
    padding-bottom: 0 !important;
  }
  .knowledge-centre-categories:before {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0;
    padding-top: 14%;
    background: #3c4e59;
    content: "";
  }
}
@media screen and (max-width: 75em) {
  .knowledge-centre-categories .image-cta.large h2 {
    font-size: 30px;
    margin-bottom: 7px;
  }
  .knowledge-centre-categories .image-cta.large p {
    font-size: 16px;
  }
}
@media screen and (max-width: 63.9375em) {
  .knowledge-centre-categories .image-cta.large h2 {
    max-width: 100%;
  }
  .knowledge-centre-categories .image-cta.large p {
    font-size: 14px;
  }
  .knowledge-centre-categories .image-cta.large .arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
  }
  .knowledge-centre-categories .image-cta.large .arrow img {
    width: 13px;
  }
  .knowledge-centre-categories .image-cta.large .content {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 53.125em) {
  .knowledge-centre-categories {
    padding-bottom: 45px;
  }
  .knowledge-centre-categories .large-12 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 15px;
    grid-template-areas: ". ." ". .";
  }
  .knowledge-centre-categories .image-cta.large h2 {
    font-size: 27px;
    margin-bottom: 5px;
  }
  .knowledge-centre-categories .image-cta.large .arrow {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 47.9375em) {
  .knowledge-centre-categories .large-12 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 30px 0;
    grid-template-areas: "." ".";
  }
  .knowledge-centre-categories .image-cta.large {
    border-radius: 7px;
  }
}
.knowledge-centre-topics h3 {
  margin-bottom: 50px;
}
.knowledge-centre-topics .button {
  margin: 5px;
}
@media screen and (max-width: 63.9375em) {
  .knowledge-centre-topics h3 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .knowledge-centre-topics .button {
    display: block;
  }
}
.knowledge-centre-list-filter .large-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media print, screen and (max-width: 63.99875em) {
  .knowledge-centre-list-filter .large-4 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 40px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .knowledge-centre-list-filter .large-4 {
    padding-top: 20px;
  }
}
#knowledge-centre-list-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#knowledge-centre-list-form label {
  font-family: Avenir LT W01_45 Book1475508;
  color: #3c4e59;
  margin: 5px 0;
}
#knowledge-centre-list-form select {
  margin-left: 20px;
  margin-bottom: 0;
}
#knowledge-centre-list-form select.selected {
  border-color: #449ed8;
}
@media print, screen and (max-width: 39.99875em) {
  #knowledge-centre-list-form {
    display: block;
    width: 100%;
  }
  #knowledge-centre-list-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
  }
  #knowledge-centre-list-form select {
    margin: 0 0 5px;
  }
}
@media print, screen and (min-width: 64em) {
  .knowledge-centre-detail h1 {
    font-size: 62px;
    margin-bottom: 55px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 75em) {
  .knowledge-centre-detail h1 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 47.9375em) {
  .knowledge-centre-detail h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.knowledge-centre-detail .page-info {
  font-size: 14px;
}
.knowledge-centre-detail .page-info,
.knowledge-centre-detail .page-info .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.knowledge-centre-detail .page-info .category {
  height: 28px;
  margin-right: 5px;
}
.knowledge-centre-detail .page-info .category img {
  max-height: 22px;
  margin-right: 7px;
}
.knowledge-centre-detail .page-info a {
  text-decoration: underline;
  font-family: Avenir LT W01_45 Book1475508;
}
.support-block h2,
.support-block h3,
.support-block ul {
  margin-bottom: 35px;
}
.support-block ul li {
  background: none;
  margin-left: 0;
  margin-bottom: 20px;
  padding-left: 0;
}
.support-block ul li:before {
  display: none;
}
.support-block ul li a.external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.support-block ul li a.external:after {
  content: url(/images/icons-external-link-dark.svg?034c14d1d0cb912beb574b8d6d1491a0);
  margin-left: 7px;
  margin-top: 2px;
}
@media print, screen and (min-width: 40em) {
  .support-block .grid-x:nth-child(2) {
    margin-top: 65px;
  }
}
.news-events-list-filter .large-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media print, screen and (max-width: 63.99875em) {
  .news-events-list-filter .large-4 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 40px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .news-events-list-filter .large-4 {
    padding-top: 10px;
  }
}
#events-list-form,
#news-list-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#events-list-form label,
#news-list-form label {
  font-family: Avenir LT W01_45 Book1475508;
  color: #3c4e59;
  margin-bottom: 0;
}
#events-list-form select,
#news-list-form select {
  margin-left: 20px;
  margin-bottom: 0;
}
#events-list-form select.selected,
#news-list-form select.selected {
  border-color: #449ed8;
}
@media print, screen and (max-width: 39.99875em) {
  #events-list-form,
  #news-list-form {
    display: block;
    width: 100%;
  }
  #events-list-form label,
  #news-list-form label {
    display: none;
    margin-bottom: 5px;
    font-size: 16px;
  }
  #events-list-form select,
  #news-list-form select {
    margin: 0 0 5px;
  }
}
.news-detail {
  padding-bottom: 25px;
}
@media print, screen and (max-width: 63.99875em) {
  .news-detail {
    padding-bottom: 0;
  }
  .news-detail h1 {
    margin-top: 20px;
  }
  .news-detail p:empty {
    display: none;
  }
}
.news-detail .subheader {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 64em) {
  .news-detail h1 {
    font-size: 62px;
    margin-bottom: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 75em) {
  .news-detail h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 47.9375em) {
  .news-detail h1 {
    font-size: 30px;
  }
  .news-detail .subheader {
    font-size: 14px;
  }
}
.featured-news-block .xlarge-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.featured-news-block article h2 {
  font-family: Avenir LT W01_85 Heavy1475544;
  margin-bottom: 30px;
}
.featured-news-block article h2 .subheader {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
.featured-news-block article p {
  margin-bottom: 25px;
}
@media print, screen and (min-width: 64em) and (max-width: 87.49875em) {
  .featured-news-block article h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .featured-news-block article h2 {
    font-family: Avenir LT W01_85 Heavy1475544;
    margin-bottom: 10px;
  }
  .featured-news-block article h2 .subheader {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .featured-news-block article p {
    margin-bottom: 25px;
    margin-bottom: 16px;
  }
  .featured-news-block article .button {
    margin-bottom: 30px;
  }
}
.news-list-block .large-12 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  grid-template-areas: ". . ." ". . .";
}
.news-list-block article img {
  height: 235px;
  margin-bottom: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media print, screen and (min-width: 64em) {
  .news-list-block article img {
    height: 348px;
  }
}
.news-list-block article h2 .subheader {
  font-size: 16px;
}
@media print, screen and (min-width: 64em) {
  .news-list-block article:hover {
    cursor: pointer;
  }
  .news-list-block article:hover img {
    -webkit-box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
    box-shadow: 0 0 14px -5px rgba(60, 78, 89, 0.43);
  }
  .news-list-block article:hover .subheader a:hover,
  .news-list-block article:hover strong {
    text-decoration: underline;
  }
}
@media screen and (max-width: 75em) {
  .news-list-block .large-12 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
    grid-template-areas: ". ." ". .";
  }
}
@media screen and (max-width: 47.9375em) {
  .news-list-block .large-12 {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 30px;
    grid-template-areas: "." ".";
  }
  .news-list-block article img {
    margin-bottom: 13px;
  }
  .news-list-block article h3 .subheader {
    font-size: 14px;
  }
}
.contact-form .lead {
  line-height: 2;
  margin-bottom: 25px;
}
.contact-form .social {
  margin-bottom: 35px;
}
.search-results .on-page-search {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 568px;
}
.search-results .on-page-search a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  height: 30px;
}
.search-results .on-page-search input {
  padding: 1.5rem 1.3rem;
  margin: 0;
}
@media print, screen and (min-width: 64em) {
  .search-results {
    padding-top: 35px;
  }
  .search-results .large-12 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.search-results-block .card {
  margin-bottom: 30px;
}
.search-results-block .card:last-child {
  margin-bottom: 0;
}
.search-results-block ul li {
  padding-left: 0;
  font: normal 22px Avenir LT W01_65 Medium1475532;
}
.search-results-block ul li:before {
  display: none;
}
@media print, screen and (max-width: 39.99875em) {
  .search-overlay .close-button {
    width: 30px;
    height: 50px;
  }
  .search-overlay .close-button svg {
    width: 20px;
  }
}
body.energy .button,
body.energy button {
  background: #eb5a5f;
  color: #fff;
  border-color: #eb5a5f;
}
body.energy .button.hollow,
body.energy button.hollow {
  background: none;
  color: #eb5a5f;
}
@media print, screen and (min-width: 64em) {
  body.energy .button:hover,
  body.energy button:hover {
    background: #ee7377;
    border-color: #ee7377;
    color: #fff;
  }
}
body.energy .button.white,
body.energy button.white {
  color: #eb5a5f;
  background: #fff;
  border-color: #fff;
}
@media print, screen and (min-width: 64em) {
  body.energy .button.white:hover,
  body.energy button.white:hover {
    background: #d9d9d9;
    border-color: #d9d9d9;
  }
}
body.energy ul li:before {
  background: url(/images/check-coral.svg?83a40dd061c22fdfc6c72dfbe11c3dc4) 0 0
    no-repeat;
}
body.energy a {
  color: #eb5a5f;
}
body.energy .back:before {
  border-color: transparent #eb5a5f transparent transparent;
}
body.energy .owl-carousel .owl-dots .owl-dot {
  background: #eb5a5f;
}
body.energy .downloads-block .card h4 .subheader:before {
  content: url(/images/icons-coral-brochure.svg?3bb33324125096140f7f5c43646fd38c);
}
body.energy blockquote {
  border-color: #eb5a5f;
}
body.energy .interactive-image-block .tooltip-anchor {
  background: #eb5a5f;
}
@media print, screen and (min-width: 64em) {
  body.energy .image-cta:hover .arrow {
    border-color: #eb5a5f;
    background: #eb5a5f;
  }
}
body.energy footer ul li a {
  color: #3c4e59;
}
body.energy footer .button-group {
  border: 2px solid #3c4e59;
  background: #3c4e59;
}
body.energy footer .button-group .button {
  background: none;
  color: #fff;
  border: 0;
}
body.rail .button,
body.rail button {
  background: #81cacb;
  color: #fff;
  border-color: #81cacb;
}
body.rail .button.hollow,
body.rail button.hollow {
  background: none;
  color: #81cacb;
}
@media print, screen and (min-width: 64em) {
  body.rail .button:hover,
  body.rail button:hover {
    background: #94d2d3;
    border-color: #94d2d3;
    color: #fff;
  }
}
body.rail .button.white,
body.rail button.white {
  color: #81cacb;
  background: #fff;
  border-color: #fff;
}
@media print, screen and (min-width: 64em) {
  body.rail .button.white:hover,
  body.rail button.white:hover {
    background: #d9d9d9;
    border-color: #d9d9d9;
  }
}
body.rail ul li:before {
  background: url(/images/check-teal.svg?07beea4358a69039cbc35377e27a7744) 0 0
    no-repeat;
}
body.rail a {
  color: #81cacb;
}
body.rail .back:before {
  border-color: transparent #81cacb transparent transparent;
}
body.rail .owl-carousel .owl-dots .owl-dot {
  background: #81cacb;
}
body.rail .downloads-block .card h4 .subheader:before {
  content: url(/images/icons-teal-brochure.svg?c194283f353ac95e22831a2441469e43);
}
body.rail blockquote {
  border-color: #81cacb;
}
body.rail .interactive-image-block .tooltip-anchor {
  background: #81cacb;
}
@media print, screen and (min-width: 64em) {
  body.rail .image-cta:hover .arrow {
    border-color: #81cacb;
    background: #81cacb;
  }
}
body.rail footer ul li a {
  color: #3c4e59;
}
body.rail footer .button-group {
  border: 2px solid #3c4e59;
  background: #3c4e59;
}
body.rail footer .button-group .button {
  background: none;
  color: #fff;
  border: 0;
}
@media print, screen and (min-width: 64em) {
  body.rail footer .button-group .button:hover {
    background: #526a79;
  }
}
body.rail footer .button-group .button.active {
  background: #fff;
  color: #3c4e59;
}
body.rail .teal-theme ul li:before {
  background: url(/images/check-purple.svg?aee55c4846d0a07ecd5b487d779ae10b) 0 0
    no-repeat;
}
body.rail .teal-theme .button,
body.rail .teal-theme button {
  background: #5f4c7a;
  color: #fff;
  border-color: #5f4c7a;
}
@media print, screen and (min-width: 64em) {
  body.rail .teal-theme .button:hover,
  body.rail .teal-theme button:hover {
    background: #755e97;
    border-color: #755e97;
    color: #fff;
  }
}
body.rail .teal-theme .button.hollow,
body.rail .teal-theme button.hollow {
  background: none;
  color: #5f4c7a;
}
@media print, screen and (min-width: 64em) {
  body.rail .teal-theme .button.hollow:hover,
  body.rail .teal-theme button.hollow:hover {
    background: #755e97;
    border-color: #755e97;
    color: #fff;
  }
}
.purple-theme {
  background: #5f4c7a;
}
.purple-theme .subheader,
.purple-theme h1,
.purple-theme h2,
.purple-theme h3,
.purple-theme h4,
.purple-theme h5,
.purple-theme h6,
.purple-theme li,
.purple-theme p,
.purple-theme strong {
  color: #fff;
}
.purple-theme .card {
  background-color: #fff;
}
.purple-theme .card h1,
.purple-theme .card h2,
.purple-theme .card h3,
.purple-theme .card h4,
.purple-theme .card h5,
.purple-theme .card h6,
.purple-theme .card strong {
  color: #171d1a;
}
.purple-theme .card .subheader,
.purple-theme .card li,
.purple-theme .card p {
  color: #3c4e59;
}
.purple-theme.step-block .step-line .cell:before {
  background: url(/images/dash-white.svg?d6f5d0a2f40420f8eb6bc33a3b8bab3a) 0 0
    repeat-x;
}
.purple-theme .owl-carousel .owl-nav button {
  border: 2px solid #fff !important;
}
@media print, screen and (min-width: 64em) {
  .purple-theme .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border: 2px solid #fff !important;
  }
}
.purple-theme .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
}
@media print, screen and (min-width: 64em) {
  .purple-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  }
}
.purple-theme .owl-carousel .owl-nav button.owl-next {
  background-color: transparent !important;
  background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
}
@media print, screen and (min-width: 64em) {
  .purple-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  }
}
.purple-theme blockquote {
  color: #fff;
  border-color: #449ed8;
}
.light-grey-theme {
  background: #f2f2f2;
}
.light-grey-theme .card {
  background-color: #fff;
}
.blue-theme {
  background: #449ed8;
}
.blue-theme .subheader,
.blue-theme a,
.blue-theme h1,
.blue-theme h2,
.blue-theme h3,
.blue-theme h4,
.blue-theme h5,
.blue-theme h6,
.blue-theme li,
.blue-theme p {
  color: #fff;
}
.blue-theme .card {
  background-color: #fff;
}
.blue-theme .card h1,
.blue-theme .card h2,
.blue-theme .card h3,
.blue-theme .card h4,
.blue-theme .card h5,
.blue-theme .card h6,
.blue-theme .card strong {
  color: #171d1a;
}
.blue-theme .card .subheader,
.blue-theme .card li,
.blue-theme .card p {
  color: #3c4e59;
}
.blue-theme .step {
  background: #fcd874;
  color: #3c4e59;
}
.blue-theme.step-block .step-line .cell:before {
  background: url(/images/dash-white.svg?d6f5d0a2f40420f8eb6bc33a3b8bab3a) 0 0
    repeat-x;
}
.blue-theme .owl-carousel .owl-nav button {
  border: 2px solid #fff !important;
}
@media print, screen and (min-width: 64em) {
  .blue-theme .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border: 2px solid #fff !important;
  }
}
.blue-theme .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
}
@media print, screen and (min-width: 64em) {
  .blue-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  }
}
.blue-theme .owl-carousel .owl-nav button.owl-next {
  background-color: transparent !important;
  background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
}
@media print, screen and (min-width: 64em) {
  .blue-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  }
}
.blue-theme .owl-carousel .owl-dots .owl-dot {
  background: #fff;
}
.blue-theme ul li:before {
  background: url(/images/check-white.svg?414fe06a9035c85aa832984682840665) 0 0
    no-repeat;
}
.blue-theme .button,
.blue-theme button {
  background: #fff;
  color: #449ed8;
  border-color: #fff;
}
.blue-theme .button.hollow,
.blue-theme button.hollow {
  background: none;
  color: #fff;
}
@media print, screen and (min-width: 64em) {
  .blue-theme .button:hover,
  .blue-theme button:hover {
    background: #d9d9d9;
    border-color: #d9d9d9;
    color: #449ed8;
  }
  .blue-theme .button:hover.hollow,
  .blue-theme button:hover.hollow {
    border-color: #449ed8;
    background: #449ed8;
  }
}
.blue-theme blockquote {
  color: #fff;
  border-color: #3c4e59;
}
.blue-theme .card {
  border: 0;
}
.blue-theme .card h4 {
  color: #171d1a;
}
.blue-theme .card h4 .subheader {
  color: #3c4e59;
}
.blue-theme .card .button,
.blue-theme .card button {
  background: #449ed8;
  color: #fff;
  border-color: #449ed8;
}
.blue-theme .card .button.hollow,
.blue-theme .card button.hollow {
  background: none;
  color: #449ed8;
}
@media print, screen and (min-width: 64em) {
  .blue-theme .card .button:hover,
  .blue-theme .card button:hover {
    background: #60adde;
    border-color: #60adde;
    color: #fff;
  }
  .blue-theme .card .button:hover.hollow,
  .blue-theme .card button:hover.hollow {
    border-color: #449ed8;
    background: #449ed8;
  }
}
.light-grey-theme .owl-carousel .owl-nav button {
  background-color: transparent !important;
}
@media print, screen and (min-width: 64em) {
  .light-grey-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381) !important;
  }
}
@media print, screen and (min-width: 64em) {
  .light-grey-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85) !important;
  }
}
.yellow-theme,
body.energy .yellow-theme,
body.rail .yellow-theme {
  background: #fcd874;
}
.yellow-theme ul li:before,
body.energy .yellow-theme ul li:before,
body.rail .yellow-theme ul li:before {
  background: url(/images/check-blue.svg?16b044ad9438901deb17af1a04ef1765) 0 0
    no-repeat;
}
.yellow-theme .button,
.yellow-theme button,
body.energy .yellow-theme .button,
body.energy .yellow-theme button,
body.rail .yellow-theme .button,
body.rail .yellow-theme button {
  background: #449ed8;
  color: #fff;
  border-color: #449ed8;
}
.yellow-theme .button.hollow,
.yellow-theme button.hollow,
body.energy .yellow-theme .button.hollow,
body.energy .yellow-theme button.hollow,
body.rail .yellow-theme .button.hollow,
body.rail .yellow-theme button.hollow {
  background: none;
  color: #449ed8;
}
@media print, screen and (min-width: 64em) {
  .yellow-theme .button:hover,
  .yellow-theme button:hover,
  body.energy .yellow-theme .button:hover,
  body.energy .yellow-theme button:hover,
  body.rail .yellow-theme .button:hover,
  body.rail .yellow-theme button:hover {
    background: #60adde;
    border-color: #60adde;
    color: #fff;
  }
}
.yellow-theme.quote-block blockquote,
body.energy .yellow-theme.quote-block blockquote,
body.rail .yellow-theme.quote-block blockquote {
  border-left: 5px solid #449ed8 !important;
}
.white-theme .owl-carousel .owl-nav button,
.yellow-theme .owl-carousel .owl-nav button {
  background-color: transparent !important;
}
@media print, screen and (min-width: 64em) {
  .white-theme .owl-carousel .owl-nav button.owl-prev:hover,
  .yellow-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381) !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
  }
}
@media print, screen and (min-width: 64em) {
  .white-theme .owl-carousel .owl-nav button.owl-next:hover,
  .yellow-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85) !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
  }
}
.dark-theme,
.knowledge-centre-topics {
  background: #3c4e59;
}
.dark-theme .subheader,
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6,
.dark-theme li,
.dark-theme p,
.dark-theme strong,
.knowledge-centre-topics .subheader,
.knowledge-centre-topics h1,
.knowledge-centre-topics h2,
.knowledge-centre-topics h3,
.knowledge-centre-topics h4,
.knowledge-centre-topics h5,
.knowledge-centre-topics h6,
.knowledge-centre-topics li,
.knowledge-centre-topics p,
.knowledge-centre-topics strong {
  color: #fff;
}
.dark-theme .card,
.knowledge-centre-topics .card {
  background-color: #fff;
}
.dark-theme .card h1,
.dark-theme .card h2,
.dark-theme .card h3,
.dark-theme .card h4,
.dark-theme .card h5,
.dark-theme .card h6,
.dark-theme .card strong,
.knowledge-centre-topics .card h1,
.knowledge-centre-topics .card h2,
.knowledge-centre-topics .card h3,
.knowledge-centre-topics .card h4,
.knowledge-centre-topics .card h5,
.knowledge-centre-topics .card h6,
.knowledge-centre-topics .card strong {
  color: #171d1a;
}
.dark-theme .card .subheader,
.dark-theme .card li,
.dark-theme .card p,
.knowledge-centre-topics .card .subheader,
.knowledge-centre-topics .card li,
.knowledge-centre-topics .card p {
  color: #3c4e59;
}
.dark-theme .owl-carousel .owl-nav button,
.knowledge-centre-topics .owl-carousel .owl-nav button {
  border: 2px solid #fff !important;
}
@media print, screen and (min-width: 64em) {
  .dark-theme .owl-carousel .owl-nav button:hover,
  .knowledge-centre-topics .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border: 2px solid #fff !important;
  }
}
.dark-theme .owl-carousel .owl-nav button.owl-prev,
.knowledge-centre-topics .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
}
@media print, screen and (min-width: 64em) {
  .dark-theme .owl-carousel .owl-nav button.owl-prev:hover,
  .knowledge-centre-topics .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  }
}
.dark-theme .owl-carousel .owl-nav button.owl-next,
.knowledge-centre-topics .owl-carousel .owl-nav button.owl-next {
  background-color: transparent !important;
  background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
}
@media print, screen and (min-width: 64em) {
  .dark-theme .owl-carousel .owl-nav button.owl-next:hover,
  .knowledge-centre-topics .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  }
}
.dark-theme blockquote,
.knowledge-centre-topics blockquote {
  color: #fff;
}
.coral-theme {
  background: #eb5a5f;
}
.coral-theme .subheader,
.coral-theme a,
.coral-theme h1,
.coral-theme h2,
.coral-theme h3,
.coral-theme h4,
.coral-theme h5,
.coral-theme h6,
.coral-theme li,
.coral-theme p {
  color: #fff;
}
.coral-theme .card {
  background-color: #fff;
}
.coral-theme .card h1,
.coral-theme .card h2,
.coral-theme .card h3,
.coral-theme .card h4,
.coral-theme .card h5,
.coral-theme .card h6,
.coral-theme .card strong {
  color: #171d1a;
}
.coral-theme .card .subheader,
.coral-theme .card li,
.coral-theme .card p {
  color: #3c4e59;
}
.coral-theme ul li:before {
  background: url(/images/check-white.svg?414fe06a9035c85aa832984682840665) 0 0
    no-repeat;
}
.coral-theme .owl-carousel .owl-nav button {
  border: 2px solid #fff !important;
}
@media print, screen and (min-width: 64em) {
  .coral-theme .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border: 2px solid #fff !important;
  }
}
.coral-theme .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
}
@media print, screen and (min-width: 64em) {
  .coral-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  }
}
.coral-theme .owl-carousel .owl-nav button.owl-next {
  background-color: transparent !important;
  background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
}
@media print, screen and (min-width: 64em) {
  .coral-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  }
}
.coral-theme .owl-carousel .owl-dots .owl-dot {
  background: #fff;
}
.coral-theme .button,
.coral-theme button {
  background: #fff;
  color: #eb5a5f;
  border-color: #fff;
}
.coral-theme .button.hollow,
.coral-theme button.hollow {
  background: none;
  color: #fff;
}
@media print, screen and (min-width: 64em) {
  .coral-theme .button:hover,
  .coral-theme button:hover {
    background: #d9d9d9;
    border-color: #d9d9d9;
    color: #eb5a5f;
  }
  .coral-theme .button:hover.hollow,
  .coral-theme button:hover.hollow {
    border-color: #fff;
    background: #fff;
  }
}
.coral-theme blockquote {
  color: #fff;
  border-color: #fff;
}
.coral-theme .card {
  border: 0;
}
.coral-theme .card h4 {
  color: #171d1a;
}
.coral-theme .card h4 .subheader {
  color: #3c4e59;
}
.coral-theme .card .button,
.coral-theme .card button {
  background: #eb5a5f;
  color: #fff;
  border-color: #eb5a5f;
}
.coral-theme .card .button.hollow,
.coral-theme .card button.hollow {
  background: none;
  color: #eb5a5f;
}
@media print, screen and (min-width: 64em) {
  .coral-theme .card .button:hover,
  .coral-theme .card button:hover {
    background: #ee7377;
    border-color: #ee7377;
    color: #fff;
  }
  .coral-theme .card .button:hover.hollow,
  .coral-theme .card button:hover.hollow {
    border-color: #eb5a5f;
    background: #eb5a5f;
  }
}
.coral-theme.downloads-block .card h4 .subheader:before {
  content: url(/images/icons-coral-brochure.svg?3bb33324125096140f7f5c43646fd38c);
}
.teal-theme {
  background: #81cacb;
}
.teal-theme .subheader {
  color: #3c4e59;
}
.teal-theme a {
  color: #5f4c7a;
}
.teal-theme .button,
.teal-theme button {
  background: #5f4c7a;
  color: #fff;
  border-color: #5f4c7a;
}
.teal-theme .button.hollow,
.teal-theme button.hollow {
  background: none;
  color: #5f4c7a;
}
@media print, screen and (min-width: 64em) {
  .teal-theme .button:hover,
  .teal-theme button:hover {
    background: #755e97;
    border-color: #755e97;
    color: #fff;
  }
}
.teal-theme ul li:before {
  background: url(/images/check-purple.svg?aee55c4846d0a07ecd5b487d779ae10b) 0 0
    no-repeat;
}
.teal-theme .card {
  background-color: #fff;
  border: 0;
}
.teal-theme .owl-carousel .owl-nav button {
  border: 2px solid #fff !important;
}
@media print, screen and (min-width: 64em) {
  .teal-theme .owl-carousel .owl-nav button:hover {
    background-color: #fff;
    border: 2px solid #fff !important;
  }
}
.teal-theme .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent !important;
  background-image: url(/images/arrow-left-white.svg?5b386574c22d06001d02b3c990c20272);
}
@media print, screen and (min-width: 64em) {
  .teal-theme .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-left-grey.svg?44409ff24af998feada8c9a0495ab381);
  }
}
.teal-theme .owl-carousel .owl-nav button.owl-next {
  background-color: transparent !important;
  background-image: url(/images/arrow-right-white.svg?e655163ec8ced772cdf4e7d7684a6025);
}
@media print, screen and (min-width: 64em) {
  .teal-theme .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #fff !important;
    background-image: url(/images/arrow-right-grey.svg?00a75fb133fc5ea3aedd46e5e5ee5f85);
  }
}
.teal-theme .owl-carousel .owl-dots .owl-dot {
  background: #5f4c7a;
}
.teal-theme blockquote {
  border-color: #5f4c7a;
}
.teal-theme.downloads-block .card h4 .subheader:before {
  content: url(/images/icons-teal-brochure.svg?c194283f353ac95e22831a2441469e43);
}
#BambooHR {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#BambooHR .BambooHR-ATS-board h2 {
  font-family: Avenir LT W01_65 Medium1475532;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 62.4px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #171d1a;
  border-bottom: none !important;
  margin-bottom: 25px;
  text-align: center;
}
#BambooHR .BambooHR-ATS-board ul {
  font-size: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#BambooHR .BambooHR-ATS-board ul li {
  margin-left: 0;
  padding-left: 0;
  color: #3c4e59;
  border: none !important;
}
#BambooHR .BambooHR-ATS-board ul li:before {
  display: none;
}
#BambooHR .BambooHR-ATS-board ul li ul {
  border: none !important;
  margin-bottom: 50px;
}
#BambooHR .BambooHR-ATS-board ul li ul li {
  padding: 20px 0;
  border-bottom: 1px solid #e6e6e6 !important;
}
#BambooHR .BambooHR-ATS-board .BambooHR-ATS-Location {
  float: right;
  padding-top: 0;
}
#BambooHR .BambooHR-ATS-Department-Header {
  font: normal 22px Avenir LT W01_65 Medium1475532;
  color: #171d1a;
  margin-bottom: 20px;
}
#BambooHR .BambooHR-ATS-board a {
  font: normal 18px Avenir LT W01_85 Heavy1475544;
}
@media print, screen and (max-width: 63.99875em) {
  #BambooHR .BambooHR-ATS-board h2 {
    font-size: 1.66667rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  #BambooHR .BambooHR-ATS-board h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  #BambooHR .BambooHR-ATS-board ul {
    font-size: 16px;
  }
  #BambooHR .BambooHR-ATS-board ul li ul {
    margin-bottom: 25px;
  }
  #BambooHR .BambooHR-ATS-board ul li ul li {
    padding: 15px 0;
  }
  #BambooHR .BambooHR-ATS-board .BambooHR-ATS-Location {
    float: none;
    display: block;
    font-size: 15px;
  }
  #BambooHR .BambooHR-ATS-Department-Header {
    font: normal 20px Avenir LT W01_65 Medium1475532;
    margin-bottom: 10px;
  }
  #BambooHR .BambooHR-ATS-board a {
    font: normal 16px Avenir LT W01_85 Heavy1475544;
    display: block;
    margin-bottom: 5px;
  }
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.support-block + .support-block {
  padding-top: 0;
}
#country-notice.inactive-country-notice + header.overlay {
  top: 0;
}
#BambooHR li:before {
  background: none;
}
#BambooHR .BambooHR-ATS-board .BambooHR-ATS-Location,
.BambooHR-ATS-board .BambooHR-ATS-Location {
  display: block;
  float: none;
}
.energyUk #main-header .logo {
  height: 63px;
}
.simple-header + .content-block.white-theme {
  padding-top: 0;
}
.social li {
  position: relative;
}
.facebook {
  top: 1px;
}
.twitter,
.vimeo {
  top: 2px;
}
.on-page-search button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  top: 38px;
  right: 15px;
}
.knowledge-centre-block .articles h2 {
  font-size: 36px;
  grid-column: span 12;
}
.search-results-form {
  position: relative;
  bottom: 11px;
}
footer .button-group .button {
  background: #fff !important;
  color: #3c4e59 !important;
}
footer .button-group .button.active {
  background: #3c4e59 !important;
  border-color: #3c4e59 !important;
  color: #fff !important;
}
article a h3,
article h3,
article h3 a {
  text-decoration: underline;
}
article a h3:focus,
article a h3:hover,
article h3 a:focus,
article h3 a:hover,
article h3:focus,
article h3:hover {
  text-decoration: none;
}
img[src*="/camlin-group/logos/kelvatek-logo.svg"] {
  height: 63px;
  position: relative;
  top: 1px;
}
img[src*="https://s3.eu-west-1.amazonaws.com/camlin-group/logos/camlin-rail-logo.svg"]
{
  height: 60px;
}
img[src*="https://s3.eu-west-1.amazonaws.com/camlin-group/logos/Camlin-Energy-Logo.svg"]
{
  height: 72px;
  width: 100%;
}
::-webkit-input-placeholder {
  color: #333;
}
:-ms-input-placeholder,
::-ms-input-placeholder {
  color: #333;
}
::placeholder {
  color: #333;
}
@media print, screen and (min-width: 40em) {
  .knowledge-centre-list select#topic,
  .knowledge-centre-list select#type {
    width: 160px;
  }
  .solutions-alt-block h2 + p {
    margin-bottom: 50px;
  }
}
.logo img {
  max-width: 225px;
}
.pre-heading {
  color: #fff;
  font-size: 2rem;
}
body.energy .quote-block.coral-theme blockquote {
  border-color: #fff;
}
@media (min-width: 1025px) and (max-width: 1440px) {
  :root {
    font-size: 90%;
  }
  footer .grid-container p,
  footer .grid-container p a,
  footer .grid-container ul li a {
    font-size: 14px;
  }
  .grid-container .lead,
  .home-hero p.lead,
  body .knowledge-centre-detail h1,
  body .news-detail h1 {
    font-size: 18px;
  }
  body .knowledge-centre-detail h1,
  body .news-detail h1 {
    line-height: 1.15;
  }
  .simple-header.home-hero p.lead {
    font: normal 18px/28px Avenir LT W01_65 Medium1475532;
  }
}
@media print and (min-width: 1025px) and (max-width: 1440px),
  screen and (min-width: 1025px) and (max-width: 1440px) and (min-width: 64em) {
  .simple-header.home-hero p.lead {
    padding-right: 200px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .stats-block .grid-container p em {
    font-size: 42px;
  }
  header .about-dd h3,
  header .about-dd h3 a,
  header .energy-dd h3,
  header .energy-dd h3 a,
  header .rail-dd h3,
  header .rail-dd h3 a,
  header .support-dd h3,
  header .support-dd h3 a {
    font-size: 20px !important;
  }
  body header .energy-dd .relative-wrap,
  header .about-dd .relative-wrap,
  header .rail-dd .relative-wrap,
  header .support-dd .relative-wrap {
    padding: 60px 0;
  }
  body header .energy-dd .lead,
  header .about-dd .lead,
  header .rail-dd .lead,
  header .support-dd .lead {
    margin-bottom: 50px;
  }
  .home-hero .watch:before {
    top: -3px !important;
  }
  body li,
  body p {
    font-size: 16px;
  }
  body .enquiry-block .card {
    padding: 30px;
  }
  body .quote-block blockquote {
    font-size: 16px;
  }
  body .image-cta .content h2 {
    font-size: 32px;
  }
  body .image-cta .content p {
    font-size: 16px;
  }
  body .simple-header h1 {
    font-size: 3.4rem;
  }
  body .image-header {
    height: 400px;
  }
  body article .subheader {
    font: normal 14px Avenir LT W01_45;
    font-family: Avenir LT W01_45 Book1475508;
  }
  body .solutions-alt-block .large-12 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: ". . . ." ". . . .";
  }
  body .simple-header {
    padding-top: 148px;
  }
  body .h1,
  body h1 {
    font-size: 2.8rem;
  }
  body .h2,
  h2 {
    font-size: 2.3rem;
  }
  body .news-block {
    padding-top: 0;
  }
  body header ul.navigation > li.dropdown > a:after {
    margin-left: 3px;
  }
  label {
    margin-bottom: 15px;
  }
  body .featured-news-block article h2 {
    font-size: 2.3rem;
  }
  body .simple-header .back {
    margin-top: -20px;
  }
  body .pre-heading {
    font-size: 1.6rem;
    position: relative;
    top: 10px;
  }
  body .home-hero {
    padding-top: 155px !important;
  }
}
.solutions-block img:hover + a {
  text-decoration: none;
}
.subheader a {
  text-decoration: underline;
}
.subheader a:hover {
  text-decoration: none;
}
article .subheader {
  color: unset;
}
.step-block.dark-theme .step-line .cell:before,
.step-block.knowledge-centre-topics .step-line .cell:before {
  background: url(/images/dash-white.svg?d6f5d0a2f40420f8eb6bc33a3b8bab3a) 0 0
    repeat-x;
}
.simple-header h1 {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .enquiry-block .card {
    position: relative;
    bottom: 44px;
  }
  .contact-page .enquiry-block .card {
    bottom: 62px;
  }
}
.blue-theme + .blue-theme:not(.enquiry-block),
.coral-theme + .coral-theme:not(.enquiry-block),
.dark-theme + .dark-theme:not(.enquiry-block),
.dark-theme + .knowledge-centre-topics:not(.enquiry-block),
.knowledge-centre-topics + .dark-theme:not(.enquiry-block),
.knowledge-centre-topics + .knowledge-centre-topics:not(.enquiry-block),
.light-grey-theme + .light-grey-theme:not(.enquiry-block),
.teal-theme + .teal-theme:not(.enquiry-block),
.yellow-theme + .yellow-theme:not(.enquiry-block) {
  padding-top: 0;
}
.hidden-benefit,
.hidden-solution {
  display: none;
}
.energUk .button.hollow:focus,
.energy .button.hollow {
  border: 2px solid #eb5a5f;
}
.content-block p strong {
  color: inherit;
}
body,
header {
  max-width: 2000px;
  margin: auto;
}
@media print, screen and (min-width: 40em) {
  .image-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .image-header .large-7:first-child {
    margin-top: 70px;
  }
  .image-header.no-backlink {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .image-header.no-backlink .large-7:first-child {
    margin-top: 0;
  }
  .back {
    display: block;
    margin-top: 60px;
  }
}
@media (min-width: 1400px) {
  .image-header .large-7:first-child {
    margin-top: 160px;
  }
}
.button--support,
.featured-news-block .subheader {
  text-decoration: none;
}
.button--support {
  display: block;
}
@media print, screen and (max-width: 63.99875em) {
  article span.subheader {
    margin-top: 15px;
  }
  body .logo-block .logos {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  body .logo-block .logos img {
    min-width: unset;
  }
  article span.subheader {
    font: normal 16px Avenir LT W01_45 Book1475508;
  }
  #events-filter-form,
  #news-filter-form {
    width: 100%;
  }
  #events-filter-form select,
  #news-filter-form select {
    border-color: #449ed8;
    margin: 0;
  }
  .news-block .subheader + h3 {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 64em) {
  .home-hero h1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 1130px) {
  .navigation .menu {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .reveal.large {
    max-width: 70%;
    top: 170px !important;
  }
}
body.energy .coral-theme .button.hollow {
  color: #fff;
  border-color: #fff;
}
body.energy .coral-theme .button.hollow:hover {
  color: #eb5a5f;
}
body.rail .teal-theme .button.hollow {
  color: #fff;
  border-color: #fff;
}
body.rail .teal-theme .button.hollow:hover {
  background-color: #fff;
  border-color: #5f4c7a;
  color: #5f4c7a;
}
body.energy .step-block.dark-theme .step,
body.energy .step-block.knowledge-centre-topics .step {
  background: #eb5a5f;
}
.blue-theme p strong,
.coral-theme p strong {
  color: #fff;
}
body.energy .coral-theme .button {
  border-color: #fff;
}
body.energy .blue-theme ul li:before,
body.energy .coral-theme ul li:before {
  background: url(/images/check-white.svg?414fe06a9035c85aa832984682840665) 0 0
    no-repeat;
}
.content-block.white-theme + .image-video-gallery-block.white-theme {
  padding-top: 0;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}
.image-cta {
  border-radius: 7px;
}
body .news-block.dark-theme .button.hollow,
body .news-block.knowledge-centre-topics .button.hollow,
body .news-block.purple-theme .button.hollow {
  border-color: #fff;
  color: #fff;
}
body .news-block.dark-theme .subheader,
body .news-block.knowledge-centre-topics .subheader,
body .news-block.purple-theme .subheader {
  color: #fff !important;
}
.stats-block + .case-study-block {
  padding-bottom: 150px;
}
body.energy .case-study-block .button.hollow {
  border-color: #eb5a5f;
  color: #eb5a5f;
}
body.energy .case-study-block .button.hollow:hover {
  color: #fff;
}
.social-media-block {
  padding: 40px 0;
}
.social-media-block-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  max-width: 591px;
  text-align: center;
}
.social-media-block-text {
  color: #fff;
  font-size: 1.2rem;
}
.social-media-block svg {
  fill: #fff;
}
.social-media-block.light-grey-theme .social-media-block-text,
.social-media-block.teal-theme .social-media-block-text,
.social-media-block.white-theme .social-media-block-text,
.social-media-block.yellow-theme .social-media-block-text {
  color: #171d1a;
}
.social-media-block.light-grey-theme svg,
.social-media-block.teal-theme svg,
.social-media-block.white-theme svg,
.social-media-block.yellow-theme svg {
  fill: #171d1a;
}
.social-media-block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}
.social-media-block ul > * + * {
  margin-left: 30px;
}
.social-media-block li {
  padding: 0;
}
.social-media-block li:before {
  display: none;
}
@media (min-width: 850px) {
  .social-media-block-text {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .social-media-block {
    padding: 78px 0;
  }
  .social-media-block-layout {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .social-media-block-text {
    font-size: 32px;
    margin-bottom: 0;
    position: relative;
    bottom: 5px;
  }
}
.cta-block.teal-theme,
.cta-block.teal-theme h2,
.cta-block.teal-theme p {
  color: #171d1a;
}
.cta-block.teal-theme:before {
  background: none;
}
.solutions-block.dark-theme a,
.solutions-block.knowledge-centre-topics a {
  -webkit-text-decoration-color: #fff;
  text-decoration-color: #fff;
}
.solutions-block.dark-theme p a,
.solutions-block.knowledge-centre-topics p a {
  -webkit-text-decoration-color: #eb5a5f !important;
  text-decoration-color: #eb5a5f !important;
}
#pristine-form .button,
#pristine-form > * + *,
#pristine-form button {
  margin-top: 25px;
}
@media (min-width: 1140px) {
  .energy-dd .large-3:nth-of-type(2) {
    position: relative;
    left: 50px;
  }
}
.reveal-overlay {
  position: absolute !important;
  top: 0;
}
html.is-reveal-open {
  position: unset;
}
.downloads-block.coral-theme .card .button.hollow {
  border-color: #eb5a5f;
  color: #eb5a5f;
}
.downloads-block.coral-theme .card .button.hollow:hover {
  color: #fff;
}
.downloads-block .card h4 a {
  color: #171d1a;
  text-decoration: underline;
}
.downloads-block .card h4 a:hover {
  text-decoration: none;
}
header .about-dd .lead {
  margin-bottom: 80px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.tex-right {
  text-align: right;
}
.headings-lg h2 {
  line-height: 1.15;
}
@media print, screen and (min-width: 40em) {
  .headings-lg h2 {
    font-size: 48px;
  }
}
@media print, screen and (min-width: 64em) {
  .headings-lg h2 {
    font-size: 70px;
  }
}
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.col-12 {
  width: 50%;
}
@media print, screen and (min-width: 40em) {
  .col-md-6 {
    width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
}
.sticky-nav {
  background-color: #fff;
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.sticky-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.sticky-nav li {
  margin: 0 30px 0 0;
  padding: 0;
}
.sticky-nav li:before {
  display: none;
}
.sticky-nav__link {
  border-bottom: 4px solid transparent;
  color: #47555a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 18px;
  font-weight: 800;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 150px;
  padding: 20px 0;
  text-decoration: none;
  -webkit-transition: all 0.05s ease-in-out;
  transition: all 0.05s ease-in-out;
}
.sticky-nav__link.active {
  border-color: #449ed8;
}
.sticky-nav__link-num {
  color: #449ed8;
}
@media print, screen and (min-width: 64em) {
  .sticky-nav {
    display: block;
  }
}
.sticky-nav + .block[class="cb-video"] {
  padding-top: 150px;
}
.has-anchor {
  scroll-padding-top: 200px;
}
.content-block {
  padding-bottom: 50px;
  padding-top: 50px;
}
@media print, screen and (min-width: 64em) {
  .content-block {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}
@media (min-width: 1900px) {
  .gscrollbar-fixer {
    margin-right: auto !important;
  }
  .glightbox-open {
    overflow: visible !important;
  }
}
.cta-anchor {
  padding: 100px 0;
}
.cta-anchor__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 37px 41px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 7px;
}
@media (min-width: 1025px) {
  .cta-anchor__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.form-group textarea {
  margin: 1rem 0;
  resize: none;
}
.enquiry-block--pristine .card {
  padding: 8px 30px 16px;
}
@media (min-width: 1440px) {
  .enquiry-block--pristine .card {
    padding: 32px 31px;
  }
}
.enquiry-block--pristine label {
  margin-bottom: 6px;
  font-family: Avenir LT W01_35 Light1475496;
  font-size: 14px;
}
.enquiry-block--pristine input:not([type="submit"]),
.enquiry-block--pristine select,
.enquiry-block--pristine textarea {
  margin: 0;
}
.enquiry-block--pristine .check-container {
  margin: 0;
  font-size: 14px;
}
.enquiry-block--pristine .button[type="submit"] {
  margin: 0.44444444rem 0 !important;
}
.enquiry-block--pristine #pristine-form > * + * {
  margin-top: 12px;
}
a.nostyle {
  color: inherit !important;
  text-decoration: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
}
a.nostyle:hover {
  text-decoration: underline !important;
}
a.anchor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.site-switcher {
  position: relative;
  display: block;
  padding: 0 24px;
}
.site-switcher__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0;
  padding: 0 10px;
  cursor: pointer;
  color: #3c4e59 !important;
  background-color: transparent !important;
  -webkit-transition: border border-radius background-color 0.1s linear;
  transition: border border-radius background-color 0.1s linear;
}
.site-switcher__button:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 40%;
  right: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #449ed8;
}
.site-switcher__button > svg {
  margin-right: 6px;
}
.site-switcher__button svg > g > g > g > g > circle,
.site-switcher__button svg > g > g > g > g > ellipse {
  stroke: #3c4e59;
}
.site-switcher__button svg > g > g > g > g > rect {
  fill: #3c4e59;
}
.site-switcher__button--active {
  color: #3c9fe2 !important;
}
.site-switcher__button--active svg > g > g > g > g > circle,
.site-switcher__button--active svg > g > g > g > g > ellipse {
  stroke: #3c9fe2;
}
.site-switcher__button--active svg > g > g > g > g > rect {
  fill: #3c9fe2;
}
.site-switcher__sitename {
  margin-left: 6px;
  font-size: 16px;
  font-family: Avenir LT W01_65 Medium1475532;
}
.site-switcher__sites {
  position: absolute;
  display: block;
}
.site-switcher__sites,
.site-switcher__sites * {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.1s linear;
  transition: visibility 0s, opacity 0.1s linear;
}
.site-switcher__sites--visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  bottom: -10px;
  right: -6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  text-align: left;
  background-color: #f2f2f2;
}
.site-switcher__sites--visible,
.site-switcher__sites--visible * {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility 0s, opacity 0.1s linear;
  transition: visibility 0s, opacity 0.1s linear;
}
.site-switcher__sites--visible:before {
  content: "";
  position: absolute;
  border-bottom: 10px solid #f2f2f2;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  top: -9px;
  right: 15px;
}
.site-switcher__sites a {
  width: auto;
  white-space: nowrap;
  border-bottom: 1px solid #d9d9d9;
}
.site-switcher__sites a:link,
.site-switcher__sites a:visited {
  padding: 20px 30px;
  color: #3c4e59;
  text-decoration: none;
}
.site-switcher__sites a.active,
.site-switcher__sites a:hover {
  color: #3c9fe2;
}
.site-switcher__check {
  position: relative;
  display: inline-block;
  background: url(/images/check-blue.svg?16b044ad9438901deb17af1a04ef1765) 0 0
    no-repeat;
  background-size: 100% 100%;
  width: 18px;
  height: 14px;
}
.site-switcher--mobile {
  width: calc(100% - 30px);
  padding: 0;
}
.site-switcher--mobile .site-switcher__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
  color: #fff !important;
}
.site-switcher--mobile .site-switcher__button:after {
  top: 30%;
  right: -20px;
  border-left: 5px solid #fff;
  border-right: none;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.site-switcher--mobile .site-switcher__button--active {
  color: #fff !important;
}
.site-switcher--mobile .site-switcher__button svg > g > g > g > g > circle,
.site-switcher--mobile .site-switcher__button svg > g > g > g > g > ellipse {
  stroke: #fff;
}
.site-switcher--mobile .site-switcher__button svg > g > g > g > g > rect {
  fill: #fff;
}
.site-switcher--mobile .site-switcher__button--active:after {
  right: -20px;
  top: 40%;
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: none;
}
.site-switcher--mobile .site-switcher__sitename {
  font-size: 12px;
}
.site-switcher--mobile .site-switcher__sites--visible {
  display: inline;
  width: 100%;
  background-color: transparent;
}
.site-switcher--mobile .site-switcher__sites:before {
  display: none;
}
.site-switcher--mobile .site-switcher__sites--visible a {
  padding: 24px 23px !important;
  border-bottom: 1px solid #fff;
}
.site-switcher--mobile .site-switcher__sites--visible a:first-child {
  border-top: 1px solid #fff;
}
.site-switcher--mobile .site-switcher__sites--visible a:last-child {
  margin-bottom: 20px;
}
.site-switcher--mobile .site-switcher__check {
  background: url(/images/check-white.svg?414fe06a9035c85aa832984682840665) 0 0
    no-repeat;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-self-center {
  justify-self: center;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1023px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.glightbox__inline {
  position: relative;
  display: none;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.25% !important;
  overflow: visible !important;
}
.glightbox__inline iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}
.glightbox--default {
  z-index: 12;
}
.glightbox--default .goverlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.glightbox--default .gslide-inline {
  background: transparent;
  overflow: visible !important;
}
.glightbox--default .gclose {
  position: fixed;
  width: auto;
  height: auto;
  padding: 1rem;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
}
.glightbox--default .gclose svg {
  fill: #fff;
}
.glightbox--default .gnext,
.glightbox--default .gprev {
  position: fixed;
  width: auto;
  height: auto;
  top: 50%;
  background-color: transparent;
}
.glightbox--default .gnext svg,
.glightbox--default .gprev svg {
  fill: #fff;
}
.glightbox--default .gprev {
  left: 2rem;
}
.glightbox--default .gnext {
  right: 2rem;
}
:root {
  --cky-font-base: "Avenir LT W01_65 Medium1475532", sans-serif;
  --cky-font-bold: "Avenir LT W01_85 Heavy1475544", sans-serif;
  --cky-title-font: var(--cky-font-bold);
  --cky-title-size: 24px;
  --cky-title-size-mob: 20px;
  --cky-paragraph-size: 15px;
  --cky-paragraph-lh: 24px;
  --cky-padding-box-mob: 30px 0;
  --cky-padding-box: 30px;
  --cky-border-radius-box: 0;
  --cky-border-radius-button: 0;
  --cky-brand-primary: #449ed8;
  --cky-brand-background: #fff;
  --cky-brand-heading: #000;
  --cky-brand-text: #777;
  --cky-brand-link: var(--cky-brand-primary);
  --cky-brand-success: var(--cky-brand-primary);
  --cky-brand-warning: #999;
  --cky-revisit-bg: var(--cky-brand-primary);
  --cky-btn-weight: bold;
  --cky-btn-accept-bg: var(--cky-brand-primary);
  --cky-btn-reject-bg: #fff;
  --cky-btn-customize-bg: #fff;
  --cky-btn-accept-border: 2px solid var(--cky-brand-primary);
  --cky-btn-reject-border: 2px solid var(--cky-brand-primary);
  --cky-btn-customize-border: 2px solid var(--cky-brand-primary);
  --cky-btn-pref-border: 2px solid var(--cky-brand-primary);
  --cky-btn-accept-color: #fff;
  --cky-btn-reject-color: var(--cky-brand-primary);
  --cky-btn-customize-color: var(--cky-brand-primary);
  --cky-btn-pref-color: var(--cky-brand-primary);
  --cky-checkbox-bg: #000;
  --cky-checkbox-checked-bg: var(--cky-brand-primary);
  --cky-checkbox-border: 1px solid #000;
  --cky-table-th-bg: var(--cky-brand-primary);
  --cky-table-th-padding: 10px;
  --cky-table-td-padding: 10px;
  --cky-table-th-border: none;
  --cky-table-td-border: none;
  --cky-table-th-size: 16px;
  --cky-table-td-size: 16px;
  --cky-table-th-color: #fff;
  --cky-table-td-color: var(--cky-brand-text);
  --cky-table-bg-odd: #f7f7f7;
  --cky-table-bg-even: #fff;
}
.cky-btn-revisit-wrapper {
  background-color: var(--cky-revisit-bg) !important;
}
.cky-consent-bar {
  padding: var(--cky-padding-box) !important;
  background-color: var(--cky-brand-background) !important;
  border-radius: var(--cky-border-radius-box) !important;
  border-color: var(--cky-brand-background) !important;
}
@media (max-width: 440px) {
  .cky-consent-bar {
    padding: var(--cky-padding-box-mob) !important;
  }
}
.cky-title {
  font-size: var(--cky-title-size) !important;
  font-family: var(--cky-title-font) !important;
  color: var(--cky-brand-heading) !important;
}
@media (max-width: 440px) {
  .cky-title {
    font-size: var(--cky-title-size-mob) !important;
  }
}
.cky-notice-des p {
  line-height: var(--cky-paragraph-lh);
  color: var(--cky-brand-text) !important;
  font-size: var(--cky-paragraph-size);
}
.cky-notice-des p a {
  color: var(--cky-brand-link) !important;
  font-weight: var(--cky-btn-weight) !important;
}
@media (max-width: 440px) {
  .cky-notice-btn-wrapper {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}
.cky-btn {
  border-radius: var(--cky-border-radius-button) !important;
  font-weight: 700 !important;
}
.cky-btn-accept {
  background-color: var(--cky-btn-accept-bg) !important;
  border: var(--cky-btn-accept-border) !important;
  color: var(--cky-btn-accept-color) !important;
}
.cky-btn-reject {
  background-color: var(--cky-btn-reject-bg) !important;
  border: var(--cky-btn-reject-border) !important;
  color: var(--cky-btn-reject-color) !important;
}
@media (max-width: 440px) {
  .cky-btn-reject {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 1 calc(50% - 5px) !important;
    flex: 0 1 calc(50% - 5px) !important;
    margin-left: 5px !important;
  }
}
.cky-btn-customize {
  background-color: var(--cky-btn-customize-bg) !important;
  border: var(--cky-btn-customize-border) !important;
  color: var(--cky-btn-customize-color) !important;
}
@media (max-width: 440px) {
  .cky-btn-customize {
    -webkit-box-flex: 0 !important;
    -ms-flex: 0 1 calc(50% - 5px) !important;
    flex: 0 1 calc(50% - 5px) !important;
    margin-right: 5px !important;
  }
}
.cky-btn-preferences {
  border: var(--cky-btn-pref-border) !important;
  color: var(--cky-btn-pref-color) !important;
}
.cky-preference-center {
  background-color: var(--cky-brand-background) !important;
  border-color: var(--cky-brand-text) !important;
  border-radius: var(--cky-border-radius-box) !important;
}
.cky-footer-shadow {
  display: none !important;
}
.cky-preference-title {
  color: var(--cky-brand-heading) !important;
}
.cky-preference-content-wrapper {
  color: var(--cky-brand-text) !important;
}
.cky-show-desc-btn {
  color: var(--cky-brand-link) !important;
  text-decoration: underline !important;
}
.cky-always-active {
  color: var(--cky-brand-success) !important;
}
.cky-accordion-btn {
  color: var(--cky-brand-heading) !important;
}
.cky-accordion-header-des {
  color: var(--cky-brand-text) !important;
}
.cky-chevron-right {
  color: var(--cky-brand-link) !important;
}
.cky-audit-table {
  background-color: var(--cky-brand-background) !important;
}
.cky-cookie-des-table {
  color: var(--cky-brand-text);
}
.cky-switch input[type="checkbox"] {
  background-color: var(--cky-checkbox-bg) !important;
  border: var(--cky-checkbox-border) !important;
  border: 1px solid var(--cky-brand-text) !important;
}
.cky-switch input[type="checkbox"]:before {
  -webkit-transform: translateX(-1px) translateY(1px) !important;
  transform: translateX(-1px) translateY(1px) !important;
}
.cky-switch input[type="checkbox"]:checked {
  background-color: var(--cky-checkbox-checked-bg) !important;
  border-color: var(--cky-checkbox-checked-bg) !important;
}
.cky-switch input[type="checkbox"]:checked:before {
  -webkit-transform: translateX(19px) translateY(1px) !important;
  transform: translateX(19px) translateY(1px) !important;
}
[data-cky-tag="detail-powered-by"] {
  background-color: transparent !important;
}
.cky-cookie-audit-table th {
  padding: var(--cky-table-th-padding) !important;
  font-size: var(--cky-table-th-size) !important;
  background-color: var(--cky-table-th-bg) !important;
  color: var(--cky-table-th-color) !important;
  border: var(--cky-table-th-border) !important;
}
.cky-cookie-audit-table td {
  padding: var(--cky-table-td-padding) !important;
  font-size: var(--cky-table-td-size) !important;
  color: var(--cky-table-td-color) !important;
  border: var(--cky-table-td-border) !important;
}
.cky-cookie-audit-table tr:nth-child(odd) td {
  background-color: var(--cky-table-bg-odd) !important;
}
.cky-cookie-audit-table tr:nth-child(2n) td {
  background-color: var(--cky-table-bg-even) !important;
}
.plyr__controls .plyr__menu,
.plyr__controls [data-plyr="fullscreen"],
.plyr__controls [data-plyr="pip"] {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plyr__progress {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.plyr__tooltip {
  background-color: #449ed8 !important;
}
.plyr__tooltip:after {
  border-color: #449ed8 !important;
}
.floating-action {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
}
@media (min-width: 1025px) {
  .floating-action {
    right: 105px;
    bottom: 60px;
  }
}
.floating-action img {
  max-width: 70px;
}
@media (min-width: 1025px) {
  .floating-action img {
    max-width: unset;
  }
}
[class*="cb-"] p {
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 1025px) {
  [class*="cb-"] p {
    font-size: 18px;
    line-height: 28px;
  }
}
[class*="cb-"] [class*="__headings"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
[class*="cb-"] [class*="__headings"] figure {
  margin-bottom: 24px;
}
.block[class*="cb-"] {
  padding: 60px 0;
}
@media (min-width: 1025px) {
  .block[class*="cb-"] {
    padding: 200px 0;
  }
}
@media (min-width: 1025px) {
  .sticky-nav + .block[class*="cb-video"] {
    padding-top: 105px;
  }
}
@media (min-width: 1025px) {
  .block[class*="cb-"].cb-block-padding-reduced {
    padding-bottom: 120px;
  }
}
.block[class*="cb-"]:not(.cb-hero):not(.usp-block) + .block[class*="cb-"] {
  padding-top: 0;
}
.block[class*="cb-hero-countdown"] + .block[class*="cb-"] {
  padding: 60px 0 !important;
}
@media (min-width: 1025px) {
  .block[class*="cb-hero-countdown"] + .block[class*="cb-"] {
    padding: 145px 0 !important;
  }
}
.cb-main-heading {
  font-size: 26px;
  line-height: 30px;
}
.cb-main-heading em {
  color: #449ed8;
  font-style: normal;
}
.cb-main-heading sup {
  font-size: 8px;
  top: 1em;
  vertical-align: top;
}
@media (min-width: 480px) {
  .cb-main-heading br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .cb-main-heading {
    font-size: 50px;
    line-height: 50px;
  }
  .cb-main-heading sup {
    font-size: 14px;
    top: 1.3em;
    vertical-align: top;
  }
}
body.rail .cb-pre-heading,
body.rail .cb-slider__carousel--item figure figcaption p strong,
body.rail .cb-video__video figcaption p:last-child,
body.rail .stat__digits,
body.rail .sticky-nav__link-num {
  color: #81cacb;
}
body.rail .cb-main-heading em {
  background: none;
  color: #81cacb;
  -webkit-text-fill-color: revert;
}
body.rail .cb-video__video svg path,
body.rail .owl-next svg path,
body.rail .owl-prev svg path {
  fill: #81cacb;
}
body.rail .mediaTextCta {
  background-color: #81cacb;
}
body.rail .mediaTextCta .cb-pre-heading {
  color: #fff;
}
body.rail .sticky-nav__link {
  color: #47555a;
}
body.rail .sticky-nav__link.active {
  border-color: #81cacb;
}
body.rail .mediaTextCta.bg-grey {
  background-color: #3c4e59;
}
body.rail .button.white {
  color: #3c4e59;
}
.cb-main-heading.has-text-gradient em {
  background: -webkit-linear-gradient(left, #3c9fe2, #76dbd5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cb-pre-heading {
  font-size: 16px;
  line-height: 16px;
  color: #449ed8;
  margin-bottom: 1rem;
}
@media (min-width: 1025px) {
  .cb-pre-heading {
    font-size: 18px;
    line-height: 18px;
  }
}
.cb-bamboo-widget__embed {
  padding: 0 30px;
}
@media (min-width: 1025px) {
  .cb-bamboo-widget__embed {
    width: 930px;
    margin-left: auto;
    margin-right: auto;
    padding: unset;
  }
}
.cb-bamboo-widget .BambooHR-ATS-board h2 {
  display: none;
}
.cb-bamboo-widget li[class*="BambooHR-"]:before {
  content: unset;
}
.cb-bamboo-widget .BambooHR-ATS-Department-Header {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media (min-width: 641px) {
  .cb-bamboo-widget .BambooHR-ATS-Department-Header {
    text-align: initial;
  }
}
@media (min-width: 1025px) {
  .cb-bamboo-widget .BambooHR-ATS-Department-Header {
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 30px;
  }
}
.cb-bamboo-widget .BambooHR-ATS-Jobs-List {
  padding: 0;
}
.cb-bamboo-widget .BambooHR-ATS-board ul ul {
  border-bottom: none;
}
.cb-bamboo-widget .BambooHR-ATS-Jobs-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}
.cb-bamboo-widget .BambooHR-ATS-Jobs-Item:not(:last-child) {
  margin-bottom: 30px !important;
}
@media (min-width: 641px) {
  .cb-bamboo-widget .BambooHR-ATS-Jobs-Item {
    padding: 30px;
    text-align: initial;
  }
}
@media (min-width: 1025px) {
  .cb-bamboo-widget .BambooHR-ATS-Jobs-Item {
    padding: 40px 60px;
  }
}
@media (min-width: 1025px) {
  .cb-bamboo-widget .BambooHR-ATS-Jobs-Item a {
    font-size: 36px;
    line-height: 50px;
    text-underline-offset: 25%;
  }
}
.cb-bamboo-widget .BambooHR-ATS-Location {
  font-size: 16px;
  line-height: 16px;
  color: #3c4e59;
}
@media (min-width: 1025px) {
  .cb-bamboo-widget .BambooHR-ATS-Location {
    margin-top: 24px;
    font-size: 18px;
    line-height: 18px;
  }
}
.cb-bamboo-widget .BambooHR-ATS-Department-Item {
  padding: 0;
}
.cb-bamboo-widget
  .BambooHR-ATS-Department-Item
  + .BambooHR-ATS-Department-Item
  > .BambooHR-ATS-Department-Header {
  margin-top: 100px;
}
.cb-bamboo-widget #BambooHR-Footer {
  display: none;
}
.cb-centred-content {
  padding: 60px 0 !important;
  padding-top: 60px !important;
}
@media (min-width: 769px) {
  .cb-centred-content {
    padding: 100px 0 !important;
    padding-top: 100px !important;
  }
}
@media (min-width: 1441px) {
  .cb-centred-content {
    padding: 130px 0 !important;
    padding-top: 130px !important;
  }
}
.cb-centred-content--bg-grey {
  background-color: #f2f2f2;
}
.cb-centred-content__content {
  padding: 0 30px;
  text-align: center;
}
@media (min-width: 671px) {
  .cb-centred-content__content {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-centred-content__content {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-centred-content__main {
    margin-top: calc(54px - 1.2rem);
  }
}
@media (min-width: 1025px) {
  .cb-centred-content__main
    + .cb-centred-content__ctas
    > .cb-centred-content__download:first-child {
    margin-top: 90px;
  }
}
.cb-centred-content__ctas > :not(:last-child) {
  margin-bottom: 30px;
}
.cb-centred-content__ctas .button {
  margin-bottom: 0;
}
.cb-centred-content__download {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
@media (min-width: 1025px) {
  .cb-centred-content__download {
    padding: 60px;
    text-align: initial;
  }
}
.cb-centred-content__download h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 23px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #449ed8;
  text-decoration: underline;
  text-underline-offset: 25%;
}
@media (min-width: 641px) {
  .cb-centred-content__download h4 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1025px) {
  .cb-centred-content__download h4 {
    margin-bottom: 42px;
    font-size: 36px;
    line-height: 50px;
  }
}
.cb-centred-content__download p {
  margin-bottom: 0;
  color: #3c4e59;
}
@media (min-width: 641px) {
  .cb-centred-content__download p {
    text-align: initial;
  }
}
.block:not([class*="bg-grey"]) + .block.cb-centred-content--bg-grey {
  padding-top: 60px !important;
}
@media (min-width: 769px) {
  .block:not([class*="bg-grey"]) + .block.cb-centred-content--bg-grey {
    padding: 100px 0 !important;
    padding-top: 100px !important;
  }
}
@media (min-width: 1441px) {
  .block:not([class*="bg-grey"]) + .block.cb-centred-content--bg-grey {
    padding: 130px 0 !important;
    padding-top: 130px !important;
  }
}
.cb-columns__content {
  padding: 0 30px;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-columns__content {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-columns__main p:last-child {
  margin-bottom: 0;
}
.cb-columns__ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 100px;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cb-columns__columns {
  display: grid;
  padding: 0 30px;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  grid-gap: 15px;
}
@media (min-width: 1025px) {
  .cb-columns__columns {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}
.cb-columns__content + .cb-columns__columns {
  margin-top: 40px;
}
.cb-columns--5-column .cb-columns__columns {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1025px) {
  .cb-columns--5-column .cb-columns__columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
.cb-column {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 10px;
  overflow: hidden;
}
.cb-column__bg,
.cb-column__content {
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
}
.cb-column__bg {
  position: relative;
}
.cb-column__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.cb-column__bg:before,
.cb-column__bg img,
.cb-column__bg picture {
  width: 100%;
  height: 100%;
}
.cb-column__bg img {
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.cb-column__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  z-index: 1;
}
@media (min-width: 1025px) {
  .cb-column__content {
    padding: 30px;
  }
}
.cb-column__content p:last-child {
  margin-bottom: 0;
}
.cb-column__main p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-column__main p {
    font-size: 36px;
    line-height: 46px;
  }
}
.cb-column__main--quotes p:first-child:before,
.cb-column__main--quotes p:last-child:after {
  content: '"';
}
.cb-column__tag p {
  font-size: 12px;
  line-height: 10px;
}
@media (min-width: 1025px) {
  .cb-column__tag p {
    font-size: 18px;
    line-height: 18px;
  }
}
.cb-column__footer:only-child {
  margin-top: auto;
}
.cb-column__footer p {
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 1025px) {
  .cb-column__footer p {
    font-size: 18px;
    line-height: 28px;
  }
}
.cb-columns--mob-even .cb-column:nth-child(odd):last-child:not(:only-child) {
  display: none;
}
@media (min-width: 1025px) {
  .cb-columns--mob-even .cb-column:nth-child(odd):last-child:not(:only-child) {
    display: initial;
  }
}
.cb-hero {
  max-height: 90vh;
  padding: 0 !important;
  overflow: hidden;
}
.cb-hero--simple {
  max-height: 690px;
}
.cb-hero--simple h1,
.cb-hero--simple h2,
.cb-hero--simple h3,
.cb-hero--simple h4 {
  color: #fff;
}
@media (min-width: 1025px) {
  .cb-hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 50vh;
  }
}
.cb-hero__bg {
  position: relative;
  width: 100%;
  max-height: 100%;
}
@media (min-width: 1025px) {
  .cb-hero__bg {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
  }
}
.cb-hero__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
@media (min-width: 1025px) {
  .cb-hero__video {
    position: absolute;
    z-index: -1;
  }
}
.cb-hero__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cb-hero__video iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.cb-hero--simple {
  display: grid;
  grid-template-columns: 1fr;
}
.cb-hero--simple .cb-hero__bg {
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
}
.cb-hero--simple .cb-hero__bg:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.cb-hero__bg img,
.cb-hero__bg picture {
  width: 100%;
  height: 100%;
}
.cb-hero__bg img {
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 1025px) {
  .cb-hero__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem 0;
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
  }
}
.cb-hero--simple .cb-hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  grid-column: 1 / span 1;
  grid-row: 1 / span 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.cb-hero__content {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-hero__content {
    display: inline-block;
    margin-left: 135px;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 750px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 60px;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    z-index: 1;
    text-align: initial;
  }
}
.cb-hero--simple .cb-hero__content {
  grid-row: 1 / span 1;
  grid-column: 1 / span 1;
  z-index: 1;
  max-width: unset;
  background-color: transparent;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-hero--simple .cb-hero__content {
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-hero .cb-main-heading {
  font-size: 48px;
  line-height: 48px;
}
@media (min-width: 1025px) {
  .cb-hero .cb-main-heading {
    font-size: 70px;
    line-height: 70px;
  }
}
.cb-hero--simple .cb-main-heading {
  font-size: 36px;
  line-height: 40px;
}
@media (min-width: 1025px) {
  .cb-hero--simple .cb-main-heading {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (min-width: 1025px) {
  .cb-hero__ctas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.cb-hero__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 1025px) {
  .cb-hero__cta {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.cb-hero__anchor {
  display: none;
}
@media (min-width: 1025px) {
  .cb-hero__anchor {
    display: revert;
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
.cb-icon-grid__content {
  padding: 0 30px;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-icon-grid__content {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-icon-grid__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 671px) {
  .cb-icon-grid__grid {
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-icon-grid__grid {
    max-width: 73%;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
  }
}
.cb-icon-grid__content + .cb-icon-grid__grid {
  margin-top: 92px;
}
.cb-icon-grid__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-preferred-size: calc(50% - 7.5px);
  flex-basis: calc(50% - 7.5px);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-icon-grid__card {
    padding: 50px 30px 60px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(25% - 30px);
    flex: 1 0 calc(25% - 30px);
    max-width: calc(33% - 15px);
  }
  .cb-icon-grid__card:first-child:nth-last-child(2),
  .cb-icon-grid__card:nth-child(2):last-child {
    max-width: calc(25% - 30px);
  }
  .cb-icon-grid__card:nth-child(4):nth-last-child(2),
  .cb-icon-grid__card:nth-child(5):last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(50% - 30px);
    flex: 1 0 calc(50% - 30px);
  }
}
@media (min-width: 1025px) {
  .cb-icon-grid__grid--three-column .cb-icon-grid__card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 calc(33% - 30px);
    flex: 1 0 calc(33% - 30px);
  }
  .cb-icon-grid__grid--three-column
    .cb-icon-grid__card:first-child:first-child {
    max-width: unset;
  }
}
.cb-icon-grid__card figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cb-icon-grid__card figure img {
  width: 50%;
}
@media (min-width: 1025px) {
  .cb-icon-grid__card figure img {
    width: auto;
  }
}
.cb-icon-grid__card figcaption {
  font-size: 12px;
  line-height: 14px;
  margin-inline: auto;
  margin-top: auto;
  max-width: 268px;
  padding-top: 20px;
}
@media (min-width: 1025px) {
  .cb-icon-grid__card figcaption {
    font-size: 18px;
    line-height: 28px;
  }
}
.cb-quote {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 200px 0;
}
.cb-quote__content {
  padding: 0 30px;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-quote__content {
    padding: unset;
  }
}
.cb-quote__quote {
  position: relative;
}
.cb-quote__quote p {
  position: relative;
  padding-left: 13px;
  font-size: 22px;
  line-height: 32px;
  font-style: italic;
  text-align: initial;
}
@media (min-width: 1025px) {
  .cb-quote__quote p {
    padding-left: unset;
    font-size: 36px;
    line-height: 48px;
    text-align: center;
  }
}
.cb-quote__quote p:first-child {
  position: relative;
}
.cb-quote__quote p:first-child:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #449ed8;
}
@media (min-width: 1025px) {
  .cb-quote__quote p:first-child:before {
    width: 5px;
    height: 80%;
  }
}
.cb-quote__main {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}
.cb-text-image__wrapper {
  padding: 0 30px;
}
@media (min-width: 671px) {
  .cb-text-image__wrapper {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-text-image__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 73%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-text-image--reverse .cb-text-image__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media (min-width: 1025px) {
  .cb-text-image__content,
  .cb-text-image__image {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
.cb-text-image__image img,
.cb-text-image__image picture {
  width: 100%;
  height: 100%;
}
.cb-text-image__image img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.cb-text-image__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f2f2f2;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-text-image__content {
    padding: 60px;
    text-align: initial;
    border-radius: 0 10px 10px 0;
  }
}
@media (min-width: 1400px) {
  .cb-text-image__content {
    padding: 75px;
  }
}
@media (min-width: 1025px) {
  .cb-text-image--reverse .cb-text-image__content {
    border-radius: 10px 0 0 10px;
  }
}
.cb-text-image__cta a:last-child {
  margin-bottom: 0;
}
.cb-text-image + .cb-text-image {
  margin-top: -45px;
}
@media (min-width: 1025px) {
  .cb-text-image + .cb-text-image {
    margin-top: -170px;
  }
}
.cb-video__content {
  width: 100%;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 92px;
  text-align: center;
}
@media (min-width: 671px) {
  .cb-video__content {
    max-width: 535px;
  }
}
@media (min-width: 1025px) {
  .cb-video__content {
    padding: unset;
    max-width: 930px;
  }
}
.cb-video__video {
  position: relative;
  width: 100%;
  padding: 0 30px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 671px) {
  .cb-video__video {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-video__video {
    padding: 0;
    max-width: 73%;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-video__video figcaption {
  position: absolute;
  bottom: 20px;
  left: 50px;
  z-index: 1;
}
@media (min-width: 1025px) {
  .cb-video__video figcaption {
    bottom: 50px;
    left: 60px;
  }
}
.cb-video__video figcaption p {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
}
.cb-video__video figcaption p:last-child {
  color: #449ed8;
}
@media (min-width: 1025px) {
  .cb-video__video figcaption p {
    font-size: 22px;
    line-height: 32px;
  }
}
.cb-video__play {
  position: absolute;
  width: 25%;
  max-width: 45px;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -webkit-box-shadow: 0 0 30px 0 #000;
  box-shadow: 0 0 30px 0 #000;
  border-radius: 100%;
  z-index: 1;
}
@media (min-width: 769px) {
  .cb-video__play {
    max-width: 60px;
  }
}
@media (min-width: 1025px) {
  .cb-video__play {
    width: unset;
    max-width: 90px;
  }
}
@media (min-width: 1441px) {
  .cb-video__play {
    max-width: 120px;
  }
}
a:focus > .cb-video__play,
a:hover > .cb-video__play {
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}
.cb-video__video img {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.cb-video__video a:focus img,
.cb-video__video a:hover img {
  -webkit-transform: scale(102%);
  transform: scale(102%);
}
.cb-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.cb-video__embed iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}
.video-caption-gradient {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(transparent)
  );
  background: linear-gradient(0deg, #000, transparent);
  bottom: 0;
  height: 200px;
  left: 0;
  position: absolute;
  width: 100%;
}
.cb-hero-countdown {
  padding: 0 !important;
  overflow: hidden;
  position: relative;
}
.cb-hero-countdown__bg {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 0;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__bg {
    position: absolute;
    top: 0;
    left: 0;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
  }
}
.cb-hero-countdown__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__video {
    position: absolute;
    z-index: -1;
  }
}
.cb-hero-countdown__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__video iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.cb-hero-countdown__bg img,
.cb-hero-countdown__bg picture {
  width: 100%;
  height: 100%;
}
.cb-hero-countdown__bg img {
  -o-object-fit: cover;
  object-fit: cover;
}
.cb-hero-countdown__wrapper {
  padding: 0;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 150px 0 60px;
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
  }
}
@media (max-width: 1024px) {
  .cb-hero-countdown__wrapper .grid-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .cb-hero-countdown__wrapper .cell {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cb-hero-countdown__content {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
@media (min-width: 671px) {
  .cb-hero-countdown__content {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-hero-countdown__content {
    display: inline-block;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 690px;
    padding: 60px;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    z-index: 1;
    text-align: initial;
  }
}
.cb-hero-countdown .cb-main-heading {
  font-size: 48px;
  line-height: 48px;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .cb-main-heading {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (min-width: 1025px) {
  .cb-hero-countdown__ctas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.cb-hero-countdown__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__cta {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.cb-hero-countdown__anchor {
  display: none;
}
@media (min-width: 1025px) {
  .cb-hero-countdown__anchor {
    display: revert;
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }
}
.cb-hero-countdown .countdown-bar {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar {
    margin-top: 60px;
  }
}
.cb-hero-countdown .countdown-bar svg {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar svg {
    right: 60px;
  }
}
.cb-hero-countdown .countdown-bar__content {
  background: #449ed8;
  width: 100%;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  gap: 15px;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content {
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 60px;
    border-radius: 7px;
    gap: 30px;
  }
}
.cb-hero-countdown .countdown-bar__content h2 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content h2 {
    font-size: 28px;
    line-height: 42px;
  }
}
.cb-hero-countdown .countdown-bar__content .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
}
.cb-hero-countdown .countdown-bar__content .date__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  text-align: center;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content .date__item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.cb-hero-countdown .countdown-bar__content .date__item span:first-child {
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content .date__item span:first-child {
    font-size: 60px;
    line-height: 60px;
  }
}
.cb-hero-countdown .countdown-bar__content .date__item span:last-child {
  font-size: 14px;
  line-height: 22px;
  font-weight: 350;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content .date__item span:last-child {
    font-size: 20px;
    line-height: 22px;
  }
}
.cb-hero-countdown .countdown-bar__content .date .spacer {
  font-size: 40px;
  margin-top: -35px;
}
@media (min-width: 1025px) {
  .cb-hero-countdown .countdown-bar__content .date .spacer {
    font-size: 50px;
    margin-top: -30px;
  }
}
.cb-team__container {
  padding: 0 30px;
}
@media (min-width: 671px) {
  .cb-team__container {
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-team__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 73%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-team__heading {
  text-align: center;
  max-width: 930px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .cb-team__heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 1441px) {
  .cb-team__heading {
    margin-bottom: 92px;
  }
}
.cb-team__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 671px) {
  .cb-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1025px) {
  .cb-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.cb-team__grid--item figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.cb-team__grid--item figure:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 125px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    to(#000)
  );
  background: linear-gradient(180deg, transparent, #000);
  z-index: 1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cb-team__grid--item figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cb-team__grid--item figure img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.cb-team__grid--item figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 2;
}
.cb-team__grid--item figure figcaption p {
  padding: 0;
  margin: 0;
  color: #fff;
}
.cb-team__grid--item figure figcaption p:last-child {
  color: #449ed8;
}
.cb-team__grid--item figure .play {
  position: absolute;
  width: 45px;
  height: 45px;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
@media (min-width: 1024px) {
  .cb-team__grid--item figure .play {
    width: 60px;
    height: 60px;
    top: auto;
    left: auto;
    right: 15px;
    bottom: 15px;
    -webkit-transform: none;
    transform: none;
  }
}
.cb-slider {
  background-color: #f2f2f2;
  padding: 60px 0 !important;
}
@media (min-width: 1025px) {
  .cb-slider {
    padding: 200px 0 !important;
  }
}
.cb-slider--bg-white {
  background-color: #fff;
}
.cb-slider__heading {
  text-align: center;
  max-width: 930px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .cb-slider__heading {
    margin-bottom: 92px;
  }
}
.cb-slider__carousel {
  padding: 0 30px;
}
@media (min-width: 671px) {
  .cb-slider__carousel {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-slider__carousel {
    padding: 0;
    max-width: 100%;
  }
}
.cb-slider__carousel--item figure {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.cb-slider__carousel--item figure:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    to(#000)
  );
  background: linear-gradient(180deg, transparent, #000);
  z-index: 1;
}
.cb-slider__carousel--item figure figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}
@media (min-width: 1025px) {
  .cb-slider__carousel--item figure figcaption {
    bottom: 50px;
    left: 60px;
  }
}
.cb-slider__carousel--item figure figcaption p {
  padding: 0;
  margin: 0;
  color: #fff;
}
@media (max-width: 1024px) {
  .cb-slider__carousel--item figure figcaption p {
    font-size: 12px;
    line-height: 22px;
  }
}
.cb-slider__carousel--item figure figcaption p strong {
  color: #449ed8;
}
.cb-slider__carousel--item figure figcaption p:nth-child(2) {
  color: #fff;
  font-weight: 400;
}
.cb-slider__carousel .owl-dots {
  margin-top: 20px;
}
.cb-slider__carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ced1d3;
}
.cb-slider__carousel .owl-dots .owl-dot.active {
  background: #449ed8;
}
.cb-slider__carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 60px;
  margin-top: -70px;
}
.cb-slider__carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 18%;
  background: none;
  width: 60px;
  height: 60px;
  border: none !important;
}
.cb-slider__carousel .owl-nav button.owl-next {
  position: absolute;
  right: 18%;
  background: none;
  width: 60px;
  height: 60px;
  border: none !important;
}
.cards-grid .owl-dots {
  margin-top: 20px;
}
.cards-grid .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ced1d3;
}
.cards-grid .owl-dots .owl-dot.active {
  background: #449ed8;
}
.cb-cards__wrapper {
  padding: 0 30px;
}
@media (min-width: 671px) {
  .cb-cards__wrapper {
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-cards__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 73%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-cards__heading {
  text-align: center;
  max-width: 930px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 1025px) {
  .cb-cards__heading {
    margin-bottom: 40px;
  }
}
@media (min-width: 1441px) {
  .cb-cards__heading {
    margin-bottom: 92px;
  }
}
.cb-cards__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 671px) {
  .cb-cards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (min-width: 1025px) {
  .cb-cards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
.cb-cards__grid--item figure {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.cb-cards__grid--item figure:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 125px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(transparent),
    to(#000)
  );
  background: linear-gradient(180deg, transparent, #000);
  z-index: 1;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cb-cards__grid--item figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cb-cards__grid--item figure img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.cb-cards__grid--item figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  padding: 10px;
  z-index: 2;
}
@media (min-width: 1025px) {
  .cb-cards__grid--item figure figcaption {
    padding: 30px;
    width: calc(100% - 40px);
  }
}
.cb-cards__grid--item figure figcaption p {
  padding: 0;
  margin: 0;
  color: #fff;
}
.cb-cards__grid--item figure figcaption p:first-child {
  font-weight: 800;
}
.cb-cards__grid--item figure svg {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  z-index: 2;
}
@media (min-width: 1025px) {
  .cb-cards__grid--item figure svg {
    right: 30px;
    bottom: 30px;
    width: 35px;
    height: 35px;
  }
}
.cb-cards__cta {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 30px;
  margin-top: 30px;
}
@media (min-width: 1025px) {
  .cb-cards__cta {
    margin-top: 40px;
  }
}
.cb-icons {
  background: #3c4e59;
  color: #fff;
  padding: 60px 0 !important;
}
@media (min-width: 1025px) {
  .cb-icons {
    padding: 200px 0 !important;
  }
}
.cb-icons h2 {
  padding-bottom: 30px;
  margin: 0;
  color: #fff;
}
@media (min-width: 1025px) {
  .cb-icons h2 {
    padding-bottom: 100px;
  }
}
.cb-icons h4 {
  color: #fff;
}
.cb-icons img {
  width: 60px;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .cb-icons img {
    width: 67.5px;
  }
}
@media (min-width: 1025px) {
  .cb-icons img {
    width: 90px;
  }
}
.cb-latest-news {
  padding: 60px 0 !important;
}
@media (min-width: 1025px) {
  .cb-latest-news {
    padding: 200px 0 !important;
  }
}
.cb-latest-news__wrapper {
  padding: 0 30px;
}
@media (min-width: 671px) {
  .cb-latest-news__wrapper {
    max-width: 535px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1025px) {
  .cb-latest-news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 73%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
}
.cb-latest-news__heading {
  text-align: center;
  max-width: 930px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 92px;
}
.cb-latest-news .latest-news-item {
  display: table;
}
@media (min-width: 960px) {
  .cb-latest-news .latest-news-item {
    min-height: 100%;
  }
}
.cb-latest-news .latest-news-item .card {
  display: table-cell;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 60%;
  border-radius: 7px 0 0 7px;
  border-right: 0;
  background: #f2f2f2;
  padding: 30px;
}
@media (min-width: 1025px) {
  .cb-latest-news .latest-news-item .card {
    padding: 120px 60px;
  }
}
.cb-latest-news .latest-news-item .card h3 {
  color: #171d1a;
}
@media (min-width: 1025px) {
  .cb-latest-news .latest-news-item .card h3 {
    font-size: 34px;
    line-height: 40px;
  }
}
.cb-latest-news .latest-news-item .card p {
  color: #3c4e59;
}
.cb-latest-news .latest-news-item .card a {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.cb-latest-news .latest-news-item .left-image {
  width: 40%;
  display: table-cell;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 0 7px 7px 0;
}
.cb-latest-news .owl-nav button {
  border-color: #449ed8 !important;
}
.cb-latest-news .owl-dots {
  padding: 30px 0 0;
}
.cb-latest-news .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ced1d3;
}
.cb-latest-news .owl-dots .owl-dot.active {
  background: #449ed8;
}
.cb-latest-news .owl-item {
  overflow: visible;
}
@media screen and (max-width: 56.25em) {
  .cb-latest-news .latest-news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cb-latest-news .latest-news-item .card {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: block;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%;
    border-radius: 0 0 7px 7px;
    border-right: 1px solid #e6e6e6;
    border-top: 0;
    margin: 0;
  }
  .cb-latest-news .latest-news-item .left-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    height: 350px;
    display: block;
    border-radius: 7px 7px 0 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .cb-latest-news .latest-news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cb-latest-news .latest-news-item .card .lead {
    font-size: 16px;
  }
  .cb-latest-news .latest-news-item .left-image {
    height: 187px;
  }
  .cb-latest-news .latest-news-item .button {
    width: 100%;
  }
}
.mediaOffsetText h2 {
  margin-bottom: 20px;
}
.mediaOffsetText h2 em {
  color: #449ed8;
}
.mediaOffsetText .cb-video__video {
  max-width: none;
  padding: 30px 0 0;
}
.cb-slider.cb-slider--bg-white + .mediaOffsetText,
.mediaOffsetText + .cb-text-image,
.mediaOffsetText + .mediaOffsetText {
  padding-top: 0;
}
.enquiry-block:has(+ .mediaOffsetText),
.mediaOffsetText:has(+ .stats) {
  padding-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .mediaOffsetText h2 {
    margin-bottom: 40px;
  }
  .mediaOffsetText .cb-video__video {
    padding-top: 100px;
  }
  .mediaOffsetText .offset-text {
    width: 50%;
  }
}
.mediaTextCta {
  background-color: #449ed8;
  color: #fff;
}
.mediaTextCta .cb-pre-heading,
.mediaTextCta h1,
.mediaTextCta h2 {
  color: #fff;
}
.mediaTextCta figure {
  margin-bottom: 30px;
  margin-inline: auto;
  max-width: 80%;
}
.button-container {
  padding-top: 14px;
}
@media print, screen and (min-width: 40em) {
  .mediaTextCta figure {
    margin-bottom: 0;
    max-width: none;
  }
  .media-text-grid {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .media-text-grid__col:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 57.446808510638306%;
  }
  .media-text-grid__col:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 40.42553191489361%;
  }
}
.mediaTextCta.bg-grey {
  background-color: #3c4e59;
}
.stats h2 {
  margin-bottom: 12px;
}
.stats h2 em {
  color: #449ed8;
}
.stats p {
  color: #191c1a;
  font-family: Avenir LT W01_65 Medium1475532;
  line-height: 1.5;
}
.stats figure {
  margin-bottom: 30px;
  margin-inline: auto;
  max-width: 500px;
}
@media print, screen and (min-width: 64em) {
  .stats p {
    font-size: 28px;
  }
  .stats figure {
    margin-bottom: 0;
    max-width: none;
  }
  .stats .cb-main-heading {
    position: relative;
    width: 130%;
  }
}
.grid-50 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.grid-50 > div:first-child {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.grid-50 > div:nth-child(2) {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media print, screen and (min-width: 64em) {
  .grid-50 {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 30px;
}
.stat__digits {
  color: #449ed8;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__text {
  font-size: 16px;
  line-height: 1.6;
}
@media print, screen and (min-width: 40em) {
  .stat__digits {
    font-size: 40px;
    margin-bottom: 18px;
  }
  .stat__text {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 64em) {
  .stats-grid {
    padding-top: 100px;
  }
  .stat__digits {
    font-size: 70px;
  }
}
.offsetTextTwoCtaCards {
  background-color: #f2f2f2;
}
.text-button-header p {
  color: #191c1a;
  font-family: Avenir LT W01_65 Medium1475532;
  line-height: 1.4;
}
@media print, screen and (min-width: 40em) {
  .text-button-header {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .text-button-header p {
    font-size: 22px;
    padding-top: 6px;
  }
}
@media print, screen and (min-width: 64em) {
  .text-button-header p {
    font-size: 28px;
  }
}
.img-cta-cards {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  padding-top: 40px;
}
.img-cta-card {
  aspect-ratio: 1/1;
  background-color: #e0e0e0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  position: relative;
}
.img-cta-card .button {
  -ms-flex-item-align: start;
  align-self: flex-start;
  background: none;
  border-color: #000;
  color: #000;
  margin-top: auto;
}
.img-cta-card .button:hover {
  background-color: #000;
  color: #fff;
}
.img-cta-card > :not(.card-overlay) {
  position: relative;
  z-index: 1;
}
.img-cta-card__heading,
.img-cta-card__preheading {
  color: #000;
  font-family: Avenir LT W01_65 Medium1475532;
}
.img-cta-card__preheading {
  display: block;
  margin-bottom: 12px;
}
.img-cta-card--light-text .img-cta-card__heading,
.img-cta-card--light-text .img-cta-card__preheading {
  color: #fff;
}
.img-cta-card--light-text .button {
  border-color: #fff;
  color: #fff;
}
.img-cta-card--light-text .button:hover {
  background-color: #fff;
  color: #000;
}
.img-cta-card--light-text .card-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .img-cta-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .img-cta-card__preheading {
    margin-bottom: 24px;
  }
}
@media print, screen and (min-width: 64em) {
  .img-cta-cards {
    padding-top: 120px;
  }
  .img-cta-card {
    padding: 60px;
  }
  .img-cta-card__heading {
    font-size: 50px;
  }
}
.threeColumnCards {
  background-position: 50%;
  background-size: cover;
}
.threeColumnCards header {
  margin-left: 0;
  max-width: 756px;
}
.threeColumnCards header h2,
.threeColumnCards header p {
  color: #fff;
}
.threeColumnCards .cards-grid {
  padding-top: 40px;
}
.cards-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
.card {
  padding: 30px;
}
.card h3 {
  font-family: Avenir LT W01_65 Medium1475532;
}
.card .button {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .threeColumnCards .cards-grid {
    padding-top: 80px;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .card .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .card .button {
    margin-left: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .threeColumnCards .cards-grid {
    padding-top: 270px;
  }
}
.image-header .lead.text-white,
.image-header h1.text-white,
.text-white {
  color: #fff;
}
.image-header .lead.text-grey,
.image-header h1.text-grey,
.text-grey {
  color: #ddd;
}
.image-header .lead.text-black,
.image-header h1.text-black,
.text-black {
  color: #171d1a;
}
