@charset "UTF-8";
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0);
}

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0);
}

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%);
}

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%);
}

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%);
}

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%);
}

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
  opacity: 1;
}

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
  opacity: 0;
}

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1;
}

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0;
}

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0;
}

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1;
}

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0;
}

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0;
}

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0;
}

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1;
}

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0;
}

.slow {
  transition-duration: 750ms !important;
}

.fast {
  transition-duration: 250ms !important;
}

.linear {
  transition-timing-function: linear !important;
}

.ease {
  transition-timing-function: ease !important;
}

.ease-in {
  transition-timing-function: ease-in !important;
}

.ease-out {
  transition-timing-function: ease-out !important;
}

.ease-in-out {
  transition-timing-function: ease-in-out !important;
}

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  transition-delay: 300ms !important;
}

.long-delay {
  transition-delay: 700ms !important;
}

.shake {
  animation-name: shake-7;
}
@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%);
  }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%);
  }
}

.spin-cw {
  animation-name: spin-cw-1turn;
}
@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn);
  }
  100% {
    transform: rotate(0);
  }
}

.spin-ccw {
  animation-name: spin-ccw-1turn;
}
@keyframes spin-ccw-1turn {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1turn);
  }
}

.wiggle {
  animation-name: wiggle-7deg;
}
@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg);
  }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg);
  }
  0%, 30%, 70%, 100% {
    transform: rotate(0);
  }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms;
}

.infinite {
  animation-iteration-count: infinite;
}

.slow {
  animation-duration: 750ms !important;
}

.fast {
  animation-duration: 250ms !important;
}

.linear {
  animation-timing-function: linear !important;
}

.ease {
  animation-timing-function: ease !important;
}

.ease-in {
  animation-timing-function: ease-in !important;
}

.ease-out {
  animation-timing-function: ease-out !important;
}

.ease-in-out {
  animation-timing-function: ease-in-out !important;
}

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
  animation-delay: 300ms !important;
}

.long-delay {
  animation-delay: 700ms !important;
}

/* Slider */
/* .slick-list {
    .slick-loading & {
        background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
    }
} */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "icons";
  content: "\e901";
  font-size: 0.95rem;
  line-height: 1;
  display: block;
  color: #004b8d;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

/* Accessibility: hide screen reader texts (and prefer "top" for RTL languages).
Reference: http://blog.rrwd.nl/2015/04/04/the-screen-reader-text-class-why-and-how/ */
.mejs__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.mejs__container {
  background: #000;
  box-sizing: border-box;
  font-family: "Helvetica", Arial, serif;
  position: relative;
  text-align: left;
  text-indent: 0;
  vertical-align: top;
  max-height: 42.7631578947rem;
}
@media print, screen and (max-width: 39.99875em) {
  .mejs__container {
    min-height: 25rem;
  }
}

.mejs__container * {
  box-sizing: border-box;
}

/* Hide native play button and control bar from iOS to favor plugin button */
.mejs__container video::-webkit-media-controls,
.mejs__container video::-webkit-media-controls-panel,
.mejs__container video::-webkit-media-controls-panel-container,
.mejs__container video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.mejs__fill-container,
.mejs__fill-container .mejs__container {
  height: 100%;
  width: 100%;
}

.mejs__fill-container {
  background: transparent;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.mejs__container:focus {
  /* outline-offset: 0.125rem;
  outline-style: solid;
  outline-width: 0.125rem; */
}

.mejs__iframe-overlay {
  height: 100%;
  position: absolute;
  width: 100%;
}

.mejs__embed,
.mejs__embed body {
  background: #000;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.mejs__fullscreen {
  overflow: hidden !important;
}

.mejs__container-fullscreen {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

/* Start: LAYERS */
.mejs__background {
  left: 0;
  position: absolute;
  top: 0;
}

.mejs__mediaelement {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.mejs__mediaelement > div {
  height: 100%;
}
.mejs__mediaelement > div iframe {
  height: 100% !important;
}

.mejs__poster {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

:root .mejs__poster-img {
  display: none;
}

.mejs__poster-img {
  border: 0;
  padding: 0;
}

.mejs__overlay {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
}

.mejs__layer {
  z-index: 1;
}

.mejs__overlay-play {
  cursor: pointer;
}

.mejs__overlay-button {
  background: transparent;
  border: 0;
}

.mejs__overlay:hover .mejs__overlay-button svg {
  opacity: 1;
}

.mejs__overlay-button svg {
  opacity: 0.75;
}

.mejs__overlay-button:focus svg {
  opacity: 1;
}

.mejs__overlay-button,
.mejs__overlay-button svg {
  height: 5rem;
  width: 5rem;
}

.mejs__overlay-loading,
.mejs__overlay-loading svg {
  height: 5rem;
  width: 5rem;
}

.mejs__overlay-loading-bg-img {
  -webkit-animation: mejs__loading-spinner 1s linear infinite;
  animation: mejs__loading-spinner 1s linear infinite;
  display: block;
  height: 5rem;
  width: 5rem;
  z-index: 1;
}

@-webkit-keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes mejs__loading-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* End: LAYERS */
/* Start: CONTROL BAR */
.mejs__controls {
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  left: 0;
  list-style-type: none;
  margin: 0;
  padding: 0 0.625rem;
  position: absolute;
  width: 100%;
  z-index: 3;
}

.mejs__controls:not([style*="display: none"]) {
  background: rgba(255, 0, 0, 0.7);
  background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
}

.mejs__button,
.mejs__time,
.mejs__time-rail {
  font-size: 0.625rem;
  height: 2.5rem;
  line-height: 0.625rem;
  margin: 0;
  width: 2rem;
}

.mejs__button > button {
  background-color: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 1.125rem;
  line-height: 0;
  margin: 0.625rem 0.375rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-decoration: none;
  width: 1.125rem;
}

.mejs__button svg {
  fill: currentColor;
  height: 1.125rem;
  width: 1.125rem;
}

/* :focus for accessibility */
.mejs__button > button:focus {
  outline: dotted 0.125rem #fff;
}

.mejs__container-keyboard-inactive a,
.mejs__container-keyboard-inactive a:focus,
.mejs__container-keyboard-inactive button,
.mejs__container-keyboard-inactive button:focus,
.mejs__container-keyboard-inactive [role=slider],
.mejs__container-keyboard-inactive [role=slider]:focus {
  outline: 0;
}

/* End: CONTROL BAR */
/* Start: Play (Play / Pause / Replay) */
.mejs__playpause-button svg {
  display: none;
}

.mejs__play svg.mejs__icon-play {
  display: block;
}

.mejs__pause svg.mejs__icon-pause {
  display: block;
}

.mejs__replay svg.mejs__icon-replay {
  display: block;
}

/* End: Play (Play / Pause / Replay) */
/* Start: Fullscreen (Fullscreen / Unfullscreen) */
.mejs__fullscreen-button svg.mejs__icon-unfullscreen {
  display: none;
}

.mejs__fullscreen svg.mejs__icon-fullscreen {
  display: block;
}

.mejs__fullscreen svg.mejs__icon-unfullscreen {
  display: none;
}

.mejs__unfullscreen svg.mejs__icon-unfullscreen {
  display: block;
}

.mejs__unfullscreen svg.mejs__icon-fullscreen {
  display: none;
}

/* End: Fullscreen (Fullscreen / Unfullscreen) */
/* Start: Time (Current / Duration) */
.mejs__time {
  box-sizing: content-box;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  height: 1.5rem;
  overflow: hidden;
  padding: 1rem 0.375rem 0;
  text-align: center;
  width: auto;
}

/* End: Time (Current / Duration) */
/* Start: Progress Bar */
.mejs__time-rail {
  direction: ltr;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 2.5rem;
  margin: 0 0.625rem;
  padding-top: 0.625rem;
  position: relative;
}

.mejs__time-total,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-current,
.mejs__time-float,
.mejs__time-hovered,
.mejs__time-float-current,
.mejs__time-float-corner,
.mejs__time-marker {
  border-radius: 0.125rem;
  cursor: pointer;
  display: block;
  height: 0.625rem;
  position: absolute;
}

.mejs__time-total {
  background: rgba(255, 255, 255, 0.3);
  margin: 0.3125rem 0 0;
  width: 100%;
}

.mejs__time-buffering {
  -webkit-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
  background-size: 0.9375rem 0.9375rem;
  width: 100%;
}

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1.875rem 0;
  }
}
@keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1.875rem 0;
  }
}
.mejs__time-loaded {
  background: rgba(255, 255, 255, 0.3);
}

.mejs__time-current,
.mejs__time-handle-content {
  background: rgba(255, 255, 255, 0.9);
}

.mejs__time-hovered {
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.mejs__time-hovered.negative {
  background: rgba(0, 0, 0, 0.2);
}

.mejs__time-current,
.mejs__time-buffering,
.mejs__time-loaded,
.mejs__time-hovered {
  left: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: 0.15s ease-in all;
  transition: 0.15s ease-in all;
  width: 100%;
}

.mejs__time-buffering {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.mejs__time-hovered {
  -webkit-transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
  transition: height 0.1s cubic-bezier(0.44, 0, 1, 1);
}

.mejs__time-hovered.no-hover {
  -webkit-transform: scaleX(0) !important;
  -ms-transform: scaleX(0) !important;
  transform: scaleX(0) !important;
}

.mejs__time-handle,
.mejs__time-handle-content {
  border: 0.25rem solid transparent;
  cursor: pointer;
  left: 0;
  position: absolute;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 11;
}

.mejs__time-handle-content {
  border: 0.25rem solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  height: 0.625rem;
  left: -0.4375rem;
  top: -0.25rem;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  width: 0.625rem;
}

.mejs__time-rail:hover .mejs__time-handle-content,
.mejs__time-rail .mejs__time-handle-content:focus,
.mejs__time-rail .mejs__time-handle-content:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mejs__time-float {
  background: #eee;
  border: solid 1px #333;
  bottom: 100%;
  color: #111;
  display: none;
  height: 1.0625rem;
  margin-bottom: 0.5625rem;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2.25rem;
}

.mejs__time-float-current {
  display: block;
  left: 0;
  margin: 0.125rem;
  text-align: center;
  width: 1.875rem;
}

.mejs__time-float-corner {
  border: solid 0.3125rem #eee;
  border-color: #eee transparent transparent;
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  line-height: 0;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
}

.mejs__long-video .mejs__time-float {
  margin-left: -1.4375rem;
  width: 4rem;
}

.mejs__long-video .mejs__time-float-current {
  width: 3.75rem;
}

.mejs__broadcast {
  color: #fff;
  height: 0.625rem;
  position: absolute;
  top: 0.9375rem;
  width: 100%;
}

/* End: Progress Bar */
/* Start: Mute/Volume */
.mejs__volume-button {
  position: relative;
}

.mejs__volume-button > .mejs__volume-slider {
  -webkit-backface-visibility: hidden;
  background: rgba(50, 50, 50, 0.7);
  border-radius: 0;
  bottom: 100%;
  display: none;
  height: 7.1875rem;
  left: 50%;
  margin: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1.5625rem;
  z-index: 1;
}

.mejs__volume-button:hover {
  border-radius: 0 0 0.25rem 0.25rem;
}

.mejs__volume-total {
  background: rgba(255, 255, 255, 0.5);
  border: 0.06rem solid #fff;
  height: 6.25rem;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 0.5rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0.125rem;
}

.mejs__volume-current {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}

.mejs__volume-handle {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  border-radius: 1px;
  cursor: ns-resize;
  height: 0.375rem;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1rem;
}

.mejs__horizontal-volume-slider {
  display: block;
  height: 2.25rem;
  position: relative;
  vertical-align: middle;
  width: 3.5rem;
}

.mejs__horizontal-volume-total {
  background: rgba(50, 50, 50, 0.8);
  border: 0.06rem solid #fff;
  border-radius: 0.125rem;
  font-size: 1px;
  height: 0.5rem;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 1rem;
  width: 3.125rem;
}

.mejs__horizontal-volume-current {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.125rem;
  border-right: 0.06rem solid #fff;
  font-size: 1px;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.mejs__horizontal-volume-handle {
  display: none;
}

.mejs__mute svg,
.mejs__unmute svg {
  stroke: currentColor;
}

.mejs__volume-button svg {
  display: none;
}

.mejs__mute .mejs__icon-mute {
  display: block;
}

.mejs__unmute .mejs__icon-unmute {
  display: block;
}

/* End: Mute/Volume */
/* Start: Track (Captions and Chapters) */
.mejs__captions-button,
.mejs__chapters-button {
  position: relative;
}

.mejs__chapters-button svg,
.mejs__captions-button svg {
  padding-top: 0.125rem;
}

.mejs__captions-button > .mejs__captions-selector,
.mejs__chapters-button > .mejs__chapters-selector {
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  border-radius: 0;
  bottom: 100%;
  margin-right: -2.6875rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 50%;
  visibility: visible;
  width: 5.375rem;
}

.mejs__chapters-button > .mejs__chapters-selector {
  margin-right: -3.4375rem;
  width: 6.875rem;
}

.mejs__captions-selector-list,
.mejs__chapters-selector-list {
  list-style-type: none !important;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.mejs__captions-selector-list-item,
.mejs__chapters-selector-list-item {
  color: #fff;
  cursor: pointer;
  display: block;
  list-style-type: none !important;
  margin: 0 0 0.375rem;
  overflow: hidden;
  padding: 0;
}

.mejs__captions-selector-list-item:hover,
.mejs__chapters-selector-list-item:hover {
  background-color: rgb(200, 200, 200) !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

.mejs__captions-selector-input,
.mejs__chapters-selector-input {
  clear: both;
  float: left;
  left: -62.5rem;
  margin: 0.1875rem 0.1875rem 0 0.3125rem;
  position: absolute;
}

.mejs__captions-selector-label,
.mejs__chapters-selector-label {
  cursor: pointer;
  float: left;
  font-size: 0.625rem;
  line-height: 0.9375rem;
  padding: 0.25rem 0.625rem 0;
  width: 100%;
}

.mejs__captions-selector-list-item:hover .mejs__captions-selector-label,
.mejs__chapters-selector-list-item:hover .mejs__chapters-selector-label {
  text-decoration: underline;
}

.mejs__captions-selected,
.mejs__chapters-selected {
  color: rgb(33, 248, 248);
  font-weight: bold;
}

.mejs__captions-translations {
  font-size: 0.625rem;
  margin: 0 0 0.3125rem;
}

.mejs__captions-layer {
  bottom: 0;
  color: #fff;
  font-size: 1rem;
  left: 0;
  line-height: 1.25rem;
  position: absolute;
  text-align: center;
}

.mejs__captions-layer a {
  color: #fff;
  text-decoration: underline;
}

.mejs__captions-layer[lang=ar] {
  font-size: 1.25rem;
  font-weight: normal;
}

.mejs__captions-position {
  bottom: 0.9375rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.mejs__captions-position-hover {
  bottom: 2.1875rem;
}

.mejs__captions-text,
.mejs__captions-text * {
  background: rgba(20, 20, 20, 0.5);
  box-shadow: 0.3125rem 0 0 rgba(20, 20, 20, 0.5), -0.3125rem 0 0 rgba(20, 20, 20, 0.5);
  padding: 0;
  white-space: pre-wrap;
}

.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container {
  display: none;
}

/* End: Track (Captions and Chapters) */
/* Start: Error */
.mejs__overlay-error {
  position: relative;
}

.mejs__overlay-error > img {
  left: 0;
  max-width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.mejs__cannotplay,
.mejs__cannotplay a {
  color: #fff;
  font-size: 0.8em;
}

.mejs__cannotplay {
  position: relative;
}

.mejs__cannotplay p,
.mejs__cannotplay a {
  display: inline-block;
  padding: 0 0.9375rem;
  width: 100%;
}

/* End: Error */
/* PREFIXE FOR BROWSERS */
/* EASE-IN EFFECTS */
@-webkit-keyframes up {
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes up {
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
.icon-play,
.icon-arrow-right2,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-close,
.icon-contact,
.icon-download,
.icon-facebook,
.icon-linkedin,
.icon-us-logo,
.icon-youtube,
.icon-home {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play::before {
  content: "\e90a";
}

.icon-arrow-right2::before {
  content: "\e909";
}

.icon-arrow-down:before {
  content: "\e901";
}

.icon-arrow-left:before {
  content: "\e902";
}

.icon-arrow-right:before {
  content: "\e903";
}

.icon-arrow-up:before {
  content: "\e904";
}

.icon-close:before {
  content: "\e905";
}

.icon-contact:before {
  content: "\e906";
}

.icon-download:before {
  content: "\e907";
}

.icon-facebook:before {
  content: "\e908";
}

.icon-linkedin:before {
  content: "\e90b";
}

.icon-us-logo:before {
  content: "\e90c";
}

.icon-youtube:before {
  content: "\e90d";
}

.icon-home:before {
  content: "\e900";
}

@-webkit-keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes scale-down-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@-webkit-keyframes shadow-drop-center {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
@keyframes shadow-drop-center {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.35);
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  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;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&xxxlarge=100em";
}

html {
  box-sizing: border-box;
  font-size: 95%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #FFFFFF;
  font-family: "RobotoRegular", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  -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: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.1710526316rem;
  margin: 0 0 1.0526315789rem;
  padding: 0.5263157895rem;
  border: 1px solid #00a4e4;
  border-radius: 0;
  background-color: #FFFFFF;
  box-shadow: none;
  font-family: "RobotoRegular";
  font-size: 0.7894736842rem;
  font-weight: normal;
  line-height: 1.5;
  color: #004b8d;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #004b8d;
  background-color: transparent;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f1f1f1;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

::placeholder {
  color: rgba(0, 75, 141, 0.6);
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1.0526315789rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5263157895rem;
  margin-right: 1.0526315789rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.5263157895rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.7894736842rem;
  font-weight: normal;
  line-height: 1.8;
  color: #000000;
}
label.middle {
  margin: 0 0 1.0526315789rem;
  line-height: 1.5;
  padding: 0.5921052632rem 0;
}

.help-text {
  margin-top: -0.5263157895rem;
  font-size: 0.8552631579rem;
  font-style: italic;
  color: #000000;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1.0526315789rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #b3b3b3;
  background: #f1f1f1;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  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;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.7894736842rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5263157895rem;
}

.fieldset {
  margin: 1.1842105263rem 0;
  padding: 1.3157894737rem;
  border: 1px solid #00a4e4;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1973684211rem;
  padding: 0 0.1973684211rem;
}

select {
  height: 2.1710526316rem;
  margin: 0 0 1.0526315789rem;
  padding: 0.5263157895rem;
  appearance: none;
  border: 1px solid #00a4e4;
  border-radius: 0;
  background-color: #FFFFFF;
  font-family: "RobotoRegular";
  font-size: 0.7894736842rem;
  font-weight: normal;
  line-height: 1.5;
  color: #004b8d;
  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%280, 75, 141%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right -1.0526315789rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5789473684rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@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 #004b8d;
  background-color: transparent;
  box-shadow: none;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #f1f1f1;
  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: rgb(249.9, 237, 235);
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5263157895rem;
  margin-bottom: 1.0526315789rem;
  font-size: 0.7894736842rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "RobotoMedium";
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #b3b3b3;
}

h1, .h1 {
  font-size: 1.5789473684rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2, .h2 {
  font-size: 1.3157894737rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4, .h4 {
  font-size: 1.1842105263rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.1184210526rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6, .h6 {
  font-size: 1.0526315789rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3.1578947368rem;
  }
  h2, .h2 {
    font-size: 2.6315789474rem;
  }
  h3, .h3 {
    font-size: 2.0394736842rem;
  }
  h4, .h4 {
    font-size: 1.6447368421rem;
  }
  h5, .h5 {
    font-size: 1.3157894737rem;
  }
  h6, .h6 {
    font-size: 1.0526315789rem;
  }
}
a {
  line-height: inherit;
  color: #004b8d;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: rgb(0, 64.5, 121.26);
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 78.9473684211rem;
  height: 0;
  margin: 1.3157894737rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #b3b3b3;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5921052632rem 1.3157894737rem 0 1.25rem;
  border-left: 1px solid #b3b3b3;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #606060;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #000000;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.1315789474rem 0.2631578947rem 0;
  background-color: #f1f1f1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000000;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #606060;
}

.lead {
  font-size: 118.75%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #606060;
  font-size: 0.8552631579rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #b3b3b3;
  background-color: #f1f1f1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.1315789474rem 0.3289473684rem 0.0657894737rem;
}

.code-block {
  border: 1px solid #b3b3b3;
  background-color: #f1f1f1;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.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;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    print-color-adjust: economy;
    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 {
    display: table-cell !important;
  }
  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^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #606060;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.grid-container {
  padding-right: 0.6578947368rem;
  padding-left: 0.6578947368rem;
  max-width: 78.9473684211rem;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container {
    padding-right: 0.9868421053rem;
    padding-left: 0.9868421053rem;
  }
}
.grid-container.fluid {
  padding-right: 0.6578947368rem;
  padding-left: 0.6578947368rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-container.fluid {
    padding-right: 0.9868421053rem;
    padding-left: 0.9868421053rem;
  }
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .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 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .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 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .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 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-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.6578947368rem;
  margin-right: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x {
    margin-left: -0.9868421053rem;
    margin-right: -0.9868421053rem;
  }
}
.grid-margin-x > .cell {
  width: calc(100% - 1.3157894737rem);
  margin-left: 0.6578947368rem;
  margin-right: 0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.9736842105rem);
    margin-left: 0.9868421053rem;
    margin-right: 0.9868421053rem;
  }
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 1.3157894737rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 1.3157894737rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 1.3157894737rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 1.3157894737rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 1.3157894737rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 1.3157894737rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 1.3157894737rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 1.3157894737rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 1.3157894737rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 1.3157894737rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 1.3157894737rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 1.3157894737rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.9736842105rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.9736842105rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.9736842105rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.6578947368rem;
  margin-left: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9868421053rem;
    margin-left: -0.9868421053rem;
  }
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.6578947368rem;
  margin-left: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9868421053rem;
    margin-left: -0.9868421053rem;
  }
}
.grid-padding-x > .cell {
  padding-right: 0.6578947368rem;
  padding-left: 0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-x > .cell {
    padding-right: 0.9868421053rem;
    padding-left: 0.9868421053rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.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.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .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.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.3157894737rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.3157894737rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.3157894737rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.3157894737rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.3157894737rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.3157894737rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.3157894737rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.3157894737rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.9736842105rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.9736842105rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.9736842105rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.9736842105rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-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 {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-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 {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-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;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1.3157894737rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 1.3157894737rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 1.3157894737rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1.3157894737rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 1.3157894737rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 1.3157894737rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1.3157894737rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 1.3157894737rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 1.3157894737rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1.3157894737rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 1.3157894737rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 1.3157894737rem / 2);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.9736842105rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 1.9736842105rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 1.9736842105rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.9736842105rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 1.9736842105rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 1.9736842105rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.9736842105rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 1.9736842105rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 1.9736842105rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.9736842105rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 1.9736842105rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 1.9736842105rem / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.9736842105rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 1.9736842105rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 1.9736842105rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.9736842105rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 1.9736842105rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 1.9736842105rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.9736842105rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 1.9736842105rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 1.9736842105rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.9736842105rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 1.9736842105rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 1.9736842105rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .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 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .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 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .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 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.6578947368rem;
  margin-bottom: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9868421053rem;
    margin-bottom: -0.9868421053rem;
  }
}
.grid-padding-y > .cell {
  padding-top: 0.6578947368rem;
  padding-bottom: 0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-padding-y > .cell {
    padding-top: 0.9868421053rem;
    padding-bottom: 0.9868421053rem;
  }
}

.grid-margin-y {
  margin-top: -0.6578947368rem;
  margin-bottom: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9868421053rem;
    margin-bottom: -0.9868421053rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.3157894737rem);
  margin-top: 0.6578947368rem;
  margin-bottom: 0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.9736842105rem);
    margin-top: 0.9868421053rem;
    margin-bottom: 0.9868421053rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.3157894737rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.3157894737rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.3157894737rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.3157894737rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.9736842105rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    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: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    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;
    flex-wrap: nowrap;
    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: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    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;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.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%;
  }
}

.grid-margin-y {
  margin-top: -0.6578947368rem;
  margin-bottom: -0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y {
    margin-top: -0.9868421053rem;
    margin-bottom: -0.9868421053rem;
  }
}
.grid-margin-y > .cell {
  height: calc(100% - 1.3157894737rem);
  margin-top: 0.6578947368rem;
  margin-bottom: 0.6578947368rem;
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.9736842105rem);
    margin-top: 0.9868421053rem;
    margin-bottom: 0.9868421053rem;
  }
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 1.3157894737rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 1.3157894737rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 1.3157894737rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 1.3157894737rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 1.3157894737rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 1.3157894737rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.9736842105rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.9736842105rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.9736842105rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 1.9736842105rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 1.9736842105rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.9736842105rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.3157894737rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.9736842105rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.9736842105rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.9736842105rem);
  }
}
.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@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: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-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;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    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;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.text-hide {
  font: 0/0 a !important;
  color: transparent !important;
  text-shadow: none !important;
  background-color: transparent !important;
  border: 0 !important;
}

.text-truncate {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  white-space: nowrap !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  word-wrap: break-word !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-overline {
  text-decoration: overline !important;
}

.text-underline {
  text-decoration: underline !important;
}

.text-line-through {
  text-decoration: line-through !important;
}

.font-wide {
  letter-spacing: 0.2631578947rem;
}

.font-normal {
  font-weight: normal;
}

.font-bold {
  font-family: "RobotoBold";
}

.font-italic {
  font-style: italic !important;
}

ul.list-disc {
  list-style-type: disc !important;
}

ul.list-circle {
  list-style-type: circle !important;
}

ul.list-square {
  list-style-type: square !important;
}

ol.list-decimal {
  list-style-type: decimal !important;
}

ol.list-lower-alpha {
  list-style-type: lower-alpha !important;
}

ol.list-lower-latin {
  list-style-type: lower-latin !important;
}

ol.list-lower-roman {
  list-style-type: lower-roman !important;
}

ol.list-upper-alpha {
  list-style-type: upper-alpha !important;
}

ol.list-upper-latin {
  list-style-type: upper-latin !important;
}

ol.list-upper-roman {
  list-style-type: upper-roman !important;
}

.rounded {
  border-radius: 5000px !important;
}
.rounded .switch-paddle {
  border-radius: 5000px !important;
}
.rounded .switch-paddle:after {
  border-radius: 50%;
}

.radius {
  border-radius: 0.1973684211rem;
}

.bordered {
  border: 0.0657894737rem solid #b3b3b3;
}

.shadow {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.arrow-down {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-bottom-width: 0;
  border-color: #000000 transparent transparent;
}

.arrow-up {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #000000;
}

.arrow-right {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #000000;
}

.arrow-left {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4375rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #000000 transparent transparent;
}

.separator-center {
  text-align: center !important;
}
.separator-center::before, .separator-center::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.separator-center::after {
  clear: both;
}
.separator-center::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.1315789474rem solid #004b8d;
  margin: 1rem auto 0;
}

.separator-left {
  text-align: left !important;
}
.separator-left::before, .separator-left::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.separator-left::after {
  clear: both;
}
.separator-left::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.1315789474rem solid #004b8d;
  margin: 1rem auto 0;
  margin-left: 0 !important;
}

.separator-right {
  text-align: right !important;
}
.separator-right::before, .separator-right::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.separator-right::after {
  clear: both;
}
.separator-right::after {
  position: relative !important;
  width: 3rem;
  border-bottom: 0.1315789474rem solid #004b8d;
  margin: 1rem auto 0;
  margin-right: 0 !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-scroll {
  overflow: scroll !important;
  -webkit-overflow-scrolling: touch;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch;
}

.display-inline {
  display: inline !important;
}

.display-inline-block {
  display: inline-block !important;
}

.display-block {
  display: block !important;
}

.display-table {
  display: table !important;
}

.display-table-cell {
  display: table-cell !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-fixed-top {
  position: fixed !important;
  top: 0rem !important;
  right: 0rem !important;
  left: 0rem !important;
  z-index: 975;
}

.position-fixed-bottom {
  position: fixed !important;
  right: 0rem !important;
  bottom: 0rem !important;
  left: 0rem !important;
  z-index: 975;
}

.border-box {
  box-sizing: border-box !important;
}

.border-none {
  border: 0 !important;
}

.width-25 {
  width: 25% !important;
}

.width-50 {
  width: 50% !important;
}

.width-75 {
  width: 75% !important;
}

.width-100 {
  width: 100% !important;
}

.height-25 {
  height: 25% !important;
}

.height-50 {
  height: 50% !important;
}

.height-75 {
  height: 75% !important;
}

.height-100 {
  height: 100% !important;
}

.max-width-100 {
  max-width: 100% !important;
}

.max-height-100 {
  max-height: 100% !important;
}

.margin-0 {
  margin: 0rem !important;
}

.margin-top-0 {
  margin-top: 0rem !important;
}

.margin-right-0 {
  margin-right: 0rem !important;
}

.margin-bottom-0 {
  margin-bottom: 0rem !important;
}

.margin-left-0 {
  margin-left: 0rem !important;
}

.margin-horizontal-0 {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}

.margin-vertical-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.padding-0 {
  padding: 0rem !important;
}

.padding-top-0 {
  padding-top: 0rem !important;
}

.padding-right-0 {
  padding-right: 0rem !important;
}

.padding-bottom-0 {
  padding-bottom: 0rem !important;
}

.padding-left-0 {
  padding-left: 0rem !important;
}

.padding-horizontal-0 {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}

.padding-vertical-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.margin-1 {
  margin: 1rem !important;
}

.margin-top-1 {
  margin-top: 1rem !important;
}

.margin-right-1 {
  margin-right: 1rem !important;
}

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

.margin-left-1 {
  margin-left: 1rem !important;
}

.margin-horizontal-1 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.margin-vertical-1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.padding-1 {
  padding: 1rem !important;
}

.padding-top-1 {
  padding-top: 1rem !important;
}

.padding-right-1 {
  padding-right: 1rem !important;
}

.padding-bottom-1 {
  padding-bottom: 1rem !important;
}

.padding-left-1 {
  padding-left: 1rem !important;
}

.padding-horizontal-1 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.padding-vertical-1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.margin-2 {
  margin: 2rem !important;
}

.margin-top-2 {
  margin-top: 2rem !important;
}

.margin-right-2 {
  margin-right: 2rem !important;
}

.margin-bottom-2 {
  margin-bottom: 2rem !important;
}

.margin-left-2 {
  margin-left: 2rem !important;
}

.margin-horizontal-2 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.margin-vertical-2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.padding-2 {
  padding: 2rem !important;
}

.padding-top-2 {
  padding-top: 2rem !important;
}

.padding-right-2 {
  padding-right: 2rem !important;
}

.padding-bottom-2 {
  padding-bottom: 2rem !important;
}

.padding-left-2 {
  padding-left: 2rem !important;
}

.padding-horizontal-2 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.padding-vertical-2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.margin-3 {
  margin: 3rem !important;
}

.margin-top-3 {
  margin-top: 3rem !important;
}

.margin-right-3 {
  margin-right: 3rem !important;
}

.margin-bottom-3 {
  margin-bottom: 3rem !important;
}

.margin-left-3 {
  margin-left: 3rem !important;
}

.margin-horizontal-3 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.margin-vertical-3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.padding-3 {
  padding: 3rem !important;
}

.padding-top-3 {
  padding-top: 3rem !important;
}

.padding-right-3 {
  padding-right: 3rem !important;
}

.padding-bottom-3 {
  padding-bottom: 3rem !important;
}

.padding-left-3 {
  padding-left: 3rem !important;
}

.padding-horizontal-3 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.padding-vertical-3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Fonts */
@font-face {
  font-family: "RobotoRegular";
  src: url("../fonts/RobotoRegular.eot?") format("eot"), url("../fonts/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular.woff2") format("woff2"), url("../fonts/RobotoRegular.ttf") format("truetype"), url('../fonts/RobotoRegular.svg#str-replace("RobotoRegular", " ", "_")') format("svg");
}
@font-face {
  font-family: "RobotoMedium";
  src: url("../fonts/RobotoMedium.eot?") format("eot"), url("../fonts/RobotoMedium.woff") format("woff"), url("../fonts/RobotoMedium.woff2") format("woff2"), url("../fonts/RobotoMedium.ttf") format("truetype"), url('../fonts/RobotoMedium.svg#str-replace("RobotoMedium", " ", "_")') format("svg");
}
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/RobotoLight.eot?") format("eot"), url("../fonts/RobotoLight.woff") format("woff"), url("../fonts/RobotoLight.woff2") format("woff2"), url("../fonts/RobotoLight.ttf") format("truetype"), url('../fonts/RobotoLight.svg#str-replace("RobotoLight", " ", "_")') format("svg");
}
@font-face {
  font-family: "RobotoBlack";
  src: url("../fonts/RobotoBlack.eot?") format("eot"), url("../fonts/RobotoBlack.woff") format("woff"), url("../fonts/RobotoBlack.woff2") format("woff2"), url("../fonts/RobotoBlack.ttf") format("truetype"), url('../fonts/RobotoBlack.svg#str-replace("RobotoBlack", " ", "_")') format("svg");
}
@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/RobotoBold.eot?") format("eot"), url("../fonts/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold.woff2") format("woff2"), url("../fonts/RobotoBold.ttf") format("truetype"), url('../fonts/RobotoBold.svg#str-replace("RobotoBold", " ", "_")') format("svg");
}
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot?") format("eot"), url("../fonts/icons.woff") format("woff"), url("../fonts/icons.ttf") format("truetype"), url('../fonts/icons.svg#str-replace("icons", " ", "_")') format("svg");
}
body {
  margin: 0;
}
body p:last-child {
  margin-bottom: 0;
}
body strong {
  font-family: "RobotoBold";
}

h1.pageSeoTitle {
  position: absolute !important;
  overflow: hidden;
  height: auto;
  width: auto;
  opacity: 0;
  left: 0;
  top: 0;
}

.wrapper {
  position: relative !important;
  overflow: hidden;
  max-width: 100%;
  z-index: 1;
}
.wrapper .squared-heading-box {
  background-color: #ffc20e;
}
.wrapper .squared-heading-box h3 {
  padding: 2.5rem 0;
  margin-bottom: 0;
  color: #FFFFFF;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .squared-heading-box h3 {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    margin-left: 50%;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .squared-heading-box h3 {
    padding: 4.4736842105rem 2.7631578947rem;
  }
}
.wrapper .squared-heading-box h3 strong {
  color: #004b8d;
}
.wrapper .squared-heading-box.download {
  position: relative !important;
}
@media print, screen and (min-width: 64em) {
  .wrapper .squared-heading-box.download {
    padding-bottom: 4.6052631579rem;
  }
}
.wrapper .squared-heading-box.download > div {
  font: 0.9210526316rem "RobotoBold";
  background-color: #00a4e4;
  position: absolute !important;
  line-height: 4.6052631579rem;
  height: 4.6052631579rem;
  width: 100%;
  bottom: 0;
  left: 0;
}
.wrapper .squared-heading-box.download > div a {
  padding: 0 2.7631578947rem;
  display: block;
}
.wrapper .squared-heading-box.download > div a i {
  padding-left: 1.9736842105rem;
  font-size: 1.5789473684rem;
  vertical-align: middle;
}
.wrapper.error-page main {
  padding: 0;
}
.wrapper.error-page header::after {
  background-image: linear-gradient(225deg, rgba(0, 75, 141, 0.85) 0%, rgba(0, 75, 141, 0) 100%);
  position: absolute !important;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
}
.wrapper.error-page header .error-page-notice {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute !important;
  width: calc(100% - 2rem);
  text-align: center;
  height: auto;
  z-index: 1;
  left: 50%;
  top: 50%;
}
@media print, screen and (min-width: 64em) {
  .wrapper.error-page header .error-page-notice {
    width: auto;
  }
}
.wrapper.error-page header .error-page-notice h2, .wrapper.error-page header .error-page-notice p {
  color: #FFFFFF;
}
.wrapper.error-page header .error-page-notice h2 {
  font-family: "RobotoBlack";
  font-size: 6.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper.error-page header .error-page-notice h2 {
    font-size: 26.3157894737rem;
  }
}
.wrapper.error-page header .error-page-notice p {
  font-family: "RobotoMedium";
  font-size: 1.3157894737rem;
  line-height: normal;
}
@media print, screen and (min-width: 64em) {
  .wrapper.error-page header .error-page-notice p {
    font-size: 1.9736842105rem;
  }
}
.wrapper.error-page header .error-page-notice .grid-x {
  padding-top: 2.6315789474rem;
  justify-content: center;
}
@media print, screen and (min-width: 64em) {
  .wrapper.error-page header .error-page-notice .grid-x {
    padding-top: 5.2631578947rem;
  }
}
.wrapper.error-page header .error-page-notice .grid-x > .cell {
  padding: 0 0.5263157895rem;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper.error-page header .error-page-notice .grid-x > .cell {
    padding: 0 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper.error-page header .error-page-notice .grid-x > .cell {
    padding: 0 2.1052631579rem;
  }
}
.wrapper .lets-chat {
  display: none !important;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  border-radius: 50%;
  position: fixed !important;
  bottom: 23.3552631579rem;
  height: 5.2631578947rem;
  width: 5.2631578947rem;
  right: 4.0789473684rem;
  text-align: center;
  z-index: 1;
  opacity: 0;
}
.wrapper .lets-chat::before, .wrapper .lets-chat em, .wrapper .lets-chat:after {
  position: absolute !important;
}
.wrapper .lets-chat::before, .wrapper .lets-chat em {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.wrapper .lets-chat::before, .wrapper .lets-chat::after {
  border-radius: 50%;
  content: "";
}
.wrapper .lets-chat::before {
  background-color: #ffc20e;
  height: 4.4736842105rem;
  width: 4.4736842105rem;
  z-index: 2;
}
.wrapper .lets-chat:after {
  background-color: rgba(255, 194, 14, 0.42);
  height: 100%;
  width: 100%;
  z-index: 3;
  left: 0;
  top: 0;
}
.wrapper .lets-chat em {
  font: 0.9868421053rem "RobotoBlack";
  line-height: normal;
  font-style: normal;
  height: auto;
  width: auto;
  z-index: 4;
}
.wrapper .lets-chat:hover::after {
  -webkit-animation: scale-down-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-down-center 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.wrapper .lets-chat.active {
  opacity: 1;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .lets-chat {
    display: none;
  }
}
.wrapper .topbar {
  position: fixed !important;
  top: 0rem !important;
  right: 0rem !important;
  width: 100%;
  z-index: 2;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar {
    height: 6.5789473684rem;
  }
}
.wrapper .topbar::before {
  -webkit-transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  position: absolute !important;
  background-color: #FFFFFF;
  display: block;
  height: 100%;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar::before {
    top: -100%;
  }
}
.wrapper .topbar > .grid-x {
  padding-bottom: 1rem;
  justify-content: space-between;
  padding-top: 1rem;
  position: relative !important;
  padding-right: 1rem;
  padding-left: 1rem;
  align-items: center;
  z-index: 3;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper .topbar > .grid-x {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper .topbar > .grid-x {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x {
    padding-bottom: 1.3157894737rem;
    padding-top: 1.3157894737rem;
  }
}
.wrapper .topbar > .grid-x > .cell ul {
  list-style-type: none;
  margin: 0;
}
.wrapper .topbar > .grid-x > .cell .logo {
  background: #FFFFFF;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .logo {
    padding: 0.5rem 0;
  }
}
.wrapper .topbar > .grid-x > .cell .logo a {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  display: block;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .logo a {
    background-position: left center;
  }
}
.wrapper .topbar > .grid-x > .cell .logo a img {
  max-width: 72%;
  opacity: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper .topbar > .grid-x > .cell .logo a img {
    max-width: 58%;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu {
  background-color: #FFFFFF;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
    position: absolute !important;
    top: 4.3421052632rem;
    height: auto;
    width: 100%;
    left: 0;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li {
  margin: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li {
    border-top: 1px solid rgba(0, 75, 141, 0.2);
    line-height: 3.9473684211rem;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li:last-child {
  background-color: #ffc20e;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li a {
  font-family: "RobotoMedium";
  display: block;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li > a {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  padding: 0 1.0526315789rem;
  font-size: 0.8552631579rem;
  text-align: center;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li > a {
    line-height: 3.9473684211rem;
    padding: 0 1.9736842105rem;
  }
  .wrapper .topbar > .grid-x > .cell .main-menu > li > a:hover {
    color: rgb(13.5, 141.9574468085, 255);
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li > a i {
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
  font-size: 1.1842105263rem;
  display: inline-block;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li:hover > a, .wrapper .topbar > .grid-x > .cell .main-menu > li.active > a {
  background-color: #00a4e4;
  color: #FFFFFF;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu {
  position: relative !important;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu {
    overflow: hidden;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu > a::after {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute !important;
    right: 1rem;
    color: #004b8d;
    font-family: "icons";
    content: "\e903";
    width: auto;
    top: 50%;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list {
  position: absolute !important;
  top: -12.0394736842rem;
  height: auto;
  left: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
    width: 100%;
    z-index: 2;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list {
    width: 130%;
    top: 100%;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li {
  position: relative !important;
  overflow: hidden;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li {
    line-height: 3.2894736842rem;
    height: 4.6052631579rem;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a {
  position: relative !important;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a:not(.back-to-menu)::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute !important;
  right: 1.3157894737rem;
  font-family: "icons";
  width: 0.2631578947rem;
  content: "\e903";
  color: #FFFFFF;
  top: 50%;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a:not(.back-to-menu)::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a.back-to-menu {
  padding-left: 2.6315789474rem;
  color: #004b8d;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a.back-to-menu::before {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute !important;
  color: #004b8d;
  left: 1.3157894737rem;
  font-family: "icons";
  width: 0.2631578947rem;
  width: 0.2631578947rem;
  content: "\e902";
  top: 50%;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li > a.back-to-menu {
    display: none;
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li ul li {
  padding-left: 1rem;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li.active {
    overflow: visible;
    height: auto;
  }
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list > li.active > a::after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -moz-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
  }
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #00a4e4;
}
.wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list li > a {
  padding: 0.7894736842rem 1.3157894737rem;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  font-size: 0.7236842105rem;
  color: #FFFFFF;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list li:hover > a {
    color: #004b8d;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list li ul {
    position: absolute !important;
    min-width: 76%;
    height: auto;
    left: 100%;
    opacity: 1;
    top: -1px;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu .sub-menu-list li ul li {
    min-height: 2.7631578947rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu:hover {
    overflow: visible;
  }
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu:hover .sub-menu-list > li:hover {
    overflow: visible;
  }
  .wrapper .topbar > .grid-x > .cell .main-menu > li.sub-menu:hover .sub-menu-list > li:hover > a::after {
    color: #004b8d;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .topbar > .grid-x > .cell .main-menu.sub-menu-active > li > a {
    opacity: 0;
  }
  .wrapper .topbar > .grid-x > .cell .main-menu.sub-menu-active > li.sub-menu .sub-menu-list {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
  }
}
.wrapper .topbar > .grid-x > .cell .menu-button {
  position: relative !important;
  height: 1.3157894737rem;
  width: 1.9736842105rem;
  display: block;
}
.wrapper .topbar > .grid-x > .cell .menu-button::before, .wrapper .topbar > .grid-x > .cell .menu-button::after, .wrapper .topbar > .grid-x > .cell .menu-button span {
  -webkit-transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -moz-transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition: all 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  position: absolute !important;
  background: #004b8d;
  height: 0.1973684211rem;
  content: "";
  right: 0;
}
.wrapper .topbar > .grid-x > .cell .menu-button::before, .wrapper .topbar > .grid-x > .cell .menu-button::after {
  width: 80%;
}
.wrapper .topbar > .grid-x > .cell .menu-button::before {
  top: 0;
}
.wrapper .topbar > .grid-x > .cell .menu-button::after {
  bottom: 0;
}
.wrapper .topbar > .grid-x > .cell .menu-button span {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  top: 50%;
}
@media print, screen and (min-width: 64em) {
  .wrapper .topbar.scrolled::before {
    top: 0;
  }
}
.wrapper header {
  position: relative !important;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper header {
    padding-top: 4.3421052632rem;
  }
}
.wrapper header .slider-loader {
  border: 1px solid #FFFFFF;
  background-color: transparent;
  border-radius: 50%;
  position: absolute !important;
  right: 1rem;
  height: 3.2894736842rem;
  width: 3.2894736842rem;
  right: 4.0789473684rem;
  bottom: 12.5%;
  z-index: 1;
}
.wrapper header .slider-loader::before {
  border: 4px solid #00a4e4;
  animation: s2 4.5s infinite linear;
  border-top-color: transparent;
  background-color: transparent;
  border-radius: 50%;
  position: absolute !important;
  height: 110%;
  content: "";
  width: 110%;
  left: -5%;
  top: -5%;
}
.wrapper header .slider-loader a {
  position: absolute !important;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 2;
  left: 0;
  top: 0;
}
.wrapper header .slider-loader a::after {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute !important;
  content: "";
  left: 50%;
  top: 50%;
}
.wrapper header .slider-loader a.play-btn {
  display: none;
}
.wrapper header .slider-loader a.play-btn::after {
  border: 0.5263157895rem solid transparent;
  border-left-color: #FFFFFF;
  height: 0.5263157895rem;
  width: 0.3947368421rem;
  margin-left: 5px;
  display: block;
}
.wrapper header .slider-loader a.pause-btn::after {
  border-right: 0.2631578947rem solid #FFFFFF;
  border-left: 0.2631578947rem solid #FFFFFF;
  background-color: transparent;
  height: 0.6578947368rem;
  width: 0.7894736842rem;
}
.wrapper header .slider-loader.pause::before {
  animation: none;
}
.wrapper header .slider-loader.pause a.play-btn {
  display: block;
}
.wrapper header .slider-loader.pause a.pause-btn {
  display: none;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper header .slider-loader {
    display: none;
  }
}
@keyframes s2 {
  to {
    transform: rotate(1turn);
  }
}
.wrapper header figure {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative !important;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper header figure {
    padding-top: 4.3421052632rem;
  }
}
.wrapper header figure img {
  opacity: 0;
}
.wrapper header figure figcaption {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute !important;
  right: 1rem;
  text-align: right;
  top: 50%;
}
@media print, screen and (min-width: 64em) {
  .wrapper header figure figcaption {
    right: 4.0789473684rem;
  }
}
.wrapper header figure figcaption h2 {
  margin-bottom: 0.9210526316rem;
  color: #FFFFFF;
}
@media print, screen and (min-width: 64em) {
  .wrapper header figure figcaption h2 {
    margin-bottom: 1.5789473684rem;
    font-size: 1.9736842105rem;
  }
}
.wrapper header figure figcaption h2 strong {
  font-size: 1.5789473684rem;
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper header figure figcaption h2 strong {
    font-size: 3.1578947368rem;
  }
}
.wrapper header .slider .slick-dots {
  bottom: 1rem;
  right: 1rem;
  height: auto;
  width: auto;
}
@media print, screen and (min-width: 64em) {
  .wrapper header .slider .slick-dots {
    right: 8.6842105263rem;
    bottom: 15%;
  }
}
.wrapper header .slider .slick-dots li {
  height: 0.5263157895rem;
  width: 0.5263157895rem;
  margin: 0;
}
.wrapper header .slider .slick-dots li:not(:last-child) {
  margin-right: 0.5263157895rem;
}
.wrapper header .slider .slick-dots li button {
  border-radius: 50%;
  background-color: #FFFFFF;
  height: 0.5263157895rem;
  width: 0.5263157895rem;
}
.wrapper header .slider .slick-dots li button::before {
  display: none;
}
.wrapper header .slider .slick-dots li.slick-active button {
  background-color: #00a4e4;
}
.wrapper header .slider figure {
  z-index: 1;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper header .slider figure {
    background-image: none !important;
    padding-top: 0 !important;
  }
  .wrapper header .slider figure img {
    opacity: 1;
  }
}
.wrapper header .slider figure::after {
  background-image: linear-gradient(225deg, rgba(0, 75, 141, 0.85) 0%, rgba(0, 75, 141, 0) 100%);
  position: absolute !important;
  height: 100%;
  width: 100%;
  content: "";
  left: 0;
  top: 0;
}
.wrapper header .slider figure figcaption {
  z-index: 2;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main {
    padding-top: 1.5789473684rem;
  }
}
.wrapper main section {
  margin-bottom: 1.5789473684rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section {
    margin-bottom: 3.6842105263rem;
  }
}
.wrapper main section > .grid-x > .cell .desc {
  margin-bottom: 1.5789473684rem;
}
.wrapper main section > .grid-x > .cell .desc p {
  color: #606060;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section > .grid-x > .cell .desc {
    margin-bottom: 3.6842105263rem;
  }
}
.wrapper main section > .grid-x > .cell ul.desc-list {
  padding: 0 0 1rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section > .grid-x > .cell ul.desc-list {
    padding-bottom: 3.6842105263rem;
  }
}
.wrapper main section > .grid-x > .cell ul.desc-list li {
  font-family: "RobotoBold";
  padding-left: 2.3026315789rem;
  position: relative !important;
  color: #004b8d;
  line-height: normal;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section > .grid-x > .cell ul.desc-list li {
    max-width: 70%;
  }
}
.wrapper main section > .grid-x > .cell ul.desc-list li:not(:last-child) {
  margin-bottom: 1.5789473684rem;
}
.wrapper main section > .grid-x > .cell ul.desc-list li::after {
  position: absolute !important;
  font-family: "icons";
  content: "\e909";
  height: auto;
  width: auto;
  left: 0;
  top: 0;
}
.wrapper main section > .grid-x > .cell ul.desc-list.white li {
  color: #FFFFFF;
}
.wrapper main section > .grid-x > .cell ul.desc-list.white li::after {
  color: #00a4e4;
}
.wrapper main section h3, .wrapper main section h4 {
  color: #00a4e4;
}
.wrapper main section h3 {
  font-size: 1.1842105263rem;
}
.wrapper main section h3 strong {
  font: 1.4473684211rem "RobotoBlack";
  color: #004b8d;
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section h3 {
    margin-bottom: 2.1052631579rem;
    font-size: 1.3157894737rem;
  }
  .wrapper main section h3 strong {
    font-size: 2.2368421053rem;
  }
}
.wrapper main section h4 {
  margin-bottom: 1.5789473684rem;
  font-size: 1.3157894737rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section h4 {
    margin-bottom: 1.9736842105rem;
  }
}
.wrapper main section ul {
  list-style-type: none;
  margin: 0;
}
.wrapper main section .outline {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section .outline {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section .outline {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section .outline {
    padding: 1rem !important;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section .outline {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section .outline {
    margin-bottom: 3.6842105263rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section .medium-up-2, .wrapper main section .medium-up-3, .wrapper main section .medium-up-4 {
    margin-right: -1.0526315789rem;
    margin-left: -1.0526315789rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section .medium-up-2, .wrapper main section .medium-up-3, .wrapper main section .medium-up-4 {
    margin-right: -1.5789473684rem;
    margin-left: -1.5789473684rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section .medium-up-2 > .cell, .wrapper main section .medium-up-3 > .cell, .wrapper main section .medium-up-4 > .cell {
    padding-right: 1.0526315789rem;
    padding-left: 1.0526315789rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section .medium-up-2 > .cell, .wrapper main section .medium-up-3 > .cell, .wrapper main section .medium-up-4 > .cell {
    padding-right: 1.5789473684rem;
    padding-left: 1.5789473684rem;
  }
}
.wrapper main section.links-pagination {
  margin-top: 3.6842105263rem;
}
.wrapper main section.links-pagination > .grid-x > .cell ul::after {
  display: block;
  clear: both;
  content: "";
}
.wrapper main section.links-pagination > .grid-x > .cell ul li {
  float: left;
}
.wrapper main section.links-pagination > .grid-x > .cell ul li a {
  font: 0.8552631579rem "RobotoRegular";
  color: #b3b3b3;
}
.wrapper main section.links-pagination > .grid-x > .cell ul li:last-child a {
  color: #606060;
}
.wrapper main section.links-pagination > .grid-x > .cell ul li:not(:last-child) {
  padding-right: 0.7894736842rem;
  position: relative !important;
}
.wrapper main section.links-pagination > .grid-x > .cell ul li:not(:last-child)::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute !important;
  font-size: 1.1842105263rem;
  right: 0.1315789474rem;
  color: #b3b3b3;
  content: ">";
  height: auto;
  width: auto;
  top: 50%;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.links-pagination {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.home-our-activities {
    -webkit-transform: translateY(-2.1052631579rem);
    -moz-transform: translateY(-2.1052631579rem);
    -ms-transform: translateY(-2.1052631579rem);
    -o-transform: translateY(-2.1052631579rem);
    transform: translateY(-2.1052631579rem);
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.home-our-activities > .grid-x > .cell ul {
  background-color: #f1f1f1;
  list-style-type: none;
  margin: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.home-our-activities > .grid-x > .cell ul {
    padding: 1.9736842105rem 1.3157894737rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.home-our-activities > .grid-x > .cell ul {
    height: 100%;
  }
}
.wrapper main section.home-our-activities > .grid-x > .cell ul li figure a {
  text-align: center;
  display: block;
}
.wrapper main section.home-our-activities > .grid-x > .cell ul li figure a img, .wrapper main section.home-our-activities > .grid-x > .cell ul li figure a p {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.wrapper main section.home-our-activities > .grid-x > .cell ul li figure a p {
  font: 0.7236842105rem "RobotoMedium";
  padding-top: 1rem;
  color: #00a4e4;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.home-our-activities > .grid-x > .cell ul li figure a p {
    padding-top: 1.6447368421rem;
    color: #004b8d;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.home-our-activities > .grid-x > .cell ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 75, 141, 0.5);
    padding-bottom: 1.9736842105rem;
    margin-bottom: 1.9736842105rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.home-our-activities > .grid-x > .cell ul li {
    align-self: center;
    flex: 0 0 20%;
    width: 20%;
  }
  .wrapper main section.home-our-activities > .grid-x > .cell ul li:not(:last-child) figure {
    position: relative !important;
  }
  .wrapper main section.home-our-activities > .grid-x > .cell ul li:not(:last-child) figure::after {
    background-color: #004b8d;
    position: absolute !important;
    height: 0.8552631579rem;
    width: 0.0328947368rem;
    content: "";
    bottom: 0;
    right: 0;
  }
  .wrapper main section.home-our-activities > .grid-x > .cell ul li:hover figure a img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
  .wrapper main section.home-our-activities > .grid-x > .cell ul li:hover figure a p {
    font-family: "RobotoBlack";
    color: #00a4e4;
  }
}
.wrapper main section.home-about > .grid-x > .cell {
  text-align: center;
}
.wrapper main section.home-about > .grid-x > .cell .desc {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.home-about > .grid-x > .cell .desc {
    margin-bottom: 3.6842105263rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 68%;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-brands > .grid-x > .cell:not(.link-to-brands) a figure {
    filter: grayscale(1);
  }
  .wrapper main section.our-brands > .grid-x > .cell:not(.link-to-brands) a:hover figure {
    filter: grayscale(0);
  }
  .wrapper main section.our-brands > .grid-x > .cell:not(.link-to-brands) a:hover figure .brand-logo img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.wrapper main section.our-brands > .grid-x > .cell.link-to-brands a figure {
  background-color: #f1f1f1;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-brands > .grid-x > .cell.link-to-brands a figure figcaption p {
    font-size: 0.9868421053rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-brands > .grid-x > .cell.link-to-brands a:hover figure figcaption p {
    -webkit-transform: scale(1.075);
    -moz-transform: scale(1.075);
    -ms-transform: scale(1.075);
    -o-transform: scale(1.075);
    transform: scale(1.075);
  }
}
.wrapper main section.our-brands > .grid-x > .cell a {
  display: block;
}
.wrapper main section.our-brands > .grid-x > .cell a figure {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  position: relative !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper main section.our-brands > .grid-x > .cell a figure > img {
  opacity: 0;
}
.wrapper main section.our-brands > .grid-x > .cell a figure figcaption, .wrapper main section.our-brands > .grid-x > .cell a figure .brand-logo {
  position: absolute !important;
  text-align: center;
  height: auto;
  top: 50%;
}
.wrapper main section.our-brands > .grid-x > .cell a figure figcaption {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  left: 50%;
}
.wrapper main section.our-brands > .grid-x > .cell a figure figcaption p {
  font: 1.1842105263rem "RobotoMedium";
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  color: #004b8d;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-brands > .grid-x > .cell a figure figcaption p {
    max-width: 4.5394736842rem;
  }
}
.wrapper main section.our-brands > .grid-x > .cell a figure figcaption p i {
  font-style: normal;
  display: block;
}
.wrapper main section.our-brands > .grid-x > .cell a figure .brand-logo {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0;
}
.wrapper main section.our-brands > .grid-x > .cell a figure .brand-logo img {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  max-width: 30%;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-brands > .grid-x > .cell a figure .brand-logo img {
    max-width: 45%;
  }
}
.wrapper main section.our-brands > .grid-x.our-brands-desc {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-brands > .grid-x.our-brands-desc {
    justify-content: space-between;
    margin-bottom: 3.6842105263rem;
    margin-top: 3.6842105263rem;
  }
}
.wrapper main section.our-brands > .grid-x.our-brands-desc > .cell .activities-filter p {
  font: 1.0526315789rem "RobotoBold";
  color: #004b8d;
}
.wrapper main section.our-brands > .grid-x.our-brands-desc > .cell .activities-filter .list-of-activities {
  min-width: 15.7894736842rem;
}
.wrapper main section.our-brands > .grid-x.our-brands-desc > .cell .activities-filter .list-of-activities select {
  font: 0.8552631579rem "RobotoMedium";
  background-position: right 0 center;
  background-color: #ffc20e;
  padding: 1rem;
  height: 3.9473684211rem;
  color: #004b8d;
  margin-bottom: 0;
  border: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-brands > .grid-x.element-item-holder .element-item:not(:last-child) {
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.our-company > .grid-x.our-company-desc {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-company > .grid-x.our-company-desc {
    margin-bottom: 3.6842105263rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:first-child {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child {
    margin-right: -1rem;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child {
    padding-left: 4.0789473684rem;
  }
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell {
  background-color: #004b8d;
  background-blend-mode: multiply;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell {
    padding: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell {
    padding: 4.0789473684rem;
  }
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell p {
  font-family: "RobotoBold";
  font-size: 1.3157894737rem;
  color: #00a4e4;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell p {
    margin-bottom: 2.1052631579rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li:not(:first-child) {
    height: 29%;
  }
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li:not(:last-child) {
  margin-bottom: 1.5789473684rem;
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li:not(:last-child) div {
  border-bottom: 1px solid #00a4e4;
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li div {
  padding: 1rem 0;
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li div p {
  font-family: "RobotoLight";
  margin-bottom: 0;
  color: #FFFFFF;
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li div p strong {
  font-family: "RobotoBlack";
  font-size: 2.6315789474rem;
  color: #00a4e4;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li div p strong {
    font-size: 3.9473684211rem;
  }
}
.wrapper main section.our-company > .grid-x.our-company-desc > .cell:last-child .lec-in-a-nutshell ul li div p i {
  font-family: "RobotoRegular";
  font-size: 1.1842105263rem;
  color: #00a4e4;
  font-style: normal;
  font-weight: bold;
}
.wrapper main section.after-sales-desc > .grid-x {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.after-sales-desc > .grid-x {
    margin-bottom: 3.6842105263rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:first-child {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:first-child {
    margin-top: 3.6842105263rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:first-child .desc {
    margin-bottom: 2.6315789474rem;
  }
}
.wrapper main section.after-sales-desc > .grid-x > .cell:first-child .desc strong {
  color: #004b8d;
  display: block;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) {
    margin-bottom: 1.5789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) {
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) {
    padding-left: 4.0789473684rem;
  }
}
.wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) > figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) > figure {
    margin-top: -8.9473684211rem;
  }
}
.wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) > figure img {
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-desc > .grid-x > .cell:nth-child(2) > figure img {
    height: 40vh;
  }
}
.wrapper main section.after-sales-desc > .grid-x > .cell:last-child .border-left-grid-text li .img-text .img img {
  width: 100%;
}
.wrapper main section.after-sales-desc > .grid-x > .cell .border-left-grid-text li .img-text .text {
  padding: 0;
}
.wrapper main section.after-sales-desc > .grid-x > .cell .border-left-grid-text li .img-text .text::before {
  display: none;
}
.wrapper main section.after-sales-desc > .grid-x > .cell .border-left-grid-text li:not(:last-child) .img-text .text {
  margin-bottom: 1.5789473684rem;
}
.wrapper main section.after-sales-spare-parts {
  background-color: #004b8d;
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.after-sales-spare-parts > .grid-x {
    align-items: center;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child {
    padding: 2.6315789474rem;
    padding-left: 0;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child {
    padding: 4.0789473684rem;
    padding-left: 0;
  }
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child > figure {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child > figure img {
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:first-child > figure img {
    height: 40vh;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child {
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .heading strong {
  color: inherit;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .desc p {
  color: #FFFFFF;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .desc p strong {
  color: #004b8d;
  display: block;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .desc-cta {
  display: inline-block;
  margin-bottom: 0;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .desc-cta a::before {
  background-color: #00a4e4;
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .note {
  font-size: 0.7894736842rem;
  display: inline-block;
  font-style: italic;
  color: #FFFFFF;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .note {
    margin-top: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .note {
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    padding-left: 2.1052631579rem;
  }
}
.wrapper main section.after-sales-spare-parts > .grid-x > .cell:last-child .note a {
  color: #ffc20e;
}
.wrapper main section.our-people {
  margin-right: -1rem;
  margin-left: -1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-people {
    margin-right: -2.6315789474rem;
    margin-left: -2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-people {
    margin-right: -4.0789473684rem;
    margin-left: -4.0789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-people {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-people {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell {
  text-align: center;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:first-child {
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell:first-child figure svg #filled {
  fill: #FFC20E;
}
.wrapper main section.our-people > .grid-x > .cell:first-child figure svg #outlined {
  stroke: #FFC20E;
  fill: transparent;
}
.wrapper main section.our-people > .grid-x > .cell:last-child > figure {
  position: relative !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child > figure {
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell:last-child > figure > img {
  opacity: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .desc {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .desc {
    font-size: 1.4473684211rem;
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .desc {
    margin: 2.6315789474rem auto;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .desc {
    margin: 4.0789473684rem auto;
  }
}
.wrapper main section.our-people > .grid-x > .cell:last-child .desc p {
  font-family: "RobotoLight";
  font-size: 1.1842105263rem;
  color: #004b8d;
}
.wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder {
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department {
    margin-bottom: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department {
    margin-bottom: 4.0789473684rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department p {
  font-family: "RobotoMedium";
  font-size: 1.1184210526rem;
  color: #004b8d;
  text-align: left;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul {
    margin-right: -0.2631578947rem;
    margin-left: -0.2631578947rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li:not(:nth-last-child(-n+4)) {
    margin-bottom: 0.5263157895rem;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li {
    padding: 0 0.2631578947rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li:not(:nth-last-child(-n+5)) {
    margin-bottom: 0.5263157895rem;
  }
}
.wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li figure {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li figure img {
  opacity: 0;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li figure {
    filter: grayscale(1);
  }
  .wrapper main section.our-people > .grid-x > .cell:last-child .the-team-holder .team-department ul li figure:hover {
    filter: grayscale(0);
  }
}
.wrapper main section.mission-vision {
  margin-right: -1rem;
  margin-left: -1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision {
    margin-right: -2.6315789474rem;
    margin-left: -2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision {
    margin-right: -4.0789473684rem;
    margin-left: -4.0789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.mission-vision {
    margin-top: -3.6842105263rem;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell {
  padding-bottom: 1.5789473684rem;
  padding-top: 1.5789473684rem;
  text-align: center;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision > .grid-x > .cell {
    padding-bottom: 2.6315789474rem;
    padding-top: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision > .grid-x > .cell {
    padding-bottom: 4.0789473684rem;
    padding-top: 4.0789473684rem;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell figure svg #filled .st0 {
  fill: #00A2E2;
}
.wrapper main section.mission-vision > .grid-x > .cell figure svg #outlined .st0 {
  fill: transparent;
  stroke: #00A2E2;
}
.wrapper main section.mission-vision > .grid-x > .cell:first-child {
  background-color: #004b8d;
  padding-bottom: 9.8684210526rem;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child {
    padding-top: 3.2894736842rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child {
    padding-bottom: 19.7368421053rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child {
    padding-bottom: 32.8947368421rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child .outline {
    padding: 2.1052631579rem 0 1rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child ul {
    padding: 0 1rem 1rem;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child ul {
    justify-content: center;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell:first-child ul li {
  font-family: "RobotoBold";
  position: relative !important;
  padding: 0 1.3157894737rem;
  font-size: 1.1842105263rem;
  color: #FFFFFF;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.mission-vision > .grid-x > .cell:first-child ul li {
    font-size: 1.9078947368rem;
    padding: 0 1.6447368421rem;
    margin: 0 1rem;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell:first-child ul li::before {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #ffc20e;
  border-radius: 50%;
  position: absolute !important;
  height: 0.8552631579rem;
  width: 0.8552631579rem;
  content: "";
  top: 50%;
  left: 0;
}
.wrapper main section.mission-vision > .grid-x > .cell:last-child {
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell:last-child .video, .wrapper main section.mission-vision > .grid-x > .cell:last-child .expertise-floating-img {
  -webkit-transform: translateY(-150px);
  -moz-transform: translateY(-150px);
  -ms-transform: translateY(-150px);
  -o-transform: translateY(-150px);
  transform: translateY(-150px);
  margin-bottom: -8.5526315789rem;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .video, .wrapper main section.mission-vision > .grid-x > .cell:last-child .expertise-floating-img {
    -webkit-transform: translateY(-300px);
    -moz-transform: translateY(-300px);
    -ms-transform: translateY(-300px);
    -o-transform: translateY(-300px);
    transform: translateY(-300px);
    margin-bottom: -18.4210526316rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .video, .wrapper main section.mission-vision > .grid-x > .cell:last-child .expertise-floating-img {
    -webkit-transform: translateY(-500px);
    -moz-transform: translateY(-500px);
    -ms-transform: translateY(-500px);
    -o-transform: translateY(-500px);
    transform: translateY(-500px);
    margin-bottom: -32.8947368421rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc {
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc {
    margin: 2.6315789474rem auto;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc {
    margin: 4.0789473684rem auto;
  }
}
.wrapper main section.mission-vision > .grid-x > .cell:last-child .desc p {
  font-family: "RobotoLight";
  font-size: 1.1842105263rem;
  color: #004b8d;
}
.wrapper main section.mission-vision > .grid-x > .cell:last-child .border-left-grid-text li .img-text .text::before {
  background-color: #ffc20e;
}
.wrapper main section.mission-vision > .grid-x > .cell:last-child .border-left-grid-text li .img-text .text p {
  color: #004b8d;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc-cta {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc-cta {
    margin-top: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.mission-vision > .grid-x > .cell:last-child .desc-cta {
    margin-top: 4.0789473684rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-product-range > .grid-x > .cell:first-child {
    margin-bottom: 1.9736842105rem;
    margin-bottom: 0.9210526316rem;
  }
}
.wrapper main section.our-product-range > .grid-x > .cell .product-range-details {
  padding: 1rem;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details {
    background-color: #f1f1f1;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details {
    padding: 2.5rem 5.1315789474rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li {
    margin-bottom: 2.5rem;
  }
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li:nth-last-child(-n+3) {
    margin-bottom: 0;
  }
}
.wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li p {
  font: 1.0526315789rem "RobotoBlack";
  text-transform: capitalize;
  color: #00a4e4;
  text-align: center;
}
.wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li figure {
  margin-bottom: 1.5789473684rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li figure {
    margin-bottom: 1.3157894737rem;
  }
}
.wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li figure img {
  opacity: 0;
}
.wrapper main section.our-product-range > .grid-x > .cell .product-range-details ul li .cta {
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc {
    margin-top: 3.6842105263rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell:first-child {
    margin: 0 0 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell > figure {
    text-align: center;
  }
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell > figure .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell > figure .img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
  }
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell > figure .img img {
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell > figure .img img {
    max-width: 9.2105263158rem;
  }
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell .desc-cta {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell .desc-cta {
    margin-bottom: 3.6842105263rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell .our-activities-product-desc {
    padding: 0 5.1315789474rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li:not(:last-child) {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li {
    margin-bottom: 3.1578947368rem;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li:nth-child(3n+1):nth-last-child(-n+3), .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
    margin-bottom: 0;
  }
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure {
  border: 1px solid #f1f1f1;
  background-color: #f1f1f1;
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure .img img {
  opacity: 0;
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure figcaption {
  padding: 1rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure figcaption {
    padding: 1.8421052632rem;
  }
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure figcaption p {
  font-size: 0.7894736842rem;
  color: #606060;
}
.wrapper main section.our-activities-category-desc > .grid-x > .cell ul li figure figcaption p strong {
  font: 1.0526315789rem "RobotoBlack";
  color: #00a4e4;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news {
    margin-top: 3.6842105263rem;
  }
}
.wrapper main section.news > .grid-x > .cell .news-desc {
  margin-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell .news-desc {
    margin-bottom: 2.6315789474rem;
  }
}
.wrapper main section.news > .grid-x > .cell .news-desc p, .wrapper main section.news > .grid-x > .cell .news-desc li {
  margin-bottom: 1.5789473684rem;
  font-size: 0.9210526316rem;
  color: #606060;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell .news-desc p, .wrapper main section.news > .grid-x > .cell .news-desc li {
    margin-bottom: 1.9736842105rem;
  }
}
.wrapper main section.news > .grid-x > .cell .news-desc p em {
  font-style: normal;
  display: block;
}
.wrapper main section.news > .grid-x > .cell .news-list {
  padding-bottom: 1.5789473684rem;
  background-color: #f1f1f1;
  padding-top: 1.5789473684rem;
  margin-right: -1rem;
  margin-left: -1rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    margin-right: -2.6315789474rem;
    margin-left: -2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    margin-right: -4.0789473684rem;
    margin-left: -4.0789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    padding-bottom: 2.6315789474rem;
    padding-top: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.news > .grid-x > .cell .news-list {
    padding-bottom: 4.0789473684rem;
    padding-top: 4.0789473684rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper main section.news > .grid-x > .cell .desc {
    margin-bottom: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper main section.news > .grid-x > .cell .desc {
    margin-bottom: 4.0789473684rem;
  }
}
.wrapper main section.news > .grid-x > .cell ul li figure {
  border: 1px solid #f1f1f1;
  background-color: #FFFFFF;
}
.wrapper main section.news > .grid-x > .cell ul li figure .img {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper main section.news > .grid-x > .cell ul li figure .img img {
  opacity: 0;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell ul li figure .img {
    filter: grayscale(1);
  }
}
.wrapper main section.news > .grid-x > .cell ul li figure figcaption {
  padding: 1rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell ul li figure figcaption {
    padding: 1.8421052632rem;
  }
}
.wrapper main section.news > .grid-x > .cell ul li figure figcaption p {
  font-size: 0.7894736842rem;
  color: #606060;
}
.wrapper main section.news > .grid-x > .cell ul li figure figcaption p strong {
  font: 1.0526315789rem "RobotoBlack";
  color: #00a4e4;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper main section.news > .grid-x > .cell ul li:not(:last-child) {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.news > .grid-x > .cell ul li:not(:nth-last-child(-n+4)) {
    margin-bottom: 2.6315789474rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell ul li:hover figure .img {
    filter: grayscale(0);
  }
}
.wrapper main section.news > .grid-x > .cell .cta {
  margin-top: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.news > .grid-x > .cell .cta {
    margin-top: 3.6842105263rem;
  }
}
.wrapper main section.contact-page [data-g-recaptcha-toke] {
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.contact-page > .grid-x > .cell {
    margin-bottom: 1.5789473684rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form {
  margin-top: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-form {
    padding-right: 5.2631578947rem;
    margin-top: 3.6842105263rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form > p {
  font-size: 1.0526315789rem;
  color: #00a4e4;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x {
    margin-right: -0.7894736842rem;
    margin-left: -0.7894736842rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x.thankyou-message, .wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x.error-message {
  color: #004b8d;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell {
    padding: 0 0.7894736842rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell select {
  color: rgba(0, 75, 141, 0.6);
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell select, .wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell input {
  height: 2.9605263158rem;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell label.input-check {
  position: relative !important;
  font-size: 0.9868421053rem;
  padding: 1rem;
  color: #004b8d;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell label.input-check input[type=radio] {
  position: absolute !important;
  margin-bottom: 0;
  height: auto;
  opacity: 0;
  left: 0;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell label.input-check input[type=radio]:checked ~ span::after {
  opacity: 1;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell label.input-check span {
  border: 1px solid #004b8d;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
  margin-left: -1rem;
  margin-right: 0.6578947368rem;
  position: relative !important;
  border-radius: 50%;
  height: 1.3157894737rem;
  width: 1.3157894737rem;
  content: "";
  float: left;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell label.input-check span::after {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #00a4e4;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  border-radius: 50%;
  position: absolute !important;
  content: "";
  height: 60%;
  width: 60%;
  opacity: 0;
  left: 50%;
  top: 50%;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell button {
  background-color: #ffc20e;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  padding: 1.25rem 2rem;
  cursor: pointer;
  color: #FFFFFF;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-form form > .grid-x > .cell button:hover {
  background-color: #00a4e4;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details {
  background-color: #004b8d;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y {
  padding: 1rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y {
    padding: 6.5789473684rem 5.2631578947rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell {
  padding-bottom: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell {
    padding-bottom: 3.2894736842rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell:first-child {
  border-bottom: 1px solid #FFFFFF;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell:last-child {
  border-bottom: 5px solid #00a4e4;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell:last-child {
    padding-top: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell:last-child {
    padding-top: 3.2894736842rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell p strong {
  color: #00a4e4;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li {
  font-size: 0.9210526316rem;
  color: #FFFFFF;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li a {
  display: block;
  color: inherit;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li a strong {
  padding-right: 1rem;
}
@media print, screen and (min-width: 40em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li a strong {
    padding-right: 1.3157894737rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li a div {
  vertical-align: text-top;
  display: inline-block;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul li a div em {
  font-family: "RobotoBold";
  margin-top: 1.6447368421rem;
  text-decoration: underline;
  font-size: 0.6578947368rem;
  font-style: normal;
  display: block;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links {
  margin-top: 1.5789473684rem;
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links {
    margin-top: 2.6315789474rem;
  }
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links li {
  font: 0.8552631579rem "RobotoBold";
  color: #00a4e4;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links li:not(:last-child) {
  margin-right: 0.5263157895rem;
}
.wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links li a i {
  border: 1px solid #FFFFFF;
  font-size: 1.0526315789rem;
  padding: 0.1315789474rem;
  display: block;
  color: #FFFFFF;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.contact-page > .grid-x > .cell.contact-details > .grid-y > .cell ul.social-links li a i {
    padding: 0.2631578947rem;
  }
}
.wrapper main section.quick-bottom-links > .grid-x > .cell:first-child a figure {
  background-color: #ffc20e;
}
.wrapper main section.quick-bottom-links > .grid-x > .cell:last-child a figure {
  background-color: #00a4e4;
}
.wrapper main section.quick-bottom-links > .grid-x > .cell a {
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.quick-bottom-links > .grid-x > .cell a {
    overflow: hidden;
  }
  .wrapper main section.quick-bottom-links > .grid-x > .cell a:hover figure {
    -webkit-transform: scale(1.025);
    -moz-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -o-transform: scale(1.025);
    transform: scale(1.025);
  }
}
.wrapper main section.quick-bottom-links > .grid-x > .cell a figure {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  background-blend-mode: screen;
  position: relative !important;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapper main section.quick-bottom-links > .grid-x > .cell a figure img {
  opacity: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.quick-bottom-links > .grid-x > .cell a figure img {
    height: 16.4473684211rem;
  }
}
.wrapper main section.quick-bottom-links > .grid-x > .cell a figure figcaption {
  position: absolute !important;
  width: calc(100% - 40px);
  left: 1.3157894737rem;
  top: 2.6315789474rem;
  height: auto;
}
@media print, screen and (min-width: 64em) {
  .wrapper main section.quick-bottom-links > .grid-x > .cell a figure figcaption {
    left: 2.7631578947rem;
    top: 2.7631578947rem;
    width: auto;
  }
}
.wrapper main section.quick-bottom-links > .grid-x > .cell a figure figcaption h3 {
  color: #004b8d;
  margin-bottom: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.quick-bottom-links > .grid-x > .cell a figure figcaption h3 {
    font-size: 1.3157894737rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper main section.quick-bottom-links > .grid-x > .cell a figure figcaption h3 strong {
    font-size: 1.9078947368rem;
  }
}
.wrapper footer {
  background-color: #f1f1f1;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .wrapper footer {
    padding-right: 2.6315789474rem;
    padding-left: 2.6315789474rem;
  }
}
@media screen and (min-width: 75em) {
  .wrapper footer {
    padding-right: 4.0789473684rem;
    padding-left: 4.0789473684rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper footer > .grid-x {
    justify-content: space-between;
  }
}
.wrapper footer > .grid-x.contact-details {
  padding-bottom: 1.3157894737rem;
  padding-top: 1.5789473684rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details {
    padding-bottom: 2.6315789474rem;
    padding-top: 2.6315789474rem;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper footer > .grid-x.contact-details > .cell:not(:last-child) {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell:not(.member) {
    padding-right: 1rem;
  }
}
.wrapper footer > .grid-x.contact-details > .cell ul {
  list-style-type: none;
  margin: 0;
}
.wrapper footer > .grid-x.contact-details > .cell p, .wrapper footer > .grid-x.contact-details > .cell li, .wrapper footer > .grid-x.contact-details > .cell a {
  color: #004b8d;
}
.wrapper footer > .grid-x.contact-details > .cell .title {
  font: 0.8552631579rem "RobotoBold";
  color: #004b8d;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell .title {
    font: 0.7894736842rem "RobotoRegular";
    color: #606060;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.contact {
    order: 1;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.contact .address {
  padding-bottom: 1.1184210526rem;
}
.wrapper footer > .grid-x.contact-details > .cell.contact .address li {
  font: 0.8552631579rem "RobotoBold";
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.contact .address li {
    font: 0.8552631579rem "RobotoMedium";
  }
}
.wrapper footer > .grid-x.contact-details > .cell.contact p.tel {
  font: 0.8552631579rem "RobotoBold";
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  margin-bottom: 0.5263157895rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.contact p.tel {
    font: 0.8552631579rem "RobotoMedium";
  }
  .wrapper footer > .grid-x.contact-details > .cell.contact p.tel a:hover {
    color: rgb(13.5, 141.9574468085, 255);
  }
}
.wrapper footer > .grid-x.contact-details > .cell.contact p.mail {
  font: 0.8552631579rem "RobotoBold";
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper footer > .grid-x.contact-details > .cell.member {
    padding-left: 0.6578947368rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.member {
    order: 4;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.member figure p {
  font: 0.7894736842rem "RobotoRegular";
  margin-bottom: 0.3947368421rem;
}
.wrapper footer > .grid-x.contact-details > .cell.member figure img {
  max-width: 4.4078947368rem;
}
.wrapper footer > .grid-x.contact-details > .cell.sitemap {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.sitemap {
    order: 3;
    padding-right: 10%;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.sitemap .footer-links li a {
  font: 0.7894736842rem "RobotoRegular";
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.sitemap .footer-links li a {
    font: 0.7894736842rem "RobotoMedium";
  }
  .wrapper footer > .grid-x.contact-details > .cell.sitemap .footer-links li a:hover {
    color: rgb(13.5, 141.9574468085, 255);
  }
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us {
  display: none;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us {
    order: 2;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links {
    padding-bottom: 1.1184210526rem;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li:not(:last-child) {
  margin-right: 0.5263157895rem;
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i {
  border: 1px solid #004b8d;
  position: relative !important;
  font-size: 1.0526315789rem;
  padding: 0.1315789474rem;
  overflow: hidden;
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i {
    padding: 0.2631578947rem;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i::before, .wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i::after {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  display: block;
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i::after {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute !important;
  font-size: 1.0526315789rem;
  font-family: "icons";
  height: auto;
  width: auto;
  left: 100%;
  top: 50%;
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i.icon-linkedin::after {
  content: "\e90b";
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i.icon-facebook::after {
  content: "\e908";
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a i.icon-youtube::after {
  content: "\e90d";
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a:hover i::before {
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
  }
  .wrapper footer > .grid-x.contact-details > .cell.follow-us .social-links li a:hover i::after {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
.wrapper footer > .grid-x.contact-details > .cell.follow-us p.mail {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  line-height: normal;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us p.mail {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.contact-details > .cell.follow-us p.mail {
    font: 0.8552631579rem "RobotoMedium";
  }
  .wrapper footer > .grid-x.contact-details > .cell.follow-us p.mail a:hover {
    color: rgb(13.5, 141.9574468085, 255);
  }
}
.wrapper footer > .grid-x.copyrights {
  border-top: 1px solid #606060;
  padding-bottom: 1.5789473684rem;
  padding-top: 1.3157894737rem;
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.copyrights {
    padding-bottom: 2.6315789474rem;
    padding-top: 2.6315789474rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper footer > .grid-x.copyrights > .cell.copy {
    padding-right: 1rem;
  }
}
.wrapper footer > .grid-x.copyrights > .cell.copy p {
  font: 0.7894736842rem "RobotoRegular";
  color: #004b8d;
  line-height: normal;
}
.wrapper footer > .grid-x.copyrights > .cell.us a i {
  font-size: 1.9736842105rem;
  display: block;
  color: #000000;
}
@media print, screen and (min-width: 64em) {
  .wrapper footer > .grid-x.copyrights > .cell.us a i {
    font-size: 2.6315789474rem;
  }
}
.wrapper .preloader {
  background-color: #FFFFFF;
  position: fixed !important;
  height: 100vh;
  width: 100%;
  z-index: 10;
}
.wrapper .preloader figure {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute !important;
  width: 13.1578947368rem;
  height: auto;
  left: 50%;
  top: 50%;
}
@media print, screen and (min-width: 64em) {
  .wrapper .preloader figure {
    width: 19.7368421053rem;
  }
}
.wrapper .preloader figure img {
  width: 100%;
}
.wrapper .cta {
  padding: 0.7894736842rem 1rem;
  background-color: #ffc20e;
  position: relative !important;
  display: inline-block;
  text-align: center;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  .wrapper .cta {
    padding: 1.15rem;
  }
}
.wrapper .cta strong {
  padding: 0 1rem;
  font-size: 0.9210526316rem;
  color: #004b8d;
}
.wrapper .cta strong, .wrapper .cta i {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  position: relative !important;
  z-index: 3;
}
.wrapper .cta::before {
  background-color: #004b8d;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute !important;
  height: 100%;
  content: "";
  z-index: 2;
  width: 0;
  left: 0;
  top: 0;
}
.wrapper .cta.icons {
  padding: 0 1rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper .cta.icons {
    padding: 0 1.8421052632rem;
  }
}
.wrapper .cta.icons i {
  padding-left: 1.9736842105rem;
  font-size: 0.9868421053rem;
}
@media print, screen and (min-width: 64em) {
  .wrapper .cta.icons i {
    font-size: 0.6578947368rem;
  }
}
.wrapper .cta.download {
  background-color: #00a4e4;
}
.wrapper .cta.download i {
  font-size: 1.5789473684rem;
  vertical-align: middle;
}
.wrapper .cta.center {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-left: 50%;
}
.wrapper .cta.block {
  display: block;
}
@media print, screen and (min-width: 64em) {
  .wrapper .cta:hover strong, .wrapper .cta:hover i {
    color: #FFFFFF;
  }
  .wrapper .cta:hover::before {
    width: 100%;
  }
}
.wrapper .heading {
  text-transform: uppercase !important;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper .heading {
    margin-bottom: 1.5789473684rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .heading {
    -webkit-transform: translateY(3rem);
    -moz-transform: translateY(3rem);
    -ms-transform: translateY(3rem);
    -o-transform: translateY(3rem);
    transform: translateY(3rem);
  }
  .wrapper .heading.active {
    -webkit-animation: up 500ms linear forwards;
    animation: up 500ms linear forwards;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper .border-left-grid-text {
    margin-right: -0.0657894737rem;
    margin-left: -0.0657894737rem;
    justify-content: center;
  }
}
@media print, screen and (min-width: 40em) {
  .wrapper .border-left-grid-text li {
    padding-right: 0.0657894737rem;
    padding-left: 0.0657894737rem;
  }
}
.wrapper .border-left-grid-text li .img-text .img {
  margin-bottom: 1rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media print, screen and (min-width: 64em) {
  .wrapper .border-left-grid-text li .img-text .img {
    margin-bottom: 1.9736842105rem;
  }
}
.wrapper .border-left-grid-text li .img-text .img img {
  opacity: 0;
}
.wrapper .border-left-grid-text li .img-text .text {
  position: relative !important;
  padding: 1rem;
}
.wrapper .border-left-grid-text li .img-text .text::before, .wrapper .border-left-grid-text li .img-text .text p {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
@media print, screen and (min-width: 64em) {
  .wrapper .border-left-grid-text li .img-text .text {
    padding: 1.3157894737rem 1.9736842105rem;
  }
}
.wrapper .border-left-grid-text li .img-text .text p {
  font-family: "RobotoBold";
  color: #004b8d;
  text-align: left;
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper .border-left-grid-text li .img-text .text p {
    font-size: 0.9210526316rem;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .border-left-grid-text li .img-text .text p {
    color: #b3b3b3;
  }
}
@media screen and (min-width: 75em) {
  .wrapper .border-left-grid-text li .img-text .text p {
    max-width: 90%;
  }
}
@media print, screen and (min-width: 64em) {
  .wrapper .border-left-grid-text li .img-text:hover .text::before {
    background-color: #ffc20e;
  }
  .wrapper .border-left-grid-text li .img-text:hover .text p {
    color: #004b8d;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .wrapper .border-left-grid-text li:first-child .img-text .text {
    padding-top: 0;
  }
}
.wrapper .border-left-grid-text li:not(:last-child) .img-text .text::before {
  background-color: #ffc20e;
  position: absolute !important;
  height: 0.1315789474rem;
  width: 100%;
  content: "";
  bottom: 0;
  right: 0;
}
@media print, screen and (min-width: 40em) {
  .wrapper .border-left-grid-text li:not(:last-child) .img-text .text::before {
    background-color: #b3b3b3;
    right: -0.1315789474rem;
    width: 0.1315789474rem;
    height: 100%;
    bottom: 0;
  }
}
.wrapper.menu-active::before {
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute !important;
  height: 100%;
  width: 100%;
  content: "";
  z-index: 2;
  left: 0;
  top: 0;
}
@media print, screen and (max-width: 63.99875em) {
  .wrapper.menu-active .topbar .main-menu {
    -webkit-transform: translateX(0%) !important;
    -moz-transform: translateX(0%) !important;
    -ms-transform: translateX(0%) !important;
    -o-transform: translateX(0%) !important;
    transform: translateX(0%) !important;
  }
}
.wrapper.menu-active .topbar .menu-button::before, .wrapper.menu-active .topbar .menu-button::after {
  right: 20% !important;
}
